idjc-0.8.16/0000755000175000017500000000000012711167614007526 500000000000000idjc-0.8.16/bootstrap0000755000175000017500000000066312630014501011400 00000000000000#!/bin/sh missing() { echo "$1, is missing - please install it and try again" exit 1 } check() { for i in $* ; do which $i 1>/dev/null 2>/dev/null || missing $i done } check autoreconf libtool autopoint convert echo "remaking missing files in build environment" # Directory exists in git source only. if [ -d docsrc ]; then cd docsrc make && make doc cd .. fi cd libshout-idjc autoreconf -ifs cd .. autoreconf -ifs idjc-0.8.16/missing0000755000175000017500000001533012552234435011046 00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2014 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 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook '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: idjc-0.8.16/install-sh0000755000175000017500000003452312552234435011460 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2013-12-25.23; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else dstdir=`dirname "$dst"` 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 oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$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` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: idjc-0.8.16/config.sub0000755000175000017500000010703212706207411011426 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-12-14' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # 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 or 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-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." 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* | netbsd*-eabi* | \ 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 \ | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx | dvp \ | e2k | epiphany \ | fido | fr30 | frv | ft32 \ | 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 \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]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 \ | visium \ | 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 ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; 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-* \ | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | e2k-* | 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-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | riscv32-* | riscv64-* \ | 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-* \ | visium-* \ | 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 ;; asmjs) basic_machine=asmjs-unknown ;; 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 ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` ;; 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 ;; mipsEE* | ee | ps2) basic_machine=mips64r5900el-scei case $os in -linux*) ;; *) os=-elf ;; esac ;; iop) basic_machine=mipsel-scei os=-irx ;; dvp) basic_machine=dvp-scei os=-elf ;; 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 ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; 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* | -cloudabi* | -sortix* \ | -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* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* | -irx* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ | -onefs* | -tirtos*) # 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 ;; 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: idjc-0.8.16/idjc.appdata.xml.in.in0000644000175000017500000000221112630014515013507 00000000000000 @PACKAGE_NAME@.desktop CC0-1.0 GPL-2.0+ and GFDL-1.3 Internet DJ Console Be a DJ on the Internet

A powerful yet easy to use source-client for people interested in streaming live radio shows over the Internet using Shoutcast or Icecast servers.

Up to 9 simultaneous streams. 12 mono or 6 stereo general purpose audio inputs. 3 media players. An effects rack. The audio routing flexibility of Jack Audio Connection Kit. IRC announcements. Ampache music database support.

http://idjc.sourceforge.net/appdata_screenshot.png http://idjc.sourceforge.net http://sourceforge.net/api/file/index/project-id/135773/mtime/desc/limit/20/rss
idjc-0.8.16/configure0000755000175000017500000224173212711167211011361 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for idjc 0.8.16. # # 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 -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_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: http://idjc.sourceforge.net about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_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'" 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='idjc' PACKAGE_TARNAME='idjc' PACKAGE_VERSION='0.8.16' PACKAGE_STRING='idjc 0.8.16' PACKAGE_BUGREPORT='http://idjc.sourceforge.net' PACKAGE_URL='' ac_unique_file="config.h.in" # 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" gt_needs= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS DYLIB_EXT DYN_LDFLAGS DYN_LIBS HAVE_SHOUT_TLS SHOUTIDJC_LIBS SHOUTIDJC_CFLAGS EXT LIBOBJS LIBM HAVE_OPUS OPUS_LIBS OPUS_CFLAGS HAVE_TWOLAME TWOLAME_LIBS TWOLAME_CFLAGS LIBMP3LAME DYN_LAME MPG123 DYN_MPG123 MPG123_LIBS MPG123_CFLAGS HAVE_OGGFLAC HAVE_FLAC LIBFLAC_LIBS LIBFLAC_CFLAGS PYGTK_LIBS PYGTK_CFLAGS HAVE_SPEEX LIBSPEEX_LIBS LIBSPEEX_CFLAGS LIBSWRESAMPLE_LIBS LIBSWRESAMPLE_CFLAGS HAVE_SWRESAMPLE LIBAVUTIL_LIBS LIBAVUTIL_CFLAGS HAVE_AVUTIL LIBAVFORMAT_LIBS LIBAVFORMAT_CFLAGS HAVE_AVFORMAT LIBAVCODEC_LIBS LIBAVCODEC_CFLAGS HAVE_AVCODEC GIT_VERSION_CONTROL_FALSE GIT_VERSION_CONTROL_TRUE GIT_PROG_EXISTS GLIB_LIBS GLIB_CFLAGS LIBSNDFILE_LIBS LIBSNDFILE_CFLAGS LIBSAMPLERATE_LIBS LIBSAMPLERATE_CFLAGS LIBVORBISENC_LIBS LIBVORBISENC_CFLAGS LIBVORBIS_LIBS LIBVORBIS_CFLAGS LIBJACK_LIBS LIBJACK_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG POSUB LTLIBINTL LIBINTL INTLLIBS LTLIBICONV LIBICONV INTL_MACOSX_LIBS XGETTEXT_EXTRA_OPTIONS MSGMERGE XGETTEXT_015 XGETTEXT GMSGFMT_015 MSGFMT_015 GMSGFMT MSGFMT GETTEXT_MACRO_VERSION USE_NLS CPP LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC LIBTOOL idjcpkgpythondir idjcpythondir pkgpyexecdir pyexecdir pkgpythondir pythondir PYTHON_PLATFORM PYTHON_EXEC_PREFIX PYTHON_PREFIX PYTHON_VERSION PYTHON AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build COPYRIGHT_YEAR 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_static enable_shared with_pic enable_fast_install with_aix_soname enable_dependency_tracking with_gnu_ld with_sysroot enable_libtool_lock enable_nls enable_rpath with_libiconv_prefix with_libintl_prefix enable_libav enable_speex enable_flac enable_mpg123 enable_lame enable_twolame enable_opus ' ac_precious_vars='build_alias host_alias target_alias PYTHON CC CFLAGS LDFLAGS LIBS CPPFLAGS LT_SYS_LIBRARY_PATH CPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR LIBJACK_CFLAGS LIBJACK_LIBS LIBVORBIS_CFLAGS LIBVORBIS_LIBS LIBVORBISENC_CFLAGS LIBVORBISENC_LIBS LIBSAMPLERATE_CFLAGS LIBSAMPLERATE_LIBS LIBSNDFILE_CFLAGS LIBSNDFILE_LIBS GLIB_CFLAGS GLIB_LIBS LIBAVCODEC_CFLAGS LIBAVCODEC_LIBS LIBAVFORMAT_CFLAGS LIBAVFORMAT_LIBS LIBAVUTIL_CFLAGS LIBAVUTIL_LIBS LIBSWRESAMPLE_CFLAGS LIBSWRESAMPLE_LIBS LIBSPEEX_CFLAGS LIBSPEEX_LIBS PYGTK_CFLAGS PYGTK_LIBS LIBFLAC_CFLAGS LIBFLAC_LIBS MPG123_CFLAGS MPG123_LIBS TWOLAME_CFLAGS TWOLAME_LIBS OPUS_CFLAGS OPUS_LIBS SHOUTIDJC_CFLAGS SHOUTIDJC_LIBS' # 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 idjc 0.8.16 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/idjc] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of idjc 0.8.16:";; 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-static[=PKGS] build static libraries [default=no] --enable-shared[=PKGS] build shared libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-libtool-lock avoid locking (might break parallel builds) --disable-nls do not use Native Language Support --disable-rpath do not hardcode runtime library paths --disable-libav remove capability to decode m4a/wma/avi files --disable-speex remove the capability to play/stream speex --disable-flac remove the capability to play/stream in FLAC --disable-mpg123 remove capability to play mp3 format --disable-lame remove capability to stream/record mp3 format --disable-twolame remove the capability to stream in mp2 --disable-opus remove capability to play/stream in opus format Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-gnu-ld assume the C compiler uses GNU ld default=no --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir Some influential environment variables: PYTHON the Python interpreter 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 LT_SYS_LIBRARY_PATH User-defined run-time library search path. CPP C preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path LIBJACK_CFLAGS C compiler flags for LIBJACK, overriding pkg-config LIBJACK_LIBS linker flags for LIBJACK, overriding pkg-config LIBVORBIS_CFLAGS C compiler flags for LIBVORBIS, overriding pkg-config LIBVORBIS_LIBS linker flags for LIBVORBIS, overriding pkg-config LIBVORBISENC_CFLAGS C compiler flags for LIBVORBISENC, overriding pkg-config LIBVORBISENC_LIBS linker flags for LIBVORBISENC, overriding pkg-config LIBSAMPLERATE_CFLAGS C compiler flags for LIBSAMPLERATE, overriding pkg-config LIBSAMPLERATE_LIBS linker flags for LIBSAMPLERATE, overriding pkg-config LIBSNDFILE_CFLAGS C compiler flags for LIBSNDFILE, overriding pkg-config LIBSNDFILE_LIBS linker flags for LIBSNDFILE, overriding pkg-config GLIB_CFLAGS C compiler flags for GLIB, overriding pkg-config GLIB_LIBS linker flags for GLIB, overriding pkg-config LIBAVCODEC_CFLAGS C compiler flags for LIBAVCODEC, overriding pkg-config LIBAVCODEC_LIBS linker flags for LIBAVCODEC, overriding pkg-config LIBAVFORMAT_CFLAGS C compiler flags for LIBAVFORMAT, overriding pkg-config LIBAVFORMAT_LIBS linker flags for LIBAVFORMAT, overriding pkg-config LIBAVUTIL_CFLAGS C compiler flags for LIBAVUTIL, overriding pkg-config LIBAVUTIL_LIBS linker flags for LIBAVUTIL, overriding pkg-config LIBSWRESAMPLE_CFLAGS C compiler flags for LIBSWRESAMPLE, overriding pkg-config LIBSWRESAMPLE_LIBS linker flags for LIBSWRESAMPLE, overriding pkg-config LIBSPEEX_CFLAGS C compiler flags for LIBSPEEX, overriding pkg-config LIBSPEEX_LIBS linker flags for LIBSPEEX, overriding pkg-config PYGTK_CFLAGS C compiler flags for PYGTK, overriding pkg-config PYGTK_LIBS linker flags for PYGTK, overriding pkg-config LIBFLAC_CFLAGS C compiler flags for LIBFLAC, overriding pkg-config LIBFLAC_LIBS linker flags for LIBFLAC, overriding pkg-config MPG123_CFLAGS C compiler flags for MPG123, overriding pkg-config MPG123_LIBS linker flags for MPG123, overriding pkg-config TWOLAME_CFLAGS C compiler flags for TWOLAME, overriding pkg-config TWOLAME_LIBS linker flags for TWOLAME, overriding pkg-config OPUS_CFLAGS C compiler flags for OPUS, overriding pkg-config OPUS_LIBS linker flags for OPUS, overriding pkg-config SHOUTIDJC_CFLAGS C compiler flags for SHOUTIDJC, overriding pkg-config SHOUTIDJC_LIBS linker flags for SHOUTIDJC, overriding pkg-config 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 idjc configure 0.8.16 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_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$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_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_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_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_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_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_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 http://idjc.sourceforge.net ## ## ------------------------------------------ ##" ) | 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_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 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 idjc $as_me 0.8.16, 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 gt_needs="$gt_needs " # 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 COPYRIGHT_YEAR=2016 ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; 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 \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$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. # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- am__api_version='1.15' # 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+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $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='idjc' VERSION='0.8.16' 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 (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi ac_config_headers="$ac_config_headers config.h" # Generate python installation stuff if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 2.7" >&5 $as_echo_n "checking whether $PYTHON version is >= 2.7... " >&6; } prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.7'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)" if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5 ($PYTHON -c "$prog") >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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" >&5 $as_echo "no" >&6; } as_fn_error $? "Python interpreter is too old" "$LINENO" 5 fi am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.7" >&5 $as_echo_n "checking for a Python interpreter with version >= 2.7... " >&6; } if ${am_cv_pathless_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else for am_cv_pathless_PYTHON in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do test "$am_cv_pathless_PYTHON" = none && break prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.7'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)" if { echo "$as_me:$LINENO: $am_cv_pathless_PYTHON -c "$prog"" >&5 ($am_cv_pathless_PYTHON -c "$prog") >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then : break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_pathless_PYTHON" >&5 $as_echo "$am_cv_pathless_PYTHON" >&6; } # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args. set dummy $am_cv_pathless_PYTHON; 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_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else case $PYTHON in [\\/]* | ?:[\\/]*) ac_cv_path_PYTHON="$PYTHON" # 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_PYTHON="$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 PYTHON=$ac_cv_path_PYTHON if test -n "$PYTHON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 $as_echo "$PYTHON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi am_display_PYTHON=$am_cv_pathless_PYTHON fi if test "$PYTHON" = :; then as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5 $as_echo_n "checking for $am_display_PYTHON version... " >&6; } if ${am_cv_python_version+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 $as_echo "$am_cv_python_version" >&6; } PYTHON_VERSION=$am_cv_python_version PYTHON_PREFIX='${prefix}' PYTHON_EXEC_PREFIX='${exec_prefix}' { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5 $as_echo_n "checking for $am_display_PYTHON platform... " >&6; } if ${am_cv_python_platform+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 $as_echo "$am_cv_python_platform" >&6; } PYTHON_PLATFORM=$am_cv_python_platform # Just factor out some code duplication. am_python_setup_sysconfig="\ import sys # Prefer sysconfig over distutils.sysconfig, for better compatibility # with python 3.x. See automake bug#10227. try: import sysconfig except ImportError: can_use_sysconfig = 0 else: can_use_sysconfig = 1 # Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: # try: from platform import python_implementation if python_implementation() == 'CPython' and sys.version[:3] == '2.7': can_use_sysconfig = 0 except ImportError: pass" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } if ${am_cv_python_pythondir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 $as_echo "$am_cv_python_pythondir" >&6; } pythondir=$am_cv_python_pythondir pkgpythondir=\${pythondir}/$PACKAGE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } if ${am_cv_python_pyexecdir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 $as_echo "$am_cv_python_pyexecdir" >&6; } pyexecdir=$am_cv_python_pyexecdir pkgpyexecdir=\${pyexecdir}/$PACKAGE fi idjcpythondir=\${pkglibdir}/site-packages idjcpkgpythondir=\${pkglibdir}/site-packages/idjc # idjc backend library stuff 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.6' macro_revision='2.4.6' ltmain=$ac_aux_dir/ltmain.sh # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $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 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 { $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 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 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 no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; 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 yes = "$with_gnu_ld"; 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 # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $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 -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { $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; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n "$lt_cv_sys_max_cmd_len"; then { $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"} 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 yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $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 # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $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 one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac fi { $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 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$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 no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $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 bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $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 ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $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 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $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 yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $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 yes = "$GCC"; 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; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 $as_echo_n "checking for a working dd... " >&6; } if ${ac_cv_path_lt_DD+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in dd; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 $as_echo "$ac_cv_path_lt_DD" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 $as_echo_n "checking how to truncate binary pipes... " >&6; } if ${lt_cv_truncate_bin+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 $as_echo "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $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 what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $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*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $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 yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $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*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $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 yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $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 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $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 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $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 yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } ac_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 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 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 # Set options # 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=no fi 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 --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 # 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 shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 $as_echo_n "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test "${with_aix_soname+set}" = set; then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else if ${lt_cv_with_aix_soname+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 $as_echo "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { $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 set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o func_cc_basename $compiler cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $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 yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $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" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $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 yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $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" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $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 yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $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 yes = "$lt_cv_prog_compiler_static_works"; 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 no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; 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 no = "$hard_links"; 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 yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${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 -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${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 yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $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 yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $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 yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; osf3*) if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='$wl-z,text' allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $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 yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /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 ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /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 # Handle Gentoo/FreeBSD as it was Linux case $host_vendor in gentoo) version_type=linux ;; *) version_type=freebsd-$objformat ;; esac case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; linux) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' need_lib_prefix=no need_version=no ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /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 ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${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 # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /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 yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/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 no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $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 yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $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 ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen=shl_load else { $as_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 no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $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 yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $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 yes = "$lt_cv_dlopen_self"; 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 yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $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 what 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 no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { $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 yes = "$enable_shared" || 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 ac_config_commands="$ac_config_commands libtool" # Only expand once: # Checks for programs. # Cause autoconfiguration to look for an external libintl. mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } GETTEXT_MACRO_VERSION=0.18 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; 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_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; 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_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$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_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; 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_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f messages.po case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; 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_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$localedir" || localedir='${datadir}/locale' test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= ac_config_commands="$ac_config_commands po-directories" 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 echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh 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 GCC" >&5 $as_echo_n "checking for ld used by GCC... " >&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. [\\/]* | [A-Za-z]:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the path 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 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do 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 GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi fi LD="$acl_cv_path_LD" if test -n "$LD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&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 ld's 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" 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-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then : withval=$with_libiconv_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 LIBICONV= LTLIBICONV= INCICONV= LIBICONV_PREFIX= HAVE_LIBICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' 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" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$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 $LTLIBICONV; 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 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-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 LIBICONV="${LIBICONV}${LIBICONV:+ }$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 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$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 $LIBICONV; 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 LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-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" = 'iconv'; then LIBICONV_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" = 'iconv'; then LIBICONV_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 $INCICONV; 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 INCICONV="${INCICONV}${INCICONV:+ }-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 $LIBICONV; 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 LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; 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 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-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$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-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" LIBICONV="${LIBICONV}${LIBICONV:+ }$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" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFPreferencesCopyAppValue=yes else gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 $as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; } if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFLocaleCopyCurrent(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFLocaleCopyCurrent=yes else gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 $as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi LIBINTL= LTLIBINTL= POSUB= case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } if eval \${$gt_func_gnugettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libc=yes" else eval "$gt_func_gnugettext_libc=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$gt_func_gnugettext_libc { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 $as_echo_n "checking for iconv... " >&6; } if ${am_cv_func_iconv+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 $as_echo "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 $as_echo_n "checking for working iconv... " >&6; } if ${am_cv_func_iconv_works+:} false; then : $as_echo_n "(cached) " >&6 else am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi if test "$cross_compiling" = yes; then : case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) return 1; } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) return 1; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : am_cv_func_iconv_works=yes else am_cv_func_iconv_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 LIBS="$am_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 $as_echo "$am_cv_func_iconv_works" >&6; } case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 $as_echo_n "checking how to link with libiconv... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 $as_echo "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi 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-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then : withval=$with_libintl_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 LIBINTL= LTLIBINTL= INCINTL= LIBINTL_PREFIX= HAVE_LIBINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' 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" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$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 $LTLIBINTL; 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 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-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 LIBINTL="${LIBINTL}${LIBINTL:+ }$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 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$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 $LIBINTL; 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 LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-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" = 'intl'; then LIBINTL_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" = 'intl'; then LIBINTL_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 $INCINTL; 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 INCINTL="${INCINTL}${INCINTL:+ }-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 $LIBINTL; 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 LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; 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 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-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$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-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" LIBINTL="${LIBINTL}${LIBINTL:+ }$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" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } if eval \${$gt_func_gnugettext_libintl+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libintl=yes" else eval "$gt_func_gnugettext_libintl=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi eval ac_res=\$$gt_func_gnugettext_libintl { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 $as_echo_n "checking whether to use NLS... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 $as_echo_n "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 $as_echo "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 $as_echo_n "checking how to link with libintl... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 $as_echo "$LIBINTL" >&6; } for element in $INCINTL; 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 fi $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi INTLLIBS="$LIBINTL" # We need libjack in order to compile. if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-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_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_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_PKG_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 ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-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_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_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_ac_pt_PKG_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 ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" 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 PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; 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" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBJACK" >&5 $as_echo_n "checking for LIBJACK... " >&6; } if test -n "$LIBJACK_CFLAGS"; then pkg_cv_LIBJACK_CFLAGS="$LIBJACK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"jack >= 0.98.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "jack >= 0.98.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBJACK_CFLAGS=`$PKG_CONFIG --cflags "jack >= 0.98.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBJACK_LIBS"; then pkg_cv_LIBJACK_LIBS="$LIBJACK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"jack >= 0.98.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "jack >= 0.98.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBJACK_LIBS=`$PKG_CONFIG --libs "jack >= 0.98.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBJACK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "jack >= 0.98.0" 2>&1` else LIBJACK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "jack >= 0.98.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBJACK_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (jack >= 0.98.0) were not met: $LIBJACK_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBJACK_CFLAGS and LIBJACK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBJACK_CFLAGS and LIBJACK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBJACK_CFLAGS=$pkg_cv_LIBJACK_CFLAGS LIBJACK_LIBS=$pkg_cv_LIBJACK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi # Core dependencies. pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBVORBIS" >&5 $as_echo_n "checking for LIBVORBIS... " >&6; } if test -n "$LIBVORBIS_CFLAGS"; then pkg_cv_LIBVORBIS_CFLAGS="$LIBVORBIS_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vorbis >= 1.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "vorbis >= 1.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBVORBIS_CFLAGS=`$PKG_CONFIG --cflags "vorbis >= 1.0.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBVORBIS_LIBS"; then pkg_cv_LIBVORBIS_LIBS="$LIBVORBIS_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vorbis >= 1.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "vorbis >= 1.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBVORBIS_LIBS=`$PKG_CONFIG --libs "vorbis >= 1.0.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBVORBIS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vorbis >= 1.0.0" 2>&1` else LIBVORBIS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vorbis >= 1.0.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBVORBIS_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (vorbis >= 1.0.0) were not met: $LIBVORBIS_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBVORBIS_CFLAGS and LIBVORBIS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBVORBIS_CFLAGS and LIBVORBIS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBVORBIS_CFLAGS=$pkg_cv_LIBVORBIS_CFLAGS LIBVORBIS_LIBS=$pkg_cv_LIBVORBIS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBVORBISENC" >&5 $as_echo_n "checking for LIBVORBISENC... " >&6; } if test -n "$LIBVORBISENC_CFLAGS"; then pkg_cv_LIBVORBISENC_CFLAGS="$LIBVORBISENC_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vorbisenc >= 1.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "vorbisenc >= 1.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBVORBISENC_CFLAGS=`$PKG_CONFIG --cflags "vorbisenc >= 1.0.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBVORBISENC_LIBS"; then pkg_cv_LIBVORBISENC_LIBS="$LIBVORBISENC_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vorbisenc >= 1.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "vorbisenc >= 1.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBVORBISENC_LIBS=`$PKG_CONFIG --libs "vorbisenc >= 1.0.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBVORBISENC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vorbisenc >= 1.0.0" 2>&1` else LIBVORBISENC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vorbisenc >= 1.0.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBVORBISENC_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (vorbisenc >= 1.0.0) were not met: $LIBVORBISENC_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBVORBISENC_CFLAGS and LIBVORBISENC_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBVORBISENC_CFLAGS and LIBVORBISENC_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBVORBISENC_CFLAGS=$pkg_cv_LIBVORBISENC_CFLAGS LIBVORBISENC_LIBS=$pkg_cv_LIBVORBISENC_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBSAMPLERATE" >&5 $as_echo_n "checking for LIBSAMPLERATE... " >&6; } if test -n "$LIBSAMPLERATE_CFLAGS"; then pkg_cv_LIBSAMPLERATE_CFLAGS="$LIBSAMPLERATE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"samplerate\""; } >&5 ($PKG_CONFIG --exists --print-errors "samplerate") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSAMPLERATE_CFLAGS=`$PKG_CONFIG --cflags "samplerate" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBSAMPLERATE_LIBS"; then pkg_cv_LIBSAMPLERATE_LIBS="$LIBSAMPLERATE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"samplerate\""; } >&5 ($PKG_CONFIG --exists --print-errors "samplerate") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSAMPLERATE_LIBS=`$PKG_CONFIG --libs "samplerate" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBSAMPLERATE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "samplerate" 2>&1` else LIBSAMPLERATE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "samplerate" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBSAMPLERATE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (samplerate) were not met: $LIBSAMPLERATE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBSAMPLERATE_CFLAGS and LIBSAMPLERATE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBSAMPLERATE_CFLAGS and LIBSAMPLERATE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBSAMPLERATE_CFLAGS=$pkg_cv_LIBSAMPLERATE_CFLAGS LIBSAMPLERATE_LIBS=$pkg_cv_LIBSAMPLERATE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBSNDFILE" >&5 $as_echo_n "checking for LIBSNDFILE... " >&6; } if test -n "$LIBSNDFILE_CFLAGS"; then pkg_cv_LIBSNDFILE_CFLAGS="$LIBSNDFILE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sndfile\""; } >&5 ($PKG_CONFIG --exists --print-errors "sndfile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSNDFILE_CFLAGS=`$PKG_CONFIG --cflags "sndfile" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBSNDFILE_LIBS"; then pkg_cv_LIBSNDFILE_LIBS="$LIBSNDFILE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sndfile\""; } >&5 ($PKG_CONFIG --exists --print-errors "sndfile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSNDFILE_LIBS=`$PKG_CONFIG --libs "sndfile" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBSNDFILE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "sndfile" 2>&1` else LIBSNDFILE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "sndfile" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBSNDFILE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (sndfile) were not met: $LIBSNDFILE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBSNDFILE_CFLAGS and LIBSNDFILE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBSNDFILE_CFLAGS and LIBSNDFILE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBSNDFILE_CFLAGS=$pkg_cv_LIBSNDFILE_CFLAGS LIBSNDFILE_LIBS=$pkg_cv_LIBSNDFILE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB" >&5 $as_echo_n "checking for GLIB... " >&6; } if test -n "$GLIB_CFLAGS"; then pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GLIB_LIBS"; then pkg_cv_GLIB_LIBS="$GLIB_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0" 2>&1` else GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GLIB_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (glib-2.0) were not met: $GLIB_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GLIB_CFLAGS and GLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GLIB_CFLAGS and GLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS GLIB_LIBS=$pkg_cv_GLIB_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi # Determine if git is installed and a repository is present in source root dir. # Extract the first word of "git", so it can be a program name with args. set dummy git; 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_GIT_PROG_EXISTS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$GIT_PROG_EXISTS"; then ac_cv_prog_GIT_PROG_EXISTS="$GIT_PROG_EXISTS" # 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_GIT_PROG_EXISTS="yes" $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_GIT_PROG_EXISTS" && ac_cv_prog_GIT_PROG_EXISTS="no" fi fi GIT_PROG_EXISTS=$ac_cv_prog_GIT_PROG_EXISTS if test -n "$GIT_PROG_EXISTS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GIT_PROG_EXISTS" >&5 $as_echo "$GIT_PROG_EXISTS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test ${GIT_PROG_EXISTS} = "yes" ; then # Determine if a repository exists right here in the build directory. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for git repository in source tree root" >&5 $as_echo_n "checking for git repository in source tree root... " >&6; } if test $(git rev-parse --git-dir) = ".git" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } git_repo = 1 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test x$git_repo = x; then GIT_VERSION_CONTROL_TRUE= GIT_VERSION_CONTROL_FALSE='#' else GIT_VERSION_CONTROL_TRUE='#' GIT_VERSION_CONTROL_FALSE= fi # Check whether --enable-libav was given. if test "${enable_libav+set}" = set; then : enableval=$enable_libav; makelibav=$enableval else makelibav="maybe" fi if test $makelibav != "no" ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBAVCODEC" >&5 $as_echo_n "checking for LIBAVCODEC... " >&6; } if test -n "$LIBAVCODEC_CFLAGS"; then pkg_cv_LIBAVCODEC_CFLAGS="$LIBAVCODEC_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavcodec\""; } >&5 ($PKG_CONFIG --exists --print-errors "libavcodec") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBAVCODEC_CFLAGS=`$PKG_CONFIG --cflags "libavcodec" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBAVCODEC_LIBS"; then pkg_cv_LIBAVCODEC_LIBS="$LIBAVCODEC_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavcodec\""; } >&5 ($PKG_CONFIG --exists --print-errors "libavcodec") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBAVCODEC_LIBS=`$PKG_CONFIG --libs "libavcodec" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBAVCODEC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libavcodec" 2>&1` else LIBAVCODEC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libavcodec" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBAVCODEC_PKG_ERRORS" >&5 HAVE_AVCODEC=0 if test $makelibav = "yes" ; then as_fn_error $? "libavcodec not detected but specifically requested in configure options (libav)" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without wma/mp4/ape support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without wma/mp4/ape support" >&2;} fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_AVCODEC=0 if test $makelibav = "yes" ; then as_fn_error $? "libavcodec not detected but specifically requested in configure options (libav)" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without wma/mp4/ape support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without wma/mp4/ape support" >&2;} fi else LIBAVCODEC_CFLAGS=$pkg_cv_LIBAVCODEC_CFLAGS LIBAVCODEC_LIBS=$pkg_cv_LIBAVCODEC_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_AVCODEC 1" >>confdefs.h HAVE_AVCODEC=1 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for avcodec_decode_audio4 in -lavcodec" >&5 $as_echo_n "checking for avcodec_decode_audio4 in -lavcodec... " >&6; } if ${ac_cv_lib_avcodec_avcodec_decode_audio4+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lavcodec $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 avcodec_decode_audio4 (); int main () { return avcodec_decode_audio4 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_avcodec_avcodec_decode_audio4=yes else ac_cv_lib_avcodec_avcodec_decode_audio4=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_avcodec_avcodec_decode_audio4" >&5 $as_echo "$ac_cv_lib_avcodec_avcodec_decode_audio4" >&6; } if test "x$ac_cv_lib_avcodec_avcodec_decode_audio4" = xyes; then : : else as_fn_error $? "\"configure with --disable-libav or update ffmpeg/libav\"" "$LINENO" 5 fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBAVFORMAT" >&5 $as_echo_n "checking for LIBAVFORMAT... " >&6; } if test -n "$LIBAVFORMAT_CFLAGS"; then pkg_cv_LIBAVFORMAT_CFLAGS="$LIBAVFORMAT_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavformat\""; } >&5 ($PKG_CONFIG --exists --print-errors "libavformat") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBAVFORMAT_CFLAGS=`$PKG_CONFIG --cflags "libavformat" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBAVFORMAT_LIBS"; then pkg_cv_LIBAVFORMAT_LIBS="$LIBAVFORMAT_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavformat\""; } >&5 ($PKG_CONFIG --exists --print-errors "libavformat") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBAVFORMAT_LIBS=`$PKG_CONFIG --libs "libavformat" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBAVFORMAT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libavformat" 2>&1` else LIBAVFORMAT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libavformat" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBAVFORMAT_PKG_ERRORS" >&5 HAVE_AVFORMAT=0 if test $makelibav = "yes" ; then as_fn_error $? "libavformat not detected but specifically requested in configure options (libav)" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without wma/mp4/ape support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without wma/mp4/ape support" >&2;} fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_AVFORMAT=0 if test $makelibav = "yes" ; then as_fn_error $? "libavformat not detected but specifically requested in configure options (libav)" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without wma/mp4/ape support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without wma/mp4/ape support" >&2;} fi else LIBAVFORMAT_CFLAGS=$pkg_cv_LIBAVFORMAT_CFLAGS LIBAVFORMAT_LIBS=$pkg_cv_LIBAVFORMAT_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_AVFORMAT 1" >>confdefs.h HAVE_AVFORMAT=1 fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBAVUTIL" >&5 $as_echo_n "checking for LIBAVUTIL... " >&6; } if test -n "$LIBAVUTIL_CFLAGS"; then pkg_cv_LIBAVUTIL_CFLAGS="$LIBAVUTIL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavutil\""; } >&5 ($PKG_CONFIG --exists --print-errors "libavutil") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBAVUTIL_CFLAGS=`$PKG_CONFIG --cflags "libavutil" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBAVUTIL_LIBS"; then pkg_cv_LIBAVUTIL_LIBS="$LIBAVUTIL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavutil\""; } >&5 ($PKG_CONFIG --exists --print-errors "libavutil") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBAVUTIL_LIBS=`$PKG_CONFIG --libs "libavutil" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBAVUTIL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libavutil" 2>&1` else LIBAVUTIL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libavutil" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBAVUTIL_PKG_ERRORS" >&5 HAVE_AVUTIL=0 if test $makelibav = "yes" ; then as_fn_error $? "libavutil not detected but specifically requested in configure options (libav)" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without wma/mp4/ape support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without wma/mp4/ape support" >&2;} fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_AVUTIL=0 if test $makelibav = "yes" ; then as_fn_error $? "libavutil not detected but specifically requested in configure options (libav)" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without wma/mp4/ape support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without wma/mp4/ape support" >&2;} fi else LIBAVUTIL_CFLAGS=$pkg_cv_LIBAVUTIL_CFLAGS LIBAVUTIL_LIBS=$pkg_cv_LIBAVUTIL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_AVUTIL 1" >>confdefs.h HAVE_AVUTIL=1 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for av_frame_alloc in -lavutil" >&5 $as_echo_n "checking for av_frame_alloc in -lavutil... " >&6; } if ${ac_cv_lib_avutil_av_frame_alloc+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lavutil $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 av_frame_alloc (); int main () { return av_frame_alloc (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_avutil_av_frame_alloc=yes else ac_cv_lib_avutil_av_frame_alloc=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_avutil_av_frame_alloc" >&5 $as_echo "$ac_cv_lib_avutil_av_frame_alloc" >&6; } if test "x$ac_cv_lib_avutil_av_frame_alloc" = xyes; then : $as_echo "#define HAVE_AV_FRAME_ALLOC 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for av_frame_unref in -lavutil" >&5 $as_echo_n "checking for av_frame_unref in -lavutil... " >&6; } if ${ac_cv_lib_avutil_av_frame_unref+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lavutil $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 av_frame_unref (); int main () { return av_frame_unref (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_avutil_av_frame_unref=yes else ac_cv_lib_avutil_av_frame_unref=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_avutil_av_frame_unref" >&5 $as_echo "$ac_cv_lib_avutil_av_frame_unref" >&6; } if test "x$ac_cv_lib_avutil_av_frame_unref" = xyes; then : $as_echo "#define HAVE_AV_FRAME_UNREF 1" >>confdefs.h fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBSWRESAMPLE" >&5 $as_echo_n "checking for LIBSWRESAMPLE... " >&6; } if test -n "$LIBSWRESAMPLE_CFLAGS"; then pkg_cv_LIBSWRESAMPLE_CFLAGS="$LIBSWRESAMPLE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libswresample\""; } >&5 ($PKG_CONFIG --exists --print-errors "libswresample") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSWRESAMPLE_CFLAGS=`$PKG_CONFIG --cflags "libswresample" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBSWRESAMPLE_LIBS"; then pkg_cv_LIBSWRESAMPLE_LIBS="$LIBSWRESAMPLE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libswresample\""; } >&5 ($PKG_CONFIG --exists --print-errors "libswresample") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSWRESAMPLE_LIBS=`$PKG_CONFIG --libs "libswresample" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBSWRESAMPLE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libswresample" 2>&1` else LIBSWRESAMPLE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libswresample" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBSWRESAMPLE_PKG_ERRORS" >&5 HAVE_SWRESAMPLE=0 if test $makelibav = "yes" ; then as_fn_error $? "libswresample not detected but specifically requested in configure options (libav)" "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_SWRESAMPLE=0 if test $makelibav = "yes" ; then as_fn_error $? "libswresample not detected but specifically requested in configure options (libav)" "$LINENO" 5 fi else LIBSWRESAMPLE_CFLAGS=$pkg_cv_LIBSWRESAMPLE_CFLAGS LIBSWRESAMPLE_LIBS=$pkg_cv_LIBSWRESAMPLE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_SWRESAMPLE 1" >>confdefs.h HAVE_SWRESAMPLE=1 fi else HAVE_AVCODEC=0 HAVE_AVFORMAT=0 HAVE_AVUTIL=0 HAVE_SWRESAMPLE=0 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for av_opt_set_sample_fmt in -lavutil" >&5 $as_echo_n "checking for av_opt_set_sample_fmt in -lavutil... " >&6; } if ${ac_cv_lib_avutil_av_opt_set_sample_fmt+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lavutil $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 av_opt_set_sample_fmt (); int main () { return av_opt_set_sample_fmt (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_avutil_av_opt_set_sample_fmt=yes else ac_cv_lib_avutil_av_opt_set_sample_fmt=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_avutil_av_opt_set_sample_fmt" >&5 $as_echo "$ac_cv_lib_avutil_av_opt_set_sample_fmt" >&6; } if test "x$ac_cv_lib_avutil_av_opt_set_sample_fmt" = xyes; then : $as_echo "#define USE_SWRESAMPLE 1" >>confdefs.h fi # Check whether --enable-speex was given. if test "${enable_speex+set}" = set; then : enableval=$enable_speex; makespeex=$enableval else makespeex="maybe" fi if test $makespeex != "no" ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBSPEEX" >&5 $as_echo_n "checking for LIBSPEEX... " >&6; } if test -n "$LIBSPEEX_CFLAGS"; then pkg_cv_LIBSPEEX_CFLAGS="$LIBSPEEX_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"speex\""; } >&5 ($PKG_CONFIG --exists --print-errors "speex") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSPEEX_CFLAGS=`$PKG_CONFIG --cflags "speex" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBSPEEX_LIBS"; then pkg_cv_LIBSPEEX_LIBS="$LIBSPEEX_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"speex\""; } >&5 ($PKG_CONFIG --exists --print-errors "speex") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSPEEX_LIBS=`$PKG_CONFIG --libs "speex" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBSPEEX_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "speex" 2>&1` else LIBSPEEX_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "speex" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBSPEEX_PKG_ERRORS" >&5 HAVE_SPEEX=0 , if test $makespeex = "yes" ; then as_fn_error $? "libspeex not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without speex support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without speex support" >&2;} fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_SPEEX=0 , if test $makespeex = "yes" ; then as_fn_error $? "libspeex not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without speex support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without speex support" >&2;} fi else LIBSPEEX_CFLAGS=$pkg_cv_LIBSPEEX_CFLAGS LIBSPEEX_LIBS=$pkg_cv_LIBSPEEX_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_SPEEX 1" >>confdefs.h HAVE_SPEEX=1 fi else HAVE_SPEEX=0 fi # Used only to check the correct version is installed pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PYGTK" >&5 $as_echo_n "checking for PYGTK... " >&6; } if test -n "$PYGTK_CFLAGS"; then pkg_cv_PYGTK_CFLAGS="$PYGTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0 >= 2.6.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "pygtk-2.0 >= 2.6.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0 >= 2.6.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$PYGTK_LIBS"; then pkg_cv_PYGTK_LIBS="$PYGTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0 >= 2.6.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "pygtk-2.0 >= 2.6.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0 >= 2.6.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then PYGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "pygtk-2.0 >= 2.6.0" 2>&1` else PYGTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "pygtk-2.0 >= 2.6.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$PYGTK_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (pygtk-2.0 >= 2.6.0) were not met: $PYGTK_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables PYGTK_CFLAGS and PYGTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables PYGTK_CFLAGS and PYGTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS PYGTK_LIBS=$pkg_cv_PYGTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mutagen" >&5 $as_echo_n "checking for mutagen... " >&6; } ${PYTHON} -c "import mutagen" >/dev/null 2>&1 if test $? -ne 0 ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: runtime dependency (mutagen / python-mutagen) is missing" >&5 $as_echo "$as_me: WARNING: runtime dependency (mutagen / python-mutagen) is missing" >&2;} else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi # Check whether --enable-flac was given. if test "${enable_flac+set}" = set; then : enableval=$enable_flac; makeflac=$enableval else makeflac="maybe" fi if test $makeflac != "no" ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBFLAC" >&5 $as_echo_n "checking for LIBFLAC... " >&6; } if test -n "$LIBFLAC_CFLAGS"; then pkg_cv_LIBFLAC_CFLAGS="$LIBFLAC_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"flac >= 1.1.3\""; } >&5 ($PKG_CONFIG --exists --print-errors "flac >= 1.1.3") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBFLAC_CFLAGS=`$PKG_CONFIG --cflags "flac >= 1.1.3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBFLAC_LIBS"; then pkg_cv_LIBFLAC_LIBS="$LIBFLAC_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"flac >= 1.1.3\""; } >&5 ($PKG_CONFIG --exists --print-errors "flac >= 1.1.3") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBFLAC_LIBS=`$PKG_CONFIG --libs "flac >= 1.1.3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBFLAC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "flac >= 1.1.3" 2>&1` else LIBFLAC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "flac >= 1.1.3" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBFLAC_PKG_ERRORS" >&5 HAVE_FLAC=0 HAVE_OGGFLAC=0 if test $makeflac = "yes" ; then as_fn_error $? "libFLAC not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without flac support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without flac support" >&2;} fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_FLAC=0 HAVE_OGGFLAC=0 if test $makeflac = "yes" ; then as_fn_error $? "libFLAC not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without flac support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without flac support" >&2;} fi else LIBFLAC_CFLAGS=$pkg_cv_LIBFLAC_CFLAGS LIBFLAC_LIBS=$pkg_cv_LIBFLAC_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_FLAC 1" >>confdefs.h HAVE_FLAC=1 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for FLAC__stream_decoder_init_ogg_stream in -lFLAC" >&5 $as_echo_n "checking for FLAC__stream_decoder_init_ogg_stream in -lFLAC... " >&6; } if ${ac_cv_lib_FLAC_FLAC__stream_decoder_init_ogg_stream+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lFLAC $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 FLAC__stream_decoder_init_ogg_stream (); int main () { return FLAC__stream_decoder_init_ogg_stream (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_FLAC_FLAC__stream_decoder_init_ogg_stream=yes else ac_cv_lib_FLAC_FLAC__stream_decoder_init_ogg_stream=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_FLAC_FLAC__stream_decoder_init_ogg_stream" >&5 $as_echo "$ac_cv_lib_FLAC_FLAC__stream_decoder_init_ogg_stream" >&6; } if test "x$ac_cv_lib_FLAC_FLAC__stream_decoder_init_ogg_stream" = xyes; then : HAVE_OGGFLAC=1 $as_echo "#define HAVE_OGGFLAC 1" >>confdefs.h else HAVE_OGGFLAC=0 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: your version of libFLAC lacks oggflac support" >&5 $as_echo "$as_me: WARNING: your version of libFLAC lacks oggflac support" >&2;} fi fi else HAVE_FLAC=0 HAVE_OGGFLAC=0 fi for ac_header in mpg123.h libavutil/channel_layout.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 # Check whether --enable-mpg123 was given. if test "${enable_mpg123+set}" = set; then : enableval=$enable_mpg123; makempg123=$enableval else makempg123="maybe" fi if test $makempg123 != "no" ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MPG123" >&5 $as_echo_n "checking for MPG123... " >&6; } if test -n "$MPG123_CFLAGS"; then pkg_cv_MPG123_CFLAGS="$MPG123_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmpg123\""; } >&5 ($PKG_CONFIG --exists --print-errors "libmpg123") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_MPG123_CFLAGS=`$PKG_CONFIG --cflags "libmpg123" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$MPG123_LIBS"; then pkg_cv_MPG123_LIBS="$MPG123_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmpg123\""; } >&5 ($PKG_CONFIG --exists --print-errors "libmpg123") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_MPG123_LIBS=`$PKG_CONFIG --libs "libmpg123" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then MPG123_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libmpg123" 2>&1` else MPG123_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libmpg123" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$MPG123_PKG_ERRORS" >&5 $as_echo "#define DYN_MPG123 1" >>confdefs.h DYN_MPG123=1 DYNAMIC="1" if test $makempg123 = "yes" ; then as_fn_error $? "libmpg123 not detected but specifically requested in configure options" "$LINENO" 5 fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "#define DYN_MPG123 1" >>confdefs.h DYN_MPG123=1 DYNAMIC="1" if test $makempg123 = "yes" ; then as_fn_error $? "libmpg123 not detected but specifically requested in configure options" "$LINENO" 5 fi else MPG123_CFLAGS=$pkg_cv_MPG123_CFLAGS MPG123_LIBS=$pkg_cv_MPG123_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } MPG123=-lmpg123 DYN_MPG123=0 fi else $as_echo "#define DYN_MPG123 1" >>confdefs.h DYN_MPG123=1 DYNAMIC="1" fi for ac_header in lame/lame.h do : ac_fn_c_check_header_mongrel "$LINENO" "lame/lame.h" "ac_cv_header_lame_lame_h" "$ac_includes_default" if test "x$ac_cv_header_lame_lame_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LAME_LAME_H 1 _ACEOF fi done # Check whether --enable-lame was given. if test "${enable_lame+set}" = set; then : enableval=$enable_lame; makelame=$enableval else makelame="maybe" fi if test $makelame != "no" ; then as_ac_Lib=`$as_echo "ac_cv_lib_mp3lame -lm''_lame_init" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lame_init in -lmp3lame -lm" >&5 $as_echo_n "checking for lame_init in -lmp3lame -lm... " >&6; } if eval \${$as_ac_Lib+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lmp3lame -lm $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 lame_init (); int main () { return lame_init (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$as_ac_Lib=yes" else eval "$as_ac_Lib=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : LIBMP3LAME=-lmp3lame DYN_LAME=0 else $as_echo "#define DYN_LAME 1" >>confdefs.h DYN_LAME=1 DYNAMIC="1" if test $makelame = "yes" ; then as_fn_error $? "libmp3lame not detected but specifically requested in configure options" "$LINENO" 5 fi fi else $as_echo "#define DYN_LAME 1" >>confdefs.h DYN_LAME=1 DYNAMIC="1" fi # Check whether --enable-twolame was given. if test "${enable_twolame+set}" = set; then : enableval=$enable_twolame; maketwolame=$enableval else maketwolame="maybe" fi if test $maketwolame != "no" ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TWOLAME" >&5 $as_echo_n "checking for TWOLAME... " >&6; } if test -n "$TWOLAME_CFLAGS"; then pkg_cv_TWOLAME_CFLAGS="$TWOLAME_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"twolame\""; } >&5 ($PKG_CONFIG --exists --print-errors "twolame") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_TWOLAME_CFLAGS=`$PKG_CONFIG --cflags "twolame" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$TWOLAME_LIBS"; then pkg_cv_TWOLAME_LIBS="$TWOLAME_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"twolame\""; } >&5 ($PKG_CONFIG --exists --print-errors "twolame") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_TWOLAME_LIBS=`$PKG_CONFIG --libs "twolame" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then TWOLAME_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "twolame" 2>&1` else TWOLAME_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "twolame" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$TWOLAME_PKG_ERRORS" >&5 HAVE_TWOLAME=0 , if test $maketwolame = "yes" ; then as_fn_error $? "libtwolame not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without libtwolame mp2 streaming support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without libtwolame mp2 streaming support" >&2;} fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_TWOLAME=0 , if test $maketwolame = "yes" ; then as_fn_error $? "libtwolame not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without libtwolame mp2 streaming support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without libtwolame mp2 streaming support" >&2;} fi else TWOLAME_CFLAGS=$pkg_cv_TWOLAME_CFLAGS TWOLAME_LIBS=$pkg_cv_TWOLAME_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_TWOLAME 1" >>confdefs.h HAVE_TWOLAME=1 fi else HAVE_TWOLAME=0 fi # Check whether --enable-opus was given. if test "${enable_opus+set}" = set; then : enableval=$enable_opus; makeopus=$enableval else makeopus="maybe" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ogg_stream_flush_fill in -logg" >&5 $as_echo_n "checking for ogg_stream_flush_fill in -logg... " >&6; } if ${ac_cv_lib_ogg_ogg_stream_flush_fill+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-logg $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 ogg_stream_flush_fill (); int main () { return ogg_stream_flush_fill (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_ogg_ogg_stream_flush_fill=yes else ac_cv_lib_ogg_ogg_stream_flush_fill=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_ogg_ogg_stream_flush_fill" >&5 $as_echo "$ac_cv_lib_ogg_ogg_stream_flush_fill" >&6; } if test "x$ac_cv_lib_ogg_ogg_stream_flush_fill" = xyes; then : if test $makeopus != "no" ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OPUS" >&5 $as_echo_n "checking for OPUS... " >&6; } if test -n "$OPUS_CFLAGS"; then pkg_cv_OPUS_CFLAGS="$OPUS_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"opus\""; } >&5 ($PKG_CONFIG --exists --print-errors "opus") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_OPUS_CFLAGS=`$PKG_CONFIG --cflags "opus" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$OPUS_LIBS"; then pkg_cv_OPUS_LIBS="$OPUS_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"opus\""; } >&5 ($PKG_CONFIG --exists --print-errors "opus") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_OPUS_LIBS=`$PKG_CONFIG --libs "opus" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then OPUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "opus" 2>&1` else OPUS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "opus" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$OPUS_PKG_ERRORS" >&5 HAVE_OPUS=0 , if test $makeopus = "yes" ; then as_fn_error $? "libopus not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without opus playback or streaming support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without opus playback or streaming support" >&2;} fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } HAVE_OPUS=0 , if test $makeopus = "yes" ; then as_fn_error $? "libopus not detected but specifically requested in configure options" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: IDJC will be built without opus playback or streaming support" >&5 $as_echo "$as_me: WARNING: IDJC will be built without opus playback or streaming support" >&2;} fi else OPUS_CFLAGS=$pkg_cv_OPUS_CFLAGS OPUS_LIBS=$pkg_cv_OPUS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_OPUS 1" >>confdefs.h HAVE_OPUS=1 fi else HAVE_OPUS=0 fi else if test $makeopus = "yes" ; then as_fn_error $? "specifically requested opus support requires newer libogg" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: opus streaming requires newer libogg" >&5 $as_echo "$as_me: WARNING: opus streaming requires newer libogg" >&2;} HAVE_OPUS=0 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5 $as_echo_n "checking for pthread_create in -lpthread... " >&6; } if ${ac_cv_lib_pthread_pthread_create+:} 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_create (); int main () { return pthread_create (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_pthread_pthread_create=yes else ac_cv_lib_pthread_pthread_create=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_create" >&5 $as_echo "$ac_cv_lib_pthread_pthread_create" >&6; } if test "x$ac_cv_lib_pthread_pthread_create" = xyes; then : : else as_fn_error $? "libpthread not detected" "$LINENO" 5 fi # Conditionally include libm. Some standard libraries could have inbuilt math stuff. for ac_func in sqrt pow 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 : else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt, pow in -lm" >&5 $as_echo_n "checking for sqrt, pow in -lm... " >&6; } if ${ac_cv_lib_m_sqrt__pow+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $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 sqrt, pow (); int main () { return sqrt, pow (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_sqrt__pow=yes else ac_cv_lib_m_sqrt__pow=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_m_sqrt__pow" >&5 $as_echo "$ac_cv_lib_m_sqrt__pow" >&6; } if test "x$ac_cv_lib_m_sqrt__pow" = xyes; then : LIBM="-lm" else as_fn_error $? "math library is missing critical function" "$LINENO" 5 fi fi done # Checks for header files. { $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 for ac_header in fcntl.h jack/jack.h jack/transport.h pthread.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 : else as_fn_error $? "Critical header file missing" "$LINENO" 5 fi done # Checks for typedefs, structures, and compiler characteristics. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } if ${ac_cv_c_inline+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_inline=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext test "$ac_cv_c_inline" != no && break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 $as_echo "$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac 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" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi # Checks for library functions. for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 $as_echo_n "checking for GNU libc compatible malloc... " >&6; } if ${ac_cv_func_malloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_malloc_0_nonnull=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else ac_cv_func_malloc_0_nonnull=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: $ac_cv_func_malloc_0_nonnull" >&5 $as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then : $as_echo "#define HAVE_MALLOC 1" >>confdefs.h else $as_echo "#define HAVE_MALLOC 0" >>confdefs.h case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac $as_echo "#define malloc rpl_malloc" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 $as_echo_n "checking return type of signal handlers... " >&6; } if ${ac_cv_type_signal+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { return *(signal (0, 0)) (0) == 1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_type_signal=int else ac_cv_type_signal=void fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 $as_echo "$ac_cv_type_signal" >&6; } cat >>confdefs.h <<_ACEOF #define RETSIGTYPE $ac_cv_type_signal _ACEOF for ac_func in memset strchr 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 : else as_fn_error $? "Critical function missing" "$LINENO" 5 fi done for ac_func in getline strndup canonicalize_file_name 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 : else $as_echo "#define USE_BSD_COMPAT 1" >>confdefs.h fi done # Use png or xpm for graphics EXT=png pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SHOUTIDJC" >&5 $as_echo_n "checking for SHOUTIDJC... " >&6; } if test -n "$SHOUTIDJC_CFLAGS"; then pkg_cv_SHOUTIDJC_CFLAGS="$SHOUTIDJC_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"shout-idjc\""; } >&5 ($PKG_CONFIG --exists --print-errors "shout-idjc") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SHOUTIDJC_CFLAGS=`$PKG_CONFIG --cflags "shout-idjc" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SHOUTIDJC_LIBS"; then pkg_cv_SHOUTIDJC_LIBS="$SHOUTIDJC_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"shout-idjc\""; } >&5 ($PKG_CONFIG --exists --print-errors "shout-idjc") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SHOUTIDJC_LIBS=`$PKG_CONFIG --libs "shout-idjc" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SHOUTIDJC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "shout-idjc" 2>&1` else SHOUTIDJC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "shout-idjc" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SHOUTIDJC_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (shout-idjc) were not met: $SHOUTIDJC_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables SHOUTIDJC_CFLAGS and SHOUTIDJC_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables SHOUTIDJC_CFLAGS and SHOUTIDJC_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else SHOUTIDJC_CFLAGS=$pkg_cv_SHOUTIDJC_CFLAGS SHOUTIDJC_LIBS=$pkg_cv_SHOUTIDJC_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi for ac_header in shoutidjc/shout.h do : ac_fn_c_check_header_mongrel "$LINENO" "shoutidjc/shout.h" "ac_cv_header_shoutidjc_shout_h" "$ac_includes_default" if test "x$ac_cv_header_shoutidjc_shout_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SHOUTIDJC_SHOUT_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shout_set_meta in -lshout-idjc" >&5 $as_echo_n "checking for shout_set_meta in -lshout-idjc... " >&6; } if ${ac_cv_lib_shout_idjc_shout_set_meta+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lshout-idjc $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 shout_set_meta (); int main () { return shout_set_meta (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_shout_idjc_shout_set_meta=yes else ac_cv_lib_shout_idjc_shout_set_meta=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_shout_idjc_shout_set_meta" >&5 $as_echo "$ac_cv_lib_shout_idjc_shout_set_meta" >&6; } if test "x$ac_cv_lib_shout_idjc_shout_set_meta" = xyes; then : : else as_fn_error $? "required function not detected" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shout_set_tls in -lshout-idjc" >&5 $as_echo_n "checking for shout_set_tls in -lshout-idjc... " >&6; } if ${ac_cv_lib_shout_idjc_shout_set_tls+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lshout-idjc $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 shout_set_tls (); int main () { return shout_set_tls (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_shout_idjc_shout_set_tls=yes else ac_cv_lib_shout_idjc_shout_set_tls=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_shout_idjc_shout_set_tls" >&5 $as_echo "$ac_cv_lib_shout_idjc_shout_set_tls" >&6; } if test "x$ac_cv_lib_shout_idjc_shout_set_tls" = xyes; then : HAVE_SHOUT_TLS=1 else HAVE_SHOUT_TLS=0 fi if test x$DYNAMIC = "x1" ; then for ac_func in dlopen do : ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLOPEN 1 _ACEOF : 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 : DYN_LIBS=-ldl else as_fn_error $? "Runtime linking functions not found" "$LINENO" 5 fi fi done DYN_LDFLAGS=-rdynamic fi # Darwin based OS has different file extension for dynamic libs. { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic library file extension" >&5 $as_echo_n "checking dynamic library file extension... " >&6; } case ${host} in *-*-darwin*) ext=".dylib" ;; *) ext=".so" ;; esac DYLIB_EXT=${ext} { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ext}" >&5 $as_echo "${ext}" >&6; } ac_config_files="$ac_config_files Makefile po/Makefile.in c/Makefile python/Makefile python/prelims/Makefile artwork/Makefile man/Makefile man/fr/Makefile doc/Makefile python/__init__.py.in idjc.in idjc.desktop.in idjc.appdata.xml.in" 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= 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 "${GIT_VERSION_CONTROL_TRUE}" && test -z "${GIT_VERSION_CONTROL_FALSE}"; then as_fn_error $? "conditional \"GIT_VERSION_CONTROL\" 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 idjc $as_me 0.8.16, 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="\\ idjc config.status 0.8.16 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_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "c/Makefile") CONFIG_FILES="$CONFIG_FILES c/Makefile" ;; "python/Makefile") CONFIG_FILES="$CONFIG_FILES python/Makefile" ;; "python/prelims/Makefile") CONFIG_FILES="$CONFIG_FILES python/prelims/Makefile" ;; "artwork/Makefile") CONFIG_FILES="$CONFIG_FILES artwork/Makefile" ;; "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;; "man/fr/Makefile") CONFIG_FILES="$CONFIG_FILES man/fr/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "python/__init__.py.in") CONFIG_FILES="$CONFIG_FILES python/__init__.py.in" ;; "idjc.in") CONFIG_FILES="$CONFIG_FILES idjc.in" ;; "idjc.desktop.in") CONFIG_FILES="$CONFIG_FILES idjc.desktop.in" ;; "idjc.appdata.xml.in") CONFIG_FILES="$CONFIG_FILES idjc.appdata.xml.in" ;; *) 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 that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ;; "po-directories":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; 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 idjc-0.8.16/man/0000755000175000017500000000000012711167614010301 500000000000000idjc-0.8.16/man/idjc-noauto.1_0000644000175000017500000000066612630014502012651 00000000000000.TH "IDJC-NOAUTO" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc-noauto - No automatic profile .SH SYNOPSIS .P idjc noauto [-h] .SH DESCRIPTION Removes the automatic profile property after which when starting .B idjc if no profile is chosen on the command line the Profile Manager will appear in order that one be selected manually. .SS Options .B -h, --help .RS Show a help message. .RE .PP .SH REPORTING BUGS .SH SEE ALSO idjc-0.8.16/man/idjc-auto.1_0000644000175000017500000000102212630014502012277 00000000000000.TH "IDJC-AUTO" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc-auto - Make a profile be automatic .SH SYNOPSIS .P idjc auto [-h] profile_name .SH DESCRIPTION When a profile is made automatic the Profile Manager window will not appear at startup and instead the automatic profile will load. Only one profile can be automatic at any one time. .SS Options .B -h, --help .RS Show a help message. .RE .PP .SS Requirements .B "profile_name" .RS The name of a profile to make automatic. .RE .SH REPORTING BUGS .SH SEE ALSO idjc-0.8.16/man/idjc-new.1_0000644000175000017500000000212212630014502012122 00000000000000.TH "IDJC-NEW" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc-new - Create a new profile .SH SYNOPSIS .P idjc new [-h] [-t template_profile] [-i icon_pathname] [-n nickname] [-d description_text] profile_name .SH DESCRIPTION Each running instance of .B idjc requires its own profile and this command will create one. This task can also be achieved using the main application user interface. .SS Options .B -h, --help .RS Show a help message. .RE .PP .BR "-t, --templateprofile" =PROFILE .RS PROFILE=an existing profile to copy. .RE .PP .BR "-i, --icon-pathname" =ICON .RS ICON=the path to an image file e.g. a .png file. .RE .PP .BR "-n, --nickname" =NICKNAME .RS NICKNAME=an alternative name to the profile. Unlike the profile any unicode is permitted. .RE .PP .BR "-d, --description" =DESC .RS DESC=some description text. A label for your profile stating what it will be used for. .RE .PP .SS Requirements .B profile_name .RS The name of the new profile. Limited to the letters and digits of the ASCII character set and '_' underscore. .RE .SH REPORTING BUGS .SH SEE ALSO idjc-0.8.16/man/reporting_bugs.part0000644000175000017500000000047012630014502014126 00000000000000Send your bug reports, feature requests, general comments, patches etc. to .PP You will need to make an account in order to post. .PP Report translation bugs to the appropriate translator whose details can be found in the 'Help/About' section of the .B idjc main menu. idjc-0.8.16/man/Makefile.in0000644000175000017500000006132112711167210012261 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = man ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_noinst_DATA) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = 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 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 am__installdirs = "$(DESTDIR)$(man1dir)" NROFF = nroff MANS = $(nodist_man_MANS) DATA = $(dist_noinst_DATA) 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) am__DIST_COMMON = $(srcdir)/Makefile.in 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@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = fr SOURCES = idjc.1_ idjc-run.1_ idjc-new.1_ idjc-rm.1_ idjc-ls.1_ idjc-auto.1_ idjc-noauto.1_ TARGETS = idjc.1 idjc-run.1 idjc-new.1 idjc-rm.1 idjc-ls.1 idjc-auto.1 idjc-noauto.1 COMMON = reporting_bugs.part see_also.part SUFFIXES = .1_ .1 dist_noinst_DATA = $(SOURCES) $(COMMON) nodist_man_MANS = $(TARGETS) all: all-recursive .SUFFIXES: .SUFFIXES: .1_ .1 $(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) --gnu man/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu man/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-man1: $(nodist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(nodist_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='$(nodist_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) # 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: check-recursive all-am: Makefile $(MANS) $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-man 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-man1 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 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: uninstall-man uninstall-man: uninstall-man1 .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool clean-local \ cscopelist-am ctags ctags-am distclean 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-man1 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 uninstall-man \ uninstall-man1 .PRECIOUS: Makefile $(TARGETS) : $(COMMON) Makefile.am .1_.1: @sed -e 's|VERSION|${PACKAGE_NAME}-${PACKAGE_VERSION}|' \ -e '/.SH REPORTING BUGS/r ./reporting_bugs.part' \ -e '/.SH SEE ALSO/r ./see_also.part' $< | \ awk -v S="$(SOURCES)" -v R=$< \ 'BEGIN{sub(R,"",S);gsub(".1_","",S);split(S,A)} \ $$0=="SEE_ALSO"{printf".BR %s (1), \\ %s (1), \\ %s (1)\n", \ A[++i],A[++i],A[++i]}$$0!="SEE_ALSO"{print}' >$@ clean-local: rm -f $(TARGETS) # 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: idjc-0.8.16/man/idjc-ls.1_0000644000175000017500000000066412630014502011760 00000000000000.TH "IDJC-LS" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc-ls - Display information relating to the profiles .SH SYNOPSIS .P idjc ls [-h] .SH DESCRIPTION .P Using the ls sub-command it's possible to see which profiles are running. The display format is as follows: [auto] [profile] [uptime] [*nickname] [*description]. *=if present. .SS Options .B -h, --help .RS Show a help message. .RE .SH REPORTING BUGS .SH SEE ALSO idjc-0.8.16/man/idjc-run.1_0000644000175000017500000000603712630014502012146 00000000000000.TH "IDJC-RUN" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc-run - Launch the idjc main application .SH SYNOPSIS .P idjc run [-h] [-d {true,false}] [-p profile_choice] [-j server_name] [-S session_details] [--no-jack-connections] [-C] [-c c [c ...]] [-V {off,private,public}] [-P p [p ...]] [-s s [s ...]] [-x {1,2}] .SH DESCRIPTION .SS General options .B -h, --help .RS Show a help message. .RE .PP .BR "-d, --dialog" "={true,false}" .RS Whether to show the profile chooser dialog. .RE .PP .BR "-p, --profile" =PROFILE .RS Which profile to run. Any profile other than default must currently exist. .RE .PP .BR "-j, --jackserver" =SERVER .RS The named jack server to use. .RE .PP .BR "-S, --session" =SESSIONINFO .RS See the session support section below for more details. .RE .PP .B --no-jack-connections .RS A possibly useful option if you are using some kind of session manager. On startup idjc will not attempt to make any connections itself. .RE .PP .B --no-default-jack-connections .RS No JACK ports will be connected except those listed in the session file. Naturally that means if the session file doesn't exist no connections will be made. .RE .PP .SS User interface options .BR "-c, --channels" =CHANNELS .RS Open the specified channels of a space separated list. .RE .PP .BR "-V, --voip" =MODE .RS Select the specified VoIP mode. .RE .PP .BR "-P, --players" =PLAYERS .RS Start the specified players of a space separated list. Valid options are numeric. .RE .PP .BR "-s, --servers" =SERVERS .RS Start the specified servers of a space separated list. Valid options are numeric. .RE .PP .BR "-x, --crossfader" ={1,2} .RS Position the crossfader. .RE .PP .SH ENVIRONMENT If the .I ~/.jackdrc file is not present unless otherwise configured with a tool like .I ladiconf or .I QjackCtl .B idjc will start but will be configured with a sample rate of 48000 which is suboptimal for streaming CD audio. It is recommended to create such a file by this method within a console or use the aforementioned tools which may require installation. .PP .B $ echo "/usr/bin/jackd \-d alsa \-r 44100 \-p 2048" > ~/.jackdrc .PP If you prefer to start the JACK sound server manually you can do so like this. .PP .BR $ " jackd \-d alsa \-r 44100 \-p 2048" .PP .RB Refer\ to\ jackd (1)\ for\ further\ details. .PP .B idjc has native language support and takes account of the .I LANG and .I LANGUAGE environment variables. .SH SESSION SUPPORT .B idjc supports Ladish [L0] and [L1] session modes. On the command line you could specify --session=L1, --session=L1:session-name, or --session=L1:session-name:/path/to/savedir. If a save path is supplied IDJC operates in session rather than profile mode. The default mode is L0:default which does periodic saving and also saves at exit. You may specify an alternate name or a session pathname for L0 mode also. .PP When using L1 mode in Gladish if you choose "Studio/Save Studio" or "Project/Save Project" from the main menu .B idjc will save the JACK connection configuration in the session file. .SH REPORTING BUGS .SH SEE ALSO idjc-0.8.16/man/idjc.1_0000644000175000017500000000266412630014502011346 00000000000000.TH "IDJC" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc - Be a dj on the internet .SH SYNOPSIS idjc [-h] [-v] {run,new,rm,auto,noauto,ls} .SH DESCRIPTION .B idjc is a powerful yet easy to use application for individuals interested in streaming live radio shows over the Internet via Shoutcast or Icecast servers or for making podcasts. Features include two main media players with a crossfader, a jingles player, microphone signal processing (limiter, noise gate, etc.), IRC announcements, automatic stream start/stop and reconnection, simultaneous mp3 and Ogg streaming, up to 12 mono or 6 stereo audio input channels, a DSP interface, a VoIP integration feature, MIDI control surface support, audio level meters. It uses GTK+ for the user interface and JACK Audio Connection Kit to facilitate the inclusion of third-party audio applications that also support JACK within the audio chain. .SS Options .B -h, --help .RS Show a help message. .RE .PP .B -v, --version .RS Print the version number and exit. .RE .SS .BR Sub-commands " (each has its own man page)" .B run .RS Run the main idjc application. (This is the default option) .RE .PP .B new .RS Make a new profile. .RE .PP .B rm .RS Remove an existing profile or profiles. .RE .PP .B auto .RS Select which profile is to automatically launch. .RE .PP .B noauto .RS Remove auto-launch. .RE .PP .B ls .RS List the available profiles. Also show uptimes. .RE .SH REPORTING BUGS .SH SEE ALSO idjc-0.8.16/man/fr/0000755000175000017500000000000012711167614010710 500000000000000idjc-0.8.16/man/fr/idjc-noauto.1_0000644000175000017500000000072712630014502013256 00000000000000.TH "IDJC-NOAUTO" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NOM idjc-noauto \- Pas de profile automatique .SH SYNOPSIS .P idjc noauto [\-h] .SH DESCRIPTION Supprime le profile automatique lors du démarrage de .B idjc si aucun profile n'est choisi sur la ligne de commande, le Gestionnaire de Profiles apparaitra de façon à en choisir un manuellement. .SS Options .B \-h, \-\-help .RS Affiche un message d'aide .RE .PP .SH RAPPORTER DES BOGUES .SH VOIR AUSSI idjc-0.8.16/man/fr/idjc-auto.1_0000644000175000017500000000112512630014502012712 00000000000000.TH "IDJC-AUTO" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc\-auto \- Rendre un profile automatique .SH SYNOPSIS .P idjc auto [\-h] nom_de_profile .SH DESCRIPTION Lorsqu'un profile est rendu automatique, la fenêtre du Gestionnaire de Profiles n'apparait pas au démarrage, au lieu de ça, le profile est chargé. Un seul et unique profile peut être défini comme étant automatique. .SS Options .B \-h, \-\-help .RS Affiche un message d'aide. .RE .PP .SS Obligatoire .B nom_de_profile_name .RS Le nom du profile à rendre automatique. .RE .SH RAPPORTER DES BOGUES .SH VOIR AUSSI idjc-0.8.16/man/fr/idjc-new.1_0000644000175000017500000000225712630014502012542 00000000000000.TH "IDJC-NEW" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NOM idjc\-new \- Create a new profile .SH SYNOPSIS .P idjc new [\-h] [\-t profile_exemple] [\-i chemin_icone] [\-n pseudo] [\-d description] nom_de_profile .SH DESCRIPTION Chaque instance de .B idjc nécessite son propre profile et cette commande va en créer un. Cette tâche peut aussi être exécutée depuis l'interface utilisateur du programme principale. .SS Options .B \-h, \-\-help .RS Affiche un message d'aide. .RE .PP .BR "\-t, \-\-templateprofile" =PROFILE .RS PROFILE=un profile existant à dupliquer. .RE .PP .BR "\-i, \-\-icon\-pathname" =ICONE .RS ICON=le chemin vers un fichier image ex. : un fichier .png .RE .PP .BR "\-n, \-\-nickname" =PSEUDO .RS PSEUDO=un nom alternatif pour le profile. Contrairement au profile, n'importe quel caractère unicode est autorisé. .RE .PP .BR "\-d, \-\-description" =DESC .RS DESC=un texte de description. Un texte pour décrivant votre profile, ce à quoi il est destiné. .RE .PP .SS Obligatoire .B nom_de_profile .RS Le nom du nouveau profile. Limité aux lettres et chiffres du jeu ASCII et «_» le sous-ligné. .RE .SH RAPPORTER DES BOGUESS .SH VOIR AUSSI idjc-0.8.16/man/fr/reporting_bugs.part0000644000175000017500000000060712630014502014537 00000000000000Envoyez vos rapports de bogues, demandes de fonctionalités, commentaires généraux, patches etc. sur : .RS .RE .PP Vous devrez avoir un compte pour pouvoir poster. .PP Rapportez les bogues de traductions au traducteur approprié dont les coordonnées se trouvent dans la section «Aide/Au sujet de» du menu principal de .B idjc menu principal. idjc-0.8.16/man/fr/Makefile.in0000644000175000017500000005075212711167210012676 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = man/fr ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_noinst_DATA) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = 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__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 am__installdirs = "$(DESTDIR)$(man1dir)" NROFF = nroff MANS = $(nodist_man_MANS) DATA = $(dist_noinst_DATA) 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 am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SOURCES = idjc.1_ idjc-run.1_ idjc-new.1_ idjc-rm.1_ idjc-ls.1_ idjc-auto.1_ idjc-noauto.1_ TARGETS = idjc.1 idjc-run.1 idjc-new.1 idjc-rm.1 idjc-ls.1 idjc-auto.1 idjc-noauto.1 COMMON = reporting_bugs.part see_also.part SUFFIXES = .1_ .1 dist_noinst_DATA = $(SOURCES) $(COMMON) nodist_man_MANS = $(TARGETS) all: all-am .SUFFIXES: .SUFFIXES: .1_ .1 $(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) --gnu man/fr/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu man/fr/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-man1: $(nodist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(nodist_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='$(nodist_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: check-am all-am: Makefile $(MANS) $(DATA) installdirs: for dir in "$(DESTDIR)$(man1dir)"; 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 clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am 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-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: 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-man uninstall-man: uninstall-man1 .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-local cscopelist-am ctags ctags-am \ distclean 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-man1 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 tags-am uninstall uninstall-am uninstall-man \ uninstall-man1 .PRECIOUS: Makefile $(TARGETS) : $(COMMON) Makefile.am .1_.1: @sed -e 's|VERSION|${PACKAGE_NAME}-${PACKAGE_VERSION}|' \ -e '/.SH RAPPORTER DES BOGUES/r ./reporting_bugs.part' \ -e '/.SH VOIR AUSSI/r ./see_also.part' $< | \ awk -v S="$(SOURCES)" -v R=$< \ 'BEGIN{sub(R,"",S);gsub(".1_","",S);split(S,A)} \ $$0=="SEE_ALSO"{printf".BR %s (1), \\ %s (1), \\ %s (1)\n", \ A[++i],A[++i],A[++i]}$$0!="SEE_ALSO"{print}' >$@ clean-local: rm -f $(TARGETS) # 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: idjc-0.8.16/man/fr/idjc-ls.1_0000644000175000017500000000075312630014502012366 00000000000000.TH "IDJC-LS" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NOM idjc\-ls \- Affiche les informations relatives aux profiles .SH SYNOPSIS .P idjc ls [\-h] .SH DESCRIPTION .P En utilisant la sous\-commande ls il est possible de voir quels profiles sont en cours d'exécution. Le format d'affichage est le suivant : [auto] [profile] [uptime] [*nickname] [*description]. *=si présent. .SS Options .B \-h, \-\-help .RS Affiche un message d'aide. .RE .SH RAPPORTER DES BOGUES .SH VOIR AUSSI idjc-0.8.16/man/fr/idjc-run.1_0000644000175000017500000000706112630014502012553 00000000000000.TH "IDJC-RUN" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NOM idjc\-run \- Lance l'application principale de .B idjc .SH SYNOPSIS .P idjc run [\-h] [\-d {true,false}] [\-p profile_choisi] [\-j nom_de_serveur] [\-S detaild_de_session] [\-\-no\-jack\-connections] [\-C] [\-c c [c …]] [\-V {off,private,public}] [\-P p [p …]] [\-s s [s …]] [\-x {1,2}] .SH DESCRIPTION .SS Options generales .B \-h, \-\-help .RS Affiche un message d'aide .RE .PP .BR "\-d, \-\-dialog" "={true,false}" .RS S'il faut ou non afficher le dialogue de sélection de profile. .RE .PP .BR "\-p, \-\-profile" =PROFILE .RS Quel profile à exécuter. Tout autre que celui par défaut doit déjà exister. .RE .PP .BR "\-j, \-\-jackserver" =SERVER .RS Le nom du serveur JACK à utiliser. .RE .PP .BR "\-S, \-\-session" =SESSIONINFO .RS Voir la section support de session ci\-dessous pour plus de détails. .RE .PP .B \-\-no\-jack\-connections .RS Une option potentiellement utile si vous utilisez un quelconque gestionnaire de sessions. Au démarrage, .B idjc ne tentera pas de gérer lui même ses connexions. .RE .PP .B \-\-no\-default\-jack\-connections .RS Aucun port JACK autre que ceux spécifiés dans la session ne sera connecté. Bien entendu, cela implique que, si la session spécifiée n'existe pas, aucune connection ne sera effectuée. .RE .PP .SS Options de l'interface utilisateur .BR "\-c, \-\-channels" =CHANNELS .RS Ouvre les canaux spécifiés (liste séparée par des espaces). .RE .PP .BR "\-V, \-\-voip" =MODE .RS Sélectionne le mode VoIP spécifié. .RE .PP .BR "\-P, \-\-players" =PLAYERS .RS Démarre les lecteurs spécifiés (liste séparée par des espaces). Les options correctes sont numériques. .RE .PP .BR "\-s, \-\-servers" =SERVERS .RS Démarre les serveurs spécifiés (liste séparée par des espaces). Les options correctes sont numériques. .RE .PP .BR "\-x, \-\-crossfader" ={1,2} .RS Positionne le crossfader. .RE .PP .SH ENVIRONMENT Si le fichier .I ~/.jackdrc n'existe pas, à moins qu'il n'ait été configuré autrement grâce à un outil tel que .I ladiconf ou .I QjackCtl , .B idjc démarrera mais sera configuré avec une vitesse d'échantillonnage de 48000 ce qui est trop pour streamer des CD audio. Il est recommendé de créer ce fichier avec la méthode suivante, en mode console ou en utilisant les outils sus\-nommés qui peuvent nécessiter une installation spécifique : .PP .B $ echo "/usr/bin/jackd \-d alsa \-r 44100 \-p 2048" > ~/.jackdrc .PP Si vous préférez lancer le serveur audio JACK manuellement, vous pouvez le faire de cette manière : .PP .BR $ " jackd \-d alsa \-r 44100 \-p 2048" .PP .RB Référez\-vous\ à\ jackd (1)\ pour\ plus\ de\ détails. .PP .B idjc possède un support des langues en natif et tient compte des variables d'environnement .I LANG et .I LANGUAGE .SH SUPPORT DE SESSIONS .B idjc supporte les modes de sessions Ladish [L0] et [L1]. A la demande en ligne de commande vous pouvez spécifier \-\-session=L1, \-\-session=L1:session\-name, ou \-\-session=L1:session\-name:/path/to/savedir. Si un path de sauvegarde est fournis, IDJC opère en mode session plutôt qu'en mode profile. Le mode par défaut est L0:default qui effectue des sauvegardes périodiques et à la fermeture. Il est aussi possible de spécifier un nom ou un chemin alternatif pour le mode L0. .PP Lorsque vous utilisez le mode L1 dans Gladish si vous choisissez «Studio/Sauvegarder» ou «Project/Sauvegarder» dans le menu principal .B idjc sauvegardera la configuration des connexions JACK dans le fichier de session. .SH RAPPORTER DES BOGUES .SH VOIR AUSSI idjc-0.8.16/man/fr/idjc.1_0000644000175000017500000000317412630014502011752 00000000000000.TH "IDJC" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NOM idjc \- Devenez dj sur internet .SH SYNOPSIS idjc [\-h] [\-v] {run,new,rm,auto,noauto,ls} .SH DESCRIPTION .B idjc est application une puissante et simple pour les personnes intéressées par le streaming de radio en direct sur Internet utilisant des serveurs Shoutcast et Icecast ou par la création de podcasts. Les fonctionalités incluent deux lecteurs média principaux avec crossfader, un lecteur de jingles, un traitement de signal microphone (limiteur, noise gate, etc.), des anonces IRC, le démarrage/arret automatique du flux et la reconnection, le streaming simultané en mp3 et Ogg, jusqu'à 12 canaux d'entrées mono ou 6 stéréo, une interface DSP, l'intégration de la VoIP, le support du contrôle par surfaces MIDI et des vumètres de niveaux audio. Il utilise GTK+ pour son interface et JACK Audio Connection Kit pour faciliter l'inclusion d'applications tierces supportant JACK dans leur chaine audio. .SS Options .B \-h, \-\-help .RS Affiche un message d'aide .RE .PP .B \-v, \-\-version .RS Affiche le numéro de version et quite. .RE .SS .BR Sous\-commandes " (chacune possède sa propre page de manuel)" .B run .RS Exécute l'application principale .B idjc . (C'est l'option par défaut) .RE .PP .B new .RS Créé un nouveau profile. .RE .PP .B rm .RS Supprime un ou des profiles. .RE .PP .B auto .RS Sélectionne automatiquement quel profile sera lancé. .RE .PP .B noauto .RS Supprime le commutateur lancement\-automatique. .RE .PP .B ls .RS Liste les profiles disponibles. Affiche également les temps de fonctionnement. .RE .SH RAPPORTER DES BOGUES .SH VOIR AUSSI idjc-0.8.16/man/fr/see_also.part0000644000175000017500000000011712630014502013274 00000000000000 .I .PP SEE_ALSO .PP SEE_ALSO .PP .BR jackd (1) idjc-0.8.16/man/fr/Makefile.am0000644000175000017500000000141612630014502012651 00000000000000SOURCES = idjc.1_ idjc-run.1_ idjc-new.1_ idjc-rm.1_ idjc-ls.1_ idjc-auto.1_ idjc-noauto.1_ TARGETS = idjc.1 idjc-run.1 idjc-new.1 idjc-rm.1 idjc-ls.1 idjc-auto.1 idjc-noauto.1 COMMON = reporting_bugs.part see_also.part SUFFIXES = .1_ .1 dist_noinst_DATA = $(SOURCES) $(COMMON) nodist_man_MANS = $(TARGETS) $(TARGETS) : $(COMMON) Makefile.am .1_.1: @sed -e 's|VERSION|${PACKAGE_NAME}-${PACKAGE_VERSION}|' \ -e '/.SH RAPPORTER DES BOGUES/r ./reporting_bugs.part' \ -e '/.SH VOIR AUSSI/r ./see_also.part' $< | \ awk -v S="$(SOURCES)" -v R=$< \ 'BEGIN{sub(R,"",S);gsub(".1_","",S);split(S,A)} \ $$0=="SEE_ALSO"{printf".BR %s (1), \\ %s (1), \\ %s (1)\n", \ A[++i],A[++i],A[++i]}$$0!="SEE_ALSO"{print}' >$@ clean-local: rm -f $(TARGETS) idjc-0.8.16/man/fr/idjc-rm.1_0000644000175000017500000000076112630014502012365 00000000000000.TH "IDJC-RM" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NOM idjc\-rm \- Supprimer des profiles .SH SYNOPSIS .P idjc rm [\-h] nom_de_profile [nom_de_profile…] .SH DESCRIPTION Supprime un ou des profiles .B idjc du dossier de configuration correspondant .SS Options .B \-h, \-\-help .RS Affiche un message d'aide .RE .PP .SS Obligatoire .B nom_de_profile .RS Le nom du profile à supprimer. Des profiles additionnels peuvent être spécifiés. .RE .SH RAPPORTER DES BOGUES .SH VOIR AUSSI idjc-0.8.16/man/see_also.part0000644000175000017500000000011712630014502012665 00000000000000 .I .PP SEE_ALSO .PP SEE_ALSO .PP .BR jackd (1) idjc-0.8.16/man/Makefile.am0000644000175000017500000000142412630014502012241 00000000000000SUBDIRS = fr SOURCES = idjc.1_ idjc-run.1_ idjc-new.1_ idjc-rm.1_ idjc-ls.1_ idjc-auto.1_ idjc-noauto.1_ TARGETS = idjc.1 idjc-run.1 idjc-new.1 idjc-rm.1 idjc-ls.1 idjc-auto.1 idjc-noauto.1 COMMON = reporting_bugs.part see_also.part SUFFIXES = .1_ .1 dist_noinst_DATA = $(SOURCES) $(COMMON) nodist_man_MANS = $(TARGETS) $(TARGETS) : $(COMMON) Makefile.am .1_.1: @sed -e 's|VERSION|${PACKAGE_NAME}-${PACKAGE_VERSION}|' \ -e '/.SH REPORTING BUGS/r ./reporting_bugs.part' \ -e '/.SH SEE ALSO/r ./see_also.part' $< | \ awk -v S="$(SOURCES)" -v R=$< \ 'BEGIN{sub(R,"",S);gsub(".1_","",S);split(S,A)} \ $$0=="SEE_ALSO"{printf".BR %s (1), \\ %s (1), \\ %s (1)\n", \ A[++i],A[++i],A[++i]}$$0!="SEE_ALSO"{print}' >$@ clean-local: rm -f $(TARGETS) idjc-0.8.16/man/idjc-rm.1_0000644000175000017500000000070612630014502011755 00000000000000.TH "IDJC-RM" 1 "2012-02-06" "VERSION" "Internet DJ Console" .SH NAME idjc-rm - Remove a profile .SH SYNOPSIS .P idjc rm [-h] profile_name [profile_name ...] .SH DESCRIPTION Removes an .B idjc profile or profiles from the relevant config directory. .SS Options .B -h, --help .RS Show a help message. .RE .PP .SS Requirements .B "profile_name" .RS The name of a profile to remove. Additional profiles can be specified. .RE .SH REPORTING BUGS .SH SEE ALSO idjc-0.8.16/aclocal.m40000644000175000017500000017012112711167207011306 00000000000000# generated automatically by aclocal 1.15 -*- Autoconf -*- # Copyright (C) 1996-2014 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'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # 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. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # PKG_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable pkgconfigdir as the location where a module # should install pkg-config .pc files. By default the directory is # $libdir/pkgconfig, but the default can be changed by passing # DIRECTORY. The user can override through the --with-pkgconfigdir # parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_INSTALLDIR # PKG_NOARCH_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable noarch_pkgconfigdir as the location where a # module should install arch-independent pkg-config .pc files. By # default the directory is $datadir/pkgconfig, but the default can be # changed by passing DIRECTORY. The user can override through the # --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_NOARCH_INSTALLDIR # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # ------------------------------------------- # Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])# PKG_CHECK_VAR # Copyright (C) 2002-2014 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.15' 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.15], [], [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.15])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2014 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-2014 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-2014 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-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2014 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-2014 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-2014 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 ]) # Copyright (C) 2003-2014 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_MKDIR_P # --------------- # Check for 'mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl FIXME we are no longer going to remove this! adjust warning dnl FIXME message accordingly. AC_DIAGNOSE([obsolete], [$0: this macro is deprecated, and will soon be removed. You should use the Autoconf-provided 'AC][_PROG_MKDIR_P' macro instead, and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.]) dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # -*- Autoconf -*- # Obsolete and "removed" macros, that must however still report explicit # error messages when used, to smooth transition. # # Copyright (C) 1996-2014 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. AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should use the 'AC][_CONFIG_HEADERS' macro instead.])dnl AC_CONFIG_HEADERS($@)]) AC_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should simply use the 'AC][_PROG_CC' macro instead. Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', but upon 'ac_cv_prog_cc_stdc'.])]) AC_DEFUN([AM_C_PROTOTYPES], [AC_FATAL([automatic de-ANSI-fication support has been removed])]) AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2014 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-2014 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) 1999-2014 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_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # --------------------------------------------------------------------------- # Adds support for distributing Python modules and packages. To # install modules, copy them to $(pythondir), using the python_PYTHON # automake variable. To install a package with the same name as the # automake package, install to $(pkgpythondir), or use the # pkgpython_PYTHON automake variable. # # The variables $(pyexecdir) and $(pkgpyexecdir) are provided as # locations to install python extension modules (shared libraries). # Another macro is required to find the appropriate flags to compile # extension modules. # # If your package is configured with a different prefix to python, # users will have to add the install directory to the PYTHONPATH # environment variable, or create a .pth file (see the python # documentation for details). # # If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will # cause an error if the version of python installed on the system # doesn't meet the requirement. MINIMUM-VERSION should consist of # numbers and dots only. AC_DEFUN([AM_PATH_PYTHON], [ dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) m4_if([$1],[],[ dnl No version check is needed. # Find any Python interpreter. if test -z "$PYTHON"; then AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) fi am_display_PYTHON=python ], [ dnl A version check is needed. if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. AC_MSG_CHECKING([whether $PYTHON version is >= $1]) AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]) AC_MSG_ERROR([Python interpreter is too old])]) am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. AC_CACHE_CHECK([for a Python interpreter with version >= $1], [am_cv_pathless_PYTHON],[ for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do test "$am_cv_pathless_PYTHON" = none && break AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) done]) # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) fi am_display_PYTHON=$am_cv_pathless_PYTHON fi ]) if test "$PYTHON" = :; then dnl Run any user-specified action, or abort. m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) else dnl Query Python for its version number. Getting [:3] seems to be dnl the best way to do this; it's what "site.py" does in the standard dnl library. AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) dnl Use the values of $prefix and $exec_prefix for the corresponding dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made dnl distinct variables so they can be overridden if need be. However, dnl general consensus is that you shouldn't need this ability. AC_SUBST([PYTHON_PREFIX], ['${prefix}']) AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) dnl At times (like when building shared libraries) you may want dnl to know which OS platform Python thinks this is. AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) # Just factor out some code duplication. am_python_setup_sysconfig="\ import sys # Prefer sysconfig over distutils.sysconfig, for better compatibility # with python 3.x. See automake bug#10227. try: import sysconfig except ImportError: can_use_sysconfig = 0 else: can_use_sysconfig = 1 # Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: # try: from platform import python_implementation if python_implementation() == 'CPython' and sys.version[[:3]] == '2.7': can_use_sysconfig = 0 except ImportError: pass" dnl Set up 4 directories: dnl pythondir -- where to install python scripts. This is the dnl site-packages directory, not the python standard library dnl directory like in previous automake betas. This behavior dnl is more consistent with lispdir.m4 for example. dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON script directory], [am_cv_python_pythondir], [if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pythondir], [$am_cv_python_pythondir]) dnl pkgpythondir -- $PACKAGE directory under pythondir. Was dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is dnl more consistent with the rest of automake. AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) dnl pyexecdir -- directory for installing python extension modules dnl (shared libraries) dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], [am_cv_python_pyexecdir], [if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) dnl Run any user-specified action. $2 fi ]) # AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) # --------------------------------------------------------------------------- # Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. # Run ACTION-IF-FALSE otherwise. # This test uses sys.hexversion instead of the string equivalent (first # word of sys.version), in order to cope with versions such as 2.2c1. # This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] sys.exit(sys.hexversion < minverhex)" AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) # Copyright (C) 2001-2014 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-2014 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-2014 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-2014 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-2014 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-2014 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/gettext.m4]) m4_include([m4/iconv.m4]) m4_include([m4/intlmacosx.m4]) m4_include([m4/lib-ld.m4]) m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/libtool.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) m4_include([m4/nls.m4]) m4_include([m4/po.m4]) m4_include([m4/progtest.m4]) idjc-0.8.16/AUTHORS0000644000175000017500000000042412630014502010501 00000000000000Written by Stephen Fairchild (s-fairchild@users.sourceforge.net) Metadata source patch: Dario Abatianni (eisfuchs@users.sourceforge.net) Microphone audio processing code by: Stefan Fendt (stefan@sfendt.de) Programmable key and midi bindings by And Clover (and@doxdesk.com) idjc-0.8.16/COPYING0000644000175000017500000004325512630014502010475 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, 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 Lesser 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 Street, 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 Lesser General Public License instead of this License. idjc-0.8.16/ChangeLog0000644000175000017500000020536212711166176011232 00000000000000* Changes in version 0.8.16 * VoIP documentation update for Skype IDJC integration. Copyright year bump. Clicking play while playing results in the playlist window scrolling to show the current track. Changed AAC+ support to use libfdk via ffmpeg rather than libaacplus (upstream support is scheduled for removal) Added a button to permit the user to suspend the adding of tracks. It appears 4 seconds into the process. Enabled drag and drop for multiple folders of audio. Fixed Random Hop traceback triggered by an empty opposite playlist. Added Spanish translation with credit to: Blank Frank Fixed translation regression in Playlist Mode. Added WebM streaming and recording. Fix for listener stats. Added TLS server login support. Libshout fork (libshout-idjc) upgraded to upstream version 2.4.1 Fixed LAME tag ReplayGain metadata collection for newer versions of Mutagen. Updated avcodec encoder and decoder to silence deprecation warnings. Fixed the return value check of call to av_samples_alloc. Playlist block size and finish time now also appears when using the cue up and manual playlist modes. Fix for playlist modes 'Fade Over' and 'Random Hop' so that they work with fade settings other than 'None' * Changes in version 0.8.15 * Documentation update for VoIP. Support for more signals by the IDJCMonitor class. Support for latest version of python-irc. Added full support for ITU-R BS.1770 / EBU R128 tags. Fixed saving of announcement text in .xspf playlists. The announcement text now appears in the playlist allowing the DJ to pre-read the announcements. Updated copyright year to 2015 Internationalisation mostly of format.py which was missing from POTFILES. Git commit hash and build date appears in the 'About' page. Improved song database connectivity. Fixes and enhancements to last DJ played. Patch: B Millham. Added wrappers to all glib timeout_add, idle_add, and source_remove calls. Documentation update. French language translation update. Song title database credentials now exportable with DBus. 'Last Played' column added to song title database viewer. This includes a scalable cooldown bar. Fix for IRC metadata so that Stream Info metadata updates are tied to stream connection, not song title changes. IDJC now reports server connect/disconnect to IRC in a formalised manner and in messages %U can be used for the source URI. Added an AppData file. Added support for generating m3u8 playlist files and added support for file URI's in m3u files. Fixed metadata to icecast servers now sent with latin1 encoding when streaming mpeg formats. User can now select latin1 encoding for fixed metadata to shoutcast servers. Fix for stream metadata character encoding: applied to extant metadata also. Can now read ReplayGain info from ID3 TXXX tags. Has priority over RVAD/RVA2 tags. Build system now handles problem with a too old libogg breaking Opus support. Can now obtain listener stats from Shoutcast 2 servers. Applied patches for libav 9 and 10 build and build warnings, courtesy: Sebastian Ramacher Build fix for older ffmpeg dependency. * Changes in version 0.8.14 * Fix for playlist controls having an overly dark background. Improved reliability for 'Fade Over' playlist mode and 'Crossfade' playlist control when using the silence killer. Song title database browse mode setting is now saved/restored. Added Ampache music catalogs support. Fine tuned the suppression of key bindings when using the database "Search" tab. Fixed regression of save/restore database column widths. Enabled drag and drop to effects from music database and file managers. Added an optional fade feature for timer disconnected streams. Fixed a bug where stream timer could trigger a disconnection and disconnection dialog when not connected. The timed server connection Begin/End time format is now hh:mm[:ss]. Fix for Prokyon 3 database access. Song title database browse window now populates much more quickly. Song title database browse window has new alphabetic top level e.g. all artists beginning with S under S. (patch: bmillham) * Changes in version 0.8.13 * IRC support now comes from python-irc. Improved metadata expiry. Metadata is expired on mid cross on both players when metadata source = crossfader. Fixed regression in stream auto reconnection dialog. Fix for PyGTK SpinButton value not being set or displayed. IRC using manual server connect mode no longer periodically disconnects from the IRC server. Fix for a bug that affected the use of password protected IRC channels. Added a binding for the playlist advance button. Code cleanup. Removed possibly problematic gtk main_iteration() calls. Added support for SSL-hobbled python-irclib. Added individual track album name support for cue sheets with REM ALBUM tag. Fixed regression in supported media formats. Was showing libav only formats when built with --disable-libav. Fixed build with ./configure --disable-libav. In cue sheet mode chapter metadata is now ignored. * Changes in version 0.8.12 * Fix for plural forms in translation files. * Changes in version 0.8.11 * Example code idjcmon.py from the docs now uses the idjcmonitor module. IDJC monitoring class originally from docs is now importable as idjcmonitor. Python package installs to ${pkglibdir}/site-packages. Added detection of dynamic lib file extension by host. Backend installs to ${pkglibdir} DSP button now hidden in 'Basic Streamer' mode. Added new 'flush' player mode to ensure every last bit of audio data from a track plays. Re-added libav compatibility for 1 or 2 channel audio only. Improved memory leak situation of avcodecdecode.c. * Changes in version 0.8.10 * Fix for dynamic metadata bug in the background tracks player. Added french translation and man page. Added D-Bus binding for setting metadata. Added documentation of JACK ports. Fix for effects filechooser location box text. Increased player buffer run-out warning to 0.3 seconds. Fixes gapless playback. Microphones in DJ audio are now panned. Added VoIP panning facility. Added pan presets for quick pan setting changes. Includes key/midi/dbus bindings. Updated to fix audio decoding with ffmpeg version 1.2 libav... libraries. New dependency libswresample from ffmpeg. * Changes in version 0.8.9 * Fixes for deprecation warnings in build system. Fixed potentially corrupt loader shebang bug at the expense of versioning hardness. Added extra dbus functions to replace old idjcctrl functionality. Player speed pitch controls now display their speed value. The button bar and background player can now be hidden. Added new volume control for the VoIP level. Added ability to change the recorder filename. Added patch for playing effects to be listed on the effects tab when effects tab is not the one active. Jingles tab renamed to effects tab. Fixed binding for channel pan and added binding for channel level. Added speed/pitch controls to the background tracks player. Added binding to the VoIP mixback level. Added VoIP level control with binding. Added a command line server kick option and improved automatic connection. Effects players now have a progress meter. (patch: bmillham) Reduced border sizes in the main application window. Fixes for directory choosers in the stream recorders and the "external playlist" playlist mode. Each effects bank now has its own dedicated JACK output port. Copying profiles now copies the port connections. Playlist mode list in background tracks no longer shows unusable modes. This saves screen space. Player mixer frame removed to save screen space. Players now have renameable labels. Fix for background tracks finish time not updating when not playing. The player bindings now work for the background tracks volume control. Added level controls for each bank of 12 effect buttons. Key bindings updated. The DJ audio level control is now at the top of the Prefs->General page. The DJ alarm now has a dedicated JACK port and level control. Added support for R128_TRACK_GAIN tags. Added Ogg/Opus streaming and recording support. Added Ogg/Opus playback support. Fixed mp3 seek accuracy bug. Added cuesheet (.cue .txt) playback support. Multi-file cuesheets are treated as regular playlists. Fix to pause feature when decoding audio using libavcodec. IRC now supports manual connection starting as an option for when connecting at startup is undesirable. Added optional song database tree heirarchy album - [disk number] - track. Improved metadata cancellation for stopped players. Fixed bug where repeated playing of the same song would only register in the Tracks Played as a single play. Fixed bug where live metadata would not include the album metadata resulting in double counting of tracks in the tracks played window from standard unchained ogg files. Rewrote p3db.py as songdb.py to fix a problem with connection timeouts and UI freeze during large database fetch operations. Fixed bug where keyboard bindings would trigger when typing in the database filter boxes. Merged in patch from Brian Millham adding Ampache music database support. Credit given. Fixed bug triggered by playing ogg or mp3 files with chapter info with the effects player. Mic preferences settings are restored to the backend when the backend is restored. Pthreads now sleep when unused. Fixed regression on recorder pause button. Effects now have a repeat button. Multiple effects can now play at once. Background Tracks player can now be used as a main player for those that prefer to stay in the Jingles tab. * Changes in version 0.8.8 * Added a python module for monitoring IDJC (metadata and streams) to the HTML documentation. The bootstrapping script env-up renamed to bootstrap. New JACK freewheel mode front panel trigger button and matching preferences option to show this. Recorder now compatible with JACK freewheel mode. Fix to mp3 encoder which was dereferencing recently freed memory. New jingles player. Renamed as Effects. Player level smoothing and muting code moved from mixer.c into xlplayer.c. Intra player mixing code moved into xlplayer.c. Added a new interlude player which is nearly the equal of the main players. Renamed as Background Tracks. Removed the 'Fastest' player resample option from the preferences due to its inferiority. The remaining items renamed in accordance with the stream encoder names for the same modes. Fix to unhandled exceptions and bad behaviour in IRC code relating to the adding or removal of IRC servers during streaming. Replaced libmad mp3 decoder with mpg123. Added AAC and AAC Plus V2 streaming and recording support. Run-time linking to libmad removed. This is a forced dependency now. New dependency twolame adds official mp2 support for streaming, recording, playback, tagging. Added a brand new encoder format selection user interface which eliminates the possiblity of the user to select bad encoder setting combinations. It also looks much better. Decoder module avcodecdecode.c now requests audio in float format from libavcodec with theoretically better audio quality. Fixed deprecation warnings from avcodecdecode.c. Fix to vu_update in python/maingui.py to allow received values to contain = characters. Added the ability to remove the main players' visibility. Useful for when using external players. Added JACK audio routing for all players. This means that individual player audio effects or external players can be used. Fixed a crash bug that would happen if a playlist control was dragged to the opposite playlist. Merged the sourceclient and mixer modules. Updated man pages. Improved lockup handling code. Lots of global variables in mixer declared static. Recorders restart when sourceclient module goes down. Improved restart for streams when sourceclient module goes down. The 'Green Phone' VoIP mode now respects the 'In DJ's Mix' setting. BSB compat fix. The runtime dynamic linking functions are in the C standard library in BSD. Added ladish [L0] and [L1] support. The main menu is the new method for connecting JACK ports and it can also be used to check the various connections. The session is saved every minute. Users no longer need to close and restart to lock in settings in case IDJC freezes. Added a main menu bar and removed obsolete menus. * Changes in version 0.8.7 * Added italian translation. User interface tweaks for consistency including the greater use of GTK stock labels. * Changes in version 0.8.6 * Jingles player revamped. Player headroom now also features in 'Green Phone' VoIP mode. Resampling now defaults to 'Fast' mode. Fastest should never be used for sound quality reasons which made it a stupid default. Added 'Random Hop' playlist mode. Improvements to the end of track silence trimmer. Merged the mic and aux audio features into the new concept of channel. Bindings upper target limit values revised. Window opener buttons replaced by a menu to save space. Fixed double free and memory leak in audio_feed.c. Album metadata is now logged in tracks played and history.log. Added new Troubleshooting tab in server configuration. This includes the new ability to set the user agent string. Added GNU gettext i18n. Code refactored in c/audiofeed.c. No longer assumes both jack client IDs to be of the same length. Changes made to the build system so that it now passes the "make distcheck" test. Mouseover popup of the main media players now indicates the album if that metadata is available. GUI remembers previous window maximized state as well as the unmaximised size. Replaced XChat plugin with python-irclib based integrated IRC. New profile manager. Program launcher is now written in Python, replacing Bash. Removed deprecated 'Application' category from the desktop file. Fixed libavcodecdecode.c to work with libavcodec 0.7 (Obsolete macro updated) Patch: Jonathan Nieder Fixed a bashism in configure.ac which would prevent building with dash as the shell. Patch: Jonathan Nieder Visible state for per-server metadata. * Changes in version 0.8.5 * GUI for metadata in the Output window updated. Now has history on the custom metadata. The fallback tag text can be set. Deleted cue sheets no longer hang around in the playlist - not that there is any proper support for these.... Changed the XChat message context menu to imitate that of the current XChat. Fixed a metadata bug that would occur when the playing track was retagged using the integrated tagger. Fixed a bug that was preventing key bindings from functioning properly upon keyboard focus loss. This was affecting the track metadata tagger. Fixed a bug that was causing incorrect text on the server connection button. Streams and recordings now support album metadata. New custom metadata formatting tags exist to support this change. A new crossfader profile has been added which closely matches the inter track fade. In playlist modes that don't suppport playlist controls a null control is rendered in the playlist instead of a blank space as was done previously. Auto crossfade now takes into account the fade speed for timing. New playlist mode 'Fade Over' does the same thing as the crossfade playlist control but for every track. Sanitised the text inputs of the server dialog. Cleans off :// protocol prefixes and extra / characters on mount points. The return of the main panel recording indicator(s) - missing since version 0.7. Copyright year updated to 2011. Fix to XChat plugin installer. Polished XChat file locking code. Prokyon3 database settings recovered when saved in active mode. Hostname now saved as well. Regression fix for player levels when a jingle is playing. Mic icon flashes after a certain amount of time when a player is on. Mic indicates on status by the addition of a halo around the microphone icon in the opener button. Encoder ringbuffer size increased to accommodate really large JACK frame sizes. Mic player headroom can be set far higher. Glib added to dependencies. Handles hash table duties in agc code. Hash tables and other GLib features may be used internally to a greater degree as code gets rewritten. Improvements to the front panel mic open button text. Alt text overrides the mic number, stereo mics are indicated. Microphones can be made subordinates of a stereo pair. Mic 1 can be paired with 2, 2 with 1, 3 with 4. This achieves two things: 1. stereo mics can be configured with one set of settings; 2. the side-chains merge to facilitate a stable stereo image. The number of available microphones, streamers, and recorders can be adjusted in Prefs->Feature set. Prefs window can be expanded in size. * Changes in version 0.8.4 * Can now open multiple idjc instances on the same jack sound server using the -e command line switch. New server configuration dialog and notebook widget to replace the previous large scrolling window. Added an empty uninstall target to libshout/Makefile.am to fix 'make uninstall' breakage. New project website. See docsrc directory in Git source tree. Has a hand crafted Makefile not under GNU autotools control. Added facility for entering a Shoutcast admin password for the master server. Saved playlist in xspf format now saves playlist controls. New playlist control for restarting the playlist from the top. New env-up script to generate the up the ./configure file and html documentation. Both not to be found in the raw git source tree. Merged in new midi and assignable keyboard shortcuts interface. Cue sheets can now be added to the main player playlists. TODO: cuesheet playback. Cue sheets now indicate type WAVE when making a cue sheet for a flac file and cue sheets now store sub-second time offset information. The active record and stream tabs are now remembered across application restarts. A new individual controls expander added to reduce clutter in the output window. Reversed the hints on the Jingles player volume controls to match the main player volume control. * Changes in version 0.8.3 * Fixed a bug where the mp3 header was not captured resulting in corrupt vbr tags in recordings. Fixed a frame length bug in mp3 vbr tagger in recorder. Would cause mpeg 2, mpeg 2.5 frames to overrun with their padding. This bug also appeared in the mp3tagread module and was fixed. New feature to record FLAC files and metadata in an accompanying cue file. This does not use one of the server encoders. New group controls feature in the output window allows operations on all server tabs simultaneously. The listen URL now appears on the connect button. Static metadata text now shows with the correct character encoding when streaming mp3 files. Playlist and hostname/mountpoint info now shows with ellipses (...) when appropriate. The metadata widget is now in each tab so that metadata formatting information can persist beyond application close. Added an expander for server connection details which also resizes the window. Added new kick feature widgets and rearranged the server connection buttons to be at the top of each stream tab. Fixed a bug where the player freezes at the end of certain tracks when the player is started with the seek bar all the way to the right. The 'Random' playlist mode now observes a pattern to eliminate repeat performance of tracks while still allowing a large element of randomness. Track filenames are now stored when streaming or recording for use with Random playlist mode. Renamed variable shutdown in the mixer to avoid a reported namespace collision. * Changes in version 0.8.2 * Fixed an out of bounds memory access in mixer.c. Added an install button for the XChat plugin. The stream peak meter has its audio source filtered of brief transients. The 'Jack Ports' tab is renamed 'JACK ports' reflecting its acronym status. The aux ports are now grouped beneath the mic ports since they are both inputs, leaving output ports similarly grouped. The advance button toggles microphones that are configured to automatically open. The 'Player Stop' playlist control opens microphones that are configured to automatically open. The JACK audio ports have been renamed and are listed as their true names in the Jack Ports tab in the preferences. VOIP users will need to update their .asoundrc file (the docs contain the new configuration). Licensed as GPL2 again. The two main window button frames at the bottom have been merged so the new mic button arrangement can scale nicely. New mic open buttons in the main window. Only buttons for microphones currently set active are shown and the buttons indicate which microphone(s) they control. Freeform text can also be applied to the buttons. The profile name now appears in the preferences, output, and jingles window titles (except when using the default profile where it is left blank). This reduces the ambiguity that arises when two instances of IDJC run in the same screen. The server window is now called the output window because the user may just want to record without sending station output through a server. The mic high pass filter now has a control to set the number of active stages. Changes to the meters preferences. Now organised into two columns that can be switched in or out on a column by column basis. Option to hide all inactive mic meters. The player volume control now has an inverted (for GTK) ascending level hint for GTK themes that show this. Stream VU now appears in the stream indicators column. The mic VU meter is no more. New microphone meters. A peak meter paired with a colour coded attenuation indicator to give a hint at the state of the mic signal processing. Increased the number of handled microphones to four. The microphone detail controls now have a greater degree of control and default to 0 for a flat frequency response. The build system now recognizes python 2.6 as the minimum version. ./configure checks for the legacy location for libavcodec header files. Automatic crossfader pass maximum time raised to 20 seconds. Fixed an infinite loop bug in the Random playlist mode. Would occur when there was only one item in the playlist. * Changes in version 0.8.1 * Added the ability to drag and drop tracks from a directory's subdirectory. Two levels deep. Added support for wma tagging and playlist metadata. Improved transitioning of old playlist data from the 0.7 series. Allows addition of mp3 files to the playlist when using old versions of mutagen. * Changes in version 0.8.0 * Altered some variable names in configure.in to produce better error messages. Removed a namespace collision in embedded libshout. Documentation updated. MP3 playback can now be dithered. Option in the preferences. Default = on. Added Replay Gain functionality. Untagged tracks are now typically shown with the track number cleaned off (requires track number be on the left). Untagged tracks are now shown with black text and a No Tag message alongside in dark red. Code to restart the idjcsourceclient module when it crashes has been fixed. IDJC now runs in the default MALLOC_CHECK_ mode. Fixed a bug where idjcctrl could start an encoder with bad parameters and cause memory to be freed twice. Fixed a race condition during encoder shutdown. Fixed a file filter preselection bug in the 'Add music' file chooser dialog. Added a precautionary recursion limit to oggscan_eos. Fixed an Ogg parsing problem where failure to find a valid ogg page in the right hand side caused premature termination of the search. Fixed a problem seeking files that are in their last ten seconds of playback. Broken since 0.7.17. Fixed the metadata timing for mp3 recordings. A metadata segment of less than ten seconds could be skipped if it was at the end of a file. Broken since 0.7.17. Fixed the metadata timing for Ogg recordings. Broken since 0.7.17. Tracks with quiet endings are not ended early when a server disconnect is imminent or the playlist has nearly run its course. This is to assist server handovers. A cue file is saved for each mp3 recording. Amarok can make use of these. ./configure stops if the mutagen dependency is not fulfilled. Recording of mp3 is now possible when the server list is empty. Players are restarted when the current song playing gets retagged (IDJC tagger only). This is to prevent playback failure. Dependency list updated. Added support for multiple metadata tags. Added APEv2 tagging capability. Includes support for monkeys audio and musepack formats. * Changes in version 0.7.19 * Version bump because the Sourceforge file release system is being a pain. * Changes in version 0.7.18a * Workaround for a regression in mutagen-1.17. The mutagen.easyid3 module can't be pulled in without first pulling in mutagen.id3 or mutagen.mp3. * Changes in version 0.7.18 * Added support for m4b and m4p file extensions. Synonymous with mp4. New media metadata tagger added, based on mutagen. Dependency removed: libmp4v2 Dependency removed: eyeD3 Dependency added: mutagen. This covers the functionality of the removed dependencies. ID3 chapter tags lacking null terminators on the TIT2 frame are handled properly. Added some Mac portability fixes. The advance button now works in accordance with the fade setting. The partially working fade in simple mixer mode is now disabled. This is reflected in the fade selector which greys out. * Changes in version 0.7.17 * Fixed minor layout bug in the connection box. Removed the forced inclusion of mp4.h in mp4tag.c. MP4 tags API updated in mp4tag.c to prevent deprecation warnings. The DJ alarm now triggers off a deeper inspection of playlist controls. This permits correct operation of the alarm when fading to an announcement. The DJ alarm now sounds prior to announcements. Added playlist controls for fading between tracks. These override the fade speed of the player and can be used to fade announcements. Added a new fading-between-tracks in-the-same-playlist feature. Fixed a bug where the player could freeze at the end of a track after a progress bar seek that left the bar at the far right hand size. Jingles keyboard shortcuts now work when the announcement dialog is active. The shortcut to cancel the dialog (not in editing mode) is BACKSPACE since ESC is used to stop jingles. Added record_start and record_stop commands to idcjctrl. Prokyon 3 database parse optimisations. Approx 15% speedup. Conditional inclusion of jack_set_info_function function call. Fixes to catch exceptions when there are problems connecting to a song title database. * Changes in version 0.7.16 * The application icon and menu entry are now installed according to the ${prefix} value, so it is possible to install to ${HOME}/.local without being root. When the prokyon 3 database is being indexed (for the tree view) a progress bar is shown. Also the GUI is not frozen during this time as was the case previously. The password for the prokyon 3 database is now non visible. When using the prokyon 3 database upon loading IDJC the correct database is now used rather than the default values. Added Fkeys control of the jingles player. Escape key is used to stop. The scrolled window in the connection pane now has a specified size Fixed a segfault that would occur when the main window had focus and the F8 key was pressed. * Changes in version 0.7.15 * Uses avcodec_decode_audio3 for libavcodec audio decoding when available. Fixed bug in avcodecdecode.c, the samples buffer is now aligned on 64 bytes which ensures best performance and the ability to decode formats for which libavcodec uses sse instructions. Fixed bug in avcodecdecode.c where freed memory could continue to be used. Added some minor fixes supplied by Andrew Suffield. Removed the option to not keep passwords over application restarts. Given the extra mouseclicks now requried in order to enter the password and no visible cue to password absence, this feature has been dropped. Added a new connection feature to the server window. This allows for listener stats to be gathered from a list of relays as well as the master server. Aslo, stats collection can be turned off on a per server basis. Removed directory checks and conditional inclusion for ffmpeg header files to aid compilation on certain distibutions. Version 0.7.15_pre1 released as 0.7.14a. * Changes in version 0.7.14a * Server stats are now obtained in a threaded manner to prevent the possibility of lockup. Added a new admin password entry to the server window so that in instances where the Shoutcast server has an admin password applied the stats can still be obtained. Added and option to turn off stats retrieval on a per server basis. Stats are additionally now displayed on a per server basis in the server window. * Changes in version 0.7.14 * Added 'Alternate' playlist mode. Added listener stats retrieval. Stats are now displayed below the stream status indicator. Dynamic runtime linking supported for libmad. MP3 playback can no longer be completely disabled. Added prefs for how to handle faulty server connections. Dynamic runtime linking supported for libmp3lame. MP3 streaming can no longer be completely disabled. Added audio dumping facility to avcodecdecode.c for removing seek noise. Fixed a bug in avcodecdecode.c which was causing delayed stopping of ape tracks. Added support for mpc files. Added support for ape files. Added an external playlist mode. This allows for extremely large playlists without cluttering the playlist box. * Changes in version 0.7.13 * Fixed behaviour when network congestion is encountered. * Changes in version 0.7.12a * Fixed beeping sound that was being triggered by a gtk.Entry being filled beyond it's specified character limit, specifically when playing a track with the progress counter in countdown mode. Fixed multiple deprecation warnings for gtk.SpinButton caused by non zero page sizes in their respective gtk.Adjustment. * Changes in version 0.7.12 * Fixed a problem of idjcctrl being able to crash idjc through specifying a server tab number that does not exist. Fixed a problem with the FLAC encoder not properly registering a bitrate resulting in an inability to stream. The About pane now displays a list of contributors to IDJC. Added code to prevent the DJ alarm triggering twice. Playlist menu option Add To Jingles is now greyed out for playlist controls. Playlist controls are now processed much more quickly. Fixed a segfault in mp3dec.c. Older versions of JACK won't trigger this. Added a new announcement feature on the player context menu that provides a dialog box for text prompts. It's also useful as an alternative to the stop-player control. It provides more of a cue that the DJ needs to talk (if the DJ alarm wasn't enough) and opens the mic for the DJ. The keyboard shortcut is U for no particular reason. Comp meter updated to indicate noisegate and deess attenuation levels as distinct colours. Recordings can now be started when the connection type is set to Shoutcast and the format is set to ogg with flac or speex. Contains brand new microphone audio processing code contributed by Stefan Fendt. Spacebar now shortcuts for the microphone. Added new shortcuts V for VoIP and P for private VoIP. Keyboard focus capability has been stripped from all but the playlists which means that whenever the main window has focus that the keyboard shortcuts mechanism will be functional. The stream peak meter now red-lines at -2dB and the VU at -7 dB. Added a new option to cap the maximum stream audio level at -2dB. This may improve the encoding quality. When active this change is reflected in the Str Peak and Str VU meters by the drawing of a line. Tighter timings on the interlude player. Silence detection at the end of tracks is now more aggressive. Compensated for extended quiet intro songs by inhibiting silence detect on the first 15 seconds of any track. Now using the python subprocess module for launching the mixer and sourceclient sub-processes to clear a deprecation warning. Updated to work with the latest pygtk. When LANG environment variable is not set exception TypeError is now caught for Python 2.6 The CRC is now checked on mp3 files, also sync errors and the like are checked for and not played. This prevents things like the sample rate from being misread. Ogg/Vorbis can now be streamed at 8kbps. * Changes in version 0.7.11a * Added configure option --disable-static, which forces the use of shared libraries. Currently only libshout, which becomes a dependency when this option is specified. * Changes in version 0.7.11 * FLAC playback now requires version 1.1.3 or greater. Configure will now warn on missing LAME dependency. Added the capability to connect to a Prokyon3 database for the retrieval of detailed music collection metadata. Includes search/filter facility, drag and drop. Configure options for dependencies are now forced when explicitly specified so --enable-speex="yes" will result in ./configure exiting with an error message if that dependency cannot be met. The meter area now responds to a mouse right click by bringing up the application-wide context menu. Added new configure options to prevent building against FLAC and speex libraries. Added a stream status indicator to the main window. Fixed a bug that was preventing certain session data from being saved. Fixed a bug with regard to the requested initial state of the Monitor Mix Stream button which was causing a crash on program start. Libshout dependency eliminated, linked statically. Added shoutcast contact information IRC, AIM, ICQ. * Changes in version 0.7.10 * Reduced the size of the level meters and their text. Changed the level meters to use the DrawingArea widget. This gives a more authentic meter appearance with the different colours on the scale but more importantly reduces CPU load massively when using certain GTK themes. Labelled all the widgets in the crossfader bar. Updated the Stream Mon. button to something a little less obtuse. Added a new 'None' option to the Metadata Source chooser. Fixed the media formats list to not show mp4/m4a when IDJC built without ffmpeg support. Added new ./configure options to allow building without support for non-free formats: --disable-mad --disable-ffmpeg --disable-mp4 --disable-lame Removed unused JACK audio ports from the sourceclient. Added a DSP interface via JACK which includes a bypass control. * Changes in version 0.7.9 * New dialog boxes control reconnecting to a server when the connection fails. Reconnection attempts will be made as many as three times after sensible time delays with the user given the option to trigger the reconnection attempt early or to cancel altogether. Removed the faad2 dependency. AAC decoding to be done in future by ffmpeg instead. Tagging and metadata readout use libmp4v2. Dependency include files avcodec.h and avformat.h have been moved to different directories. The build system now accounts for this. Added a mid marker for the crossfader. Added a selector for choosing the crossfader response curve. Added new buttons for centering the crossfader. Included a patch for a metadata source selector. Improved the handling of poorly terminated Ogg streams. Regression fix: IDJC is now capable of running when the LANG environment variable isn't set. * Changes in version 0.7.8a * Fixed oggdec.c to prevent infinite looping when files are added which contain unterminated streams. Applied a patch which cleans up superfluous suggested tags in the ogg vorbis tagger when there is a case mismatch e.g. artist vs. ARTIST. * Changes in version 0.7.8 * Changed mp3 tab label text to upper case. Fixed the Speex decoder so it cleanly rejects files that don't have frames_per_packet set to 1 or above. Added a Speex encoder. * Changes in version 0.7.7 * Fixes to oggdec.c in the flac seek and tell callbacks. Fix to oggflacdec.c so that end of tracks are detected. Added an OggFlac encoder. Triangular dither is applied when using 16 and 20 bit. Fade in/out made consistent across all JACK sample rates for microphone headroom, mic and aux mute/unmute, player mute/unmute. Track fadeout now works consistently for all JACK sample rates. Increased media player watchdog timeout to 9 seconds to accomodate very large media files. An english label on the compressor now reads Release, formerly Decay. Decay was used previously due it being only five letters long. A number of compressor, noise gate, and normaliser control values have been changed to units expressed as times and time constants in milliseconds, formerly they were samples and fractions of movement per sample. The former scheme suffered from being dependent upon the JACK sample rate and also it did not follow the example of actual studio equipment. Ogg file metadata updates occur instantaneously when using the seek bar. Fixed oggscan_eos in oggdec.c so that all ogg/oga files should import correctly. Added the keyword 'managed' to the Ogg/vorbis encoder configuration line for when in managed bitrate mode. Added a new Ogg/vorbis streaming configurator. Upper and lower limits are now expressed as a percentage. Feature expansion is made possible for alternative types of Ogg stream by this new arrangement. Default text in the jack ports tab now reads system instead of alsa_pcm - this is compatible across different jack back ends but only for recent versions of jack. * Changes in version 0.7.6 * The Radio Server window is now by default larger in order not to obscure the encoding format controls. Removed the (mp3 only) text from the Shoutcast dropdown. When Shoutcast is unavailable due to non support of LAME mp3 encoding the Shoutcast dropdown item is set insensitive. Builds of IDJC that lack mp3 streaming support now display an mp3 tab with a message where the configuration controls would otherwise be. Support for Icecast version 1 servers has been dropped due to lack of support in recent versions of libshout. STREAMERS and RECORDERS environment variables now affect ./configure and can be used to set the number of streamers and recorders that will be available. The Add Files dialog now reports which media files are supported. Removed the EXTM3U option from prefs. The current policy is to write m3u metadata when saving playlists and to ignore it on readback. Extended m3u metadata is now Latin1 encoded. Cleanups to the playlist populating code. Added pls playlist support. Single lined m3u files can now pull in directories. Added xspf playlist support. Added the ability to build with pmake, which is widely used on BSD systems. Added file bsdcompat.c to include workalikes for GNU libc extensions with an aim to get IDJC working on BSD. Stability fixes to oggdec.c to permit malformed ogg files without locking up. Added support for the tagging of speex (.spx) files. Removed a line of code that was causing a visual glitch on the play progress bar at the end of a track. Added new command line options -m, -a, -t, -s. The man page has been updated to explain what they are for. Added a speex audio decoder. * Changes in version 0.7.5 * Saved Ogg streams now have the oga file extension which is the correct one to use for chained Ogg files. Added a FLAC decoder for OggFLAC audio files. Added a vorbis decoder replacing the libvorbisfile decoder that was present previously. Added support for the oga (Ogg audio) file extension which is the correct one to use for chained ogg audio files. Added a general purpose Ogg audio decoder which serves as a base for launching decoders for chained Ogg files (oga). All streams in the file can be of a distinct format and samplerate. It also handles obtaining metadata for the playlist. Fixed a regression introduced in 0.7.4 which prevented shoutcast connections from working due to a labelling change. * Changes in version 0.7.4 * Visual tweaks to Prefs->General. Server connnect button will not grey out while streaming Ogg when Shoutcast is later selected. Ogg stream serial numbers are now set to an initial random value. Ogg streams are now guaranteed to contain at least five ogg page outputs per second. This will prevent listener clients from presuming the stream has gone dead and disconnecting. This means that to stream it is no longer necessary to set a minimum bitrate. The record button is now greyed out when the recording directory is not writable due to file permissions etc. Ogg recordings now have a meta-header. It is now possible to run multiple instances of IDJC. JACK server connection is achieved with jack_client_open instead of the deprecated jack_client_new function. Minor tweaks to tooltips. Connection type chooser now indicates mp3 only for Shoutcast. Changes to the Update, Server Connect, and Record tool tip texts to indicate why one of these buttons might be greyed out. Record button no longer greyed out when the server connect button is greyed on account of Ogg + Shoutcast widget combination. File choosers replaced with their more modern versions. Updated the realtime.html documentation page. Changed the way command line parameters are handled. Added a new option for specifying which jack server to connect to. Added code to clean up double bolding occurrences in the playlist. Updated the idjc man page. New translation en_US. New module ln_text.py to facilitate multi language support, replaces langheader.py, includes maintenance features. * Changes in version 0.7.3 * Documentation on the website and in the doc folder has been updated. Option --disable-tooltips has been added to ./configure A window showing the GPL licence text is now included as part of the program. Removed usage hint text from the gtk.Entry in the Prefs->Event tab. The tooltip should be sufficient. The server connect/disconnect timers deactivate once they have performed their task. They now have a default text of 00:00. The Ogg relative upper and lower bitrate spinbuttons are greyed out when deactivated. Fixed a bug where mp3 files with a LAME gapless tag would not play if their sample rate differed from that of the the JACK sound server. Added a great many tooltips. Support for new GTK tooltips API. Tooltips require PyGTK version 2.12 or later. Bits and bobs in Prefs->General has been retitled 'Miscellaneous Features' and the various options now have descriptive labels. Dead code has been removed. The space where the indicator box used to be is properly removed in Basic Streamer mode. Reduced the microphone latency to the headphones when in VOIP mode. Direct mixing rather than a jack audio bridge. Added the option to turn off microphone audio in the DJ headphones. This is a facility for those suffering with high audio latency. Added support for upper and mixed case file extensions. Example: Mp3, oGg, FlAc are accepted into the playlist. * Changes in version 0.7.2a * Fix to a regression in file kvpparse.c (memory leak). Deactivated the pointless watchdog code in idjcsourceclient. * Changes in version 0.7.2 * Added gapless mp3 playback. IDJC now runs with environment variable MALLOC_CHECK_ set to 2. This prevents IDJC from crashing when minor heap corruption occurs. Fixed uninitialised variables bug in the mixer (metadata packet type). Fixed uninitialised variables bug in the mixer (fade index). Removed obsolete code from the Ogg/vobis encoder. * Changes in version 0.7.1a * The pop-up window now has a border. DJ aud level now works in 'Basic Streamer' mode. Cosmetic change to stream normalizer in prefs. Fix for the opening vu meters causing a crash bug. Build system fix for Ubuntu 7.10 regarding problems detecting libmp3lame. Removed the obsolete LED indicators from the main window. * Changes in version 0.7.1 * The idjcctrl program now has connect and disconnect commands to allow server connection/disconnection from the command line. Added global exception handling to vu_update to ensure thread unlocking occurs. Added a fallback mode for decoding m4a files using ffmpeg. FAAD2 versions 2.5 and up are not supported directly by IDJC. Added handling for corrupt m4a files in mp4decode.c. The update button causes server reconnection when streaming to shoutcast which ensures that shoutcast servers know the correct bit rate. Bitrate, samplerate, and number of channels info is now set before the connection is made which should resolve some shoutcast issues. * Changes in version 0.7.0c * Fixed regression in the X-Chat announcer which would cause the application to lock up if used. * Changes in version 0.7.0b * Fixed a regression in the playlist controls 'Stop streaming' and 'Stop recording' which was causing a lock-up to occur. * Changes in version 0.7.0a * Updated ebuild. Reinstated the MP3meta=utf-8 option. Added a DJ audio output level control in the preferences. Removed idjcskype and its man page which are obsolete and replaced it with new documentation in the VOIP tutorial. Skype is confirmed working within IDJC. * Changes in version 0.7.0 * Implemented a new, more powerful streaming architecture with multiple streams possible, greater control over quality settings, ability to change the bitrate live on air, and the ability to stream from a prerecorded file with the metadata preserved. Removed the MP3=utf8 option. This option is now always turned on meaning that mp3 metadata is always encoded as utf-8. In the mixer altered the way microphone signals are processed when the microphone buttons are muted. This greatly reduces the amount of CPU used since half of all CPU usage by the mixer was going into processing the microphone signal. New license: GNU General Public Licence version *3*. * Changes in version 0.6.12a * Streaming can now be started automatically by timer. * Changes in version 0.6.12 * FLAC tags are now read regardless of case. Added a decoder for wma files (requires libavcodec and libavformat from ffmpeg). Underscores are now allowed in profiles. Added a 'Switch To Aux' playlist control to allow the streaming of some defualt audio source via the aux input once the playlist has run its course. Fixed end of track detection for right player when left player was playing. Fixed metadata reading bug for flac files where lower case tags were not being read. MP3 encodes with greater precision. No longer limited to 16 bits audio input. Added new executable named idjcctrl to provide a feature that allows a remote application to append files to the playlist. m3u and pls files are allowed. Added a control for player resampling quality. Code cleanup in xlplayer. All decoders moved to own modules. Ogg decodes to float instead of 16 bit integer. Added mp3 playback using libmad - optional. Added m4a playback support with faad2 - optional. Support for FLAC-1.1.3 and beyond has been added - FLAC is now optional. Fixed a couple of traceback/race conditions in mixprefs.py. The playlist popup window now correctly reports which file is playing when there are untagged files in the playlist. Improved handling of missing LAME mp3 encoder by adding a dialog informing the user if they need to install LAME. Removed the xine-lib dependancy. Timeout will no longer take JACK down with it. * Changes in version 0.6.11 * Added a tooltip style popup window to the playlists that shows a summary of the playlist contents and indicates the track which is playing (if any). EyeD3 is now optional. This means that idjc packages can be made regardless of whether an eyeD3 package is available for that particular distro. Tagging functionality is disabled when eyeD3 is not present and id3 tag reading is performed instead by xine-lib. Fixed a bug where xine would be used to read ID3 tags regardless of whether eyeD3 had already done so. This was causing problems with certain files that had id3 version 1 tags and contained accented characters. This bug has also been fixed. Any failure to decode from utf-8 on the tag info xine-lib provides will result in their being decoded from latin1 instead. Code cleanup in the limiter. * Changes in version 0.6.10 * Added a bug workaround so that a seek to the last second of audio of a track when using the xine-lib decoder will not occur. This was added to prevent a mixer crash. Added an event driven commands feature in the Prefs, mainly for controlling the mixer. Included tooltips. Changed copyright message to read 2005-2007 Added a popup menu to the prefs, server, jingles, window open buttons that contains a close option. The locale in the mixer and server modules is now forced to 'C' to ensure proper operation of sscanf when faced with floating point numbers. Added a playlist control for normalising the playback speed. The hotkey for this is N. Added an option to disable this to save CPU cycles and screen space. Added playback speed control for main media players. Block size, time remaining, and finish times are appropriately affected. * Changes in version 0.6.9 * A new context menu puts controls for turning on/off of the various meters into the main window plus gives the ability to quit the application when running from TWM (terminal window manager) which does not display an application close button. Cellrenderer code is now prevented from running during shutdown. Function write_channel_data will no longer attempt a write when num_samples==0 this is to prevent the possibilitity of dereferencing a null pointer. Function demux_channel_data will no longer generate a spurious error message and exit when num_samples==0, this done for compatibility with new libsndfile related code. Added libsndfile based media file decoder for wav files. New dependancy libsndfile. Replaced deprecated gtk.threads_enter/leave instances. A xine config file is now generated automatically by idjc in the ~/.idjc directory. This prevents the loading of the unused audio and video drivers as well as preventing the probing of the most efficient memcpy method. The result is a faster startup time. The mmx memcpy method more than meets the needs of the application. On some machines the probe was causing failure. Function xlplayer_create no longer returns before the player is fully initialised. The mixer module initialisation is now waited upon directly, after launch by the parent. * Changes in version 0.6.8 * Added profile support. To use it launch idjc as follows: idjc profilename. This causes a dialog box to appear asking if you want to create a new profile. A further dialog box allows you to import settings from a different profile. The main window title-bar indicates which profile is in use whenever you are not using default. If you don't specify a profile the default behaviour is to ask you which profile you want to use. Fixed a crash that would occur when attempting to play from an empty playlist. Added an option for MP3 metadata to be in UTF-8 encoding instead of the ISO8859-1(latin1). Updated the X-chat plugin to show a helpful error message within X-chat whenever an announcement message is dropped due to not matching the specified nick in any of the specified channels. * Changes in version 0.6.7b * Fixed the pause feature. It was causing the track silence timeout to trigger. Track silence timeout increased from 5 to 9 seconds and the silence threshold has been raised a bit. * Changes in version 0.6.7a * Improvements to the compressor de-ess mechanism. Bugfix to compressor: de-ess was being fed an uninitialised value. Accuracy improvements to the db lookup/conversion tables. Improvements to the soft knee compression curve in the compressor. Values checked with gnuplot. * Changes in version 0.6.7 * Changed the method used to implement the xlplayer watchdog. Added an RMS filter to the microphone compressor. Greatly improved the handling of launches of duplicate IDJC instances (the taskbar will flash for the currently running instance and the second instance will exit with a console error message). Improvements to the makefiles. Fixed the three-mixer-crashes-and-it's-out code. IDJC will shut down cleanly and will even save the session for later restoration. Added a desktop menu item for gnome and kde. Major facelift for the idjc homepage which doubles as the documentation in the doc directory. Updated the IDJC man page and added a new man page for idjcskype. * Changes in version 0.6.6 * Added a high quality mp3 streaming control to the server window. This uses more CPU but the results are much better. Also added a 24kb/s streaming mode for modem listeners. Added a timeout to the media decoders so that the mixer will be restarted in the event of a lock-up resultant of a bad media file. Fixed a bug where when streaming ogg with an insufficently tagged file the file metadata would contain html tags. Fixed a bug in the Ogg/vorbis decoder where errors in an ogg file could go unhandled resulting in a mixer crash. * Changes in version 0.6.5 * Option to save and restore the server password added to the preferences. The mixer module is now automatically restarted upon a crash. This means the application will hopefully not freeze. The main media players are bumped onto the next track so that if a corrupted track had caused the crash it will be skipped. This feature also works when jackd is closed via killall. Application now starts more quickly because the xine config file is used. This has a downside in that a corrupted config file can cause xine to segfault. Added optional support for reading file info directly from mp4/m4a files and for tagging. This feature is dependant on libmp4ff and its header file mp4ff.h being present. Optimisations for playlist stats reduce cpu load, also made it so meters only get updated when the new data differs. Regression fix to the playlist controls. * Changes in version 0.6.4a * Audio processing is suppressed during FLAC seeking to prevent spurious audio output. Made the stream and listen buttons mute/unmute gradually. * Changes in version 0.6.4 * The metadata tagger window can now be resized. Added gapless playback (perfect for concept albums that typically lack silences between tracks). Also the player skips to the next track after 5 seconds of silence. This is to counter the obvious downside of having files that contain bonus tracks in your collection. When adding controls to the playlist when a track is playing, the playing track is not now reselected afterwards. Added a dither option mostly for people with 24 bit capable soundcards. When the jingles sequence box is shaded it no longer collects values via doubleclick. Implemented a whole new player architecture, dispensing with mplayer and using a simple audio decoding engine within the mixer module itself. Benefits include quicker player startup/shutdown times and reduced system load when doing so, the ability to add new features in the future, much faster seek times. Some file formats that worked previously may no longer play, however or may play but not be seekable. If xine can play it so can idjc. That means avi files can now be played (audio only). Implemented alongside the xine decoder a FLAC and Ogg/vorbis decoder so that those formats are seekable. * Changes in version 0.6.3 * Additional German translation. Removed the artificial size restrictions on text strings in the server window. Fixed a crash that occurred when disconnecting from the server. Fixed a problem with the shutdown code where a segfault could sometimes occur. Added session restoration. On by default, but can be switched off in the prefs. Added the ability to transfer focus from one playlist to another using the left and right arrow keys. You can now move files across using shifted left and right arrow. Also the delete key removes files, and in addition to the space key which plays files, the backspace key causes play to stop. M opens the microphone and < and > open left and right mic in split-mic mode. Keys 1 and 2 cause the crossfader to move to the respective player. The c key passes the crossfader. The t key activates the metadata [t]agger. S inserts a [s]top control. A inserts a transfer [a]cross control. F inserts a [f]ade across control. File requester directory is remembered across application restarts. * Changes in version 0.6.2b * Fixed an off-by-one error that resulted in heap corruption and crashes when adding Ogg files to the playlist. * Changes in version 0.6.2a * Fixed a freezeup bug triggered when loading an extm3u playlist in extm3u mode. * Changes in version 0.6.2 * Added a zero cross switch to the pause feature of the recording facility to prevent audible clicks (this makes the automatic pause feature fully usable). Changed the digital filters to use variable type double instead of float because of blowup problems. Changed the ceiling label in Stream Normalizer to read threshold. Fixed a misconfiguration bug in the stream normalizer that resulted in audible clicks on the stream audio when the digital zero threshold was breached and the app had been started with the stream normalizer turned off. * Changes in version 0.6.1b * Partial code rewrite for Ogg metadata. This may fix a bug that results in an infinite loop when a corrupted or non 100% compliant Ogg file is encountered. * Changes in version 0.6.1a * Fixed the parsing of track lengths in Ogg files. Parsing is also much faster now. * Changes in version 0.6.1 * Added lead-in stripping. Songs with quiet endings are also cut short when fadeout is on. Added an information display for playlist blocks showing the time the block will finish, remaining time, size of any additional selections. Now uses the python path from AM_PATH_PYTHON in the launch script. This is preferable when there are multiple installs of python on your system so the correct one is run. Added volume normalization to the stream audio. Added a track length column to the playlists. Added a history log file. This file catalogues the song changes and server connections. It is saved to ~/.idjc/history.log. Added automatic module restarting for the server module (idjcserver). If idjc was streaming at the time the server module failed, the connection will be automatically remade. Without this feature idjc would freeze up. Fixed a regression for when adding playlists with the file requester. * Changes in version 0.6.0 * Enforced minimum library versions in ./configure. The page size for the range widgets is now set to zero which helps with rendering of the range widgets when using the QT rendering engine. Added a fix for when the digital progress box is not big enough for its text. An option in the prefs. Fixed idjcserver.c so that it no longer segfaults when libshout is not present. Added inclusion of string.h to dsp.c and pipereader.c Added the ability to tag files live on air. The effects propagate properly. Added ability to stream Ogg metadata. The streaming encoding method is now remembered across application restarts. Increased the number of different streaming bitrates available. * Changes in version 0.5.9a * Fixed a bug where the music would loop if a loop option was specified in ~/.mplayer/config Fixed a bug in the jingles player where the Sequence box would become unusable after playing jingles. The sequence box now has focus when the jingles window is opened. * Changes in version 0.5.9 * The automatic crossfade speed adjustment can now be set as high as eight seconds. The currently playing track can now be dragged in its playlist without the track stopping. Added playlist control elements that are accessible from the playlist pop-up menu for doing such things as automatic crossfades, stopping the player, or even stopping streaming after a certain track is played. This feature is supported in Play All mode only. Crossfader pass-speed is now remembered. Fixes to locale code. The recorder can now pause automatically when there is silence in the audio. Will now install png files for the graphics which significantly reduces the installed size. Xpm graphics will remain available. Added dialog windows for when the connection to the radio server has been disconnected. Added LED-style indicators in the main window for streaming and recording. Added a shutdown confirmation dialog box that appears when you hit the application quit button and you are streaming or recording at the time. Player settings at startup now include the Tracks Played window state and the Stream Mon button. Drag and drop with Nautilus is now working. Konqueror drag and drop now supports the # and % characters. Added window resizing to the main and jingles window to reduce the need for scrolling in the playlist windows. Window sizes are preserved across application re-starts. The IDJC entry in the documentation directory now includes the package version number as well as the package name. The documentation files themselves are now g-zipped. The documention directory is now /prefix/share/doc rather than the non FHS compliant /prefix/doc directory. * Changes in version 0.5.8 * The locale is no longer set to en_US whenever no locale setting is present. Fixed a bug that would cause an application lock-up related to code added in version 0.5.7 for sending metadata upon connection--the newmeta flag is now cleared automatically. The bug manifested itself whenever a failed login to the radio server occurred upon a repeat connection attempt. Added code that calls shout_set_audio_info to declare the bitrate, sample rate, and number of channels. This should help users of certain clients who may be having problems tuning in. Added EXTM3U option to prefs. This allows the turning off of extended m3u processing for when you add playlists. It also prevents the saving of extm3u data (when deactivated) when you save a playlist. A sensible filename will automatically be chosen when none is specified when saving playlists. A default filename is also provided. The application will now work when /dev/shm is present but not world writable which sometimes happens. Should that be the case pipes will be created in the users home directory instead. The file chooser dialog now supports multiple file selections. The file chooser dialog now works properly with G_FILENAME_ENCODING set to @locale with files with international characters in the filename. Listen and Stream buttons are now respected in Basic Streamer mode. Fixed a bug where IDJC could hang when Send Metadata was unselected. Added a 192kbps Streaming mode for mp3. * Changes in version 0.5.7 * The song title metadata is now automatically set upon connection with the server. No longer allocates buffers for every frame of data. The old ones are reused if they are big enough. Added a track history so the DJ no longer needs to remember what tracks he played. Altered vu_update so it can be used in two modes rather than maintaining two almost identical functions. Calling it with False as the parameter will prevent thread locking from being used. I also moved the thread locking to the outermost scope of this function to prevent the two forms of the function from possibly running concurrently and causing a lock with the server module. Removed unused variables in the mixer. Tidied up variable declarations and added comments. Moved global variables to local ones wherever possible. Changed one or two variable types in relation to the DJ Alarm mechanism for consistency. Altered the way the pipe_reader structures are handled--they are now allocated on the heap. mIRC style colour entry can be done by pressing Ctrl+k which inserts a character-code-3 into the message entry boxes of the X-Chat announcement feature at the cursor. The user needs to follow it up with a numerical foreground colour number and an optional comma separated background colour number. A Ctrl+k not preceding a number will cause colours to revert to default (colours turned off). A submenu has been added so that it is now possible to select colours in the X-Chat (announce and timer) message boxes, by right clicking for a pop-up menu, and browsing the "mIRC Colour Chart" submenu. The first click chooses the foreground, and the second click, the background, which is slightly different to how X-Chat does it. Colour 99 is for transparent background. Modified a couple of german labels to prevent distortion of the GUI. Added code for a clean exit when receiving a ^C in the console. New labels for most of the widgets in german. Credit in the AUTHORS file. Added infrastructure for multiple language support. The intention is to initially support english, german, and french. JACK error messages generated when starting JACK automatically no longer cause IDJC to fail. Some of these messages are merely informational so they can all be ignored. They are now prefixed JACK instead of IDJC and are only treated as information when the client activation fails. Now plays mono wav files propery with MPlayer CVS version. The pipereader code has been rearranged so that it is now as integrated into its own code module as is practicable. Added a precautionary mutex on the flushing mechanism. * Changes in version 0.5.6a * Bugfix: repaired the track seeking ability of the media players. * Changes in version 0.5.6 * Added a pause button to the stream recorder. Ripped out all the reusable code from the mixer and put it in separate source files. Improved microphone icon. Before it was perfectly horizontal which looked a bit odd. The shaft colour is now bronze from the slightly greenish anodised look of before. Added a man page for IDJC. It covers advice on configuring JACK. Modified the parse routines in idjcmixer and idjcserver to use code in a new common source file kvpdict.c that ensures that no buffer can be overfilled. A new buffer is allocated every time that new data is received (made perfectly to measure) rather than using fixed size buffers as was done previously. Thanks to the GNU autotools libshout is now optional, but recommended of course. The server window streaming related widgets will appear ghosted if you install IDJC without libshout. Added GNU autotools build system. ./configure and all that. Added a feature where the mic button is automatically turned on when in greenphone mode. The mic was always on in greenphone mode before but the display did not always reflect this. The microphone stays on after greenphone mode is cancelled. The listen buttons go into indeterminate state now and become insensitive when in redphone mode with the microphone off. Before the listen buttons would just go insensitive and when made sensitive later on they got stuck in pre-light mode until moused over (stupid GTK+ glitch, I suspect). Added a control string and an update button for metadata. You can now update the metadata manually with a button click. Added a bandpass filter for the noisegate. This makes the noisegate much less sensitive to low frequency air effects and mains hum, and shuts off sooner due to high frequency room reverberations also being filtered out. Subtle graphical tweak to the phone icons to look a little less flat by adding some shading. Optimised the mic and aux fade in/out code to prevent the gain factors from getting too small (it overloads the fpu). Optimised the compressor and noisegate by doing the above and by eliminating casting and reducing division. CPU usage on the mixer is now in the 3-4% range when optimised. Before it would start at this point and rise to around 6-7% (on my machine at least). Volume and Aux now fade in/out when the mute/unmute buttons are pressed. Red button on the jingles player now causes the interlude player volume to be automuted. MPlayer is no longer started with -cache option for FLAC and Ogg files due to the extended startup times involved. Code tidy-up in the mixer. Most notably in the buffer flushing code. Added some comments. The track played by the interlude player is now highlighted. The sequence box is now ghosted when the jingles player is playing. idjc-0.8.16/ABOUT-NLS0000644000175000017500000026713312630014502010674 000000000000001 Notes on the Free Translation Project *************************************** Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that free software will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work on translations can contact the appropriate team. 1.1 INSTALL Matters =================== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. Installers may use special options at configuration time for changing the default behaviour. The command: ./configure --disable-nls will _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl' library and will decide to use it. If not, you may have to to use the `--with-libintl-prefix' option to tell `configure' where to look for it. Internationalized packages usually have many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. 1.2 Using This Package ====================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. If you happen to have the `LC_ALL' or some other `LC_xxx' environment variables set, you should unset them before setting `LANG', otherwise the setting of `LANG' will not have the desired effect. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your language by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. Special advice for Norwegian users: The language code for Norwegian bokma*l changed from `no' to `nb' recently (in 2003). During the transition period, while some message catalogs for this language are installed under `nb' and some older ones under `no', it's recommended for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and older translations are used. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. 1.3 Translating Teams ===================== For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://translationproject.org/', in the "Teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `coordinator@translationproject.org' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skills are praised more than programming skills, here. 1.4 Available Packages ====================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of June 2010. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files af am an ar as ast az be be@latin bg bn_IN bs ca +--------------------------------------------------+ a2ps | [] [] | aegis | | ant-phone | | anubis | | aspell | [] [] | bash | | bfd | | bibshelf | [] | binutils | | bison | | bison-runtime | [] | bluez-pin | [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] [] | cpio | | cppi | | cpplib | [] | cryptsetup | | dfarc | | dialog | [] [] | dico | | diffutils | [] | dink | | doodle | | e2fsprogs | [] | enscript | [] | exif | | fetchmail | [] | findutils | [] | flex | [] | freedink | | gas | | gawk | [] [] | gcal | [] | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] [] | gettext-tools | [] [] | gip | [] | gjay | | gliv | [] | glunarclock | [] [] | gnubiff | | gnucash | [] | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | | gold | | gpe-aerial | | gpe-beam | | gpe-bluetooth | | gpe-calendar | | gpe-clock | [] | gpe-conf | | gpe-contacts | | gpe-edit | | gpe-filemanager | | gpe-go | | gpe-login | | gpe-ownerinfo | [] | gpe-package | | gpe-sketchbook | | gpe-su | [] | gpe-taskmanager | [] | gpe-timesheet | [] | gpe-today | [] | gpe-todo | | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | [] [] | gsasl | | gss | | gst-plugins-bad | [] | gst-plugins-base | [] | gst-plugins-good | [] | gst-plugins-ugly | [] | gstreamer | [] [] [] | gtick | | gtkam | [] | gtkorphan | [] | gtkspell | [] [] [] | gutenprint | | hello | [] | help2man | | hylafax | | idutils | | indent | [] [] | iso_15924 | | iso_3166 | [] [] [] [] [] [] [] | iso_3166_2 | | iso_4217 | | iso_639 | [] [] [] [] | iso_639_3 | | jwhois | | kbd | | keytouch | [] | keytouch-editor | | keytouch-keyboa... | [] | klavaro | [] | latrine | | ld | [] | leafpad | [] [] | libc | [] [] | libexif | () | libextractor | | libgnutls | | libgpewidget | | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | [] | libidn | | lifelines | | liferea | [] [] | lilypond | | linkdr | [] | lordsawar | | lprng | | lynx | [] | m4 | | mailfromd | | mailutils | | make | | man-db | | man-db-manpages | | minicom | | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | | psmisc | | pspp | [] | pwdutils | | radius | [] | recode | [] [] | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] [] | sed | [] [] | sharutils | [] [] | shishi | | skencil | | solfege | | solfege-manual | | soundtracker | | sp | | sysstat | | tar | [] | texinfo | | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] [] | wyslij-po | | xchat | [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] | +--------------------------------------------------+ af am an ar as ast az be be@latin bg bn_IN bs ca 6 0 1 2 3 19 1 10 3 28 3 1 38 crh cs da de el en en_GB en_ZA eo es et eu fa +-------------------------------------------------+ a2ps | [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] () | anubis | [] [] | aspell | [] [] [] [] [] | bash | [] [] [] | bfd | [] | bibshelf | [] [] [] | binutils | [] | bison | [] [] | bison-runtime | [] [] [] [] | bluez-pin | [] [] [] [] [] [] | bombono-dvd | [] | buzztard | [] [] [] | cflow | [] [] | clisp | [] [] [] [] | coreutils | [] [] [] [] | cpio | | cppi | | cpplib | [] [] [] | cryptsetup | [] | dfarc | [] [] [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] | dink | [] [] [] | doodle | [] | e2fsprogs | [] [] [] | enscript | [] [] [] | exif | () [] [] | fetchmail | [] [] () [] [] [] | findutils | [] [] [] | flex | [] [] | freedink | [] [] [] | gas | [] | gawk | [] [] [] | gcal | [] | gcc | [] [] | gettext-examples | [] [] [] [] | gettext-runtime | [] [] [] [] | gettext-tools | [] [] [] | gip | [] [] [] [] | gjay | [] | gliv | [] [] [] | glunarclock | [] [] | gnubiff | () | gnucash | [] () () () () | gnuedu | [] [] | gnulib | [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] | gpe-aerial | [] [] [] [] | gpe-beam | [] [] [] [] | gpe-bluetooth | [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] | gpe-conf | [] [] [] | gpe-contacts | [] [] [] | gpe-edit | [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] | gpe-package | [] [] [] | gpe-sketchbook | [] [] [] [] | gpe-su | [] [] [] [] | gpe-taskmanager | [] [] [] [] | gpe-timesheet | [] [] [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] [] | gphoto2 | [] [] () [] [] [] | gprof | [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] | grub | [] [] | gsasl | [] | gss | | gst-plugins-bad | [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] () [] | gtkam | [] [] () [] [] | gtkorphan | [] [] [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | [] [] [] | hello | [] [] [] [] | help2man | [] | hylafax | [] [] | idutils | [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | [] () [] [] | iso_3166 | [] [] [] [] () [] [] [] () | iso_3166_2 | () | iso_4217 | [] [] [] () [] [] | iso_639 | [] [] [] [] () [] [] | iso_639_3 | [] | jwhois | [] | kbd | [] [] [] [] [] | keytouch | [] [] | keytouch-editor | [] [] | keytouch-keyboa... | [] | klavaro | [] [] [] [] | latrine | [] () | ld | [] [] | leafpad | [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] () | libextractor | | libgnutls | [] | libgpewidget | [] [] | libgpg-error | [] [] | libgphoto2 | [] () | libgphoto2_port | [] () [] | libgsasl | | libiconv | [] [] [] [] [] | libidn | [] [] [] | lifelines | [] () | liferea | [] [] [] [] [] | lilypond | [] [] [] | linkdr | [] [] [] | lordsawar | [] | lprng | | lynx | [] [] [] [] | m4 | [] [] [] [] | mailfromd | | mailutils | [] | make | [] [] [] | man-db | | man-db-manpages | | minicom | [] [] [] [] | mkisofs | | myserver | | nano | [] [] [] | opcodes | [] [] | parted | [] [] | pies | | popt | [] [] [] [] [] | psmisc | [] [] [] | pspp | [] | pwdutils | [] | radius | [] | recode | [] [] [] [] [] [] | rosegarden | () () () | rpm | [] [] [] | rush | | sarg | | screem | | scrollkeeper | [] [] [] [] [] | sed | [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | | skencil | [] () [] | solfege | [] [] [] | solfege-manual | [] [] | soundtracker | [] [] [] | sp | [] | sysstat | [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] | tin | [] [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] | vice | () () | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] | wget | [] [] [] | wyslij-po | | xchat | [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] [] | +-------------------------------------------------+ crh cs da de el en en_GB en_ZA eo es et eu fa 5 64 105 117 18 1 8 0 28 89 18 19 0 fi fr ga gl gu he hi hr hu hy id is it ja ka kn +----------------------------------------------------+ a2ps | [] [] [] [] | aegis | [] [] | ant-phone | [] [] | anubis | [] [] [] [] | aspell | [] [] [] [] | bash | [] [] [] [] | bfd | [] [] [] | bibshelf | [] [] [] [] [] | binutils | [] [] [] | bison | [] [] [] [] | bison-runtime | [] [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] | bombono-dvd | [] | buzztard | [] | cflow | [] [] [] | clisp | [] | coreutils | [] [] [] [] [] | cpio | [] [] [] [] | cppi | [] [] | cpplib | [] [] [] | cryptsetup | [] [] [] | dfarc | [] [] [] | dialog | [] [] [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] [] [] [] | dink | [] | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] | exif | [] [] [] [] [] [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] [] | flex | [] [] [] | freedink | [] [] [] | gas | [] [] | gawk | [] [] [] [] () [] | gcal | [] | gcc | [] | gettext-examples | [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] | gettext-tools | [] [] [] [] | gip | [] [] [] [] [] [] | gjay | [] | gliv | [] () | glunarclock | [] [] [] [] | gnubiff | () [] () | gnucash | () () () () () [] | gnuedu | [] [] | gnulib | [] [] [] [] [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] [] | gpe-aerial | [] [] [] | gpe-beam | [] [] [] [] | gpe-bluetooth | [] [] [] [] | gpe-calendar | [] [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] [] [] | gpe-contacts | [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] [] | gpe-go | [] [] [] [] [] | gpe-login | [] [] [] | gpe-ownerinfo | [] [] [] [] [] | gpe-package | [] [] [] | gpe-sketchbook | [] [] [] [] | gpe-su | [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] | gpe-todo | [] [] [] | gphoto2 | [] [] [] [] [] [] | gprof | [] [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] [] | grub | [] [] [] [] | gsasl | [] [] [] [] [] | gss | [] [] [] [] [] | gst-plugins-bad | [] [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] [] [] | gtkam | [] [] [] [] [] | gtkorphan | [] [] [] | gtkspell | [] [] [] [] [] [] [] [] [] | gutenprint | [] [] [] [] | hello | [] [] [] | help2man | [] [] | hylafax | [] | idutils | [] [] [] [] [] [] | indent | [] [] [] [] [] [] [] [] | iso_15924 | [] () [] [] | iso_3166 | [] () [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | () [] [] [] | iso_4217 | [] () [] [] [] [] | iso_639 | [] () [] [] [] [] [] [] [] | iso_639_3 | () [] [] | jwhois | [] [] [] [] [] | kbd | [] [] | keytouch | [] [] [] [] [] [] | keytouch-editor | [] [] [] [] [] | keytouch-keyboa... | [] [] [] [] [] | klavaro | [] [] | latrine | [] [] [] | ld | [] [] [] [] | leafpad | [] [] [] [] [] [] [] () | libc | [] [] [] [] [] | libexif | [] | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] [] | libgphoto2_port | [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] [] | libidn | [] [] [] [] | lifelines | () | liferea | [] [] [] [] | lilypond | [] [] | linkdr | [] [] [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] [] [] | m4 | [] [] [] [] [] [] | mailfromd | | mailutils | [] [] | make | [] [] [] [] [] [] [] [] [] | man-db | [] [] | man-db-manpages | [] | minicom | [] [] [] [] [] | mkisofs | [] [] [] [] | myserver | | nano | [] [] [] [] [] [] | opcodes | [] [] [] [] | parted | [] [] [] [] | pies | | popt | [] [] [] [] [] [] [] [] [] | psmisc | [] [] [] | pspp | | pwdutils | [] [] | radius | [] [] | recode | [] [] [] [] [] [] [] [] | rosegarden | () () () () () | rpm | [] [] | rush | | sarg | [] | screem | [] [] | scrollkeeper | [] [] [] [] | sed | [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] [] [] [] | shishi | [] | skencil | [] | solfege | [] [] [] [] | solfege-manual | [] [] | soundtracker | [] [] | sp | [] () | sysstat | [] [] [] [] [] | tar | [] [] [] [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | [] [] | util-linux-ng | [] [] [] [] [] [] | vice | () () () | vmm | [] | vorbis-tools | [] | wastesedge | () () | wdiff | [] | wget | [] [] [] [] [] [] [] [] | wyslij-po | [] [] [] | xchat | [] [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] | +----------------------------------------------------+ fi fr ga gl gu he hi hr hu hy id is it ja ka kn 105 121 53 20 4 8 3 5 53 2 120 5 84 67 0 4 ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne +-----------------------------------------------+ a2ps | [] | aegis | | ant-phone | | anubis | [] [] | aspell | [] | bash | | bfd | | bibshelf | [] [] | binutils | | bison | [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] | cpio | | cppi | | cpplib | | cryptsetup | | dfarc | [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] | dink | | doodle | | e2fsprogs | | enscript | | exif | [] | fetchmail | | findutils | | flex | | freedink | [] | gas | | gawk | | gcal | | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] | gettext-tools | [] | gip | [] [] | gjay | | gliv | | glunarclock | [] | gnubiff | | gnucash | () () () () | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | [] | gold | | gpe-aerial | [] | gpe-beam | [] | gpe-bluetooth | [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] | gpe-contacts | [] [] | gpe-edit | [] | gpe-filemanager | [] [] | gpe-go | [] [] [] | gpe-login | [] | gpe-ownerinfo | [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] | gpe-su | [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] | gpe-timesheet | [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | | gsasl | | gss | | gst-plugins-bad | [] [] [] [] | gst-plugins-base | [] [] | gst-plugins-good | [] [] | gst-plugins-ugly | [] [] [] [] [] | gstreamer | | gtick | | gtkam | [] | gtkorphan | [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | | hello | [] [] [] | help2man | | hylafax | | idutils | | indent | | iso_15924 | [] [] | iso_3166 | [] [] () [] [] [] [] [] | iso_3166_2 | | iso_4217 | [] [] | iso_639 | [] [] | iso_639_3 | [] | jwhois | [] | kbd | | keytouch | [] | keytouch-editor | [] | keytouch-keyboa... | [] | klavaro | [] | latrine | [] | ld | | leafpad | [] [] [] | libc | [] | libexif | | libextractor | | libgnutls | [] | libgpewidget | [] [] | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | | libidn | | lifelines | | liferea | | lilypond | | linkdr | | lordsawar | | lprng | | lynx | | m4 | | mailfromd | | mailutils | | make | [] | man-db | | man-db-manpages | | minicom | [] | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | [] [] [] | psmisc | | pspp | | pwdutils | | radius | | recode | | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] | sed | | sharutils | | shishi | | skencil | | solfege | [] | solfege-manual | | soundtracker | | sp | | sysstat | [] | tar | [] | texinfo | [] | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] | wyslij-po | | xchat | [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +-----------------------------------------------+ ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne 20 5 10 1 13 48 4 2 2 4 24 10 20 3 1 nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr +---------------------------------------------------+ a2ps | [] [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] [] | anubis | [] [] [] | aspell | [] [] [] [] [] | bash | [] [] | bfd | [] | bibshelf | [] [] | binutils | [] [] | bison | [] [] [] | bison-runtime | [] [] [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] | bombono-dvd | [] () | buzztard | [] [] | cflow | [] | clisp | [] [] | coreutils | [] [] [] [] [] [] | cpio | [] [] [] | cppi | [] | cpplib | [] | cryptsetup | [] | dfarc | [] | dialog | [] [] [] [] | dico | [] | diffutils | [] [] [] [] [] [] | dink | () | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] [] | exif | [] [] [] () [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] | flex | [] [] [] [] [] | freedink | [] [] | gas | | gawk | [] [] [] [] | gcal | | gcc | [] | gettext-examples | [] [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] [] [] [] | gettext-tools | [] [] [] [] [] [] | gip | [] [] [] [] [] | gjay | | gliv | [] [] [] [] [] [] | glunarclock | [] [] [] [] [] | gnubiff | [] () | gnucash | [] () () () | gnuedu | [] | gnulib | [] [] [] [] | gnunet | | gnunet-gtk | | gnutls | [] [] | gold | | gpe-aerial | [] [] [] [] [] [] [] | gpe-beam | [] [] [] [] [] [] [] | gpe-bluetooth | [] [] | gpe-calendar | [] [] [] [] | gpe-clock | [] [] [] [] [] [] [] [] | gpe-conf | [] [] [] [] [] [] [] | gpe-contacts | [] [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] [] [] [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] [] [] [] [] [] | gpe-su | [] [] [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] [] | gpe-todo | [] [] [] [] [] | gphoto2 | [] [] [] [] [] [] [] [] | gprof | [] [] [] | gpsdrive | [] [] | gramadoir | [] [] | grep | [] [] [] [] | grub | [] [] [] | gsasl | [] [] [] [] | gss | [] [] [] | gst-plugins-bad | [] [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] | gtkam | [] [] [] [] [] [] | gtkorphan | [] | gtkspell | [] [] [] [] [] [] [] [] [] [] | gutenprint | [] [] | hello | [] [] [] [] | help2man | [] [] | hylafax | [] | idutils | [] [] [] [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | [] [] [] [] | iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] | iso_3166_2 | [] [] [] | iso_4217 | [] [] [] [] [] [] [] [] | iso_639 | [] [] [] [] [] [] [] [] [] | iso_639_3 | [] [] | jwhois | [] [] [] [] | kbd | [] [] [] | keytouch | [] [] [] | keytouch-editor | [] [] [] | keytouch-keyboa... | [] [] [] | klavaro | [] [] | latrine | [] [] | ld | | leafpad | [] [] [] [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] () [] | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] | libgphoto2_port | [] [] [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] | libidn | [] [] | lifelines | [] [] | liferea | [] [] [] [] [] () () [] | lilypond | [] | linkdr | [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] | m4 | [] [] [] [] [] | mailfromd | [] | mailutils | [] | make | [] [] [] [] | man-db | [] [] [] | man-db-manpages | [] [] [] | minicom | [] [] [] [] | mkisofs | [] [] [] | myserver | | nano | [] [] [] [] | opcodes | [] [] | parted | [] [] [] [] | pies | [] | popt | [] [] [] [] | psmisc | [] [] [] | pspp | [] [] | pwdutils | [] | radius | [] [] [] | recode | [] [] [] [] [] [] [] [] | rosegarden | () () | rpm | [] [] [] | rush | [] [] | sarg | | screem | | scrollkeeper | [] [] [] [] [] [] [] [] | sed | [] [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | [] | skencil | [] [] | solfege | [] [] [] [] | solfege-manual | [] [] [] | soundtracker | [] | sp | | sysstat | [] [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] [] | vice | [] | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] | wget | [] [] [] [] [] [] [] | wyslij-po | [] [] [] | xchat | [] [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +---------------------------------------------------+ nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr 135 10 4 7 105 1 29 62 47 91 3 54 46 9 37 sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW +---------------------------------------------------+ a2ps | [] [] [] [] [] | 27 aegis | [] | 9 ant-phone | [] [] [] [] | 9 anubis | [] [] [] [] | 15 aspell | [] [] [] | 20 bash | [] [] [] | 12 bfd | [] | 6 bibshelf | [] [] [] | 16 binutils | [] [] | 8 bison | [] [] | 12 bison-runtime | [] [] [] [] [] [] | 29 bluez-pin | [] [] [] [] [] [] [] [] | 37 bombono-dvd | [] | 4 buzztard | [] | 7 cflow | [] [] [] | 9 clisp | | 10 coreutils | [] [] [] [] | 22 cpio | [] [] [] [] [] [] | 13 cppi | [] [] | 5 cpplib | [] [] [] [] [] [] | 14 cryptsetup | [] [] | 7 dfarc | [] | 9 dialog | [] [] [] [] [] [] [] | 30 dico | [] | 2 diffutils | [] [] [] [] [] [] | 30 dink | | 4 doodle | [] [] | 7 e2fsprogs | [] [] [] | 11 enscript | [] [] [] [] | 17 exif | [] [] [] | 16 fetchmail | [] [] [] | 17 findutils | [] [] [] [] [] | 20 flex | [] [] [] [] | 15 freedink | [] | 10 gas | [] | 4 gawk | [] [] [] [] | 18 gcal | [] [] | 5 gcc | [] [] [] | 7 gettext-examples | [] [] [] [] [] [] [] | 34 gettext-runtime | [] [] [] [] [] [] [] | 29 gettext-tools | [] [] [] [] [] [] | 22 gip | [] [] [] [] | 22 gjay | [] | 3 gliv | [] [] [] | 14 glunarclock | [] [] [] [] [] | 19 gnubiff | [] [] | 4 gnucash | () [] () [] () | 10 gnuedu | [] [] | 7 gnulib | [] [] [] [] | 16 gnunet | [] | 1 gnunet-gtk | [] [] [] | 5 gnutls | [] [] [] | 10 gold | [] | 4 gpe-aerial | [] [] [] | 18 gpe-beam | [] [] [] | 19 gpe-bluetooth | [] [] [] | 13 gpe-calendar | [] [] [] [] | 12 gpe-clock | [] [] [] [] [] | 28 gpe-conf | [] [] [] [] | 20 gpe-contacts | [] [] [] | 17 gpe-edit | [] [] [] | 12 gpe-filemanager | [] [] [] [] | 16 gpe-go | [] [] [] [] [] | 25 gpe-login | [] [] [] | 11 gpe-ownerinfo | [] [] [] [] [] | 25 gpe-package | [] [] [] | 13 gpe-sketchbook | [] [] [] | 20 gpe-su | [] [] [] [] [] | 30 gpe-taskmanager | [] [] [] [] [] | 29 gpe-timesheet | [] [] [] [] [] | 25 gpe-today | [] [] [] [] [] [] | 30 gpe-todo | [] [] [] [] | 17 gphoto2 | [] [] [] [] [] | 24 gprof | [] [] [] | 15 gpsdrive | [] [] [] | 11 gramadoir | [] [] [] | 11 grep | [] [] [] | 10 grub | [] [] [] | 14 gsasl | [] [] [] [] | 14 gss | [] [] [] | 11 gst-plugins-bad | [] [] [] [] | 26 gst-plugins-base | [] [] [] [] [] | 24 gst-plugins-good | [] [] [] [] | 24 gst-plugins-ugly | [] [] [] [] [] | 29 gstreamer | [] [] [] [] | 22 gtick | [] [] [] | 13 gtkam | [] [] [] | 20 gtkorphan | [] [] [] | 14 gtkspell | [] [] [] [] [] [] [] [] [] | 45 gutenprint | [] | 10 hello | [] [] [] [] [] [] | 21 help2man | [] [] | 7 hylafax | [] | 5 idutils | [] [] [] [] | 17 indent | [] [] [] [] [] [] | 30 iso_15924 | () [] () [] [] | 16 iso_3166 | [] [] () [] [] () [] [] [] () | 53 iso_3166_2 | () [] () [] | 9 iso_4217 | [] () [] [] () [] [] | 26 iso_639 | [] [] [] () [] () [] [] [] [] | 38 iso_639_3 | [] () | 8 jwhois | [] [] [] [] [] | 16 kbd | [] [] [] [] [] | 15 keytouch | [] [] [] | 16 keytouch-editor | [] [] [] | 14 keytouch-keyboa... | [] [] [] | 14 klavaro | [] | 11 latrine | [] [] [] | 10 ld | [] [] [] [] | 11 leafpad | [] [] [] [] [] [] | 33 libc | [] [] [] [] [] | 21 libexif | [] () | 7 libextractor | [] | 1 libgnutls | [] [] [] | 9 libgpewidget | [] [] [] | 14 libgpg-error | [] [] [] | 9 libgphoto2 | [] [] | 8 libgphoto2_port | [] [] [] [] | 14 libgsasl | [] [] [] | 13 libiconv | [] [] [] [] | 21 libidn | () [] [] | 11 lifelines | [] | 4 liferea | [] [] [] | 21 lilypond | [] | 7 linkdr | [] [] [] [] [] | 17 lordsawar | | 1 lprng | [] | 3 lynx | [] [] [] [] | 17 m4 | [] [] [] [] | 19 mailfromd | [] [] | 3 mailutils | [] | 5 make | [] [] [] [] | 21 man-db | [] [] [] | 8 man-db-manpages | | 4 minicom | [] [] | 16 mkisofs | [] [] | 9 myserver | | 0 nano | [] [] [] [] | 21 opcodes | [] [] [] | 11 parted | [] [] [] [] [] | 15 pies | [] [] | 3 popt | [] [] [] [] [] [] | 27 psmisc | [] [] | 11 pspp | | 4 pwdutils | [] [] | 6 radius | [] [] | 9 recode | [] [] [] [] | 28 rosegarden | () | 0 rpm | [] [] [] | 11 rush | [] [] | 4 sarg | | 1 screem | [] | 3 scrollkeeper | [] [] [] [] [] | 27 sed | [] [] [] [] [] | 30 sharutils | [] [] [] [] [] | 22 shishi | [] | 3 skencil | [] [] | 7 solfege | [] [] [] [] | 16 solfege-manual | [] | 8 soundtracker | [] [] [] | 9 sp | [] | 3 sysstat | [] [] | 15 tar | [] [] [] [] [] [] | 23 texinfo | [] [] [] [] [] | 17 tin | | 4 unicode-han-tra... | | 0 unicode-transla... | | 2 util-linux-ng | [] [] [] [] | 20 vice | () () | 1 vmm | [] | 4 vorbis-tools | [] | 6 wastesedge | | 2 wdiff | [] [] | 7 wget | [] [] [] [] [] | 26 wyslij-po | [] [] | 8 xchat | [] [] [] [] [] [] | 36 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | 63 xkeyboard-config | [] [] [] | 22 +---------------------------------------------------+ 85 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW 178 domains 119 1 3 3 0 10 65 51 155 17 98 7 41 2618 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If June 2010 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://translationproject.org/extra/matrix.html'. 1.5 Using `gettext' in new packages =================================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle the use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `coordinator@translationproject.org' to make the `.pot' files available to the translation teams. idjc-0.8.16/compile0000755000175000017500000001624512552234435011033 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2014 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: idjc-0.8.16/README0000644000175000017500000000152112630014502010310 00000000000000Internet DJ Console README. A full set of documentation for this particular version can be found in the doc directory of the source tree and possibly installed in /usr/share/doc/idjc.../ in HTML format. Look for index.html. The documentation on the project homepage at http://idjc.sourceforge.net relates to the most recently released source code tarball. It's advice may not be relevant to the version you are trying to use. If you obtained this code from the git repository the doc directory won't exist yet. Please run the bootstrap script to re-create the build environment and doc directory which is where to look for further build instructions. Before making IDJC itself you should install libshout-idjc from the subdirectory of the git sources or separate download for the released version. This probably only ever needs to be done once. idjc-0.8.16/Makefile.in0000644000175000017500000011217312711167210011510 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(dist_noinst_SCRIPTS) \ $(dist_noinst_DATA) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = idjc.in idjc.desktop.in idjc.appdata.xml.in CONFIG_CLEAN_VPATH_FILES = 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)$(bindir)" "$(DESTDIR)$(appdatadir)" \ "$(DESTDIR)$(appmenudir)" "$(DESTDIR)$(docdir)" \ "$(DESTDIR)$(pkgdatadir)" SCRIPTS = $(dist_noinst_SCRIPTS) $(nodist_bin_SCRIPTS) 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 DATA = $(dist_noinst_DATA) $(nodist_appdata_DATA) \ $(nodist_appmenu_DATA) $(nodist_doc_DATA) \ $(nodist_pkgdata_DATA) 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) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/idjc.appdata.xml.in.in $(srcdir)/idjc.desktop.in.in \ $(srcdir)/idjc.in.in ABOUT-NLS AUTHORS COPYING ChangeLog \ INSTALL NEWS README compile config.guess config.rpath \ config.sub depcomp install-sh ltmain.sh missing py-compile 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@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_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 = ${prefix}/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION} dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = po c python artwork man doc EXTRA_SCRIPTS = nodist_bin_SCRIPTS = ${PACKAGE_NAME} dist_noinst_SCRIPTS = idjc.in.in bootstrap nodist_doc_DATA = AUTHORS.gz NEWS.gz README.gz ChangeLog.gz dist_noinst_DATA = idjc.desktop.in.in idjc.appdata.xml.in.in nodist_appmenu_DATA = ${PACKAGE_NAME}.desktop appmenudir = ${prefix}/share/applications nodist_appdata_DATA = ${PACKAGE_NAME}.appdata.xml appdatadir = ${datadir}/appdata nodist_pkgdata_DATA = buildinfo ACLOCAL_AMFLAGS = -I m4 EXTRA_DIST = config.rpath m4/ChangeLog all: 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) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu 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 idjc.in: $(top_builddir)/config.status $(srcdir)/idjc.in.in cd $(top_builddir) && $(SHELL) ./config.status $@ idjc.desktop.in: $(top_builddir)/config.status $(srcdir)/idjc.desktop.in.in cd $(top_builddir) && $(SHELL) ./config.status $@ idjc.appdata.xml.in: $(top_builddir)/config.status $(srcdir)/idjc.appdata.xml.in.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-nodist_binSCRIPTS: $(nodist_bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(nodist_bin_SCRIPTS)'; 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 \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | 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; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$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_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-nodist_binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(nodist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-nodist_appdataDATA: $(nodist_appdata_DATA) @$(NORMAL_INSTALL) @list='$(nodist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \ done uninstall-nodist_appdataDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir) install-nodist_appmenuDATA: $(nodist_appmenu_DATA) @$(NORMAL_INSTALL) @list='$(nodist_appmenu_DATA)'; test -n "$(appmenudir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appmenudir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appmenudir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appmenudir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appmenudir)" || exit $$?; \ done uninstall-nodist_appmenuDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_appmenu_DATA)'; test -n "$(appmenudir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appmenudir)'; $(am__uninstall_files_from_dir) install-nodist_docDATA: $(nodist_doc_DATA) @$(NORMAL_INSTALL) @list='$(nodist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-nodist_docDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) install-nodist_pkgdataDATA: $(nodist_pkgdata_DATA) @$(NORMAL_INSTALL) @list='$(nodist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \ done uninstall-nodist_pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgdatadir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | 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 distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | 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)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) 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: check-recursive all-am: Makefile $(SCRIPTS) $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(appmenudir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgdatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool clean-local 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-nodist_appdataDATA install-nodist_appmenuDATA \ install-nodist_docDATA install-nodist_pkgdataDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-nodist_binSCRIPTS 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: uninstall-nodist_appdataDATA \ uninstall-nodist_appmenuDATA uninstall-nodist_binSCRIPTS \ uninstall-nodist_docDATA uninstall-nodist_pkgdataDATA .MAKE: $(am__recursive_targets) all 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 clean-local cscope cscopelist-am ctags ctags-am \ dist dist-all dist-bzip2 dist-gzip dist-lzip dist-shar \ dist-tarZ dist-xz dist-zip 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-nodist_appdataDATA install-nodist_appmenuDATA \ install-nodist_binSCRIPTS install-nodist_docDATA \ install-nodist_pkgdataDATA 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 uninstall-nodist_appdataDATA \ uninstall-nodist_appmenuDATA uninstall-nodist_binSCRIPTS \ uninstall-nodist_docDATA uninstall-nodist_pkgdataDATA .PRECIOUS: Makefile ${PACKAGE_NAME}: idjc.in @sed -e 's|$${prefix}|${prefix}|g' -e 's|$${pkglibdir}|${pkglibdir}|g' $? >$@ ${PACKAGE_NAME}.desktop: idjc.desktop.in @sed -e 's|$${prefix}|${prefix}|g' -e 's|$${exec_prefix}|${exec_prefix}|g' $? >$@ ${PACKAGE_NAME}.appdata.xml: idjc.appdata.xml.in @sed -e 's|$${prefix}|${prefix}|g' -e 's|$${exec_prefix}|${exec_prefix}|g' $? >$@ AUTHORS.gz: AUTHORS @ gzip -c $? >$@ NEWS.gz: NEWS @ gzip -c $? >$@ README.gz: README @ gzip -c $? >$@ ChangeLog.gz: ChangeLog @ gzip -c $? >$@ buildinfo: @GIT_VERSION_CONTROL_TRUE@ echo Commit hash: $$(git log -n1 "--pretty=format:%H") > buildinfo @GIT_VERSION_CONTROL_TRUE@ echo Commit date: $$(git log -n1 "--pretty=format:%aD") >> buildinfo @GIT_VERSION_CONTROL_TRUE@ echo Repo status: $$(if test -z "$(git status --porcelain) 2>&1" ; then echo "clean" ; else echo "dirty" ; fi) >> buildinfo @GIT_VERSION_CONTROL_TRUE@ echo Remote URL: $$(git config --get remote.origin.url) >> buildinfo @GIT_VERSION_CONTROL_TRUE@ echo >> buildinfo @GIT_VERSION_CONTROL_FALSE@ rm buildinfo echo Build date: $$(date -R) >> buildinfo clean-local: rm -f buildinfo ChangeLog.gz README.gz NEWS.gz AUTHORS.gz ${PACKAGE_NAME}.desktop ${PACKAGE_NAME}.appdata.xml ${PACKAGE_NAME} dtdist: make dist mv ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.gz ${HOME}/Desktop sfpublish: make dist curl --retry 3 --connect-timeout 10 -T ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.gz -n sftp://frs.sourceforge.net/home/frs/project/i/id/idjc/idjc/0.8/ .PHONY: buildinfo dtdist sfpublish ${PACKAGE_NAME} ${PACKAGE_NAME}.desktop # 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: idjc-0.8.16/py-compile0000755000175000017500000001107612552234435011456 00000000000000#!/bin/sh # py-compile - Compile a Python program scriptversion=2011-06-08.12; # UTC # Copyright (C) 2000-2014 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. # This file is maintained in Automake, please report # bugs to or send patches to # . if [ -z "$PYTHON" ]; then PYTHON=python fi me=py-compile usage_error () { echo "$me: $*" >&2 echo "Try '$me --help' for more information." >&2 exit 1 } basedir= destdir= while test $# -ne 0; do case "$1" in --basedir) if test $# -lt 2; then usage_error "option '--basedir' requires an argument" else basedir=$2 fi shift ;; --destdir) if test $# -lt 2; then usage_error "option '--destdir' requires an argument" else destdir=$2 fi shift ;; -h|--help) cat <<\EOF Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..." Byte compile some python scripts FILES. Use --destdir to specify any leading directory path to the FILES that you don't want to include in the byte compiled file. Specify --basedir for any additional path information you do want to be shown in the byte compiled file. Example: py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py Report bugs to . EOF exit $? ;; -v|--version) echo "$me $scriptversion" exit $? ;; --) shift break ;; -*) usage_error "unrecognized option '$1'" ;; *) break ;; esac shift done files=$* if test -z "$files"; then usage_error "no files given" fi # if basedir was given, then it should be prepended to filenames before # byte compilation. if [ -z "$basedir" ]; then pathtrans="path = file" else pathtrans="path = os.path.join('$basedir', file)" fi # if destdir was given, then it needs to be prepended to the filename to # byte compile but not go into the compiled file. if [ -z "$destdir" ]; then filetrans="filepath = path" else filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)" fi $PYTHON -c " import sys, os, py_compile, imp files = '''$files''' sys.stdout.write('Byte-compiling python modules...\n') for file in files.split(): $pathtrans $filetrans if not os.path.exists(filepath) or not (len(filepath) >= 3 and filepath[-3:] == '.py'): continue sys.stdout.write(file) sys.stdout.flush() if hasattr(imp, 'get_tag'): py_compile.compile(filepath, imp.cache_from_source(filepath), path) else: py_compile.compile(filepath, filepath + 'c', path) sys.stdout.write('\n')" || exit $? # this will fail for python < 1.5, but that doesn't matter ... $PYTHON -O -c " import sys, os, py_compile, imp # pypy does not use .pyo optimization if hasattr(sys, 'pypy_translation_info'): sys.exit(0) files = '''$files''' sys.stdout.write('Byte-compiling python modules (optimized versions) ...\n') for file in files.split(): $pathtrans $filetrans if not os.path.exists(filepath) or not (len(filepath) >= 3 and filepath[-3:] == '.py'): continue sys.stdout.write(file) sys.stdout.flush() if hasattr(imp, 'get_tag'): py_compile.compile(filepath, imp.cache_from_source(filepath, False), path) else: py_compile.compile(filepath, filepath + 'o', path) sys.stdout.write('\n')" 2>/dev/null || : # 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: idjc-0.8.16/INSTALL0000644000175000017500000003661012552234435010504 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. idjc-0.8.16/po/0000755000175000017500000000000012711167613010143 500000000000000idjc-0.8.16/po/insert-header.sin0000644000175000017500000000124012631274031013317 00000000000000# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } idjc-0.8.16/po/boldquot.sed0000644000175000017500000000033112631274031012400 00000000000000s/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g s/“/“/g s/”/”/g s/‘/‘/g s/’/’/g idjc-0.8.16/po/Makefile.in.in0000644000175000017500000003744212631274031012541 00000000000000# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # # Origin: gettext-0.18 GETTEXT_MACRO_VERSION = 0.18 PACKAGE = @PACKAGE@ VERSION = @VERSION@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, # @install_sh@ does not start with $(SHELL), so we add it. # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. mkinstalldirs = $(SHELL) @install_sh@ -d install_sh = $(SHELL) @install_sh@ MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ GMSGFMT_ = @GMSGFMT@ GMSGFMT_no = @GMSGFMT@ GMSGFMT_yes = @GMSGFMT_015@ GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) MSGFMT_ = @MSGFMT@ MSGFMT_no = @MSGFMT@ MSGFMT_yes = @MSGFMT_015@ MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) XGETTEXT_ = @XGETTEXT@ XGETTEXT_no = @XGETTEXT@ XGETTEXT_yes = @XGETTEXT_015@ XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: check-macro-version all-@USE_NLS@ all-yes: stamp-po all-no: # Ensure that the gettext macros and this Makefile.in.in are in sync. check-macro-version: @test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ exit 1; \ } # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because # we don't want to bother translators with empty POT files). We assume that # LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. # In this case, stamp-po is a nop (i.e. a phony target). # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot test ! -f $(srcdir)/$(DOMAIN).pot || \ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @test ! -f $(srcdir)/$(DOMAIN).pot || { \ echo "touch stamp-po" && \ echo timestamp > stamp-poT && \ mv stamp-poT stamp-po; \ } # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed if LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null | grep -v 'libtool:' >/dev/null; then \ package_gnu='GNU '; \ else \ package_gnu=''; \ fi; \ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ else \ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ fi; \ case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ *) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --package-name="$${package_gnu}@PACKAGE@" \ --package-version='@VERSION@' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ esac test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ if test -f "$(srcdir)/$${lang}.po"; then \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) \ && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \ esac; \ }; \ else \ $(MAKE) $${lang}.po-create; \ fi install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: stamp-po $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/$(DOMAIN).pot; then \ dists="$$dists $(DOMAIN).pot stamp-po"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir) || exit 1; \ else \ cp -p $(srcdir)/$$file $(distdir) || exit 1; \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for creating PO files. .nop.po-create: @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ exit 1 # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ esac; \ }; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: # Recreate Makefile by invoking config.status. Explicitly invoke the shell, # because execution permission bits may not work on the current file system. # Use @SHELL@, which is the shell determined by autoconf for the use by its # scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && @SHELL@ ./config.status $(subdir)/$@.in po-directories force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: idjc-0.8.16/po/ChangeLog0000644000175000017500000000073612630014502011627 000000000000002011-08-07 gettextize * Makefile.in.in: New file, from gettext-0.18.1. * boldquot.sed: New file, from gettext-0.18.1. * en@boldquot.header: New file, from gettext-0.18.1. * en@quot.header: New file, from gettext-0.18.1. * insert-header.sin: New file, from gettext-0.18.1. * quot.sed: New file, from gettext-0.18.1. * remove-potcdate.sin: New file, from gettext-0.18.1. * Rules-quot: New file, from gettext-0.18.1. * POTFILES.in: New file. idjc-0.8.16/po/es.gmo0000644000175000017500000026500012711167613011201 000000000000009LL MM #M0M )N65N-lN)N,N'N2OLOTO\OdOlOtO|OOOOOOOOOOOOOOOOmO\PePlPuP{PPPPPPPPPP PPwQVR^R.SSM2TNTTTU eUoUUU%U UUV$lW*W:WCWM;X-XXEY;Y,ZF*[q[u[}[[[[[ [[s\\\\ \\] ]]]]7]!^ ?^K^/Z^^ /_ ;_ E_Q_X_ 6` C` Q`_` f`t`#```5` ` a aa aaaa^aN>b bbbbb bbb cccc$cJ,c wcc cc c cc c ccccc7d 9d FdSd\d|dddddddddee#&eJecezeeDWffg :hFhMhCShhhhh h h h& i0i8i j!jk 3k >kIk\k4wkkk kkk/kl(l Bl LlWl^lpllllllllll lll l mm)m)2m \m>gm mmmmFmCn Rn\nenHoojp'ppppp'pq q !q.q=qLqaqtqqq/q+q0q)r!9r.[r*r#rjr*Ds!osss ssssssss s t)t2tAtatjtqt vt ttt tt ttttttt uu)u GuRuv vv2v AvNvSv[vav jvxvv vXv`v\waw1rwwwwwwww0w x%x6x KxWx [xfx}xxxxxxxxQy Vy0cyyz z{{6{,{3+|_|s|y||| |.|| | }}~ !~ ,~ 8~:E~;~ ~7~  $1 3 =I[bmk   *4 HS\ c p~ k&8 R _/k5Rс$ +8U\dmv`   *8'<-d"& K Q]p 9#(/6>D^ r } H &%.#Tx  Ɔ+ˆ  +5LTY `/k  Ç ̇ه  *;B1G ÿ 3 ?M:\݉,<Q c o}Ȋފ ) 4 ? JXpҋ3 BM R^ gs{ ь ()1[   ! ,6 =H0Q Žڎo/BJ4S Őא+ސ &E8K! Ցe9H Ғ ْ?[W( ܓnhW ǔє ٔ  /!\Qؕ  +D KPVQ   )8ڗ%5DJ Q]mҘ  $@FE@;͙ $(:?&Ӝ j6 bW06-g*f"΢*ܣ3;)/@.>)mwfXާ-7.e0QŨ+ CP:UV-Tw3~9<-v@~0d]}5q 3u51,ݲ Yq[V8 >HMSZ`ckȹιݹ  ( :,Gtx  º˺ Ӻ*ߺ U j t~  4ʻ. ?M^nu{%x6 b:6<q $(F-M{(kfQ u# ;I\b ,/0\,  , 9EX_j/  ,Mm$!4V#g9*'+!Df)2kh'(( +&R#j#& >07.h1,2)19AIQY^elszYbirxx\=vUL+ 1%#W({*j5GWqk>+XHJ0Wuy =6 +C o(z|?'.1I{ ,: COWgox 1@ ?M  $)vC^ #3Shq V5G[ow J 4@ S ^&.(?2h-+Q '2 Q _z  * 68# \ gq A   /!"Qt )  $1C GU[ dp  = P q~PL, 5?Z#6 +8d lw,HG9'37&3^73]-  $ )5E T&` $  !)9L"`% ), 5AVhqy   mw88 !>V\C`  ";Xqg*6= t**G154g# : ISc     ? @  V Cc           " +         " 8  T a g          a {   4 ; V5 3  . 98r!w(bYj2,= 6VZcjsz !^ $ 7''7GOVgv1{   &. 6;B~    #.CJ5O     '&F-mS -N0n  7Uq$ ! :$[!+&F)m9+&($-M{   # 3Tfm9v ~    I3 P"[%~{ &! =!I!3R!!!!!!!!8! '"2"$M" r"N|" "" "-"+#tB#O# $$'$(B$+k$$$$!$P$>%2%%&& ' '"')';' D'N'`'@~'l',(H(f(}(((6(( (_(d^)))) ))**!**+ + +#+2+B+ W+c+j+++"+++ +, &,0,4,O,b,)k,,E,J,@,-m-*.B.2-/?`//DJ020000t2L3yf3349505667(F7o7 7O7(8>'9f9%:-?:m:J`;4;); <<n=?==5>Ds>Z>1?E?W?N\??NA* BW6BB8CVCH D8SDGDD6mEyEF5F:F;HUH4I~ J8J?J KvQQc!RRSSSS #S-S5S 7S$BSgSxS#SSSSST T $T0TOTB`TTTT T TT T UU&U56U lU[wUUUUUUV V VVV"V 7VCBVVVVVVVWWWW"W)*XTX#YYZ ZZ5Z>ZCZG\F\F"]i]] ]]']]-] ^6^K^3[^^^^^Z_ x_\__` ``/a Ma[aqawabb-b2?b5rb(bbbcc2c AcNcbc|cc?d Rd^dtd&d$dd!e$ee eRf7Sf1f.f'fg'.g=Vg gug+h/Dh,th%hhhh2h(0i-Yi.i&iiiiii85 hEF j*+oFuSFUd(M{? S$rA?b_PY\$b3gD;H%)pD_^ G1pCD{+4d#AZRK"P8!j^F'[(wPJnXypkQ #ip3&Zu-]E,.v0zuyPl~C}IzgmQO"vX);37=x11/tl:gf-j/H*x9V:yc+S YHN Z&/5B]'5s|(Lh?s}l\!bV:wf\L=m . 3OQ Deu.e`TgGG(yIU #olk0G%&ULqnJ9t "|]< >-z,SNs!WmKa8<fa=2XY^%i{fK2qtA}>Lr:V@|`x @B;2 arZWdC6vTJRMIX'H m^JB =;@2%qcxwh~0N)0{,v994t ?~6$`/zj)"[ [!>V6 E_E5<.odTR|s> 8K*]&ih}W1k_w'C$WMn 6*AIq7i~o` becYO<@BRUne\QMc+T k7-[O#4rN47,a Additional Text Frames Stream %d Audio Tracks'%s' control'Block size' indicates the amount of time that it will take to play from the currently selected track to the next stop. 'Remaining' is the amount of time until the next stop. 'Finish' Is the computed time when the tracks will have finished playing.(Cue sheet)-- sub-command: auto -- mark a profile for auto-launch-- sub-command: ls -- list available profiles-- sub-command: new -- make a new profile-- sub-command: noauto -- remove auto-launch-- sub-command: rm -- remove profile(s)-- sub-command: run -- launch the idjc application-0.5 dB-1.0 dB-1.5 dB-2.0 dB-2.5 dB-3.0 dB0 dB0 most0.5 dB1.0 dB1.5 dB11025 Hz12000 Hz16 bit16000 Hz2 *2.0 dB2.5 dB20 bit20 ms22050 Hz24 bit24 bit records with the highest level of detail. If file size is a concern maybe FLAC is not the right codec.24000 Hz3.0 dB32000 Hz40 ms44100 Hz48000 Hz60 ms64000 Hz7350 Hz8000 Hz88200 Hz96000 Hz<<< Fade across <<<<<< Transfer across <<<BoldReset all JACK port connections? All currently established connections will be lost and replaced with defaults.A connection to a radio server has failed. Reconnection will not be attempted.A scheduled stream disconnection has occurred.The connection to the server in tab {servertab} has failed. A reconnection attempt will be made in {countdown} seconds. This is attempt number {attempt} of {maxtries}.Delete profile '%s' and all its data? The data of deleted profiles cannot be recovered.Delete the data of profile '%s'? The profile will remain available with initial settings.Error while creating new profile. %sError while editing profile: {0}. {1}Permanently delete this server? This action will also erase all of its associated messages.Underline>> Normal Speed <<>>> Fade across >>>>>> Transfer across >>>A Non directory path exists at: '%s'.A VU meter for the stream audio.A blanket gain reduction to promote audio quality when using long established lossy audio codecs like mp3 with loud audio material. ReplayGain makes this feature generally unnecessary and the correct setting in that case is 0 dB.A comma separated list of delays in seconds between reconnection attempts. Note that bad values or values less than 5 will be interpreted as 5.A description of your radio station.A gain adjustment for the player to apply.A higher frame size may sound better on very low bitrates.A label so you may describe briefly the role of this audio channel.A look-ahead brick-wall limiter. Audio signals are capped at the upper limit.A master level control for the media players.A peak hold meter indicating the microphone signal strength and a meter indicating attenuation levels in the microphone signal processing system. Green indicates attenuation from the noise gate, yellow from the de-esser, red from the limiter.A peak hold meter indicating the signal strength of the stream audio.A quality setting that affects how heavily the CPU is used.A table of servers with which to connect. Only one master server can be added for the purpose of streaming. All other servers will appear below the master server in the list for the purpose of stats collection which can be toggled on a per server basis.A useful feature to have switched on while allocating channel openers.AACAAC+ v2AIMAboutAct ifActionActiveAdd MusicAdd any other ID3 text frames here. e.g. TIT2:Alternate Title This will be appended onto the main TIT2 tag. Enter user defined text frames like this: TXXX:foo=bar For more information visit www.id3.org.Add background musicAdd music to left playlistAdd music to right playlistAdd tracks to the playlist.Adjust byAdjust playback volume in dBAfter a number of seconds where a main player is active this button's status indicator will start to flash and will continue to do so until the button is closed or the player stops.Alarm LevelAlbumAlbum - [Disk] - TitleAllAll active recordings and radio streams will terminate.All active recordings will cease.All effectsAll file typesAll of the active radio streams will terminate.All of these settings will provide adequate audio quality. The highest setting will preserve more of the original audio bandwidth at the expense of many CPU cycles.Alter valueAlternateAlternativeAlwaysAn alarm tone alerting the DJ that dead-air is just nine seconds away. This also works when monitoring stream audio but the alarm tone is not sent to the stream. JACK freewheel mode will also be automatically disengaged.AnnouncementAnnouncement:AnnouncementsAppendAppend CursorAppend at CursorApply dither to 16 bit PCM playbackArtistArtist - Album - TitleAssume the connection is beyond saving and reconnect.At connect:At start-up do not make any JACK connections. This option delegates all control over restored connections to the session handler.Audio FeedAudio input channelsAudio to DJAudio to streamAutoAuto, no plaintextAutomatically connect to the server at a specific time in 24 hour format, midnight being 00:00Automatically disconnect from the server at a specific time in 24 hour format.BackSpaceBackground TracksBackground Tracks volume.Background playerBad TagBandwidthBasic ControlsBasic StreamerBasic inputBestBiasBindingsBitrateBitrate variability. Actual VBR operation may require a higher frame size.Block sizeBoost/Cut (dB)Both playersBrowseBuild InfoButton BarButton Open TriggersBy ExtensionCA directoryCA fileCBR *CPUCVBRCannot rename profile {0} to {1}, {1} currently exists.CapabilitiesCatalog PathCatalogsCertificate Authority DirectoryCertificate Authority FileChChannelChannel MetersChannel OpenerChannel output enableChannel set balanceChannel set gainChannel set volumeChannelsChannels/UsersChoose a folder/directory of music.Choose a media directoryChoose a playlist fileChoose a playlist file.Choose whether the stream will carry dynamic metadata. In the case of Ogg streams this is important as a great many players can't handle chained Ogg streams which result from the metadata updates.Choose whether to send metadata. Recordings will use UTF-8 metadata.Choose which directory you want to save to. All file names will be in a timestamp format and have either an oga, mp3, or flac file extension. Important: you need to select a directory to which you have adequate write permission.Choose which stream to record or the 24 bit FLAC option. If the stream isn't already running the encoder will be started automatically using whatever settings are currently configured.Client certClosedCodecCodecs have been grouped by standards body and or container format.Codecs of the MPEG family.Codecs of the Ogg container.Collapse tree.ColoursComplexityConfigurationConfigureConfirmation to quit IDJC is required.ConnectConnect to or disconnect from the radio server. If the button does not stay in, the connection failed for some reason. If the button is greyed out it means your settings within the 'Connections' and 'Format' sections are either incompatible with one another or are incomplete. In order to stream a master server needs to be specified in the configuration section below and must be capable of handling the chosen streaming format.ConnectedConnected: autocommit mode failedConnected: autocommit mode setConnectingConnectionConnection droppedConnection failed (try %d)Connection info for AOL instant messenger goes here.ConstantContact DetailsContributorsControlCopyCopyright 2005-%s Stephen Fairchild and others.Could not write file %s.Create a new announcementCrossfadeCrossfaderCue UpCuesheet PlaylistCustom user agent stringCutoff FrequencyDJDJ Audio LevelDJ nameDJ-mix monitorDSPDatabaseDaysDe-esserDeactivatedDefaultDelayDelay timesDescriptionDirect fader/held buttonDisabledDiscard audio data for as long as needed.DisconnectDisconnect whoever is using the server just before start time.DisconnectedDiskDisk %dDuckerDue to the high bitrate selected, this codec will only support stereo.Due to the low bitrate selected, this codec will only support mono.DuplicateDurationEach one of these tabs represents a separate radio streamer. The LED indicator colours represent the following: Clear=No connection Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to a bad connection.Each one of these tabs represents a separate stream recorder. The LED indicator colours represent the following: Clear=Stopped Yellow=Paused Red=Recording.Each opener button has two vertical bars at the side to make the button state more apparent. These settings control their appearance.Edit control bindingEdit existing server connection detailsEdit profile %sEffectEffect %d ConfigEffect play from startEffective only on newly started tracks.EffectsEffects %dEffects bankEffects bank 1Effects bank 2Effects set headroomEffects set volumeEffects stop manyEffects volume.EmptyEnable the MP3 option by installing libmp3lame.Enable the main-player speed/pitch controlsEnable this if sending to a Shoutcast V1 server.Enable tooltipsEncoder Format Not Set/CompatibleEnd tracks containing long passages of silenceEnlarge the time elapsed/remaining windowsEnter new server connection detailsEnter your DJ name or station name here. Typically this information will be displayed by listener clients.Error during attempt to rename {0} to {1}.Essentially a samplerate setting.ExchangeExpand entire tree.ExtensionExternalExternal PlaylistExtra ShoutcastFLACFadeFade 10sFade 5sFade OverFade audio before disconnecting.Fade outFadered playerFailed to create FULLTEXT indexFallbackFamilyFastFeature SetFetch Failed!FetchingFileFile TypeFilenameFilename:Fill channel meter void spaceFiltersFinishFocused playerForceFormatFormat StringFound Prokyon 3 schemaFound existing FULLTEXT indexFrame SizeFrequency in Hertz above which audio can pass to later stages. Use this feature to restrict low frequency sounds such as mains hum. Setting too high a level will make your voice sound thin.FromFrom HereFrom the album, %sFully FeaturedFuzzy SearchGainGeneralGenreGenre(s)Group ConnectGroup ControlsGroup DisconnectHF DetailHave a recorder start automatically when a radio server connection is successfully made.Have one of the players start automatically when a radio server connection is successfully made.HelpHigh Pass FilterHigher quality costs more in terms of CPU cycles.HighestHoldHostnameHostname/IP addressHostname[:Port]HoursICQICQ instant messenger connection info goes here.IDJC OutputIDJC PreferencesIDJC Profile ManagerIDJC TaggerIRCIRC serverIRC station operationsIRC stream down messageIRC stream up messageIRC timed messageIRC track announceIcecastIcecast 2 MasterIcecast 2 Stats/RelayIconIdeally set this to something even on servers that allow public anonymous access.If connectedIf the connection breaks reconnect to the serverIf this value is set an attempt will be made to acquire your first choice IRC nickname (if needed) and log in with NickServ@services. The use of the NickServ service requires prior nickname registration on the network using a regular chat client.Ignored playlist controlIn IDJC there are are two audio paths and this '{0}' control toggles between them. When '{1}' is active you can hear what the listeners are hearing including the effects of the crossfader. '{0}' needs to be set to '{2}' in order to make proper use of the VoIP features.In The DJ's MixIndIndicate button numbers and associated channel numbersIndicate which tracks have loudness metadataIndicates which mode IDJC will be in when launched.Individual ControlsInputInsert AttributeInsert Attribute or Colour CodeInsert controlInteractionInternet Relay Chat connection info goes here.IntervalInvert SignalIt may not be desirable to use the default level since it is rather quiet. This should be set 4 or 5 dB higher than the ReplayGain setting.It may not be desirable to use the default level since it is rather quiet. This should be set 4 or 5 dB lower than the R128 setting.ItemJACK PortsJob droppedJoint StereoJoint Stereo is a good choice on streams with low bitratesJoint Stereo is a good choice on streams with low bitrates.Jump To TopKeep the reconnection dialogue box hidden at all times.KeyKeyboard pressKickKick SourceKick SourcesLLF DetailLast PlayedLast Played ScaleLatin1Latin1 *Left click toggles between showing the amount of time elapsed or remaining on the current track being played.Left playerLevel adjustment (dB)LicenceLimiterListen URLListen for input...ListenersListening for inputLogin nameLoop AllLowestM3U playlistM3U8 playlistMANUALMIDI controlMIDI noteMIDI pitch-wheelMP2MP3MPEGMPEG2 introduced lower samplerate options and corresponding lower bitrates. Choose 2 if those are required.Main Panel ButtonMain Panel Opener ButtonsMain PlayersMake PublicMake output from this player audible to the DJ.Make output from this player available for streaming.Make the microphone audio audible in the DJ mix. This may not always be desirable.ManualManual startMaster server admin passwordMediumMessageMeta TagMetadataMetadata SourceMetadata normally updates only on song title changes but you can force an immediate update here.Metadata:MiddleMinutesMiscMiscellaneousMiscellaneous FeaturesMisconfiguredMixMix voice over IP audio to the DJ only.Mix voice over IP audio to the output stream.ModeModify or Delete this announcementModule mysql-python (MySQLdb) requiredMonitor MixMonitor Stream MixMonoMostly useful issuing 'amixer' commands, in particular for setting capture.Mount pointMount point Move the crossfader fully left.Move the crossfader fully right.Move the crossfader to the middle of its range of travel.Music DatabaseMusic Loudness CompensationN/ANICKSERVNameNarrowNativeNetworkNeverNew profile based upon %sNew profile detailsNext trackNext track.NickServ p/wNicknameNo Channel Opener ButtonsNo FadeNo JACK ports will be connected except those listed in the session file.No Master Server ConfiguredNo NameNo Recorders Are Correctly ConfiguredNo Streams Are Currently ConfiguredNo compatible ports available.Noise GateNoneNormalNormal SpeedNot PlayedNoteOff when restarting IDJC and off initially.OffsetOn closeOn openOn stream downOn stream upOn targetOne-shot/toggle buttonOnly 12OpenOpenedOperationsOptional data entry field for information only.OpusOther optionsOutputOutput MetersPASSWORDPLS playlistPanning load from presetsPartnered with channel %sPassPasswordPathPath PeelPause recording.Pause.PeakPerform operations on multiple servers in unison.Phase RotatorPlayPlay AllPlay.PlayerPlayer 1Player 2Player DJ output enablePlayer DJ-only switchPlayer Loudness NormalisationPlayer Resample QualityPlayer Settings At StartupPlayer StopPlayer Stop 2Player advancePlayer headroom that is applied when an effect is playing.Player play nextPlayer play previousPlayer play selected from startPlayer play/pausePlayer select nextPlayer select previousPlayer set balancePlayer set gainPlayer set pitchbendPlayer set volumePlayer stopPlayer stop 2Player stream output enablePlayersPlayers advancePlayers pass crossfadePlayers set crossfadePlayers set focusPlayers show pitchbendPlaying track {0} of {1}PlaylistPlaylist 1Playlist 2Playlist 3Playlist ModePlaylist advance buttonPlaylist edit tagsPlaylist insert announcePlaylist insert crossfadePlaylist insert jump to topPlaylist insert pitchunbendPlaylist insert stopPlaylist insert stop 2Playlist insert transferPlaylist typesPopulatingPortPort numberPostgainPreferencesPregainPrependPrepend CursorPrepend PathPrepend at CursorPresetsPressedPrevious track.Problem dropping connectionProcessed inputProfileProfile %s is active.Profile nameProfilesProkyon3 or Ampache (song title) DatabasePublish your radio station on a listings website. The website in question will depend on how the server to which you connect is configured.QualityQuick panningQuietRR128RFC2817RFC2818RandomRandom HopReal nameRecordRecordableRecorderRecorder Filename (excluding the file extension)Recorder set recordingRecordersRecording Facility UnavailableRecording time elapsed.Reduce the S, T, and P sounds which microphones tend to exaggerate. Ideally the Bias control will be set low so that the de-esser is off when there is silence but is set high enough that mouse clicks are detected and suppressed.Reduce the unwanted quietest sounds and background noise which you don't want your listeners to hear with this.Relative Gain (dB)ReleaseReleasedReleased under the GNU General Public License V2.0+.Reload the database.RemainingRemindRemoveRemove ContentsRenameable LabelsRepeatRepeat the sequence of delays indefinitely.ReplayGainResample QualityReserve 24 sound effects slotsResetReset the JACK port connections to the default settings.ResponseRestore the previous sessionReversedRight click for suggested values.Right playerRun in a reduced functionality mode that lowers the burden on the CPU and takes up less screen space.Run in full functionality mode which uses more CPU power.SamplerateSaveSave background playlistSave left playlistSave right playlistSearchSecond choiceSelect File TypeSelect the folder to record toSelect the origin for the playing track metadata on the stream.Select this option to use an independent volume fader for the left and right music players.Separate left/right player volume fadersServer typeSet this on the occasion that the server or its firewall specifically refuses to allow libshout based clients.Set this so that any unmarked tracks are playing at a roughly similar loudness level as the marked ones.Set toSet valueSettingShell CommandShiftingShoutcastShoutcast MasterShoutcast Stats/RelayShow a JACK freewheel control on the main panelShows a marker in the playlists next to each track. Either a green circle or a red triangle.Signal MatchingSimultaneous recording(s)Simultaneous stream(s)Single effectSingular controlSong nameSound an alarm when the music is due to endSourceSource URISpecific AAC support not present in libavcodec. More info: idjc.sourceforge.net.Specific AAC+ support not present in libavcodec. More info: idjc.sourceforge.net.SpeexStagesStart FullStart MiniStart playerStart recorderStart recording. If this button is greyed out it could mean either the encoder settings are not valid or write permission is not granted on the selected folder.Status Indicator AppearanceStd.StereoStereo PanningStopStop recordingStop recording.Stop streamingStop.StreamStream InfoStream recorderStream set connectedStreaming Facility UnavailableStreamsSuggested ValuesSupported Media FormatsSupported mediaSuppressedTLSTLS Client CertificateTabbed AreaTargetTemporary directory creation failed.TextThe '%s' pane determines how the input is handled, and to what effect.The AAC options require IDJC be rebuilt against libav libraries.The MP2 option requires IDJC be rebuilt against libtwolame.The URL of your radio station. This and the rest of the information below is intended for display on a radio station listings website.The amount of headroom required (dB)The button will be grouped with the other microphone opener buttons. It will be affected by signals to close microphone buttons. Channels associated with this button will be mixed differently when using the VoIP modes.The chosen profile is currently running.The combined total number of listeners in all server tabs.The comma or space separated list of channels and/or users to whom the message will be sent. Protected channels are included with the form: #channel:keyword.The contingency plan upon the stream buffer becoming full is...The controls for configuring a stream.The crossfader.The default profileThe delay time of this message. Typically listener clients will buffer approximately ten seconds of audio data which means they are listening the same amount of time behind the actual stream therefore without a delay IRC messages will appear to the listener many seconds ahead of the audio. This setting will help synchronise the track change with the message.The ducker automatically reduces the level of player audio when the DJ speaks. These settings allow you to adjust the timings of that audio reduction.The encoder complexity setting which affects CPU load.The fallback text to use when %r %t %l metadata is unavailable. See the format string to the left.The first half of a binding is the input which comes in the form of the press of a keyboard key or an event from a midi device. Input selection can be done manually or with the help of the '%s' option.The headroom is the amount by which to reduce player volume when this opener is active. Note that the actual amount will be the largest value of all the currently open buttons.The higher this setting, the higher the bitrate.The interval in seconds of the timed message.The message to send. On the pop-up window (mouse right click) are some useful options for embedding metadata and for text formatting. The window below displays how the message will appear to users of XChat.The musical genres you are likely to play.The new profile name is not valid.The opener button's icon.The opener button's text.The pan preset selection buttons. In the stereo image at a click the DJ can be on the left and a guest on the right and when the guest is gone at a click the DJ can be central again. Note: preconfiguration of pan preset settings is required.The profile directory '%s' already exists.The profile length is too long (max %d characters).The real name you want to use which will be available regardless of whether the network connection was made with the primary nickname or not. Ideally set this to something.The signal processing mode.The specified template '%s' is not valid.The specifiers are $r for the number of the recorder with the rest being documented in the strftime man page. Users may wish to alter this to make filenames that are compatible with particular filesystems.The stream volume level to send to the voice over IP connection.The sum total of listeners in this server tab.The template profile '%s' does not exist.The time elapsed/remaining windows sometimes don't appear big enough for the text that appears in them due to unusual DPI settings or the use of a different rendering engine. This option serves to fix that.The time in seconds that the crossfader will take to automatically pass across when the button to the right is clicked.The time offset within the below specified interval at which the message will be issued.The volume control for the left music player.The volume control for the right music player.The volume control shared by both music players.These controls are provided to obtain a decent match between the two microphones.These settings take effect after restartingThird choiceThisThis adjusts the playback speed anywhere from 25% to 400%.This adjusts the quality of the audio resampling method used whenever the sample rate of the music file currently playing does not match the sample rate of the JACK sound server. Best mode offers the best sound quality but also uses the most CPU (not recommended for systems built before 2006). All these modes provide adequate sound quality.This adjusts the sound level of the DJ alarm. Typically this should be set close to the dj audio level when using the '%s' feature, otherwise a bit louder.This adjusts the sound level of the DJ audio.This affects the stream metadata only. Recordings will use UTF-8 for their metadata.This button causes the crossfader to move to the opposite side at a speed determined by the speed selector to the left.This button is to be treated as a microphone openerThis button steps through the active playlist, pausing between tracks. The active playlist is defined by the placement of the crossfader.This button will automatically cancel JACK freewheel modeThis button will flash as a reminder to closeThis control is for enabling variable bitrate on Vorbis streams.This controls the allocation of front panel open/unmute buttons. Having one button control multiple microphones can save time.This controls the amount of fade between tracks.This feature maybe improves the sound quality a little when listening on a 24 bit sound card.This feature processes the microphone audio so that it sounds more even. The effect is particularly noticable on male voices.This feature requires the installation of python-irc.This indicates the state of the various streams. Flashing means stream packets are being discarded because of network congestion. Partial red means the send buffer is partially full indicating difficulty communicating with the server. Green means everything is okay.This is attempt number %d. There is no retry limit.This is for kick and stats on Shoutcast master servers that have an administrator password. For those that don't leave this blank (the source password is sufficient for those).This option causes some extra widgets to appear below the playlists which allow the playback speed to be adjusted from 25% to 400% and a normal speed button.This selects the response curve of the crossfader. The mid-point attenuations are -3dB, 0dB, and -22dB respectively.This server is to be scanned for audience figuresThis sets the playback speed back to normal.This sets the playlist mode which defines player behaviour after a track has finished playing. 'Play All' is the most versatile mode since it allows the use of embeddable playlist control elements which are accessible using the right click context menu in the playlist. When no playlist controls are present the tracks are played sequentially until the end of the playlist is reached at which point the player will stop. 'Loop All' causes the tracks to be played in sequence, restarting with the first track once the end of the playlist is reached. 'Random' causes the tracks to be played indefinitely with the tracks selected at random. 'Manual' causes the player to stop at the end of each track. 'Cue Up' is similar to manual except that the next track in the playlist will also be highlighted. 'External' draws it's tracks from an external playlist or directory one at a time. Useful for when you want to stream massive playlists. 'Alternate' causes the next track to be cued up before starting the opposite player. The crossfader is moved over. 'Fade Over' will crossfade to the other player at the end of every track. 'Random Hop' will pick a track at random from the other playlist.This should be set for all buttons that control input from a live sound source or device.This slider acts as both a play progress indicator and as a means for seeking within the currently playing track.This will disconnect whoever is currently using the server, freeing it up for personal use.This, what you are currently reading, is a tooltip. This feature turns them on or off.This:ThresholdTimeTimerTimer:TitleToTo HereToggle JACK freewheel mode.Tooltips enableTotal number of tracks %dTotal play duration %sTrackTrack announceTrack time elapsedTrack time remainingTracks PlayedTransferTranslatorsTree fetch failedTrigger textTrim quiet song endings and trailing silenceTrkTroubleshootingUTF-8UltrawideUnknownUnrecognised databaseUnsupportedUntaggedUp-timeUpper LimitUse ISO-8859-1 encoding for fixed metadataUse valueUseful for when microphones are cancelling one another out, producing a hollow sound.User NameUser nameV 1V 2V 2.5VBRVUVariabilityViewVoIPVoIP DJ-only switchVoIP channelVoIP level adjustment. 0dB gain is at the mid point.VoIP output enableVoIP panning + mono downmixVoIP set balanceVoIP set gainVoIP set mixbackVoIP set volumeVorbisWHEREWebMWeeksWhen a nickname is in use on the target IRC network, during connection these IRC nicknames are cycled through, then twice again after appending an additional underscore until giving up. This gives IDJC a maximum of nine IRC nicknames to try.When opened close these other buttonsWhen selected this player will be treated like a main player. It will be affected by microphone ducking and won't mute when a main player is operating.When starting IDJC most of the main window settings will be as they were left. As an alternative you may specify below how you want the various settings to be when IDJC starts.WideWidthXChat commandXSPF playlistXiph/OggYearYou can enter text to accompany the stream here and can specify placemarkers %r %t %l %s for the artist, title, album, and songname respectively, or leave this text field blank to use the default metadata. Songname (%s) is derived from the filename in the absence of sufficient metadata, while the other placemarkers will use the fallback text to the right. When blank, Ogg streams will use the standard Vorbis tags and mp3 will use %s.You can make certain media databases accessible in IDJC for easy drag and drop into the playlists.You can use this to boost the amount of bass in the audio.You can use this to boost the amount of treble in the audio.[Metadata suppressed]_Auto_Retry Nowa description of the profilea non directory path exists at: '%s'albuman existing profile to use as a templateartistattempt connection with the specified serversauto failed: %scould not get a lock on profile {0}: {1}could not write file %sdescription_textdirectory does not exist: %se.g. 'L1:name' for a named Ladish [L1] session called 'name' -- refer to the idjc man page for more detailsfailed to create profile: %sfailed to delete profile: %sfailed to grab bus name -- another session by the same name appears to be runningforce the appearance or non-appearance of the profile chooser dialog -- when used with the -p option the chosen profile is preselectedgenreicon_pathnamekick sources on servers -- note that this will be done before any server connection attempts are madelist available profilesls failed: %smake a new profilemm:ssnew profile name -- will form part of the dbus bus/object/interface name and the JACK client ID -- restrictions therefore applynicknameno profile is setnoauto failed: %spathname to an icon -- defaults to idjc logoposition the crossfader for the specified playerproblem with specified session directory: %sprofile %s does not existprofile %s is already runningprofile does not existprofile name is badprofile_choiceprofile_namerecord dateremove auto-launchremove profile(s)run the main idjc application -- this is the default when no command line options are specifiedselect which profile is to automatically launchserver_namesession={type}:{name}session_detailsshow the version number and exitshow this help message and exitshow this help message and exit -- additional help is available on each of the sub-commands for example: "%(prog)s run --help" shows the help for the run commandspecified profile does not exist: %sspecified profile is not valid %stemplate_profiletemporary directory creation failedthe alternate profile name to appear in window title barsthe audio channels to have open at startupthe chosen profile is currently runningthe named jack sound-server to connect withthe new profile name is not validthe profile '%s' is in usethe profile directory '%s' already existsthe profile length is too long (max %d characters)the profile to make automaticthe profile to use -- overrides the user interface preferences "show profile dialog" optionthe profile(s) to removethe specified profile name is not validthe specified template '%s' is not validthe template profile '%s' does not existthe voip mode at startuptitletrack/totalunknown session type: %s: must be one of %suser interface settings{0} profile={1}:{2} settings saved.{0} session={1}:{2} settings saved.{numericid} [{source}] > [{directory}]±10%±20%±30%±40%±50%Project-Id-Version: idjc 0.8.16_development Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk POT-Creation-Date: 2016-04-30 18:46+0100 PO-Revision-Date: 2015-12-27 16:27-0600 Last-Translator: Blank Frank Language-Team: English Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Marcos Adicionales de Texto Stream%d Pistas de Audio%s de control''Tamaño de Bloque' indica la cantidad de tiempo que se necesita para reproducir desde la pista seleccionada a la siguiente parada. 'Restante' es la cantidad de tiempo hasta la siguiente parada. 'Acabado' Es la hora calculado cuando las pistas se terminarán.(Hoja Cue)-- sub-comando: auto -- marcar un perfil para auto-lanzamiento-- sub-comando: ls -- Lista perfiles disponibles-- sub-comando: nuevo -- hacer un nuevo perfil-- sub-comando: noauto -- quitar auto-lanzamiento-- sub-comando: rm -- eliminar el perfil (s)-- sub-comando: run -- iniciar la aplicación IDJC-0,5 DB-1,0 DB-1,5 DB-2,0 DB-2,5 DB-3,0 DB0 dB0 más0,5 dB1,0 dB1,5 dB11025 Hz12000 Hz16 bit16000 Hz2 *2,0 dB2,5 dB20 bit20 ms22050 Hz24 bits24 registros de bits con el más alto nivel de detalle. Si el tamaño del archivo es una preocupación tal vez FLAC no es el codec correcto.24000 Hz3,0 dB32000 Hz40 ms44100 Hz48000 Hz60 ms64000 Hz7350 Hz8000 Hz88200 Hz96000 Hz<<< Fundido través <<<<<< Transferencia través <<<NegritaRestablecer todas las conexiones del puerto JACK? Todas las conexiones actualmente establecidas se perderán y serán reemplazadas por predeterminadas.Una conexión a un servidor de radio ha fallado. Reconnection no se intentará.Se ha producido un flujo de desconexión programada.La conexión con el servidor en la pestaña {servertab} ha fallado. Un intento de reconexión se hará en {countdown} segundos. Este es el intento número {attempt} de {maxtries}.Eliminar perfil '%s' y todos sus datos? Los datos de los perfiles eliminados no se pueden recuperar.Borrar los datos de perfil '%s'? El perfil se mantendrá disponible con ajustes iniciales."Error al crear un perfil nuevo.\n" "\n" "%s"Error al editar el perfil: {0}. {1}Eliminar permanentemente este servidor? Este acción también borrará todos sus mensajes asociados.Subrayado>> Velocidad normal <<>>> Fundido través >>>>>> Transferencia través >>>Existe una ruta de acceso no directorio en: '%s'.Un medidor VU para el audio stream.Una reducción de ganancia generalizada para promover la calidad de audio al utilizar los códecs de audio con pérdida de antiguo establecidos como mp3 con material de audio muy fuerte. ReplayGain hace esta función generalmente innecesario y la configuración correcta en este caso es de 0 dB.Una lista separada por comas de los retrasos se separó en segundos entre intentos de reconexión. Tenga en cuenta que los valores de los malos o los valores inferiores a 5 se interpretará como 5.Una descripción de su estación de radio.Un ajuste de ganancia para el reproductor de aplicar.Un tamaño de cuadro más alta puede sonar mejor en bitrates muy bajos.Una etiqueta así que usted puede describir brevemente el papel de este canal de audio.Un limitador "pared de ladrillo" de preanálisis. Las señales de audio tienen un límite en el límite superior.Un control de nivel maestro para los reproductores multimedia.Un medidor de retención de pico que indica la intensidad de la señal del micrófono y un medidor que indica los niveles de atenuación en el sistema de procesamiento de la señal del micrófono. El color verde indica la atenuación de la puerta de ruido, amarillo del de-esser, rojo del limitador.Un medidor de retención de pico que indica la intensidad de la señal del audio stream.Un ajuste de calidad que afecta en gran medida de cómo se utiliza la CPU.Una tabla de servidores con los que se conecte. Sólo un servidor maestro se puede añadir a los efectos de streaming. Aparecerán todos los demás servidores de abajo el servidor maestro en la lista con el propósito de la recolección de estadísticas que pueden activarse en función de cada servidor.Una característica útil de haber encendido mientras se asigna los abridores de canal.AACAAC+ v2AIMAcerca deActuar siAcciónActivoAñadir MúsicaAñadir cualquier otros marcos de texto ID3 aquí. Por ejemplo TIT2:Título alternativo Este se anexará a la principal etiqueta TIT2. Introduzca marcos de texto definidos por el usuario así: TXXX:foo=bar Para más información, visite www.id3.org.Añadir música de fondoAñadir a la lista de reproducción de música a la izquierdaAñadir a la lista de reproducción de música derechaAñadir pistas a la lista de reproducción.Ajuste porAjuste el volumen de reproducción en dBDespués de un número de segundos que un reproductor principal es activa indicador de estado de este botón comenzará a parpadear y continuará haciéndolo hasta que el botón se cierra o el reproductor se detiene.Nivel de alarmaÁlbumÁlbum - [Disco] - TítuloTodosTodas las grabaciones de activos y flujos de radio terminarán.Todas las grabaciones activas cesarán.Todos los efectosTodos los tipos de archivoTodas las streams de la radio activos terminará.Todos estos ajustes proporcionarán una calidad de audio adecuado. El ajuste más alto preservará más del ancho de banda de audio original a expensas de muchos ciclos de CPU.Alterar valorAlternarAlternativaSiempreUn tono de alarma que alerta al DJ que el aire muerto está a sólo nueve segundos en el futuro. Esto también funciona en el seguimiento de audio stream, pero el tono de alarma no se envía al stream. El modo freewheel de JACK también se desactivará automáticamente.AnuncioAnuncio:AvisosAñadirAnexar CursorAnexar en el CursorAplicar tramado a la reproducción PCM de 16 bitsArtistaArtista - Álbum - TítuloAsumir la conexión está más allá de ahorro y la reconexión.En conexión:Al arranque no se realice ninguna conexión JACK. Esta opción delega todo control sobre las conexiones restauradas al manejador de sesión.Audio RSSCanales de entrada de audioAudio para DJAudio para transmitirAutoAuto, ningún texto planoConectar automáticamente al servidor en un momento específico en el formato de 24 horas, siendo la media noche 00:00Desconectar automáticamente del servidor en un momento específico en el formato de 24 horas.RetrocesoPistas de fondoVolumen de las Pistas de Fondo.Reproductor de fondoTag MalaAncho de bandaControles básicosStreamer BásicaEntrada básicaMejorPolarizaciónVinculacionesBitrateVariabilidad bitrate. Operación real VBR puede requerir un tamaño de marco superior.Tamaño de bloqueRefuerzo/Corte (dB)Ambos reproductoresVistazoVersión de SWBarra de botonesAbrir botón disparaPor extensiónDirectorio de CAArchivo de CACBR *UPCCVBRNo se puede cambiar el nombre de perfil {0} a {1}, {1} actualmente existe.CapacidadesRuta del CatálogoCatálogosCertificate Authority DirectorioCertificate Authority ArchivoChCanalMedidores de canalAbridor de CanalSalida del canal activarCanal ajustar balanceCanal ajustar gananciaCanal ajustar volumenCanalesCanales/UsuariosElija una carpeta/directorio de música.Elija un directorio de los medios de comunicaciónElija un archivo de la lista de reproducciónElija un archivo de lista de reproducción.Elija si la stream llevará metadatos dinámico. En el caso de transmisión de Ogg esto es importante como un gran número de reproductores no pueden manejar streams Ogg encadenados que resultan de los cambios de metadatos.Seleccione si desea enviar los metadatos. Grabaciones usarán UTF-8 de metadatos.Elija qué directorio que desea guardar. Todos los nombres de los archivos estarán en formato de hora y disponen de un Oga, mp3, o extensión de archivo flac. Importante: Es necesario seleccionar un directorio en el que usted tiene el permiso adecuado de escritura.Elija el stream para grabar o la opción FLAC de 24 bits. Si el stream no está en ejecución se iniciará el codificador automáticamente con los ajustes que están configurados actualmente.Cert clienteCerradoCodecCodecs han sido agrupados por organismo de normalización y o formato contenedor.Codecs de la familia MPEG.Codecs del contenedor Ogg.Contraer árbol.ColoresComplejidadConfiguraciónConfigurarSe requiere confirmación para salir IDJC.ConectarConectarse o desconectarse del servidor de radio. Si el botón no se queda activado, la conexión falla por alguna razón. Si el botón está en gris, significa la configuración dentro de las secciones de 'Conexiones' y 'Formato' son incompatibles entre sí o son incompletos. Para poder transmitir se necesita especificar un servidor maestro necesita ser especificadoen la sección de configuración de abajo y debe ser capaz de manejar el formato de streaming elegido.ConectadoConectado: Falló el modo de confirmación automáticaConectado: modo de confirmación automática establecidoConectandoConexiónConexión cayóFalló la conexión (intenta %d)Información de la conexión para AOL Instant Messenger va aquí.ConstanteDetalles de contactoColaboradoresControlarCopiaDerechos de autor %s Stephen Fairchild y otros.No se pudo escribir el archivo %s.Crear un nuevo anuncioCrossfadeCrossfaderAvanzar HastaCuesheet lista de reproducciónCadena de agente de usuario personalizadaFrecuencia de corteDJDJ de nivel de audioNombre de DJMezcla-DJ monitorDSPBase de datosDíasDe-esserDesactivadoPredeterminadoRetrasarLos tiempos de retardoDescripciónBotón de fader directo/fijoIncapacitadoDescartar datos de audio durante el tiempo que sea necesario.DesconectarDesconecte el que está utilizando el servidor justo antes de la hora de inicio.DesconectadoDisco%dDuckerDebido a la alta tasa de bits seleccionado, este códec sólo apoyará estéreo.Debido a la baja tasa de bits seleccionado, este códec sólo apoyará mono.DuplicarDuraciónCada una de estas pestañas representa una streamer de radio independiente. Los colores indicador LED representan lo siguiente: Borrar = No hay conexión Amarillo = En espera de la autenticación. = Verdes conectados. Intermitente = pérdida de paquetes debido a una mala conexión.Cada una de estas pestañas representa una grabadora de stream distinta. Los colores indicador LED representan lo siguiente: Transparente=Detenido Amarillo=En pausa Rojo=Grabando.Cada botón abridor tiene dos barras verticales en el lado para que el estado de botón más evidente. Estos ajustes controlan su apariencia.Editar las vinculaciones de controlEditar detalles de la conexión de servidor existentesEditar %sEfectoConfig Efecto %dEfecto Reproducir desde inicioEfectivo sólo en pistas recién iniciadas.EfectosEfectos %dBanco de efectosBanco 1 de efectosBanco 2 de efectosEfectos ajustar la altura libreEfectos ajustar volumenEfectos paran muchosVolumen de los efectos.VacíoActive la opción MP3 instalando libmp3lame.Activar los controles de velocidad/tono de los principales reproductoresHabilite esta si van a enviar a un servidor Shoutcast V1.Activar información sobre herramientasFormato del Codificador No Configurado/IncompatiblePistas finales que contienen largos pasajes de silencioAgrandar el tiempo transcurrido / restante ventanasIntroduzca nuevos detalles de la conexión del servidorIntroduzca su nombre de DJ o el nombre de la estación de aquí. Normalmente esta información se mostrará por los clientes de los radioescuchas.Error de intento de cambiar el nombre de {0} a {1}.Esencialmente una configuración de muestreo.IntercambiarExpandir todo árbol.ExtensiónExternoLista de reproducción externaShoutcast extraFLACDesteñirseDesteñirse 10sDesteñirse 5sDesteñirseFundido de audio antes de desconectar.DesaparecerReproductor FundidoNo se pudo crear el índice FULLTEXTRetrocederFamiliaRápidoConjunto de característicasFallo de descarga!AtractivoArchivoTipo de archivoNombre del archivoNombre del archivo:Llenar canal espacio vacío metrosFiltrosTerminaReproductor FocusedForzarFormatoCadena de formatoEncontrado Prokyon 3 esquemaEncontrado índice FULLTEXT existenteTamaño del marcoFrecuencia en Hertz por encima del cual el audio puede pasar a las etapas posteriores. Utilice esta función para restringir sonidos de baja frecuencia, tales como platos principales zumbidos. Configuración de un nivel demasiado alto hará que su voz sonara delgada.DeDe aquíDesde el %sTotalmente destacadoBúsqueda borrosaGananciaGeneralGéneroGénero (s)Group ConnectControles de grupoDesconecte GrupoDetalle HFTener una grabadora inicia automáticamente cuando una conexión con el servidor de radio se hace con éxito.Hacer uno de los reproductores comienzar automáticamente cuando una conexión de servidor de radio se hace con éxito.AyudaFiltro de paso altoMayor calidad cuesta más en términos de ciclos de CPU.MayorMantenerNombre de hostNombre de host/dirección IPNombre de host[:Puerto]HorasICQICQ información de conexión de mensajería instantánea va aquí.Salida IDJCPreferencias IDJCIDJC Profile ManagerEtiquetador IDJCIRCServidor IRCOperaciones de la estación de IRCMensaje IRC de stream inactivoMensaje IRC de stream activoMensaje cronometrado IRCAnunciar pista IRCIcecastIcecast 2 MaestroIcecast 2 Estadísticas/RelayIconoLo ideal sería que ponga esto en algo aún en los servidores que permiten el acceso público anónimo.Si está conectadoSi se rompe la conexión vuelva a conectar al servidorSi este valor se establece se hará un intento para adquirir su primer elección de apodo IRC (si es necesario) e inicie sesión con NickServ@services. El uso del servicio NickServ requiere registrar antes el apodo en la red utilizando un cliente regular de chat.Control de lista de reproducción IgnoradoEn IDJC existen dos caminos de audio y esta '{0}' control hace alternar entre ellos. Cuando '{1}' está activo se puede oír lo que los oyentes están escuchando incluyendo los efectos de crossfader. '{0}' debe ser puesto a '{2}' con el fin de hacer un uso correcto de las características de VoIP.En la mezcla del DJIndIndique los números de los botones y números de los canales asociadosIndique cuales pistas tienen metadatos de volumenIndica que el modo IDJC estará en cuando se inicia.Controles individualesEntradaInsertar AtributoInserte Atributo o Código de colorInserte controlInteracciónInternet Relay Chat en información de conexión va aquí.IntervaloInvertir señalPuede que no sea conveniente utilizar el nivel predeterminado, ya que es bastante tranquilo. Esto se debe establecer 4 o 5 dB más alto que el ajuste ReplayGain.Puede que no sea conveniente utilizar el nivel predeterminado, ya que es bastante tranquilo. Esto se debe establecer 4 o 5 dB inferior al ajuste R128.ÍtemPuertos JACKSe cayó el trabajoEstéreo conjuntoJoint Stereo es una buena opción en streams con bitrates bajosJoint Stereo es una buena opción en streams con bitrates bajos.Ir al inicioMantenga la caja de diálogo de reconexión oculta en todo momento.ClavePulse TecladoPatadaPatear FuentePatear FuentesLDetalle LFÚltima ReproducidoÚltima Escala ReproducidoLatin1Latin1 *Alterna clic izquierdo entre mostrar la cantidad de tiempo transcurrido o restante de la pista actual que se está reproduciendo.Reproductor de IzquierdaAjuste de nivel (dB)LicenciaLimitadorURL de EscucharEsperando la entrada...Los oyentesEscuchando la entradaNombre de inicio de sesiónRepetir TodoMenorLista de reproducción M3Ulista de reproducción M3U8MANUALControl MIDINota MIDIRueda de tono MIDIMP2MP3MPEGMPEG2 introdujo opciones samplerate más bajos y las correspondientes tasas de bits más bajas. Elija 2 si los que son obligatorios.Botón de Panel PrincipalPanel principal Abridor BotonesReproductores PrincipalesHacer públicoHacer salida de este reproductor audible para el DJ.Hacer salida de este reproductor disponible para streaming.Hacer audible el audio del micrófono en la mezcla de DJ. Esto no siempre es deseable.ManualInicio manualMaestro de administración del servidor contraseñaMedianaMensajeMeta TagMetadatosFuente de los MetadatosLos metadatos se actualizan normalmente sólo en los cambios de título de la canción, pero se puede forzar una actualización inmediata aquí.Metadatos:MedioMinutosOtra informaciónDiversoCaracterísticas MisceláneosMal configuradoMezclaMezcla de voz sobre IP de audio a sólo el DJ.Mezcla de voz sobre IP de audio a la secuencia de salida.ModoModificar o Eliminar este anuncioMódulo mysql-python (MySQLdb) requeridoMezcla de MonitorMonitorear Mezcla del StreamMonoMayormente útil emitiendo comandos 'amixer' en particular, para el establecimiento de la captura.punto de montajepunto de montaje Mueva el crossfader totalmente hacia la izquierda.Mueva el crossfader totalmente a la derecha.Mueva el crossfader a la mitad de su rango de desplazamiento.Base de datos musicalMúsica Sonoridad CompensaciónN/ANICKSERVNombreAngostasNativoLa redNuncaNuevo perfil en base %sNuevos detalles del perfilSiguiente pistaSiguiente pista.NickServ p/wApodoNo Hay Botones Abridores de CanalSin DesteñirseNingúnos puertos JACK se conectarán a excepción de los enumerados en el archivo de sesión.Ningún Maestro servidor configuradoSin NombreNo hay Grabadores que están configurados correctamenteNo hay streams configurados actualmenteNo hay puertos compatibles disponibles.Puerta de RuidoNingunaNormalVelocidad normalNo ReproducidoNotaApagado al reiniciar IDJC y apagado inicialmente.CompensarAl cierreAl abrirAl terminar el streamAl inicio del streamAl objetivoBotón disparo/conmutaciónSólo 12AbiertoAbiertoOperacionesCampo de entrada de datos opcional sólo para información.OpusOtras opcionesSalidaMedidores de salidaCONTRASEÑAlista de reproducción PLSPaneo carga de predeterminadasEn conjunto con canal %sPasarContraseñaRutaPelar RutaPausa de grabación.Pausa.PicoRealizar operaciones en varios servidores al unisono.Rotador de FaseReproducirReproducir TodoReproducir.ReproductorReproductor 1Reproductor 2Reproductor activar salida DJReproductor activar solo DJReproductor de sonoridad NormalizaciónReproductor Volver a muestrear CalidadConfiguración del reproductor en el arranqueDetener ReproductorDetener Reproductor 2Reproductor avanzarAltura libre del reproductor que se aplica cuando un efecto está reproduciéndose.Reproductor reproducir siguienteReproductor reproducir anteriorReproductor reproducir seleccionado desde inicioReproductor reproducir/pausaReproductor Seleccione SiguienteReproductor seleccionar anteriorReproductor ajustar balanceReproductor ajustar gananciaReproductor ajustar pitchbendReproductor ajustar volumenReproductor detenerParada Reproductor 2Reproductor activar salida de streamReproductoresReproductores avanzanReproductores pasan crossfadeReproductores ajustar crossfadeReproductores se enfocanReproductores muestran pitchbendReproducción de la pista {0} de {1}Lista de reproducciónLista de Reproducción 1Lista de Reproducción 2Lista de Reproducción 3Modo de reproducciónBotón de avance de reproducciónLista de reproducción editar las etiquetasLista de Reproducción inserto anuncioLista de reproducción insertar crossfadeLista de Reproducción insertar salto a la parte superiorLista de reproducción insertar PitchunbendLista de reproducción insertar paradaLista de Reproducción 2 insertar paradaLista de reproducción insertar transferenciaTipos de reproducciónRellenandoPuertoNúmero de puertoPostGainPreferenciasPreGainAnteponerAnteponer CursorAnteponer PathAnteponer al cursorPresetsActivadoPista anterior.Problema terminando la conexiónEntrada ProcesadaPerfilEl perfil %s está activo.Nombre de perfilPerfilesBase de datos Prokyon3 o Ampache (título de la canción)Publica tu estación de radio en un sitio web de anuncios. El sitio web en cuestión dependerá de cómo esté configurado el servidor al que se conecta.CalidadPaneo rápidoTranquiloRR128RFC2817RFC2818Al azarSalto al AzarNombre realGrabarGrabableGrabadoraNombre del Archivo de la Grabadora (excluyendo la extensión del archivo)Grabadora activarar grabandoGrabadoresFacilidad de grabación disponibleEl tiempo de grabación transcurrido.Reducir las S, T y P parece que los micrófonos tienden a exagerar. Lo ideal sería que el control Bias se establecerá bajo de modo que el de-esser es cuando hay silencio, pero está lo suficientemente alto que los clics del ratón son detectados y suprimidos.Reducir los sonidos más silenciosos no deseados y el ruido de fondo que usted no quiere que sus oyentes escuchar con esto.Ganancia relativa (dB)RelajaciónLiberadoPublicado bajo la GNU General Public License V2.0+.Recargar la base de datos.RestanteRecordarEliminarEliminar ContenidoEtiquetas RenombrablesRepetirRepita la secuencia de los retrasos de forma indefinida.ReplayGainVolver a muestrear CalidadEfectos de sonido Reserva 24 ranurasReiniciarRestablecer las conexiones del puerto JACK a la configuración predeterminada.RespuestaRestaurar la sesión anteriorInvertidaHaga clic derecho para los valores sugeridos.Reproductor de derechaEjecutar en un modo de funcionalidad reducida que disminuye la carga de la CPU y ocupa menos espacio en la pantalla.Ejecutar en modo de funcionalidad completa que utiliza más energía de la CPU.SamplerateGuardarGuardar lista de reproducción de fondoGuardar lista de reproducción izquierdaGuardar lista de reproducción a la derechaBuscarSegunda elecciónSeleccione Tipo de archivoSeleccione la carpeta para grabarSeleccione el origen de los metadatos en el stream de la pista en reproducción.Seleccione esta opción para utilizar un atenuador de volumen independiente para los reproductores de música izquierdo y derecho.Faders de volumen Reproductor separada izquierda /Tipo de servidorEstablezca este cuando el servidor o su firewall niega específicamente para permitir a los clientes basados ​​en libshout.Establezca esto para que las pistas no marcadas están reproduciendose a un nivel de intensidad más o menos similar a los marcados.Ajustar aAjustar valorAjusteShell de comandosMovedizoShoutcastShoutcast MaestroShoutcast Estadísticas/RelayMuestra un control de freewheeling de JACK en el panel principalMuestra un marcador en las listas al lado de la pista. Cualquiera de un círculo verde o un triángulo rojo.De coincidencia de señalesGrabación(es) simultánea(s)Streams simultánea(s)Efecto individualControl SingularNombre de la cancionSuena una alarma cuando la música se debe poner fin aFuenteURI FuenteApoyo AAC específica no está presente en libavcodec. Más información: idjc.sourceforge.net.AAC + específico de apoyo no está presente en libavcodec. Más información: idjc.sourceforge.net.SpeexEtapasIniciar llenadoInicio MiniComience reproductorComience grabadorInicie la grabación. Si este botón aparece en gris podría significar o que la configuración del codificador no es válido o que el permiso de escribir no se concede en la carpeta seleccionada.Aparencia del Indicador de estadoStd.EstéreoPaneo EstéreoDeténgasePara de grabarPara de grabar.Detener el streamingDeténgase.StreamInformación del StreamGrabadora de StreamStream activarar conectadoFondo para Streaming No DisponibleStreamsLos valores sugeridosFormatos Admitidos de los MediosMedios compatiblesSuprimidaTLSTLS certificado de clienteÁrea de pestañasObjetivoCreación del directorio temporal falló.TextoEl %s panel' determina cómo se maneja la entrada, y en qué sentido.Las opciones AAC requieren IDJC ser reconstruido contra bibliotecas libav.La opción MP2 requiere IDJC ser reconstruido contra libtwolame.La URL de su estación de radio. Esta y el resto de la información a continuación está destinado para su visualización en un sitio web listados de emisoras de radio.La cantidad de altura libre requerido (dB)El botón se agrupa con los otros botones abridor micrófono. Se afectada por las señales para cerrar botones de micrófono. Canales relacionados con este botón se mezclarán de manera diferente cuando se utilizan los modos de VoIP.El perfil elegido se está ejecutando actualmente.El número total de oyentes en todas las pestañas de servidor.La lista de canales separados por espacios o comas y/o usuarios a los que se enviará el mensaje. Los canales protegidos se incluyen con la forma: #canal:palabra_clave.El plan de contingencia en el búfer de la secuencia se llene es ...Los controles para la configuración de un stream.El crossfader.El perfil predeterminadoEl tiempo de retardo de este mensaje. Los clientes de oyente tipicamente amortiguan aproximadamente diez segundos de datos de audio que significa que están escuchando la misma cantidad de tiempo detrás de la stream real, por lo tanto, sin un retraso los mensajes IRC aparecerá al oyente muchos segundos por delante del audio. Este ayudará a sincronizar el cambio de pista con el mensaje.El pisador reduce automáticamente el nivel de reproductor de audio cuando el DJ habla. Estos ajustes le permiten ajustar los tiempos de que la reducción de audio.El ajuste de la complejidad del codificador que afecta a la carga de la CPU.El texto de reserva para utilizar cuando% r% t% l metadatos no está disponible. Ver la cadena de formato a la izquierda.La primera mitad de la vinculación es la entrada que viene en la forma de la activación de una tecla del teclado o de un evento desde un dispositivo MIDI. La selección de entrada se puede hacer manualmente o con la ayuda de la opción '%s'.La altura libre es la cantidad en que se reduce el volumen del reproductor cuando este primer botón está activo. Tenga en cuenta que la cantidad real será el valor más grande de todos los botones abiertos actualmente.Cuanto mayor sea este valor, mayor será la tasa de bits.El intervalo en segundos del mensaje programado.El mensaje a enviar. En la ventana emergente (clic con el ratón derecho) son algunas opciones útiles para incrustar metadatos y para el formato de texto. La ventana por abajo muestra cómo aparecerá el mensaje a los usuarios de XChat.Los géneros musicales que son propensos a reproducir.El nuevo nombre de perfil no es válido.Icono del botón de apertura.El texto del botón de apertura.Los botones para seleccionar los ajustes preestablecidos del panorámico. En la imagen estéreo a un clic el DJ puede ser a la izquierda y un invitado a la derecha y cuando el huésped se ha ido a un clic el DJ puede estar en el centro de nuevo. Nota: Se requiere configuración previa de los ajustes preestablecidos del panorámico.El directorio de perfil '%s' ya existe'.La longitud del perfil es demasiado largo (max %d caracteres).El verdadero nombre que desea utilizar que estará disponible independientemente de si la conexión de red se hizo con el apodo principal o no. Idealmente establece esto a algo.El modo de procesamiento de señales.La plantilla especificada '%s' no es válido.Los especificadores son $r el número de la grabadora y el resto se documenta en la página man strftime. Los usuarios que deseen modificar esto para hacer los nombres de archivo que son compatibles con los sistemas de archivos particulares.El nivel de volumen stream para enviar a la voz a través de conexión IP.La suma total de los oyentes en esta ficha servidor.El perfil de la plantilla '%s' no existe.El tiempo transcurrido / restante ventanas a veces no parecen lo suficientemente grande para el texto que aparece en ellas, por las opciones de DPI inusuales o el uso de un motor de renderizado diferente. Esta opción sirve para arreglar eso.El tiempo en segundos que el crossfader se llevará a pasar automáticamente a través de cuando se hace clic en el botón a la derecha.El tiempo de desplazamiento dentro del intervalo especificado a continuación en la que se emitió el mensaje.El control de volumen para el reproductor de música izquierdo.El control de volumen para el reproductor de música derecha.El control de volumen compartido por ambos reproductores de música.Estos controles se proporcionan para obtener una pareja decente entre los dos micrófonos.Estos ajustes tienen efecto después de reiniciarTercera elecciónEstaAjusta la velocidad de reproducción en cualquier lugar del 25% al ​​400%.Ajusta la calidad del método de remuestreo de audio utilizado cuando la frecuencia de muestreo del archivo de música que se está reproduciendo no coincide con la frecuencia de muestreo del servidor de sonido JACK. Mejor modo ofrece la mejor calidad de sonido, pero también utiliza más CPU (no recomendado para los sistemas construidos antes de 2006). Todos estos modos proporcionan una adecuada calidad de sonido.Ajusta el nivel de sonido de la alarma de DJ. Normalmente esto se debe establecer cerca del nivel de audio dj cuando se utiliza el %s característica', de lo contrario un poco más fuerte.Ajusta el nivel de sonido del audio de DJ.Esto sólo afecta a los metadatos stream. Grabaciones usarán UTF-8 para sus metadatos.Este botón hace que el crossfader se mueva hacia el lado opuesto a una velocidad determinada por el selector de velocidad hacia la izquierda.Este botón se va a tratar como un abridor de micrófonoEste botón pasos a través de la lista de reproducción activa, haciendo una pausa entre las pistas. La lista de reproducción activa se define por la colocación del crossfader.Este botón, se cancelará automáticamente el modo de freewheel de JACKEste botón parpadeará como un recordatorio para cerrarEste control es para permitir el bitrate variable sobre streams Vorbis.Esto controla la asignación de botones abiertos / activar el panel frontal. Tener un control de botón de múltiples micrófonos pueden ahorrar tiempo.Esto controla la cantidad de fundido entre las pistas.Esta característica puede que mejora la calidad de sonido un poco cuando se escucha en una tarjeta de sonido de 24 bits.Esta función procesa el audio del micrófono para que suene más uniforme. El efecto es particularmente notable en las voces masculinas.Esta función requiere la instalación de python-irc.Esto indica el estado de las diversas streams. El parpadeante indica que paquetes del stream están siendo desechados debido a la congestión de la red. El Rojo significa que el buffer de envío es parcialmente lleno que indica dificultades para comunicarse con el servidor. El verde significa que todo está bien.Este es el intento número %d No hay límite de reintentos.Esto es para patear y estadísticas de servidores maestros Shoutcast que tienen una contraseña de administrador. Para aquellos que no dejen este espacio en blanco (la contraseña de la fuente es suficiente para aquellos).Esta opción hace que algunos widgets adicionales para aparecer debajo de las listas de reproducción que permiten que la velocidad de reproducción para ajustarse desde 25% a 400% y un botón de velocidad normal.Esto selecciona la curva de respuesta del crossfader. Los atenuaciones del punto medio son -3dB, 0dB y -22dB respectivamente.Este servidor debe ser escaneada por cifras de audienciaEsta reestablece la velocidad de reproducción a la normalidad.Esto establece el modo de lista de reproducción que define el comportamiento del reproductor después de que se termina la pista. 'Play All' (Reproducir Todo) es el modo más versátil, ya que permite el uso de elementos de control de lista de reproducción integrables que se puede acceder mediante el menú contextual del botón derecho en el lista de reproducción. Cuando ningunos controles de reproducción están presentes las pistas se reproducen de forma secuencial hasta que se llega al final de la lista de reproducción, y en ese momento el reproductor se detendrá. 'Loop All' (Repetir Todo) hace que las pistas se reproduzcan en secuencia, reiniciándose con la primera pista una vez de que se llega al final de la lista de reproducción. 'Random' (Al Azar) hace que las pistas se reproduzcan indefinidamente con las pistas seleccionadas al azar. 'Manual' (Manual) hace que el reproductor se detendrá al final de cada pista. 'Cue Up' (Avanzar Hasta) es similar al manual, excepto que también se destaca la siguiente pista en la lista de reproducción. 'External' (Externo) obtiene sus pistas de una lista de reproducción o directorio externo una tras una. Útil para cuando se quiere transmitir listas masivas. 'Alternate' (Alternar) hace que la siguiente pista se alista antes de comenzar el reproductor contrario. El crossfader se mueve al otro. 'Fade Over' (Desteñirse) se crossfade al otro reproductor al final de cada pista. 'Random Hop' (Salto al Azar) recogerá una pista al azar de la otra lista de reproducción.Esto se debe establecer para todos los botones que controlan la entrada de una fuente de sonido en vivo o dispositivo.Este deslizador actúa como tanto un indicador de progreso de la reproducción y como un medio para buscar dentro de la pista que se está reproduciendo.Esto desconectará el que está utilizando actualmente el servidor, liberándola para uso personal.Esto, lo que está leyendo en este momento, es una información sobre herramientas. Esta característica los convierte en o fuera.Esta:UmbralHoraMinuteroMinutero:TítuloAHacia aquiCambia el modo de freewheel de JACK.Tooltips activarNúmero total de pistas %dDuración total de reproducción %sPistaAnunciar pistaTiempo transcurrido de la pistaTiempo de pista restantePistas ReproducidasTransferirTraductoresFallo en la descarga de árbolTexto DisparadorRecorte terminaciones de canciones tranquilas y posterior silencioPtaSolución de problemasUTF-8UltrawideDesconocidoBase de datos no reconocidoNo compatibleNo etiquetadoTiempo de actividadLimite superiorUsar codificación ISO-8859-1 para los metadatos fijoUsar valorÚtil para cuando los micrófonos están cancelando entre sí, produciendo un sonido hueco.Nombre de usuarioNombre de usuarioV 1V 2V 2.5VBRVUVariabilidadVerVoIPVoIP solo DJ activarCanal VoIPAjuste del nivel de VoIP. Ganancia de 0 dB está en el punto medio.Salida VoIP activarPaneo VoIP + downmix monoVoIP ajustar balanceVoIP ajustar gananciaVoIP ajustar mezclaVoIP ajustar volumenVorbisWHEREWebMSemanasCuando un apodo está en uso en la red objetivo de IRC, durante la conexión estos apodos IRC se reciclan, después dos veces de nuevo después de añadir un subrayado adicional hasta que darse por vencido. Este IDJC da un máximo de nueve apodos IRC para probar.Cuando se abre cerrar estos otros botonesCuando este reproductor se selecciona, será tratado como un reproductor principal. Se verá afectada por atenuación del micrófono y no se silencia cuando un reproductor principal está en funcionamiento.Al iniciar IDJC la mayoría de los principales parámetros de la ventana será como quedaron. Como alternativa se puede especificar a continuación cómo desea que los distintos ajustes que sean cuando IDJC comienza.AmplioAnchuraComando XChatlista de reproducción XSPFXiph/OggAñoPuede introducir texto para acompañar el stream aquí y puede especificar marcadores %r %t %l %s para el artista, título, álbum, y nombre de la canción respectivamente, o deje este campo de texto en blanco para usar los metadatos predeterminados. Songname (%s) se deriva del nombre de archivo en la ausencia de metadatos suficientes, mientras que los otros MARCADORES usarán el texto de repliegue hacia la derecha. Cuando en blanco, los streams Ogg usarán las etiquetas Vorbis estándar y mp3 utilizará %s.Usted puede hacer ciertas bases de datos de medios de comunicación accesibles en IDJC fácil de arrastrar y soltar en las listas de reproducción.Usted puede usar esto para aumentar la cantidad de graves en el audio.Usted puede usar esto para aumentar la cantidad de agudos en el audio.[Metadatos suprimidos]_Auto_Retry Ahorauna descripción del perfilexiste un camino no directorio en: '%s'álbumun perfil existente a utilizar como plantillaartistaintentar la conexión con los servidores especificadosfalló auto: %sno pudo obtener un bloqueo en el perfil de {0}: {1}no pudo escribir el %sdescription_textdirectorio no existe: %spor ejemplo, "L1: el nombre de una sesión Ladish [L1] llamado 'nombre' -- consulte la página de manual IDJC para obtener más detallesfalló en crear el perfil: %sfalló en eliminar el perfil: %sno logró agarrar nombre de bus -- otra sesión con el mismo nombre parece estar funcionandoforzar la aparición o no aparición del cuadro de diálogo selector de perfil -- cuando se utiliza con la opción -p el perfil elegido es preseleccionadagéneroicon_pathnamepatear las fuentes en los servidores -- tenga en cuenta que esto se hace antes de realizar cualquier intento de conexión del servidorlista de perfiles disponiblesfalló ls: %shacer un nuevo perfilmm:ssnuevo nombre de perfil -- formará parte del nombre del bus/objeto/interfaz de dbus y la ID del cliente de JACK -- Por lo tanto, se aplican restriccionesapodosin perfil se ajustafalló noauto: %sruta de acceso a un icono -- por defecto logo IDJCsitúe el crossfader para el reproductor especificadoproblema con el directorio de sesión %sperfil %s no existeperfil %s ya está funcionandoel perfil no existenombre del perfil es maloprofile_choiceprofile_namefecha de grabacióneliminar auto-lanzamientoeliminar perfil(es)ejecutar la aplicación principal IDJC - este es el valor por defecto cuando no se especifican las opciones de línea de comandosseleccionar cuál perfil se pone en marcha de forma automáticaserver_namesession={type}:{name}session_detailsmostrar el número de versión y salirmostrar este mensaje de ayuda y salemostrar este mensaje de ayuda y termina -- ayuda adicional está disponible en cada uno de los sub-comandos, por ejemplo: "%(prog)s run --help" muestra la ayuda para el comando runperfil especificado no existe: %sperfil especificado no es válido %stemplate_profilecreación directorio temporal noel nombre del perfil alternativo que aparezca en la barra de título de la ventanalos canales de audio para tener abiertas en el arranqueel perfil elegido se está ejecutando actualmenteel sonido-servidor jack nombrado para conectarel nuevo nombre de perfil no es válidoel perfil %s está en usoel directorio de perfil '%s' ya existe'la longitud del perfil es demasiado largo (max %d caracteres)el perfil para hacer automáticael perfil de usar -- invalida la opción "mostrar el diálogo de perfil" de las preferencias del interfaz de usuarioperfil(es) para eliminarel nombre del perfil especificado no es válidola plantilla especificada '%s' no es válidoel perfil de plantilla '%s' no existeel modo de VoIP en el arranquetítulopista/total dedesconocido tipo de sesión: %s debe ser uno de %sconfiguración de la interfaz de usuario{0} perfil = {1} {2} configuración guardada.{0} session = {1} {2} configuración guardada.{numericid} [{source}] > [{directory}]± 10%± 20%± 30%± 40%± 50%idjc-0.8.16/po/quot.sed0000644000175000017500000000023112631274031011536 00000000000000s/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g idjc-0.8.16/po/Makevars0000644000175000017500000000352612630014502011551 00000000000000# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=utf-8 -L python --add-comments=TC: # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Stephen Fairchild # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = putidjcinthesubjectline@bethere.co.uk # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = idjc-0.8.16/po/it.gmo0000644000175000017500000016324312711167613011214 00000000000000M$8191R1 [1h1 a2m22 2w2V3t3D44MH5N55j6 {6666%6 6 7$7C7M8R8EE99F:::::: ::;;; <#<<<7<!===/L= |= == = == ===5= > #> .>:>J>^O>N> >??? -?9?>?G? O?Z? i?v? ??7?????@@)@<@E@#T@x@@@@A^BeB mB&{BB B4BB BCC/CDC]C wC CCCCCCCCCC CD D D%D)>D hD>sDD DDDEKFF'FGG'%GMG+SGG.G*G#Gj H*xHH HHHHHHH HIII I *I4I =IGIeImItII II VJ`JsJ JJJJJJ JXJ`K~KKKKKK0K KK L L,L 0L;LSLiL{LLLLQL M0MJMBN [NiOyO6}O3OOOPP3P BP.NP}P PP P P7PPPP P QmQ QQQ QQ QQ QQ Q Q RR#R5R OR/[R5RRRSS8S@SISRS`bS SSS'S-TAT"FT iTuTTKT TT U9&U`UgUoUuUU U U UUUUU VVV %V2V7V>VGVOV ^V kVuVVV/V VV VVW WWW(W1/W aWoWtW}WWWWWWWW W XX&X7XLXlX~XXXXXX X X Y(Y?YUYgY~YY Y Y Y YYYYZ-ZIZeZzZZ ZZ Z ZZZZZ[[#[+[A[J[[[[[ [ [\ \\)\A\o&]]]]4] ]]^^^+^ J^U^^^{^ ^e^9^1_6_I_ ]_k_|_[_(_ `n,`` ` `` ````aa5a Fa+Pa|aa a a aaaaaaa bb"b )b5bEbZbbbzbb$bbFbc$cc(d:dd?e&eefjfgbh|hGi-i&j*j""kEk_k*yk3kkl)l@l. m)FW gs  âʢ -29>MUnls¤ ɤӤ [VP ȥҥ+ $4M\ `kΦߦR N6ZǨ>.8g})Ī ت* - 6A@R `ʫ+<DLg }  ɬ ج ,#P/_'\1 NXaj "!5Wv"{¯[ǯ#6V(tȰ :$M r} ű $& KY `m/    '1M'a" ʳٳ&6Nn Ǵ 9Tpĵ ͵ ص  ":U#t$ն  # 0;DYnv|ŷBKQS [ it }"!ϸhù,C L8W+ĺ ! &0c?2ֻܻ%'?ag9ɼ   Ľѽڽ7Ue4mξ߾ -I`u{ƿͿ ,1M7';c(Q5z?U& [utY2P!U$w"!*8 E(53-i'\ 2h .O4; p}:#iMf7,,V@#.))/DtU\V8  % 5 A?L  P )5; KWm& GF6<L+d+-&(OVi34 , BN+^M"'$##Hl)8&%Lho$~& HxIg (3EU3pPEes#DJvn=l5! ?!7$,mka`]OF>> GRQPr  .yCl-V;m/Hcz~{As-@ G*A h):1w{ _|U922F. uMx  @w"$9BT9W7,47.'bnSFC"6fk" 4LWQX,d6#;/K#[1%%:VC< ^5M@X'O]}I;JJ(4%fY*[$=}bBtjNZDD1L~8<BZ+py0!R^q a&?):qr Ioi>L'\c0`( G62tzY8\|A=&EMu)He-S+T3/Kgi+08hvjd5Ko? N<*_ Additional Text Frames Stream '%s' control'Block size' indicates the amount of time that it will take to play from the currently selected track to the next stop. 'Remaining' is the amount of time until the next stop. 'Finish' Is the computed time when the tracks will have finished playing.(Cue sheet)<<< Fade across <<<<<< Transfer across <<<BoldA connection to a radio server has failed. Reconnection will not be attempted.A scheduled stream disconnection has occurred.The connection to the server in tab {servertab} has failed. A reconnection attempt will be made in {countdown} seconds. This is attempt number {attempt} of {maxtries}.Delete profile '%s' and all its data? The data of deleted profiles cannot be recovered.Delete the data of profile '%s'? The profile will remain available with initial settings.Error while creating new profile. %sError while editing profile: {0}. {1}Permanently delete this server? This action will also erase all of its associated messages.Underline>> Normal Speed <<>>> Fade across >>>>>> Transfer across >>>A Non directory path exists at: '%s'.A VU meter for the stream audio.A comma separated list of delays in seconds between reconnection attempts. Note that bad values or values less than 5 will be interpreted as 5.A description of your radio station.A label so you may describe briefly the role of this audio channel.A look-ahead brick-wall limiter. Audio signals are capped at the upper limit.A peak hold meter indicating the microphone signal strength and a meter indicating attenuation levels in the microphone signal processing system. Green indicates attenuation from the noise gate, yellow from the de-esser, red from the limiter.A peak hold meter indicating the signal strength of the stream audio.A table of servers with which to connect. Only one master server can be added for the purpose of streaming. All other servers will appear below the master server in the list for the purpose of stats collection which can be toggled on a per server basis.A useful feature to have switched on while allocating channel openers.AIMAboutAct ifActionActiveAdd MusicAdd any other ID3 text frames here. e.g. TIT2:Alternate Title This will be appended onto the main TIT2 tag. Enter user defined text frames like this: TXXX:foo=bar For more information visit www.id3.org.Add music to left playlistAdd music to right playlistAdd tracks to the playlist.Adjust byAfter a number of seconds where a main player is active this button's status indicator will start to flash and will continue to do so until the button is closed or the player stops.AlbumAllAll active recordings and radio streams will terminate.All active recordings will cease.All file typesAll of the active radio streams will terminate.Alter valueAlternateAlwaysAnnouncementAnnouncementsAppendAppend CursorAppend at CursorArtistAssume the connection is beyond saving and reconnect.At connect:Audio FeedAudio to DJAudio to streamAutoAutomatically connect to the server at a specific time in 24 hour format, midnight being 00:00Automatically disconnect from the server at a specific time in 24 hour format.BackSpaceBad TagBasic ControlsBasic StreamerBasic inputBiasBindingsBitrateBlock sizeBoost/Cut (dB)Both playersButton Open TriggersBy ExtensionCPUCannot rename profile {0} to {1}, {1} currently exists.ChChannelChannel OpenerChannel output enableChannel set balanceChannel set gainChannel set volumeChannelsChannels/UsersChoose a folder/directory of music.Choose a media directoryChoose a playlist fileChoose a playlist file.Choose which directory you want to save to. All file names will be in a timestamp format and have either an oga, mp3, or flac file extension. Important: you need to select a directory to which you have adequate write permission.Choose which stream to record or the 24 bit FLAC option. If the stream isn't already running the encoder will be started automatically using whatever settings are currently configured.ClosedColoursConfigurationConfirmation to quit IDJC is required.ConnectConnectionConnection info for AOL instant messenger goes here.Contact DetailsContributorsControlCopyCopyright 2005-%s Stephen Fairchild and others.Could not write file %s.Create a new announcementCrossfadeCrossfaderCue UpCuesheet PlaylistCustom user agent stringCutoff FrequencyDJDJ Audio LevelDJ nameDatabaseDe-esserDeactivatedDelayDelay timesDescriptionDirect fader/held buttonDiscard audio data for as long as needed.DisconnectDisconnect whoever is using the server just before start time.DuckerDuplicateDurationEach one of these tabs represents a separate radio streamer. The LED indicator colours represent the following: Clear=No connection Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to a bad connection.Each one of these tabs represents a separate stream recorder. The LED indicator colours represent the following: Clear=Stopped Yellow=Paused Red=Recording.Each opener button has two vertical bars at the side to make the button state more apparent. These settings control their appearance.Edit control bindingEdit existing server connection detailsEdit profile %sEffectEffective only on newly started tracks.EmptyEnable the main-player speed/pitch controlsEnable tooltipsEnd tracks containing long passages of silenceEnlarge the time elapsed/remaining windowsEnter new server connection detailsEnter your DJ name or station name here. Typically this information will be displayed by listener clients.Error during attempt to rename {0} to {1}.ExchangeExtensionExternalExternal PlaylistExtra ShoutcastFadeFade 10sFade 5sFade OverFadered playerFallbackFastFeature SetFile TypeFilenameFilename:Fill channel meter void spaceFiltersFinishFocused playerFormatFormat StringFrequency in Hertz above which audio can pass to later stages. Use this feature to restrict low frequency sounds such as mains hum. Setting too high a level will make your voice sound thin.From HereFrom the album, %sFully FeaturedFuzzy SearchGainGeneralGenreGenre(s)Group ControlsHF DetailHave a recorder start automatically when a radio server connection is successfully made.Have one of the players start automatically when a radio server connection is successfully made.High Pass FilterHighestHoldHostnameHostname/IP addressICQICQ instant messenger connection info goes here.IDJC OutputIDJC PreferencesIDJC Profile ManagerIDJC TaggerIRCIRC serverIRC stream down messageIRC stream up messageIRC timed messageIRC track announceIcecast 2 MasterIcecast 2 Stats/RelayIconIdeally set this to something even on servers that allow public anonymous access.If connectedIf the connection breaks reconnect to the serverIf this value is set an attempt will be made to acquire your first choice IRC nickname (if needed) and log in with NickServ@services. The use of the NickServ service requires prior nickname registration on the network using a regular chat client.Ignored playlist controlIn IDJC there are are two audio paths and this '{0}' control toggles between them. When '{1}' is active you can hear what the listeners are hearing including the effects of the crossfader. '{0}' needs to be set to '{2}' in order to make proper use of the VoIP features.In The DJ's MixIndIndicate button numbers and associated channel numbersIndicates which mode IDJC will be in when launched.Individual ControlsInputInsert AttributeInsert Attribute or Colour CodeInsert controlInteractionInternet Relay Chat connection info goes here.IntervalInvert SignalItemJACK PortsJump To TopKeep the reconnection dialogue box hidden at all times.KeyKeyboard pressLLF DetailLast PlayedLeft click toggles between showing the amount of time elapsed or remaining on the current track being played.Left playerLicenceLimiterListen URLListen for input...ListenersListening for inputLogin nameLoop AllM3U playlistMIDI controlMIDI noteMIDI pitch-wheelMain Panel ButtonMain Panel Opener ButtonsMake PublicMake output from this player audible to the DJ.Make output from this player available for streaming.Make the microphone audio audible in the DJ mix. This may not always be desirable.ManualMaster server admin passwordMessageMeta TagMetadataMetadata SourceMetadata normally updates only on song title changes but you can force an immediate update here.Metadata:MiddleMiscellaneous FeaturesMix voice over IP audio to the DJ only.Mix voice over IP audio to the output stream.ModeModify or Delete this announcementMonitor MixMonitor Stream MixMonoMostly useful issuing 'amixer' commands, in particular for setting capture.Mount pointMove the crossfader fully left.Move the crossfader fully right.Move the crossfader to the middle of its range of travel.NativeNetworkNeverNew profile based upon %sNew profile detailsNext trackNext track.NickServ p/wNicknameNo Channel Opener ButtonsNo FadeNo Master Server ConfiguredNoise GateNoneNormalNormal SpeedNoteOffsetOn closeOn openOn stream downOn stream upOn targetOne-shot/toggle buttonOpenOpenedOptional data entry field for information only.Other optionsOutputPLS playlistPartnered with channel %sPassPasswordPathPause recording.Pause.Perform operations on multiple servers in unison.Phase RotatorPlayPlay AllPlay.PlayerPlayer 1Player 2Player DJ output enablePlayer DJ-only switchPlayer Resample QualityPlayer Settings At StartupPlayer StopPlayer Stop 2Player advancePlayer play nextPlayer play previousPlayer play selected from startPlayer play/pausePlayer select nextPlayer select previousPlayer set balancePlayer set gainPlayer set pitchbendPlayer set volumePlayer stopPlayer stop 2Player stream output enablePlayers pass crossfadePlayers set crossfadePlayers set focusPlayers show pitchbendPlaying track {0} of {1}PlaylistPlaylist 1Playlist 2Playlist 3Playlist ModePlaylist advance buttonPlaylist edit tagsPlaylist insert announcePlaylist insert crossfadePlaylist insert jump to topPlaylist insert pitchunbendPlaylist insert stopPlaylist insert stop 2Playlist insert transferPopulatingPortPort numberPreferencesPrependPrepend CursorPrepend at CursorPressedPrevious track.Processed inputProfileProfile %s is active.ProfilesPublish your radio station on a listings website. The website in question will depend on how the server to which you connect is configured.QualityQuietRRandomRandom HopReal nameRecordRecorderRecorder set recordingRecording time elapsed.Reduce the S, T, and P sounds which microphones tend to exaggerate. Ideally the Bias control will be set low so that the de-esser is off when there is silence but is set high enough that mouse clicks are detected and suppressed.Reduce the unwanted quietest sounds and background noise which you don't want your listeners to hear with this.Relative Gain (dB)ReleaseReleasedReleased under the GNU General Public License V2.0+.RemainingRemindRemoveRemove ContentsRepeatRepeat the sequence of delays indefinitely.ReplayGainResponseRestore the previous sessionReversedRight playerRun in a reduced functionality mode that lowers the burden on the CPU and takes up less screen space.Run in full functionality mode which uses more CPU power.SaveSave left playlistSave right playlistSecond choiceSelect File TypeSelect the folder to record toSelect this option to use an independent volume fader for the left and right music players.Separate left/right player volume fadersServer typeSet this on the occasion that the server or its firewall specifically refuses to allow libshout based clients.Set toSet valueShell CommandShiftingShoutcastShoutcast MasterShoutcast Stats/RelaySignal MatchingSimultaneous recording(s)Simultaneous stream(s)Singular controlSong nameSound an alarm when the music is due to endSourceStagesStart FullStart MiniStart playerStart recorderStatus Indicator AppearanceStereoStereo PanningStop recordingStop recording.Stop streamingStop.StreamStream InfoStream recorderStream set connectedStreamsSupported Media FormatsSupported mediaTargetTemporary directory creation failed.TextThe '%s' pane determines how the input is handled, and to what effect.The URL of your radio station. This and the rest of the information below is intended for display on a radio station listings website.The amount of headroom required (dB)The button will be grouped with the other microphone opener buttons. It will be affected by signals to close microphone buttons. Channels associated with this button will be mixed differently when using the VoIP modes.The chosen profile is currently running.The combined total number of listeners in all server tabs.The comma or space separated list of channels and/or users to whom the message will be sent. Protected channels are included with the form: #channel:keyword.The contingency plan upon the stream buffer becoming full is...The controls for configuring a stream.The crossfader.The default profileThe delay time of this message. Typically listener clients will buffer approximately ten seconds of audio data which means they are listening the same amount of time behind the actual stream therefore without a delay IRC messages will appear to the listener many seconds ahead of the audio. This setting will help synchronise the track change with the message.The ducker automatically reduces the level of player audio when the DJ speaks. These settings allow you to adjust the timings of that audio reduction.The fallback text to use when %r %t %l metadata is unavailable. See the format string to the left.The first half of a binding is the input which comes in the form of the press of a keyboard key or an event from a midi device. Input selection can be done manually or with the help of the '%s' option.The headroom is the amount by which to reduce player volume when this opener is active. Note that the actual amount will be the largest value of all the currently open buttons.The interval in seconds of the timed message.The message to send. On the pop-up window (mouse right click) are some useful options for embedding metadata and for text formatting. The window below displays how the message will appear to users of XChat.The musical genres you are likely to play.The new profile name is not valid.The opener button's icon.The opener button's text.The profile directory '%s' already exists.The profile length is too long (max %d characters).The real name you want to use which will be available regardless of whether the network connection was made with the primary nickname or not. Ideally set this to something.The signal processing mode.The specified template '%s' is not valid.The stream volume level to send to the voice over IP connection.The sum total of listeners in this server tab.The template profile '%s' does not exist.The time elapsed/remaining windows sometimes don't appear big enough for the text that appears in them due to unusual DPI settings or the use of a different rendering engine. This option serves to fix that.The time in seconds that the crossfader will take to automatically pass across when the button to the right is clicked.The time offset within the below specified interval at which the message will be issued.The volume control for the left music player.The volume control for the right music player.The volume control shared by both music players.These controls are provided to obtain a decent match between the two microphones.These settings take effect after restartingThird choiceThisThis adjusts the playback speed anywhere from 25% to 400%.This adjusts the sound level of the DJ audio.This button causes the crossfader to move to the opposite side at a speed determined by the speed selector to the left.This button is to be treated as a microphone openerThis button steps through the active playlist, pausing between tracks. The active playlist is defined by the placement of the crossfader.This button will flash as a reminder to closeThis controls the allocation of front panel open/unmute buttons. Having one button control multiple microphones can save time.This controls the amount of fade between tracks.This feature maybe improves the sound quality a little when listening on a 24 bit sound card.This feature processes the microphone audio so that it sounds more even. The effect is particularly noticable on male voices.This indicates the state of the various streams. Flashing means stream packets are being discarded because of network congestion. Partial red means the send buffer is partially full indicating difficulty communicating with the server. Green means everything is okay.This is attempt number %d. There is no retry limit.This is for kick and stats on Shoutcast master servers that have an administrator password. For those that don't leave this blank (the source password is sufficient for those).This option causes some extra widgets to appear below the playlists which allow the playback speed to be adjusted from 25% to 400% and a normal speed button.This selects the response curve of the crossfader. The mid-point attenuations are -3dB, 0dB, and -22dB respectively.This server is to be scanned for audience figuresThis sets the playback speed back to normal.This sets the playlist mode which defines player behaviour after a track has finished playing. 'Play All' is the most versatile mode since it allows the use of embeddable playlist control elements which are accessible using the right click context menu in the playlist. When no playlist controls are present the tracks are played sequentially until the end of the playlist is reached at which point the player will stop. 'Loop All' causes the tracks to be played in sequence, restarting with the first track once the end of the playlist is reached. 'Random' causes the tracks to be played indefinitely with the tracks selected at random. 'Manual' causes the player to stop at the end of each track. 'Cue Up' is similar to manual except that the next track in the playlist will also be highlighted. 'External' draws it's tracks from an external playlist or directory one at a time. Useful for when you want to stream massive playlists. 'Alternate' causes the next track to be cued up before starting the opposite player. The crossfader is moved over. 'Fade Over' will crossfade to the other player at the end of every track. 'Random Hop' will pick a track at random from the other playlist.This slider acts as both a play progress indicator and as a means for seeking within the currently playing track.This will disconnect whoever is currently using the server, freeing it up for personal use.This, what you are currently reading, is a tooltip. This feature turns them on or off.This:ThresholdTimeTimerTitleTo HereTotal number of tracks %dTotal play duration %sTrackTrack announceTrack time elapsedTrack time remainingTracks PlayedTransferTranslatorsTrim quiet song endings and trailing silenceTrkTroubleshootingUnknownUp-timeUpper LimitUse valueUseful for when microphones are cancelling one another out, producing a hollow sound.User nameViewVoIP DJ-only switchVoIP channelVoIP output enableVoIP set balanceVoIP set gainVoIP set volumeWHEREWhen a nickname is in use on the target IRC network, during connection these IRC nicknames are cycled through, then twice again after appending an additional underscore until giving up. This gives IDJC a maximum of nine IRC nicknames to try.When opened close these other buttonsWhen starting IDJC most of the main window settings will be as they were left. As an alternative you may specify below how you want the various settings to be when IDJC starts.WidthXChat commandXSPF playlistYearYou can enter text to accompany the stream here and can specify placemarkers %r %t %l %s for the artist, title, album, and songname respectively, or leave this text field blank to use the default metadata. Songname (%s) is derived from the filename in the absence of sufficient metadata, while the other placemarkers will use the fallback text to the right. When blank, Ogg streams will use the standard Vorbis tags and mp3 will use %s.You can use this to boost the amount of bass in the audio.You can use this to boost the amount of treble in the audio._Auto_Retry Nowa description of the profilea non directory path exists at: '%s'albuman existing profile to use as a templateartistattempt connection with the specified serverscould not write file %sdescription_textfailed to create profile: %sgenreicon_pathnamemake a new profilemm:ssnicknameno profile is setpathname to an icon -- defaults to idjc logoposition the crossfader for the specified playerprofile_choiceprofile_namerecord dateserver_nametemplate_profiletemporary directory creation failedthe alternate profile name to appear in window title barsthe audio channels to have open at startupthe chosen profile is currently runningthe named jack sound-server to connect withthe new profile name is not validthe profile '%s' is in usethe profile directory '%s' already existsthe profile length is too long (max %d characters)the specified profile name is not validthe specified template '%s' is not validthe template profile '%s' does not existthe voip mode at startuptitletrack/totaluser interface settingsProject-Id-Version: Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk POT-Creation-Date: 2016-04-30 18:46+0100 PO-Revision-Date: 2013-11-07 16:48+0000 Last-Translator: Language-Team: English Language: it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Lokalize 1.5 Plural-Forms: nplurals=2; plural=(n != 1); Riquadri di testo aggiuntivi Flusso controllo '%s''Dimensione blocco' indica la quantità di tempo che intercorre tra la riproduzione della traccia selezionata ed il prossimo stop. 'Restante' è il tempo fino al prossimo stop. 'Fine' è il tempo calcolato quando finirà la riproduzione delle tracce.(Elementi del file cue)<<< Dissolvi tra <<<<<< Trasferisci tra <<<GrassettoUna connessione al server è fallita. Non verrà effettuato un altro tentativo.E' intervenuta una disconnessione pianificata.La connessione al server nella linguetta {servertab} è fallita. Un tentativo di riconnessione verrà effettuato tra {countdown} secondi. Questo è il tentativo {attempt} di {maxtries}.Eliminare il profilo '%s' e tutti i suoi dati? I dati dei profili eliminati non possono essere recuperati.Eliminare i dati del profilo '%s'? Il profilo resterà disponibile con le impostazioni inizialiErrore nella creazione del nuovo profilo. %sErrore nella modifica del profilo: {0}. {1}Eliminare il server in modo permanente? Questa azione eliminerà anche tutti i messaggi associatiSottolineato>> Velocità normale <<>>> Dissolvi tra >>>>>> Trasferisci tra >>>Non c'è il percorso ad una directory: '%s'Indicatore VU per il flusso audioUna lista di ritardi, separati da virgola, tra i vari tentativi di riconnessione. Valori errati o inferiori a 5 verranno interpretati come 5.Descrizione della vostra stazione.Un'etichetta per descrivere in modo sintetico il ruolo di questo canale audio.Un limiter predittivo. I segnali audio vengono bloccati al limite superioreUn indicatore a tenuta di picco che indica la potenza del segnale e uno che indica l'attenuazione del livello del microfono da parte dell'elaboratore di segnale. Il verde indica l'attenuazione del noise gate, il giallo del de-esser. Il rosso del limiter.Un indicatore a tenuta di picco che indica la potenza del segnale audio trasmesso.Una tabella di server cui connettersi. Soltanto un server principale può essere aggiunto per trasmettere flussi. Tutti gli altri server compariranno sotto il server principale nella lista allo scopo di raccogliere statistiche che possono essere attivate per ciascun server.Una funzionalità utile da attivare mentre si allocano i canaliAIMCircaAgisci seAzioneAttivoAggiungi musicaAggiunge qualsiasi altro riquadro ID3. es. TIT2: Titolo alternativo Verrà accodato la TIT2 principale. Inserire riquadri definiti dall'utente in questo modo: TXXX:pinco=pallo Per ulteriori informazioni visitare www.id3.org.Aggiungi musica alla playlist di sinistraAggiungi musica alla playlist di destraAggiungi tracce alla playlistRegola diDopo un certo numero di secondi che il lettore principale è attivo, l'indicatore di stato di questo pulsante inizierà a lampeggiare e continuerà a farlo finché il pulsante non sarà rilasciato o finché non verrò fermata la riproduzione.AlbumTuttoTutte le registrazioni ed i flussi radio verranno interrotti.Tutte le registrazioni verranno interrotte.Tutti i tipi di fileTutti flussi radio verranno interrotti.Altera valoreAlternaSempreAvvisoAnnunciAppendiAccoda dal cursoreAccoda dal cursoreArtistaAssumi che la connessione sia in fase di salvataggio e riconnettiti.Una volta connesso:Audio FeedAudio al DJAudio al flussoAutoConnessione automatica al server ad un orario specifico nel formato a 24 ore, la mezzanotte è indicata con 00:00Disconnessione automatica al server ad un orario specifico nel formato a 24 ore, la mezzanotte è indicata con 00:00BackSpaceTag erratoControlli baseTrasmettitore baseIngresso sempliceBiasScorciatoieBitrateDimensione bloccoAumenta/Taglia (dB)Entrambi i lettoriInneschi apertura pulsantePer estensioneCPUNon posso rinominare il profilo {0} in {1}, {1} è già presente.ChCanaleGestore canaleCanale abilita l'uscitaCanale imposta bilanciamenoCanale imposta guadagnoCanale imposta volumeCanaliCanali/UtentiScegli una cartella per la musicaScegli una cartella per i mediaScegli un file playlistScegli un playlist fileScegliete in quale directory salvare. Tutti i nomi dei file avranno un formato basato su data e tempo e avranno una estensione ogg, mp3 o flac. Importante: dovete scegliere una cartella per la quale avete i permessi necessari alla scrittura.Scegli quale flusso registrare o l'opzione 24bit FLAC. Se il flusso non è già attivo il codificatore verrà avviato automaticamente con le impostazioni attualmente configurate.ChiusoColoriConfigurazioneViene chiesta una conferma per chiudere IDJC.ConnettiConnessioneLe informazioni per AOL vanno inserite qui.Dettagli del contattoCollaboratoriControlloCopiaDiritti 2005-%s Stephen Fairchild ed altri.Non posso scrivere il file %s.Crea un nuovo annuncioDissolviCrossfaderAccodaPlaylist da file cueStringa personalizzata per i navigatoriFrequenza di taglioDJLivello audio DJNome DJDatabaseDe-esserDisattivatoRitardoTempi di ritardoDescrizionePulsante cursore/premutoScarta i dati audio finché è necessario.DisconnettiDisconnetti chiunque stia usando il server poco prima dell'inizio.DuckerDuplicaDurataOgnuna di queste linguette rappresenta un flusso. I colori del LED indicano: Vuoto=Non connesso Giallo=In attesa di autenticazione. Verde=Connesso. Lampeggiante=Perdita di pacchetti a causa di una cattiva connessione.Ognuna di queste linguette rappresenta un registratore di flusso. I colori del LED indicano: Vuoto=Fermo Giallo=Pausa Rosso=Registrazione.Ogni pulsante ha due barre verticali ai lati per renderne chiaro lo stato. Queste impostazioni ne controllano la grafica.Modifica le scorciatoie per i controlliModifica i dettagli della connessioneModifica il profilo %sEffettoEfficace solo sulle tracce avviate ex-novo VuotoAbilita il controllo di velocità di riproduzione sul lettore principaleAbilita suggerimentiInterrompi tracce che contengono lunghi passaggi di silenzioAllarga la finestra del tempo trascorso/restanteInserisci i dettagli della connessione al serverInserisci il tuo nome DJ o il nome della stazione. Tipicamente queste informazioni saranno visualizzate attraverso i programmi usati dagli ascoltatori.Errore nel tentativo di rinominare {0} in {1}.ScambiaEstensioneEsternaPlaylist esternaExtra ShoutcastDissolvenzaDissolvi 10secDissolvi 5secDissolvenza in uscitaLettore inattivoAlternativaVeloceImpostazioni funzionalitàTipo fileNome fileNome file:Riempi il vuoto dell'indicatore per il canaleFiltriFineLettore attivoFormatoStringa di formattazioneLa frequenza in Hertz sopra la quale l'audio viene fatto passare ai livelli successivi. Usare questa funzionalità per eliminare i suoni sulle basse frequenze quali il ronzio. Impostare questo valore troppo elevato renderà il suono della voce 'sottile'Da quiDall'album, %sTutte le funzionalitàRicerca approssimativaGuadagnoGeneraleGenereGenere(i)Controlli di gruppoDettaglio HFAvvia uno dei registratori automaticamente quando una connessione al server va a buon fine.Avvia uno dei lettori automaticamente quando una connessione al server va a buon fine.Filtro passa altoElevataTenutaNome hostNomehost/Indirizzo IPICQLe informazioni per ICQ vanno inserite qui.Uscita IDJCPreferenze IDJCGestore dei profili IDJCIl tagger IDJCIRCServer IRCMessaggio di fuori onda IRCMessaggio di in onda di IRCMessaggio a tempo IRCAnnuncio traccia IRCIcecast 2 MasterIcecast 2 Stats/RelayIconaImpostate questo campo anche per server che consentono l'accesso pubblico anonimo.Se connessoSe la connessione si interrompe riconnettiti al serverSe questo valore è impostato verrà effettuato un tentativo di acquisire il vostro primo nickname IRC (se necessario) ed accedere in NickServ@services. L'utilizzo del servizio NickServ necessista la preventiva registrazione del nickname sulla rete utilizzando un client regolare.Controlli playlist ignoratiIn IDJC ci sono due percorsi per l'audio e questo '{0}' controllo passa dall'uno all'altro. Se '{1}' è attivo ascolterete quello che sentono gli ascoltatori, inclusi gli effetti della dissolvenza. '{0}' deve essere impostato su '{2}' per utilizzare al meglio le funzionalità VoIPInvia al mix del DJIndIndica il numero dei pulsanti e dei numeri di canale associatiIndica con quale modalità verrà avviato IDJCControlli individualiIngressoInserisci attributoInserisci un attributo o un codice coloreInserisci controlloInterazioneLe informazioni per IRC vanno inserite quiIntervalloInverti il segnaleElementoPorte JACKPassa all'inizioTieni nascosta la finestra della riconnessone ad ogni tentativo.TastoAzione da tastieraLDettagli LFUltima eseguitaIl click sinistro cambia dal mostrare il tempo trascorso o restante della traccia in esecuzione.Lettore sinistroLicenzaLimiterIndirizzo di ascolto (URL)In attesa di input...AscoltatoriIn attesta di inputNome utenteRiproduci in cicloPlaylist M3UMIDI controlloMIDI notaMIDI controllo della tonalità Pulsante del pannello principalePulsanti di apertura del pannello principaleRendi pubblicoRende l'uscita di questo lettore udibile dal DJManda in onda l'audio di questo lettoreFa in modo che l'audio del microfono sia udibile nel mix del DJ. Non sempre è desiderabile.ManualePassword di amministrazione del server principaleMessaggioMeta TagMetadatiSorgente dei metadatiI metadati di solito vengono aggiornati quando cambia il titolo della song in esecuzione ma potete forzare un aggiornamento automatico qui.Metadati:Mezzo/MetàImpostazioni varieMissa l'audio del VoIP solo al DJManda in onda l'audio del VoIPModoModifica o elimina questo annuncioMonitoraggio MixMonitora il FlussoMonoPiù utile se si lancia il comando 'amixer', in particolare per impostare la registrazione.Punto di montaggioSposta il crossfader a sinistraSposta il crossfader a destraSposta il crossfader a metà della corsaNativoReteMaiNuovo profilo basato su %sDettagli del nuovo profiloTraccia successivaTraccia successivaNickServ p/wNicknameNessun canale da abilitareNessun dissolvenzaNessun server principale configuratoNoise GateNessunaNormaleVelocità normaleNotaSfasamentoIn chiusuraAll'avvioSe il flusso non è attivoSe il flusso è attivoObiettivoPulsante a singolo colpoApriApertoCampo opzionale a scopo informativo.Altre opzioniUscitaPLS playlistAbbinato al canale %sAvviaPasswordPercorsoMetti in pausaPausaEsegue le operazioni su più server alla volta.Rotatore di faseRiproduciRiproduci tuttoRiproduciLettoreLettore 1Lettore 2Lettore abilita l'uscita DJLettore solo al DJ Qualità di ricampionamento del lettoreImpostazioni del lettore all'avvioFerma lettoreFerma lettore 2Lettore avanzaLettore suona la prossimaLettore suona la precedenteLettore suona la selezione dall'inizioLettore riproduci/pausaLettore seleziona la successivaLettore seleziona la precedenteLettore imposta il bilanciamentoLettore imposta il gainLettore imposta variazione tonoLettore Imposta il volumeLettore fermaLettore ferma 2Lettore abilita il flussoLettori supera dissolvenzaLettori imposta dissolvenzaLettori imposta focusLettori mostra alzamento tonoRiproduzione traccia {0} di {1}PlaylistPlaylist 1Playlist 2Playlist 3Modalità playlistPulsante di avanzamento playlistPlaylist modifica i tagLettore inserisci annuncioPlaylist inserisci dissolvenzaPlaylist inserisci salto all'inizioPlaylist inserisci abbassamento tonoPlaylist inserisci stopPlaylist inserisci stop 2Lettore inserisci trasferimentoSto popolandoPortaNumero portaPreferenzePrependiPrependi dal cursorePrependi dal cursorePremutoTraccia precedenteIngresso elaboratoProfiloIl profilo %s è attivo.ProfiliPubblicate la vostra stazione su un sito. Il sito in questione dipenderà dalla configurazione del server cui vi connettete.QualitàCalmoRCasualeSalto casualeNome realeRegistraRegistratoreRegistratore imposta registrazioneTempo di registrazione trascorso.Riduce i suoni delle S,T e P che i microfoni normalmente tendono ad accentuare. Il controllo Bias verrà impostato in modo che il de-esser sia spento nei momenti di silenzio ma sia sufficentemente alto da non rendere udibili i click del mouse.Riduce i suoni sommessi indesiderati ed il rumore di fondo che non volete venga udito dagli ascoltatori.Guadagno relativo (dB)RilascioRilasciatoRilasciato sotto la Licenza Pubblica Generica GNU, V2.0+RestanteRicordaRimuoviRimuove i contenutiRipetiRipeti all'infinito la sequenza dei ritardiReplayGainRispostaRipristina la sessione precedenteInvertitoLettore destroAvvia con funzionalità ridotte, diminuisce il carico sulla CPU e occupa meno spazio sullo schermo.Avvia con tutte le funzionalità, consuma più CPUSalvaSalva la playlist di sinistraSalva la playlist di destraSeconda sceltaSeleziona il tipo di fileSeleziona la cartella in cui registrareSelezionare questa opzione per usare un cursore indipendente per il lettore di destra e sinistra.Cursori del volume separati per i lettori destro/sinistroTipo serverImpostare questa opzione nell'eventualità che il server o il suo firewall rifiutino esplicitamente connessioni da client che usano libshout.Imposta aImposta valoreComando ShellModificatoriShoucastShoutcast MasterIcecast 2 Stats/RelayCorrispondenza segnaleRegistrazione(i) in simultaneaTrasmissione(i) in simultaneaControllo unicoCanzoneAvviso sonoro quando la musica si avvicina alla fineFonteLivelliAvvia completoAvvia minimaleLettore inizialeAvvia il registratoreAspetto dell'indicatore di statoStereoPanorama StereoInterrompi la registrazioneFerma la registrazioneInterrompi il flussoFermaFlussoInformazioni flussoFlusso registratore Flusso imposta connessioneFlussiFormati di media supportatiMedia supportatiObiettivoCreazione della cartella temporanea fallita.TestoIl pannello '%s' determina come viene gestito l'ingresso e con quale effetto.L'indirizzo (URL) della vostra stazione. Questo ed il resto delle informazioni qui sotto sono da intendersi come visualizzabili su di un sito web che fornisce una lista di stazioni.La quantità di headroom richiesta (dB)Questo pulsante sarà raggruppato insieme ai pulsanti degli altri microfoni. Sarà agito dai segnali per spegnere i microfoni. I canali associati con questo pulsante saranno missati in modo diverso quando vengono usate le modalità VoIP.Il profilo scelto è attualmente in uso.Il numero cumulato di ascoltatori per tutti i server.La lista di canali e/o utenti, separati da virgola o spazio, ai quali verrà inviato il messaggio. I canali protetti sono inclusi nella forma: #canale:parolachiaveIl piano da attuare nel caso il buffer si stia riempiendo è...I controlli per configurare un flusso.Il crossfaderIl profilo baseIl ritardo del messaggio. Tipicamente i client degli ascoltatori memorizzeranno circa dieci secondi di audio il che vuol dire che ascolteranno il flusso con lo stesso ritardo, quindi senza un ritardo il messaggi IRC apparirebbero all'ascoltatore altrettanti secondi in anticipo rispetto all'audio. Questa impostazione consente di sincronizzare il cambio di traccia con il messaggio.Il ducker riduce automaticamente il livello dell'audio quando il DJ parla. Queste impostazioni ti consentono di regolare la tempistica della riduzione dell'audio.Il testo cui ricorrere quando i metadati %r %t %l non sono disponibili. Guarda il formato dell stringa sulla sinitra.La prima metà di un binding è l'input che proviene nella forma di un tasto premuto della tastiera o di un evento di un dispositivo midi. La selezione dell'input può essere fatta manualmente o con l'ausilio dell'opzione '%s'.L'headroom è la riduzione in dB da applicare al volume del lettore quando questo opener è attivo. Notare che la riduzione attuale sarà relativa al valore più alto tra tutti i pulsanti aperti.L'intervallo in secondi del messaggio temporizzatoIl messaggio da inviare. Sulla finestra di pop-up (clic con il tasto destro del mouse) ci sono alcune opzioni utili per includere i metadati e per la formattazione del testo. La finestra in basso mostra il messaggio così come apparirà agli utenti di XChat.Il genere musicale che offrirete.Il nuovo nome profilo non è valido.L'iconda del pulsante di apertura.Il testo del pulsante di aperturaLa directory del profilo '%s' esiste già.La lunghezza del profilo è eccessiva (max %d caratteri)Il nome reale che volete utilizzare e che sarà sempre disponibile a prescindere se per la connessione viene usato il nickname primario o meno. Dovreste impostarlo.La modalità di elaborazione del segnaleIl modello '%s' non è valido.Il volume del flusso da inviare alla connessione VoIPIl totale degli ascoltatori per questo serverIl profilo del modello '%s' non esiste.La finestra del tempo trascorso/restante a volte non compare grande abbastanza a causa di impostazioni anomale dei DPI o per l'utilizzo di motori di rendering diversi. Questa opzione sistema le cose.Il tempo in secondi che impiegherà il crossfader per passare da una parte all'altra quando viene premuto il pulsante qui a destra.Lo sfasamento con l'intervallo specificato qui sotto con cui il messaggio verrà recapitato.Il controllo del volume per il lettore di sinistraIl volume del lettore di destra.Il controllo del volume per entrambi i lettoriQuesti controlli servono per ottenere una corrispondenza decente tra microfoni.Queste impostazioni avranno effetto dopo il riavvio.Terza sceltaQuestoRegola la velocità di riproduzione tra il 25% ed il 400%.Regola il livello dell'audio del DJQuesto pulsante muove il crossfader fino alla parte opposta nel lasso di tempo specificato qui a sinistraQuesto apre il microfonoQuesto pulsante scorre la playlist attiva facendo una pausa tra le tracce. La playlist attiva viene dedotta dal posizionamento del crossfaderQuesto pulsante lampeggerà per ricordarvi di chiuderloRegola l'allocazione dei pulsanti apri/chiudi sul pannello principale. Un pulsante che controlla più microfoni può far risparmiare del tempo.Controlla il tempo di dissolvenza tra tracceQuesta impostazione potrebbe migliorare la qualità del suondo su schede audio a 24bitQuesta funzionalità elabora l'audio del microfono in modo di renderlo più costante. L'effetto è particolarmente distinguibile sulle voci maschili.Indica lo stato dei vari flussi. Il lampeggiamento indica che i pacchetti del flusso vengono perduti perché la rete è congestionata. Un rosso parziale indica che il buffer di invio è parzialmente pieno, ovvero difficoltà di comunicazione con il server. Verde indica che tutto è a posto.Tentativo %d. Non ci sono limiti ai tentativi.Occorre per le statistiche e per i kick sui server principali che hanno una password di amministrazione impostata. Per chi riempie questo campo (la password della fonte è sufficente)Questa opzione fa apparire più linguette sotto la playlist che consentono di regolare la velocità di riproduzione tra il 25% ed il 400% e un pulsante per la velocità normale.Consente di selezionare la curva di risposta del crossfader. Le attenuzioni nel punto di mezzo sono -3dB, 0dB e -22dB rispettivamente.Da scansionare per il pubblico in ascoltoReimposta la normale velocità di riproduzione Imposta la modalità della playlist, che definisce il comportamento del lettore dopo che una traccia è stata eseguita. 'Riproduci tutto' è la modalità più versatile perché consente di usare gli elementi di controllo disponibili nel menù contestuale della playlist, accessibile con il clic destro. Se non sono presenti elementi di controllo le tracce verranno riprodotte sequenzialmente fino alla fine della playlist dopodiché il lettore si fermerà. 'Riproduci in ciclo' fa in modo che le tracce vengano riprodottein sequenza, iniziando da capo una volta raggiunta la fine della playlist. 'Casuale' le tracce verranno riprodotte all'infinito e casualmente. 'Manuale' il lettore si fermerà alla fine di ogni traccia. 'Accoda' come per Manuale ma che la traccia successiva verrà evidenziata. 'Esterna' prende le tracce una alla volta da una playlist esterna o da una cartella. Utile per trasmettere playlist di grosse dimensioni. 'Alterna' fa in modo che la traccia successiva sia messa in coda prima di avviare l'altro lettore. Il crossfader non viene attivato. 'Dissolvenza' nel passaggio da un lettore all'altro l'audio si sovrapporrà alla fine di ogni traccia. 'Salto casuale' sceglierà una traccia a caso dall'altra playlist.Questo cursore agisce sia come un indicatore di avanzamento che come strumento per spostarsi nella traccia attualmente in esecuzione.Questo disconnetterà chiunque stia utilizzando il server, liberandolo per un uso personale.Questo che state leggendo adesso è un suggerimento. Questa opzione li abilita o meno.Questo:SogliaTempoCronometroTitoloFino a quiNumero totale di tracce %dDurata totale %sTracciaAnnuncio tracciaTempo trascorsoTempo restanteTracce eseguiteTrasferisciTraduttoriElimina i finali sommessi ed il silenzio iniziale delle canzoniTrkRisoluzione problemiSconosciutoAvviato daLimite superioreUsa valoreUtile quando i microfoni si annullano l'un l'altro producendo un suono ovattato.Nome utenteVistaVoIP solo al DJCanale VoIPVoIP abilita l'uscitaVoIP imposta il bilanciamentoVoIP imposta guadagnoVoIP imposta volumeWHEREQuando un nickname è in uso sulla rete IRC, in fase di connessione vengono provati questi nickname, poi vengono usati di nuovo ma aggiungendo un trattino basso in coda fino a smettere. Questo fornisce a IDJC un massimo di nove nickname IRC da provare.Chiude questi altri pulsanti se apertoQuando si avvia IDJC molte delle impostazioni della finestra principale saranno come le avete lasciate. In alternativa potete specificare qui sotto come volete trovare le varie impostazioni all'avvio di IDJC.LarghezzaXChat comandoXSPF playlistAnnoQui potete inserire del testo da associare al flusso e specificare dei segnaposti %r %t %l %s per l'artista, il titolo, l'album e la canzone rispettivamente, oppure lasciare vuoto questo campo per usare i dati di base. In mancanza di metadati sufficenti il nome della canzone (%s) viene preso dal nome file, mentre gli altri segnaposti utilizzeranno il testo a destra. Se lasciato vuoto, i flussi Ogg utilizzeranno i tag standard e gli mp3 utilizzeranno %s.Potete usarlo per aumentare la quantità di basse frequenze nell'audio.Potete usarlo per aumentare la quantità di alte frequenze nell'audio._Auto_Riprova adessodescrizione del profilonon c'è il percorso ad una directory: '%s'albumun profilo esistente da usare come templateartistatenta la connessione con i server specificatinon posso scrivere il file %stesto_descrittivoerrore nella creazione del profilo: %sgenerenomepercorso_iconacrea un nuovo profilomm:ssnicknamenessun profilo impostatopercorso ad un'icona -- di base è il logo di idjc posiziona il "crossfader" per il lettore specificatoscelta_profilonome_profilodata di registrazionenome_servermodello_profilocreazione della cartella temporanea fallitail nome profilo alternativo da mostrare nella barra del titolo delle finestrei canali audio da aprire all'avvioil profilo scelto è attualmente in usoil server audio jack cui connettersiil nuovo nome profilo non è validoil profilo '%s' è in usola directory del profilo '%s' esiste giàla lunghezza del profilo è eccessiva (max %d caratteri)il nome profilo non è validoil modello '%s' non è validoil profilo del modello '%s' non esistela modalità VoIP all'avviotitolotraccia/totaleimpostazioni dell'interfaccia utenteidjc-0.8.16/po/en@boldquot.header0000644000175000017500000000247112631274031013507 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # idjc-0.8.16/po/stamp-po0000644000175000017500000000001212711167613011537 00000000000000timestamp idjc-0.8.16/po/LINGUAS0000644000175000017500000000010312636035720011101 00000000000000# Translations are listed here in a space separated list. it fr es idjc-0.8.16/po/en@quot.header0000644000175000017500000000226312631274031012645 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # idjc-0.8.16/po/fr.gmo0000644000175000017500000023537312711167613011213 00000000000000T 0@@@@ @@ A6A-,B)ZB,B'B2B C C 8CDCwCVUDD|EEMFNFGG GGGG%G "HCH$HCHMSIS ^S7kS SSSSSSSS TT0T9T#HTlTTTTURVYVhV pV ~V&VVV gX qX |XXX4XX XYY/YDY]Y wY YYYYYYYYYYYZ ZZ"Z (Z 4Z@Z)YZ Z>Z ZZZZ ZZ[[\]']C]S]Z]k]']] ] ]]]]]^"^2^+8^d^!t^.^*^#^j_*___ _____` ` ` `=`F`U`u`~` ` ``` `` `````a a aa6aTab b!b4b CbPbUb]bcb lbzbb bXb`b^ccctc|ccccc0c ccd d!d %d0dHd^dpddddQd e0e?e7f Pf^gng6rg,g3g hh$h5hUh dh.phh hhBii i i i7i'j+j :j FjSj Uj _jmkj jjjk kk *k4k HkSk\k ckpk wk kkkk k k/k5lRJll lllllll`l `mjmqm vmm mm'm-m"n&&n MnYnKln nnn n9oRoao}oooooooo o o ooopH!pjpp%p#pp pqq qq+ qLqSq\qdq sq qqqqq/q qq qr rr8rRrWr`r erorrr1r rrrrrrrrs'sEs]s xs ss:ssst"t4tGt^tqttt t ttttt u#u5uLueu nu yu u uuuuuuv3vHv_v xvv v vvv vvvvvvw"w*w@w)Iwsw w xxxx !x ,x6x=x0Fxwx xxxxoy$z7z?z4Hz}z zzzzzz+z z {){8/{h{q{{ {e{9 |D|I|b|u|| |||?|[}(j} }n}h~w~ ~~~ ~~ ~~~/~\eu  +  ,;݀ & -9I^} $F1$݄(:?&"2jFbHv-'U*&"Qt*3Ǎ)Ŏ@.)-Ww&X-.%0TQ+ג :VP-Cwq3-~Ֆ0T]}5a 3֙u%1,͛Yq[uVѡ( .8=CJPXtʢݢ   ',4aeu} U  $',1 E4R Ǥդ%] c qb;:<٩, 2=$Z(-(4EkbΫQZ u ĭʭjs,0Į,"<Zq _ү/2 bn հ$w!#ϱ9*-'X+!β)2Fkdг'((:c| +#Ҵ#&A̶ <7E2}?36$[q t aѻrZV[@ S]s0Ӿ;ƿQ&T{JvV !(1G"+>+j 94EU.j / =EL] IT lzNL&6E_ o{   & 5?C  )0$D"i,- 3   7 EY hr.y#  %>TW gq  = -C: ~ #.92ls| @R*l4/@t=7 !:J PZ c"p& '7F,W  / 4> DNbw bkin 9 ' CP T`y_ O;\%A8?0x' #(LUh  6 + 7D F Rj`  1; P \ iw (,"6OL%  )7|O "#?#c) d;L,_,6 #,06>Ee ! T$5Z*c"& 7>E Tbq  8  !.*Cn ?, 1<D L V`}$*& +4:o!%4Li ! 3Rl}( %'B)j2"$& 6BG Wek(36<s  ! 0 : F0S 0jH  $.C V/` #H!9BzTP ',)T)~ +6 lC1suf    )::Qv< \iz4!!.,[c} '7 J X,bW$p+m>@z' Y^ r x O . @ @ 'Y    *<= 40E)vhwQ)2\6|g<Xi4nh *}4k08i,f*x? 1J.|g76y#x#c$[v$$ $$$$$ %% %0%@%Y%j%p%% % %% %)% %3%-&3&N&V& t&&&&M&''&')'.'3' I'3T'' ''''((!(- );))**** *-E-E-.9.?.Z.2t..+.././8$/&]///w/$+0&P0mw0011172V2g22273>3Y33n31343 4+'4S4j44 44#44b4,[5555)55 6&6%67, 7>M7$7*7'78+$8)P8<z888\9-y99(99 : :4:&R:,y:-:&:Gh{|^^ ^ cwfq2E QV=UT> Eb#+wFVjfoh d$PumT2/1i6Q7*MNb%U6Ar9,ij:]@!c$S3Dm4t`t+R\.[\Rn*gSp}?v`F#6l1eHm<@UiKZfu; L57y%tCS5L K0 C901hq3N4; W,s<z8 \:l T09p87H"vE}yP--d~{FBly_(g|dX`3O&Aj$8VWwuKN>/Zv-H ?n)(!JY&x"kD =J .kD<_#+AOseZ'|'.@ o[(x!"R{eYB}5bW=]?%)GXaI_YC]I&MOp4c;,GxL> a:'J[~*zrkroQaP~X/2s  IqMBzng) Additional Text Frames Stream %d Audio Tracks'%s' control'Block size' indicates the amount of time that it will take to play from the currently selected track to the next stop. 'Remaining' is the amount of time until the next stop. 'Finish' Is the computed time when the tracks will have finished playing.(Cue sheet)-- sub-command: auto -- mark a profile for auto-launch-- sub-command: ls -- list available profiles-- sub-command: new -- make a new profile-- sub-command: noauto -- remove auto-launch-- sub-command: rm -- remove profile(s)-- sub-command: run -- launch the idjc application<<< Fade across <<<<<< Transfer across <<<BoldReset all JACK port connections? All currently established connections will be lost and replaced with defaults.A connection to a radio server has failed. Reconnection will not be attempted.A scheduled stream disconnection has occurred.The connection to the server in tab {servertab} has failed. A reconnection attempt will be made in {countdown} seconds. This is attempt number {attempt} of {maxtries}.Delete profile '%s' and all its data? The data of deleted profiles cannot be recovered.Delete the data of profile '%s'? The profile will remain available with initial settings.Error while creating new profile. %sError while editing profile: {0}. {1}Permanently delete this server? This action will also erase all of its associated messages.Underline>> Normal Speed <<>>> Fade across >>>>>> Transfer across >>>A Non directory path exists at: '%s'.A VU meter for the stream audio.A comma separated list of delays in seconds between reconnection attempts. Note that bad values or values less than 5 will be interpreted as 5.A description of your radio station.A label so you may describe briefly the role of this audio channel.A look-ahead brick-wall limiter. Audio signals are capped at the upper limit.A master level control for the media players.A peak hold meter indicating the microphone signal strength and a meter indicating attenuation levels in the microphone signal processing system. Green indicates attenuation from the noise gate, yellow from the de-esser, red from the limiter.A peak hold meter indicating the signal strength of the stream audio.A table of servers with which to connect. Only one master server can be added for the purpose of streaming. All other servers will appear below the master server in the list for the purpose of stats collection which can be toggled on a per server basis.A useful feature to have switched on while allocating channel openers.AIMAboutAct ifActionActiveAdd MusicAdd any other ID3 text frames here. e.g. TIT2:Alternate Title This will be appended onto the main TIT2 tag. Enter user defined text frames like this: TXXX:foo=bar For more information visit www.id3.org.Add background musicAdd music to left playlistAdd music to right playlistAdd tracks to the playlist.Adjust byAdjust playback volume in dBAfter a number of seconds where a main player is active this button's status indicator will start to flash and will continue to do so until the button is closed or the player stops.Alarm LevelAlbumAlbum - [Disk] - TitleAllAll active recordings and radio streams will terminate.All active recordings will cease.All effectsAll file typesAll of the active radio streams will terminate.Alter valueAlternateAlternativeAlwaysAn alarm tone alerting the DJ that dead-air is just nine seconds away. This also works when monitoring stream audio but the alarm tone is not sent to the stream. JACK freewheel mode will also be automatically disengaged.AnnouncementAnnouncementsAppendAppend CursorAppend at CursorApply dither to 16 bit PCM playbackArtistArtist - Album - TitleAssume the connection is beyond saving and reconnect.At connect:At start-up do not make any JACK connections. This option delegates all control over restored connections to the session handler.Audio FeedAudio input channelsAudio to DJAudio to streamAutomatically connect to the server at a specific time in 24 hour format, midnight being 00:00Automatically disconnect from the server at a specific time in 24 hour format.BackSpaceBackground TracksBackground Tracks volume.Background playerBad TagBasic ControlsBasic StreamerBasic inputBestBiasBindingsBitrateBlock sizeBoost/Cut (dB)Both playersBrowseButton BarButton Open TriggersBy ExtensionCannot rename profile {0} to {1}, {1} currently exists.Catalog PathCatalogsChChannelChannel MetersChannel OpenerChannel output enableChannel set balanceChannel set gainChannel set volumeChannelsChannels/UsersChoose a folder/directory of music.Choose a media directoryChoose a playlist fileChoose a playlist file.Choose which directory you want to save to. All file names will be in a timestamp format and have either an oga, mp3, or flac file extension. Important: you need to select a directory to which you have adequate write permission.Choose which stream to record or the 24 bit FLAC option. If the stream isn't already running the encoder will be started automatically using whatever settings are currently configured.ClosedCollapse tree.ColoursConfigurationConfigureConfirmation to quit IDJC is required.ConnectConnect to or disconnect from the radio server. If the button does not stay in, the connection failed for some reason. If the button is greyed out it means your settings within the 'Connections' and 'Format' sections are either incompatible with one another or are incomplete. In order to stream a master server needs to be specified in the configuration section below and must be capable of handling the chosen streaming format.ConnectedConnectingConnectionConnection droppedConnection failed (try %d)Connection info for AOL instant messenger goes here.Contact DetailsContributorsControlCopyCopyright 2005-%s Stephen Fairchild and others.Could not write file %s.Create a new announcementCrossfadeCrossfaderCue UpCuesheet PlaylistCustom user agent stringCutoff FrequencyDJDJ Audio LevelDJ nameDJ-mix monitorDSPDatabaseDe-esserDeactivatedDefaultDelayDelay timesDescriptionDirect fader/held buttonDiscard audio data for as long as needed.DisconnectDisconnect whoever is using the server just before start time.DisconnectedDiskDisk %dDuckerDuplicateDurationEach one of these tabs represents a separate radio streamer. The LED indicator colours represent the following: Clear=No connection Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to a bad connection.Each one of these tabs represents a separate stream recorder. The LED indicator colours represent the following: Clear=Stopped Yellow=Paused Red=Recording.Each opener button has two vertical bars at the side to make the button state more apparent. These settings control their appearance.Edit control bindingEdit existing server connection detailsEdit profile %sEffectEffect %d ConfigEffect play from startEffective only on newly started tracks.EffectsEffects %dEffects bankEffects bank 1Effects bank 2Effects set headroomEffects set volumeEffects stop manyEffects volume.EmptyEnable the main-player speed/pitch controlsEnable tooltipsEncoder Format Not Set/CompatibleEnd tracks containing long passages of silenceEnlarge the time elapsed/remaining windowsEnter new server connection detailsEnter your DJ name or station name here. Typically this information will be displayed by listener clients.Error during attempt to rename {0} to {1}.ExchangeExpand entire tree.ExtensionExternalExternal PlaylistExtra ShoutcastFadeFade 10sFade 5sFade OverFade audio before disconnecting.Fade outFadered playerFailed to create FULLTEXT indexFallbackFastFeature SetFetch Failed!FetchingFileFile TypeFilenameFilename:Fill channel meter void spaceFiltersFinishFocused playerForceFormatFormat StringFound Prokyon 3 schemaFound existing FULLTEXT indexFrequency in Hertz above which audio can pass to later stages. Use this feature to restrict low frequency sounds such as mains hum. Setting too high a level will make your voice sound thin.FromFrom HereFrom the album, %sFully FeaturedFuzzy SearchGainGeneralGenreGenre(s)Group ConnectGroup ControlsGroup DisconnectHF DetailHave a recorder start automatically when a radio server connection is successfully made.Have one of the players start automatically when a radio server connection is successfully made.HelpHigh Pass FilterHighestHoldHostnameHostname/IP addressHostname[:Port]ICQICQ instant messenger connection info goes here.IDJC OutputIDJC PreferencesIDJC Profile ManagerIDJC TaggerIRCIRC serverIRC stream down messageIRC stream up messageIRC timed messageIRC track announceIcecast 2 MasterIcecast 2 Stats/RelayIconIdeally set this to something even on servers that allow public anonymous access.If connectedIf the connection breaks reconnect to the serverIf this value is set an attempt will be made to acquire your first choice IRC nickname (if needed) and log in with NickServ@services. The use of the NickServ service requires prior nickname registration on the network using a regular chat client.Ignored playlist controlIn IDJC there are are two audio paths and this '{0}' control toggles between them. When '{1}' is active you can hear what the listeners are hearing including the effects of the crossfader. '{0}' needs to be set to '{2}' in order to make proper use of the VoIP features.In The DJ's MixIndIndicate button numbers and associated channel numbersIndicate which tracks have loudness metadataIndicates which mode IDJC will be in when launched.Individual ControlsInputInsert AttributeInsert Attribute or Colour CodeInsert controlInteractionInternet Relay Chat connection info goes here.IntervalInvert SignalIt may not be desirable to use the default level since it is rather quiet. This should be set 4 or 5 dB higher than the ReplayGain setting.It may not be desirable to use the default level since it is rather quiet. This should be set 4 or 5 dB lower than the R128 setting.ItemJACK PortsJob droppedJump To TopKeep the reconnection dialogue box hidden at all times.KeyKeyboard pressKick SourceKick SourcesLLF DetailLast PlayedLeft click toggles between showing the amount of time elapsed or remaining on the current track being played.Left playerLevel adjustment (dB)LicenceLimiterListen URLListen for input...ListenersListening for inputLogin nameLoop AllLowestM3U playlistMANUALMIDI controlMIDI noteMIDI pitch-wheelMain Panel ButtonMain Panel Opener ButtonsMain PlayersMake PublicMake output from this player audible to the DJ.Make output from this player available for streaming.Make the microphone audio audible in the DJ mix. This may not always be desirable.ManualManual startMaster server admin passwordMediumMessageMeta TagMetadataMetadata SourceMetadata normally updates only on song title changes but you can force an immediate update here.Metadata:MiddleMiscMiscellaneousMiscellaneous FeaturesMisconfiguredMixMix voice over IP audio to the DJ only.Mix voice over IP audio to the output stream.Modify or Delete this announcementModule mysql-python (MySQLdb) requiredMonitor MixMonitor Stream MixMostly useful issuing 'amixer' commands, in particular for setting capture.Mount pointMount point Move the crossfader fully left.Move the crossfader fully right.Move the crossfader to the middle of its range of travel.Music DatabaseMusic Loudness CompensationN/ANICKSERVNameNativeNetworkNeverNew profile based upon %sNew profile detailsNext trackNext track.NickServ p/wNicknameNo Channel Opener ButtonsNo FadeNo JACK ports will be connected except those listed in the session file.No Master Server ConfiguredNo NameNo Recorders Are Correctly ConfiguredNo Streams Are Currently ConfiguredNo compatible ports available.Noise GateNoneNormalNormal SpeedNoteOff when restarting IDJC and off initially.OffsetOn closeOn openOn stream downOn stream upOn targetOne-shot/toggle buttonOnly 12OpenOpenedOptional data entry field for information only.Other optionsOutputOutput MetersPASSWORDPLS playlistPanning load from presetsPartnered with channel %sPassPasswordPathPath PeelPause recording.Pause.PeakPerform operations on multiple servers in unison.Phase RotatorPlayPlay AllPlay.PlayerPlayer 1Player 2Player DJ output enablePlayer DJ-only switchPlayer Loudness NormalisationPlayer Resample QualityPlayer Settings At StartupPlayer StopPlayer Stop 2Player advancePlayer headroom that is applied when an effect is playing.Player play nextPlayer play previousPlayer play selected from startPlayer play/pausePlayer select nextPlayer select previousPlayer set balancePlayer set gainPlayer set pitchbendPlayer set volumePlayer stopPlayer stop 2Player stream output enablePlayersPlayers advancePlayers pass crossfadePlayers set crossfadePlayers set focusPlayers show pitchbendPlaying track {0} of {1}PlaylistPlaylist 1Playlist 2Playlist 3Playlist ModePlaylist advance buttonPlaylist edit tagsPlaylist insert announcePlaylist insert crossfadePlaylist insert jump to topPlaylist insert pitchunbendPlaylist insert stopPlaylist insert stop 2Playlist insert transferPopulatingPortPort numberPreferencesPrependPrepend CursorPrepend PathPrepend at CursorPresetsPressedPrevious track.Problem dropping connectionProcessed inputProfileProfile %s is active.ProfilesProkyon3 or Ampache (song title) DatabasePublish your radio station on a listings website. The website in question will depend on how the server to which you connect is configured.Quick panningQuietRR128RandomRandom HopReal nameRecordRecorderRecorder Filename (excluding the file extension)Recorder set recordingRecordersRecording Facility UnavailableRecording time elapsed.Reduce the S, T, and P sounds which microphones tend to exaggerate. Ideally the Bias control will be set low so that the de-esser is off when there is silence but is set high enough that mouse clicks are detected and suppressed.Reduce the unwanted quietest sounds and background noise which you don't want your listeners to hear with this.Relative Gain (dB)ReleaseReleasedReleased under the GNU General Public License V2.0+.Reload the database.RemainingRemindRemoveRemove ContentsRenameable LabelsRepeatRepeat the sequence of delays indefinitely.ReplayGainReserve 24 sound effects slotsResetReset the JACK port connections to the default settings.ResponseRestore the previous sessionReversedRight playerRun in a reduced functionality mode that lowers the burden on the CPU and takes up less screen space.Run in full functionality mode which uses more CPU power.SaveSave background playlistSave left playlistSave right playlistSearchSecond choiceSelect File TypeSelect the folder to record toSelect the origin for the playing track metadata on the stream.Select this option to use an independent volume fader for the left and right music players.Separate left/right player volume fadersServer typeSet this on the occasion that the server or its firewall specifically refuses to allow libshout based clients.Set this so that any unmarked tracks are playing at a roughly similar loudness level as the marked ones.Set toSet valueSettingShell CommandShiftingShoutcastShoutcast MasterShoutcast Stats/RelayShow a JACK freewheel control on the main panelShows a marker in the playlists next to each track. Either a green circle or a red triangle.Signal MatchingSimultaneous recording(s)Simultaneous stream(s)Single effectSingular controlSong nameSound an alarm when the music is due to endSourceStagesStart FullStart MiniStart playerStart recorderStart recording. If this button is greyed out it could mean either the encoder settings are not valid or write permission is not granted on the selected folder.Status Indicator AppearanceStereo PanningStereo panning is the selection of where an audio source sits from left to right within the stereo mix. This control maintains constant audio power throughout its range of travel, giving -3dB attenuation in both audio channels at the half way point. If you require 0dB straight down the middle or require a stereo source remain as stereo then this feature should be turned off. Paired channels should be set to 100% left/right unless narrowing of the stereo field is the intention.StopStop recordingStop recording.Stop streamingStop.StreamStream InfoStream recorderStream set connectedStreaming Facility UnavailableStreamsSupported Media FormatsSupported mediaTabbed AreaTargetTemporary directory creation failed.TextThe '%s' pane determines how the input is handled, and to what effect.The URL of your radio station. This and the rest of the information below is intended for display on a radio station listings website.The amount of headroom required (dB)The button will be grouped with the other microphone opener buttons. It will be affected by signals to close microphone buttons. Channels associated with this button will be mixed differently when using the VoIP modes.The chosen profile is currently running.The combined total number of listeners in all server tabs.The comma or space separated list of channels and/or users to whom the message will be sent. Protected channels are included with the form: #channel:keyword.The contingency plan upon the stream buffer becoming full is...The controls for configuring a stream.The crossfader.The default profileThe delay time of this message. Typically listener clients will buffer approximately ten seconds of audio data which means they are listening the same amount of time behind the actual stream therefore without a delay IRC messages will appear to the listener many seconds ahead of the audio. This setting will help synchronise the track change with the message.The ducker automatically reduces the level of player audio when the DJ speaks. These settings allow you to adjust the timings of that audio reduction.The fallback text to use when %r %t %l metadata is unavailable. See the format string to the left.The first half of a binding is the input which comes in the form of the press of a keyboard key or an event from a midi device. Input selection can be done manually or with the help of the '%s' option.The headroom is the amount by which to reduce player volume when this opener is active. Note that the actual amount will be the largest value of all the currently open buttons.The interval in seconds of the timed message.The message to send. On the pop-up window (mouse right click) are some useful options for embedding metadata and for text formatting. The window below displays how the message will appear to users of XChat.The musical genres you are likely to play.The new profile name is not valid.The opener button's icon.The opener button's text.The pan preset selection buttons. In the stereo image at a click the DJ can be on the left and a guest on the right and when the guest is gone at a click the DJ can be central again. Note: preconfiguration of pan preset settings is required.The profile directory '%s' already exists.The profile length is too long (max %d characters).The real name you want to use which will be available regardless of whether the network connection was made with the primary nickname or not. Ideally set this to something.The signal processing mode.The specified template '%s' is not valid.The specifiers are $r for the number of the recorder with the rest being documented in the strftime man page. Users may wish to alter this to make filenames that are compatible with particular filesystems.The stream volume level to send to the voice over IP connection.The sum total of listeners in this server tab.The template profile '%s' does not exist.The time elapsed/remaining windows sometimes don't appear big enough for the text that appears in them due to unusual DPI settings or the use of a different rendering engine. This option serves to fix that.The time in seconds that the crossfader will take to automatically pass across when the button to the right is clicked.The time offset within the below specified interval at which the message will be issued.The volume control for the left music player.The volume control for the right music player.The volume control shared by both music players.These controls are provided to obtain a decent match between the two microphones.These settings take effect after restartingThird choiceThisThis adjusts the playback speed anywhere from 25% to 400%.This adjusts the quality of the audio resampling method used whenever the sample rate of the music file currently playing does not match the sample rate of the JACK sound server. Best mode offers the best sound quality but also uses the most CPU (not recommended for systems built before 2006). All these modes provide adequate sound quality.This adjusts the sound level of the DJ alarm. Typically this should be set close to the dj audio level when using the '%s' feature, otherwise a bit louder.This adjusts the sound level of the DJ audio.This button causes the crossfader to move to the opposite side at a speed determined by the speed selector to the left.This button is to be treated as a microphone openerThis button steps through the active playlist, pausing between tracks. The active playlist is defined by the placement of the crossfader.This button will flash as a reminder to closeThis controls the allocation of front panel open/unmute buttons. Having one button control multiple microphones can save time.This controls the amount of fade between tracks.This feature maybe improves the sound quality a little when listening on a 24 bit sound card.This feature processes the microphone audio so that it sounds more even. The effect is particularly noticable on male voices.This feature requires the installation of python-irc.This indicates the state of the various streams. Flashing means stream packets are being discarded because of network congestion. Partial red means the send buffer is partially full indicating difficulty communicating with the server. Green means everything is okay.This is attempt number %d. There is no retry limit.This is for kick and stats on Shoutcast master servers that have an administrator password. For those that don't leave this blank (the source password is sufficient for those).This option causes some extra widgets to appear below the playlists which allow the playback speed to be adjusted from 25% to 400% and a normal speed button.This selects the response curve of the crossfader. The mid-point attenuations are -3dB, 0dB, and -22dB respectively.This server is to be scanned for audience figuresThis sets the playback speed back to normal.This sets the playlist mode which defines player behaviour after a track has finished playing. 'Play All' is the most versatile mode since it allows the use of embeddable playlist control elements which are accessible using the right click context menu in the playlist. When no playlist controls are present the tracks are played sequentially until the end of the playlist is reached at which point the player will stop. 'Loop All' causes the tracks to be played in sequence, restarting with the first track once the end of the playlist is reached. 'Random' causes the tracks to be played indefinitely with the tracks selected at random. 'Manual' causes the player to stop at the end of each track. 'Cue Up' is similar to manual except that the next track in the playlist will also be highlighted. 'External' draws it's tracks from an external playlist or directory one at a time. Useful for when you want to stream massive playlists. 'Alternate' causes the next track to be cued up before starting the opposite player. The crossfader is moved over. 'Fade Over' will crossfade to the other player at the end of every track. 'Random Hop' will pick a track at random from the other playlist.This should be set for all buttons that control input from a live sound source or device.This slider acts as both a play progress indicator and as a means for seeking within the currently playing track.This will disconnect whoever is currently using the server, freeing it up for personal use.This, what you are currently reading, is a tooltip. This feature turns them on or off.This:ThresholdTimeTimerTimer:TitleTo HereToggle JACK freewheel mode.Tooltips enableTotal number of tracks %dTotal play duration %sTrackTrack announceTrack time elapsedTrack time remainingTracks PlayedTransferTranslatorsTree fetch failedTrigger textTrim quiet song endings and trailing silenceTrkTroubleshootingUnknownUnrecognised databaseUntaggedUp-timeUpper LimitUse valueUseful for when microphones are cancelling one another out, producing a hollow sound.User NameUser nameVUViewVoIPVoIP DJ-only switchVoIP channelVoIP level adjustment. 0dB gain is at the mid point.VoIP output enableVoIP panning + mono downmixVoIP set balanceVoIP set gainVoIP set mixbackVoIP set volumeWHEREWhen a nickname is in use on the target IRC network, during connection these IRC nicknames are cycled through, then twice again after appending an additional underscore until giving up. This gives IDJC a maximum of nine IRC nicknames to try.When opened close these other buttonsWhen selected this player will be treated like a main player. It will be affected by microphone ducking and won't mute when a main player is operating.When starting IDJC most of the main window settings will be as they were left. As an alternative you may specify below how you want the various settings to be when IDJC starts.WidthXChat commandXSPF playlistYearYou can enter text to accompany the stream here and can specify placemarkers %r %t %l %s for the artist, title, album, and songname respectively, or leave this text field blank to use the default metadata. Songname (%s) is derived from the filename in the absence of sufficient metadata, while the other placemarkers will use the fallback text to the right. When blank, Ogg streams will use the standard Vorbis tags and mp3 will use %s.You can make certain media databases accessible in IDJC for easy drag and drop into the playlists.You can use this to boost the amount of bass in the audio.You can use this to boost the amount of treble in the audio.[Metadata suppressed]_Auto_Retry Nowa description of the profilea non directory path exists at: '%s'albuman existing profile to use as a templateartistattempt connection with the specified serversauto failed: %scould not get a lock on profile {0}: {1}could not write file %sdescription_textdirectory does not exist: %se.g. 'L1:name' for a named Ladish [L1] session called 'name' -- refer to the idjc man page for more detailsfailed to create profile: %sfailed to delete profile: %sfailed to grab bus name -- another session by the same name appears to be runningforce the appearance or non-appearance of the profile chooser dialog -- when used with the -p option the chosen profile is preselectedgenreicon_pathnamekick sources on servers -- note that this will be done before any server connection attempts are madelist available profilesls failed: %smake a new profilemm:ssnew profile name -- will form part of the dbus bus/object/interface name and the JACK client ID -- restrictions therefore applynicknameno profile is setnoauto failed: %spathname to an icon -- defaults to idjc logoposition the crossfader for the specified playerproblem with specified session directory: %sprofile %s does not existprofile %s is already runningprofile does not existprofile name is badprofile_choiceprofile_namerecord dateremove auto-launchremove profile(s)run the main idjc application -- this is the default when no command line options are specifiedselect which profile is to automatically launchserver_namesession={type}:{name}session_detailsshow the version number and exitshow this help message and exitshow this help message and exit -- additional help is available on each of the sub-commands for example: "%(prog)s run --help" shows the help for the run commandspecified profile does not exist: %sspecified profile is not valid %stemplate_profiletemporary directory creation failedthe alternate profile name to appear in window title barsthe audio channels to have open at startupthe chosen profile is currently runningthe named jack sound-server to connect withthe new profile name is not validthe profile '%s' is in usethe profile directory '%s' already existsthe profile length is too long (max %d characters)the profile to make automaticthe profile to use -- overrides the user interface preferences "show profile dialog" optionthe profile(s) to removethe specified profile name is not validthe specified template '%s' is not validthe template profile '%s' does not existthe voip mode at startuptitletrack/totalunknown session type: %s: must be one of %suser interface settings{0} profile={1}:{2} settings saved.{0} session={1}:{2} settings saved.{numericid} [{source}] > [{directory}]Project-Id-Version: Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk POT-Creation-Date: 2016-04-30 18:46+0100 PO-Revision-Date: 2013-11-07 16:47+0000 Last-Translator: Language-Team: English Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Lokalize 1.5 Plural-Forms: nplurals=2; plural=(n != 1); Champs texte additionnels Flux %d pistes audiocontrôle «%s»«Taille de block» indique la quantité de temps restant entre la piste en cours et le prochain arret. «Restant» indique le temps restant avant le prochain arret. «Fin» est le temps calculé lorsque la piste aura fini d'être lue.(Cue Sheet)-- sous-commande : auto -- rendre un profil auto-exécutable-- sous-commande : ls -- lister les profils disponibles-- sous-commande : new -- créer un nouveau profil--sous-commande : noauto -- supprimer le démarrage automatique-- sous-commande : rm -- supprimer un/des profil(s)-- sous-commande : run -- exécuter l'application idjc<<< Fondu en face <<<<<< Transfer en face <<<GrasRàZ de toutes les connexions aux ports JACK et remise aux paramêtres par défaut.Une connexion à un serveur radio a échouée. Aucune tentative de reconnexion ne sera faite.Une déconnexion pré-programmée du flux s'est produite.La connexion au serveur de l'onglet {servertab} a échouée. Une tentative de reconnexion sera effectuée dans {countdown} secondes. Ceci est la tentative {attempt} sur {maxtries}.Supprimer le profil «%s» et toutes ses données ? Les données du profil supprimé ne peuvent plus être retrouvées.Supprimer les données du profil «%s»? Le profil restera disponible avec les paramêtres initiaux.Erreur lors de la création du nouveau profil. %sErreur durant l'édition du profil : {0}. {1}Supprimer ce serveur de façon définitive? Cette action effacera aussi tous les messages associés.Sous-ligné>> Vitesse normale <<>>> Fondu en face >>>>>> Transfer en face >>>Un chemin vers un non-dossier existe à : «%s»Un Vumêtre pour le flux audio.Une liste de délais en secondes, séparés par une virgule, entre les tentatives de reconnexion. Notez que de mauvaises valeurs ou inférieures à 5 seront interprétées comme 5.Description de votre station.Un label décrivant brièvement le rôle de ce canal audio.Un limiteur prédictif. Les signaux audio sont bloqués à la limite supérieure.Un contrôle maitre pour les Lecteurs.Un indicateur de pic temporisé montrant la force du signal du micro et un autre indiquant le niveau d'atténuation dans le processeur de signal du micro. Vert indique une attenuation par la noise gate, Jaune par le de-esseur, Rouge par le limiteur.Un indicateur de pic temporisé montrant la force du signal du flux audio.Une table de serveurs auxquels se connecter. Seul le serveur maitre peut être ajouté dans le but de streaming. Tous les autres serveurs apparaitrons sous le serveur maitre pour les statistiques, qui peuvent être occultés par serveurs.Une fonctionalité utile à avoir activée lorsque l'on alloue des ouvreurs de canaux.AIMConcernant…Agir siActionAttivéeAjouter de la musiqueAjoutez ICI n'importe quel tag ID3. ex. : TIT2 : Titre alternatif Sera ajouté au TIT2 principal. Entrez des champs de texte personalisés comme ceci : TXXX:nimporte=quoi Pour plus d'information visitez www.id3.org.ajouter une musique de fondAjouter de la musique à la liste de gaucheAjouter de la musique à la liste de droiteAjouter des pistes à la listeAjuster parAjuste le volume de rendu en dBUn certain laps de temps après que le lecteur principal soit actif, l'indicateur de status de ce bouton commence à clignotter jusqu'à ce que le bouton soit fermé ou le lecteur arrêté.Niveau de l'alarmeAlbumAlbum - [Disque] - TitreToutTous les entregistrements et flux radio seront arrêtés.Tous les enregistrements sen cours seront arrêtés.Tous les effetsTout type de fichierTous les flux radio en cours seront arrêtés.Modifier la valeurAlternatifAlternatifToujoursUne alarme alerte le DJ lorsque la durée de diffusion restante atteint 9 secondes. Fonctionne également sur le monitoring mais la tonalité n'est pas diffusée sur le flux. Le mode freewheel de JACK est également désengagé automatiquement.AnnonceAnnoncesAprèsAjouter après le curseurAjouter après au curseurAppliquer un adoucissement au rendu 16 bits PCMArtisteArtiste - Album - TitreAssumer que la connexion est interrompue, se déconnecter et se reconnecter.A la connection :Ne pas se connecter à JACK au démarrage. Cette option délègue tout le contrôle des connexions à restaurer au gestionnaire de sessions.Audio FeedCanaux audio en entréeAudio vers DJAudio vers fluxSe connecter à une heure spécifique au format 24 heures, minuit étant 00:00Se déconnecter automatiquement à une heure spécifique au format 24 heuresRetour ArrièrePistes de fondVolume des pistes de fondLecteur de fondTag erronéContrôles de baseStreamer de baseEntrée de baseMeilleureBiasScorciatoieBitrateTaille de blockAugmenter/Couper (dB)Les deux lecteursParcourrirBarre de boutonsBouton TrieursPar extentionImpossible de renommer le profil {0} en {1}, {1} existe déjà.Chemin du CatalogueCataloguesChCanalCanal MêtresOuvreur de canalCanal Activer la sortieCanal Régler la balanceCanal Régler le gainCanal Régler le volumeCanauxCanaux/UtilisateursSélectionner un fichier de musique.Sélectionner un dossier de médiaSélectionner un fichier de liste de lectureSélectionner un fichier de liste de lecture.Sélection du dossier des sauvegardes Tous les noms de fichiers seront dans le format timestamp et auront soit oga mp3 ou flac comme extention. Important : vous devez sélectionner un dossier avec les permissions en écriture adéquates.Sélection du flux à enregistrer ou l'option 24 bits FLAC. Si le flux n'est pas en cours de lecture, l'encodage commencera automatiquement quels que soient les paramêtres actuellement configurés.FerméEnrouler l'arborescence.CouleursConfigurationConfigurerUne confirmation est nécessaire pour quitter IDJC.ConnecterSe connecter ou se déconnecter du serveur radio. Si le bouton ne reste pas enclanché, la connexion a échouée pour une raison quelconque. Si le bouton est grisé, cela indique que les paramêtres dans les sections «Connexion» et «Formats» sont soit incompatibles soit erronnées. Pour pouvoir fonctionner, un serveur maitre doit être spécifié et doit être capable de sélectionner le format du flux.ConnectéConnexionConnexionConnexion abandonnéeConnexion échouée (essayez %d)Informations de connexion au messager AOL viennent ici.Détails de contactCollaborateursContrôleCopierCopyright 2005-%s Stephen Fairchild et autres.Impossible d'écrire le fichier %s.Créer une nouvelle annonceCrossfaderCrossfaderPré-écouteListe de lecture cuesheetUser agent personnaliséFréquence de coupureDJNiveau audio DJNom du DJDJ-Mix MonitoringDSPBase de donnéesDe-esserDésactivéDéfautDélaisTemps de délaisDescriptionBouton fader/premutoLaisser tomber les données audio pour la durée nécessaire.DéconnecterDéconnecter tous ceux qui utilisent le serveur avant de démarrer.DisconnectéDisqueDisque %dAtténuateurDupliquerDuréeChacun de ces onglets représente une radio séparée. La couleur de la LED indique : Eteinte=Aucune connexion Jaune=En attente d'autentification. Verte=Connecté. Clignottante=Perte de paquet du à une mauvaise connexion.Chacun de ces onglets représente un enregistreur de flux. La couleur de la LED indique : Eteinte=Arret Jaune=Pause Rouge=Enregistrement.Chaque bouton d'ouverture possède une barre verticale pour le rendre plus visible. Ces paramêtre contrôlent cette apparence.Editer les contrôleursEditer les détails de la connexion au serveurModifier le profil %sEffetConfig effet %dEffet Lire depuis le débutEffectif uniquement pour les pistes nouvellement jouées.EffetsEffet %dBanque d'effetsEffets Banque 1Effets Banque 2Effets Régler le headroomEffets Régler le volumeEffets Arrèter plusieursVolume des effetsVideActiver les contrôles de tonalité/vitesse du lecteur principalActiver les bulles d'aideFormat d'encodage non défini/incompatibleTerminer les pistes contenant de long segments muetsElargir les fenêtres de temps écoulé/restantInsérer de nouveaux détails concernant la connexion au serveurSaisissez le nom du DJ ou de la station. Typiquement cette information sera affichée par les clients des Auditeurs.Erreur lors de la tentative de renommage de {0} en {1}.EchangerDévelopper l'arborescence.ExtentionExterneListe de lecture externeExtra ShoutcastFonduFondu 10sFondu 5sFondu dessusFondu audio avant la déconnexion.FonduLecteur affaibliEchec de la création de l'index TEXTEFallbackRapideListe de fonctionalitésEchec de la découverte!DécouverteFichierType de fichierNom du fichierNom du fichier :Remplir l'espace libre du vu-mêtre du canalFiltresFiniLecteur actifForcerFormatChaine de formatSchéma Prokyon 3 trouvéUn index TEXTE exite déjàLa fréquence en Hertz au dessus de laquelle l'audio peut passer à l'étape suivante. Utilisez cette fonctionalité pour restreindre les basses fréquencestelles que les humms. En paramêtrant un niveau trop haut, la voix sonnera aiguë.DepuisDepuis iciDe l'album, %sToutes les fonctionalitésRecherche floueGainGénéralGenreGenere(s)Connexion de groupeContrôles de groupeDéconnetion de groupeDétails HFPour démarrer automatiquement un enregistreur lorsqu'une connexion au serveur radio est établie.Pour avoir l'un des lecteurs qui démarre automatiquement lorsque la connexion au serveur radio a réussie.AideFiltre passe hautLa plus élevéeMaintenuNom de l'hôteHôte/Adresse IPHôte[:Port]ICQLes informations concernant le messager ICQ viennent ici.Sortie IDJCPréférences de IDJCGestionaire de profils IDJCTaggeur IDJCIRCServeur IRCMessages IRC vers le basMessages IRC vers le hautMessage IRC temporiséAnnonce de pistes IRCIcecast 2 MaitreIcecast 2 Stats/RelaisIcôneIdéalement mettez quelque chose même pour les serveurs permettant l'accès anonyme ou public.Si connectéSi la connexion est interrompue, se reconnecter au sserveurSi cette valeur est renseignée, tenter la récupération du pseudo IRC si nécessaire et se connecter grace à NickServ@services. L'utilisation des services NickServ nécessitent qu'un enregistrement préalable du pseudo ait été effectué avec un client IRC standard.Contrôle de liste de lecture ignoréDans IDJC il existe deux chemins et le contrôle «{0}» fait passer de l'un à l'autre. Lorsque «{1}» est actif, vous entendez ce que les auditeurs entendent effets du crossfader compris. «{0}» doit être positionné sur «{2}» pour pouvoir utiliser la fonctionalité VoIPDans le mix du DJIndexIndique le numéro de boutton et les numéros de canaux associésIndique quelles pistes ont une métadonnée de Loudness.Indique quel sera le mode de IDJC au démarrage.Contrôles individuelsEntréeInsérer un attributInsérer un attribut ou un code couleurInsérer un contrôleInterractionLes informations d'IRC viennent iciIntervalInvercer le signalIl peut ne pas être souhaitable d'utiliser le volume par défaut puisqu'il est plutot bas. Il doit se situer 4 ou 5 dB plus haut que le réglage de Gain Replay.Il peut ne pas être souhaitable d'utiliser le volume par défaut puisqu'il est plutot bas. Il doit se situer 4 ou 5 dB plus bas que le réglage du R128.ElémentPorts JACKTâche abandonnéeRetour en hautLaisser la boite de reconnexion cachée tout le temps.ToucheTouché du clavierKick SourceKick SourcesGDétails LFDernière lueClic à gauche pour afficher le temps écoulé ou le temps restant pour la piste en cours de reproduction.Lecteur de gaucheAjustement des niveaux (dB)LicenceLimiteurURL d'écouteEcouter sur l'entrée…AuditeursLecture de l'entréeNome utenteTout bouclerLa plus basseListe de lecture M3UMANUELContrôle MIDINote MIDITonalité MIDIBoutton du paneau principalPanneau principal des boutons d'ouvreursLecteur principalRendre publiqueRendre la sortie de ce lecteur audible au DJRendre la sortie de ce lecteur disponible pour le fluxRendre le micro audio audible dans le mix DJ. Ce n'est pas toujour désiré.ManuelDépart manuelMot de passe administrateur principalMoyenneMessageMéta TagMétadonnéesSource de métadonnéesLes métadonnées se mettent à jour lorsque le titre change mais vous pouvez aussi forcer leur mise à jour immédiate ici.Metadonnées :MilieuDiversDiversFonctionalités diversesMal configuréMixMixe l'audio VoIP uniquement au DJMixe l'audio VoIP au flux de sortieModifier ou supprimer cette annonceModule mysql-python (MySQLdb) nécessaireMonitor MixMoniteur du stream MixéPratique principalement avec les commandes de «amixer», en particulier pour configurer la capture.Point de montagePoint de montage Déplacer le crossfader totalement à gaucheDéplacer le crossfader totalement à droiteDéplacer le crossfader au point milieu de son chemin.Base de donnée musicaleCompensation LoudnessS/ONICKSERVNomNatifRéseauJamaisNouveau profil basé sur «%s»Détails du nouveau profilPiste suivantePiste suivanteMdP NickServPseudoAucun bouton d'ouverture de canalAucun FonduAucun autre port JACK que ceux listés dans le fichier de session ne sera connecté.Aucun serveur maitre n'es configuréSans nomAucun enregistreur configuré correctementAucun flux actuellement configuréAucun port compatible n'est disponibleNoise GateAucuneNormalVitesse normaleNoteArrêté au redémarrage de IDJC et Arrêté au départOffsetA la fermetureA l'ouvertureEn fin de fluxEn début de fluxDestinationBouton One-shot/CommuterSeulement 12OuvrirOuvertChamp de donnée optionelle pour information uniquement.Autres optionsSortieSortie MêtresMOT DE PASSEListe de lecture PLSPlacement chargé depuis la présélectionAssocier au canal %sPasserMot de passeRépertoireChemin supprimableEnregistrement en pausePausePickEffecter des opérations simultanément sur plusieurs serveurs.Rotacteur de phaseLireTout jouerLectureLecteurLecteur 1Lecteur 2Lecteur DJ Activer la sortieLecteur Commuter DJ seulNormalisation du Loudness du lecteurQualité de rééchantillonnage du lecteurConfiguration de démarrage du lecteurArret lecteurArret Lecteur 2Lecteur AvanceHeadroom appliqué au lecteur quand un effet est lu.Lecteur Lire suivanteLecteur Lire précédenteLecteur Reprendre au débutLecteur Lecture/pauseLecteur Sélectionner la suivanteLecteur Sélectionner la précédenteLecteur Régler la balanceLecteur Régler le gainLecteur Régler la tonalitéLecteur Régler le volumeArret lecteurArret Lecteur 2Lecteur de flux Activer la sortieLecteurLecteur AvanceLecteurs Effectuer un crossfaderLecteurs Régler le crossfaderLecteur Régler le focusLecteurs Afficher la tonalitéLecture piste {0} sur {1}Liste de lectureListe de lecture 1Liste de lecture 2Liste de lecture 3Mode de la liste de lectureBouton d'avance dans la liste de lectureListe de lecture Editer les tagsListe de lecture Insérer une annonceListe de lecture Insérer un crossfaderListe de lecture Insérer un saut en hautListe de lecture Revenir à la tonalité originaleListe de lecture Insérer un arretListe de lecture Insérer un arret 2Liste de lecture Insérer un transfertPopularitéPortNuméro du portPréférencesAvantAjouter avant le curseurChemin PréfixeAjouter avant au curseurPrésélectionsPresséPiste précédenteProblème lors de l'abandon de la tâcheIngresso elaboratoProfilLe profil %s est actif.ProfilesBase de donnée Prokyon3 ou Ampache (titre de chanson)Publier votre station sur le site de liste. Le site en question dépends de la configuration du serveur auquel vous vous connectez.Panoramique rapideMuetDR128AléatoireHop aléatoireNom réelEnregistrerEnregistreurNon du fichier d'enregistrement (sans extention)Enregistreur EnregistrementEnregistreursFonctionalités d'enregistrement non disponiblesTemps d'enregistement écoulé.Réduit les sons S, T et P que les micros ont tendance à exagérer. Idéallement le contrôle du Bias sera mis très bas de façon à ce que le de-esseur soit inopérant lorsqu'il y a du silence mais suffisament haut pour que les clics de la souris soient détectés et éliminés.Réduit les sons faibles non désirés et le bruit de fond que vous ne désirez transmettre aux auditeurs.Gain relatif (dB)RelâcheRelachéDistribué selon les termes de la Licence Publique Générale GNU, V2.0+Recharger la base de donnéesRestantSe rappelerSupprimerSupprimer le contenuLabels renommablesRépéterRépéter la saquence de délais indéfiniment.Gain ReplayRéserver 24 slots d'effets sonoresRàZForcer toutes les connexions aux ports JACK à leur valeurs par défaut.RéponseRestaurer la session précédenteInverséLecteur de droiteExécuter dans le mode fonctionalités réduites qui utilise moins de puissance CPU et utilise moins d'espace à l'écran.Exécuter dans le mode toutes fonctionalités qui utilise plus de puissance CPU.SauvegarderSauvegarder la liste de lecture de fondSauvegarder la liste de lecture de gaucheSauvegarder la liste de lecture de droiteRechercheSecond choixSélectionner le type de fichierSélection du dossier pour l'enregistrementSélectionner l'origine pour la piste de métadonnéesChoisir cette option pour avoir des boutons de fader indépendants pour les lecteurs de gauche et de droite.Séparrer les curseurs de volume gauche et droiteType de serveurA configurer au cas ou le serveur ou le pare-feux refuse spécialement d'autoriser les clients basés sur libshout.Cocher pour que toutes les pistes non taggés soient jouées approximativement au même volume que celle qui le sont.Régler àRégler la valeurParamètresCommande ShellAltérationShoucastShoutcast MaitreIcecast 2 Stats/RelaisAfficher le contrôle rouelibre de JACK en page principaleAffiche un marqueur à côté de chaque piste dans les listes de lecture. Soit un cercle vert, soit un triangle rouge.Correspondance de signalEnregistrement(s) simultané(s)Transmission(ws) simultanée(s)Effet uniqueContrôle uniqueChansonJouer une alarme lorsque la musique arrive à sa finSourcePassesDémarrer avec toutDémarrer avec le minimumDémarrer le lecteurDémarrer l'enregistreurDémarrer l'enregistrement Si le bouton est grisé, cela signifie soit que les paramêtres d'encodage ne sont pas corrects ou que les permissions d'écriture ne sont pas obtenues pour le dossier de destination.Apparence de l'indicateur d'étatPanoramique StéréoLa panoramique stéréo est une sélection ou une source audio se situe plus ou moins à gauche ou a droite par rapport au mix stéréo. Ce contrôle garde une puissance audio constante sur toute sa plage, en donnant une atténuation de -3dB sur les deux canaux au point milieu. Si vous voulez obtenir 0dB au point milieu ou si vous voulez maintenir la stéréo de la source, cette fonctionalité doit être désactivée. L'appairage des canaux doit être laissé à 100% gauche/droite à moins que la réduction du champ stéréo ne soit votre intention.StopperArret de l'enregistrementArrêter l'enregistrementArret du fluxArretFluxInformations sur le fluxEnregistreur de fluxFlux ConnecterFonctionalités de flux non disponiblesFluxFormats de média supportésMédia supportatéZone tabuléeObiettivoEchec de la création du dossier temporaire.TexteLe ventail «%s» détermine comment l'entrée est gérée et quels en sont les effets.L'URL de votre station. Ceci ainsi que les informations suivantes sont destinées à l'affichage sur un site listant les stations.Le taux de headroom nécessaire (dB)Le bouton sera regroupé avec les autres ouvreurs de micro. Il sera affecté par les signaux de fermeture de micro. Les canaux associés à ce bouton seront mixés différamment lors de l'utilisation des modes VoIP.Le profil choisi ent en cours d'exécution.Le nombre total d'auditeurs dans tous les onglets de serveurs.Liste séparée par des virgules des canaux et/ou utilisateurs à qui ce message est destiné. Les canaux protégés sont inclus sous la forme : #canal:motclefLe plan d'action lorsque le tampon de streaming est plein est…Les contrôles pour configurer un flux.Le crossfaderProfil par défautDélais pour ce message. Typiquement les clients des auditeurs temporisent à peu près 10 secondes de données audio ce qui signifie qu'il lisent le flux après cette émission et que sans délais, les messages IRC apparaitraient quelques secondes avant l'audio. Ce paramêtre permet de synchroniser les changements de pistes avec le message.L'aténuateur réduit automatiquement le niveau du lecteur audio lorsque le DJ parle. Ces paramêtres permettent l'ajustement de la durée de l'affaiblissement audio.Texte de remplacement lorsque les métadonnées %r %t %l ne sont pas disponibles. voir Chaine de format à gauche.La première moitiée d'une liaison est l'entrée qui arrive sous la forme d'une pression sur une touche du clavier ou un évènement midi. La sélection peut se faire manuellement ou à l'aide de l'option «%s».Le headroom est le taux de réduction en dB appliqué au volume du lecteur quand ce lanceur est activé. Notez que la valeur utilisée sera la plus élevée parmis celles des bouttons activés.Interval en secondes des messages temporisés.Le message à envoyer. Dans la fenêtre de pop-up (clic droit) se trouvent quelques options utiles pour les métadonnées et le formatage du texte. La fenêtre ci-dessous affiche comment le message apparaitra aux utilisateurs de XChat XChat2 ou HexChat.Genres musicaux offerts.Le nouveau nom de profil n'est pas bon.L'icône d'ouverture.Texte des boutons d'ouvertureLes boutons de présélection de panoramique. Dans une image stéréo en 1 clic le DJ peut se situer à gauche et l'invité à droite et dès que l'invité part, en 1 click le DJ peut se retrouver de nouveau au centre. Note : Une préconfiguration des présélections est nécessaire.Le dossier du profil «%s» existe déjà.La taille du profil est trop importante (max %d caractères)Le nom réel à utiliser, sera disponible que la connexion au réseau soit ou non établie en utilisant le pseudo principal. Remplissez le par quelque chose.Mode de traitement du signalLe modèle «%s» n'est pas bon.Les spécifications sont $r pour le numéro d'enregistrement, le reste étant documenté dans la page de manuel de strftime. Les utilisateurs peuvent modifier ceci pour rendre les noms de fichiers compatibles avec certains systèmes de fichiers.Le niveau de volume à envoyer à la connexion VoIP.Nombre total d'auditeurs pour cet onglet serveurLe modèle de profil «%s» n'existe pas.Les fenêtres de temps écoulé/restant n'apparaissent parfois pas assez larges pour contenir tout le texte pour cause de DPI inabituel ou d'un moteur de rendu différent. Cette option peut remédier à ce défaut.Durée en secondes que le crossfader met à passer automatiquement lors d'un appuis sur le bouton droit.Offset de temps dans l'interval spécifié après lequel le message sera envoyé.Contrôle de volume du lecteur de gauche.Le Volume du lecteur de droite.Le contrôle de volume partagé par les deux lecteurs.Ces contrôles sont mis à disposition pour obtenir une correction de gain convenable entre les micros.Ces paramêtres ne prennent effet qu'après un redémarrage.Troixième choixCeciAjuste la vitesse de reproduction entre 25% et 400%.Ajuste la qualité de la méthode de rééchantillonnage audio utilisée lorsque la fréquence du fichier lu ne corresponds pas à celle nécessaire au serveur JACK. Les meilleurs modes offrent une meilleur qualité sonore mais consoment aussi plus de puissance CPU (non recommendé pour les systèmes d'avant 2006). Tous ces modes donne une qualité correcte.Ceci ajuste le niveau du son de l'alarme DJ. Normalement ce doit être aux alentours du niveau audio du DJ lorsque la fonction «%s» est utilisée, ou sinon un petit peu plus fort.Ajuste le niveau sonore du canal audio DJ.Ce bouton fait passer le crossfader vers le côté opposé à la vitesse déterminée par le sélecteur de vitesse à gauche.Ce bouton doit être utilisé comme ouvreur de microCe bouton avance dans la liste de lecture en s'arrêtant entre chaque piste. La liste de lecture en cours est définie par l'emplacement du crossfader.Ce bouton clignottera pour rappeler de le fermerContrôle l'allocation des boutons Ouvrir/DéMuter du paneau principal. Avoir un bouton pour contrôler plusieurs micro peut faire gagner du temps.Contrôle le taux de fondu entre les pistes.Cette fonctionalité peut augmenter légèrement la qualité lors de l'écoute sur une carte son 24bitCette fonctionalité traite le micro pour qu'il paraisse plus présent. Cet effet est plus audible avec les voix mâles.Cette fonctionalité nécessite l'installation de python-irclibIndique l'état des différents flux. Clignottant indique que des paquets du flux sont écartés à cause d'une congestion du réseau. Partiellement rouge signifie que le tampon d'émission est partiellement plein, indiquant des difficultés de comunication avec le serveur. Vert indique que tout va bien.Tentative %d. Il n'y a aucune limite d'essais.Pour kick et stats des serveyurs maitres Soutcast ayant un mot de passe d'administration. Pour ceux n'en possédant pas, laissez vide (le mot de passe de la source est suffisant pour eux)Cette option fait apparaitre quelques widgets sous les listes de lecture pour permettre l'ajustement de la vitesse entre 25 rt 400% ainsi qu'un bouton vitesse normale.Sélectionne le type de courbe de réponse du crossfader. Les atténuations au point milieu sont respectivement -3dB, 0dB et -22dB Ce serveur doit être scanné pour les stats d'audienceRemet la vitesse de reproduction à sa valeur normale.Configure le mode de la liste de lecture définissant le fonctionnement du lecteur après qu'une piste ait finie d'être lue. «Lire tout» est le mode le plus universel puisqu'il permet l'utilisation des élements de contrôle disponibles dans le menu contextuel accessible par un clic droit sur la liste de lecture. Lorsqu'aucun élément de contrôle n'est présent, les pistes sont lues de manière séquentielles jusqu'à la fin de la liste de lecture après quoi le lecteur s'arrète. «Boucler» les pistes sont jouées séquentiellement jusquà la fin de la liste de lecture, après quoi le liste est relue depuis le début. «Aléatoire» rends la liste de lecture infinie, avec les pistes choisies au hazard. «Manuel» le lecteur s'arrête à la fin de chaque piste. «Suivante» comme pour «Manuel» mis à part que la piste suivante est sélectionnée. «Externe» prend les pistes depuis une autre liste de lecture ou un autre dossier, l'une après l'autre. Utile pour diffuser de grandes listes de lecture. «Alternatif» Sélectionne la piste suivante avant de démarrer le lecteur opposé. Le crossfader est activé. «Crossfader» Le passage au lecteur opposé est effectué après chaque piste. «Emprun Aléatoire» Prends une piste au hazard dans la liste de lecture opposée.Doit être configuré pour chacun des boutons contrôlant l'entrée du son en direct d'une source ou d'un périphérique.Ce curseur agit à la fois comme indicateur de progression et comme positionneur dans la piste en cours de reproduction.Déconnectera tous ceux qui utilisent le serveurs, le libérant ainsi pour une utilisation privée.Ce que vous lisez actuellement est une bulle d'aide. Cette fonctionalité les dés/active. Ceci :ProfondeurDuréeTimerTimer :TitreJusqu'iciCommutateur du mode rouelibre de JACKBallons ActiverNombre de piste total %dDurée totale %sPisteAnnonce des pistesTempo écouléTemps restantPistes luesTransferTraducteursEchec de la découverte de l'arborescenceTexte TriggerEliminer les silences de début et de fin de pistesPisteRésolution des problèmesInconnuBase de données non reconnueNon taggéDurée d'activitéLimite supérieureUtiliser la valeurUtile lorsque les micros s'annulent mutuellement provoquant un son caverneux.Nom utilisateurNom utilisateurVUVoirVoIPVoIP DJ-Seul CommuterCanal VoIPAjustement du niveau VoIP. 0dB est le point milieu.VoIP Activer la sortiePlacement VoIP + réduction monoVoIP Régler la balanceVoIP Régler le gainVoIP Régler le retourVoIP Régler le volumeWHEREQuand un pseudo est déjà utilisé sur le réseau IRC, ces pseudos sont testés les uns après les autres puis une seconde fois en y ajoutant un sous-ligné jusqu'à ce la fin. Cela donne à IDJC un maximum de neuf pseudos à tenter.Quand il est ouvert, ferme les autres boutonsLorsqu'il est choisi, ce lecteur agis comme le lecteur principal/ Il est affecté par l'aténuation par le micro et ne se mute pas lorsque le lecteur principal est en fonction.Au démarrage de IDJC la plupart des paramètres de la fenêtre principale resteront comme vous les aviez laissés. Comme alternative, vous pouvez spécifier ci-dessous comment ils doivent être initialisés.LargeurCommande XChatListe de lecture XSPFAnnéeVous pouvez entrer un texte pour accompagner le flux et y spécifier des emplacements pour les noms d'artiste, de titre, d'album et de chanson, %r %t %l %s, ou laisser ce champ vide pour utiliser les métadonnées par défaut. Le nom de la chanson (%s) est dérivé du nom de fichier en cas d'absence ou d'insuffisance de métadonnées, alors que les autres emplacements utiliseront le texte de remplacement à droite. Lorsque ce champ est vide, les flux Ogg utiliseront les tags standards vorbis et les mp3 utiliseront %s.Vous pouvez rendre certaines bases de données accessibles dans IDJC pour plusde facilités lors des glisser/déposer dans les listes de lecturesVous pouvez l'utiliser pour augmenter le taux de basses dans l'audio.Vous pouvez l'utiliser pour augmenter le taux d'aiguës dans l'audio.[Métadonnée supprimmée]_Auto_Réessayer immédiatementune description du profilun chemin vers un non-dossier existe à : «%s»albumun profil existant à prendre comme modèleartistetenter de se connecter aux serveurs spécifiésEchec de auto : %simpossible d'obtenir le vérouillage du profil {0} : {1}impossible d'écrire le fichier «%s»texte_descriptifle dossier n'existe pas : %s'ex. : «L1:name» pour une session Ladish [L1] appelée «name» -- voir la page de manuel d'idjc pour plus de détailsEchec de la création du profil : %sEchec de la suppression du profil : %sEchec de l'enregistrement du nom dans dbus -- une autre session utilisant ce nom semble déjà être en coursforcer l'apparition/non apparition de la boite de sélection de profil -- lorsque utilisé avec l'option -p le profil choisi est pré-sélectionnégenrechemin_des_icônesBalancer les sources sur les serveurs -- notez que ceci sera fait avant que toute tentative de connection ne soit effectuéelister les profils disponiblesEchec de ls : %scréer un nouveau profilmm:ssnouveau nom de profil -- fera partie du nom bus/object/interface pour dbus ainsi que de l'ID du client JACK -- donc certaines restrictions s'appliquentpseudoaucun profil sélectionnéEchec de noauto : %schemin vers une icône -- par défaut, le logo idjcposition du crossfader pour le lecteur spécifiéproblème avec le dossier de session spécifié : %sle profil «%s» n'existe pasle profil «%s» est en cours d'utilisationle profil n'existe pasmauvais nom de profilsélection du profilnom_du_profildate d'enregistrementsupprimer le démarrage automatiquesupprimer un/des profil(s)exécuter l'application idjc principale -- c'est le défaut lorsqu'aucune option n'est spécifiéeSélection du profil chargé automatiquementnom_du_serveursession={type}:{name}Détails de la sessionAfficher le numéro de version et quitterAfficher cette aide et quitterAfficher ce message d'aide et quitter -- plus d'aide est disponible pour chacune des sous-commandes, par exemple : « %(prog)s run --help » affiche l'aide concernant la commande runle profil spécifié n'existe pas : %sle profil spécifié n'est pas bon %sprofil_modèleéchec de la création du dossier temporairenom alternatif du profil pour la barre de titre de la fenêtreCanaux audio à ouvrir au démarragele profil choisi est en cours d'exécutionNom du serveur Jack auquel se connecterLe nouveau profil n'est pas bonle profil «%s» est en cours d'utilisationle dossier du profil «%s» existe déjàla taille du profil est trop importante (max %d caractères)Profil à rendre automatiqueProfil à utiliser -- remplace l'option des préférences de l'interface utilisateur «afficher le sélecteur de profils»le(s) profil(s) à supprimerLe nom de profil spécifié n'est pas correctle modèle «%s» n'est pas bonLe modèle de profil «%s» n'existe pasLe mode voip au démarragetitrepiste/totaltype de session inconnu : %s : doit être l'un de %sParamêtres de l'interface utilisateur{0} profil={1}:{2} paramêtres sauvegardés.{0} session={1}:{2} paramêtres sauvegardés.{numericid} [{source}] > [{directory}]idjc-0.8.16/po/POTFILES.in0000644000175000017500000000060212630014502011622 00000000000000# List of source files which contain translatable strings. python/prelims/__init__.py python/prelims/profiledialog.py python/dialogs.py python/__init__.py.in.in python/irc.py python/jingles.py python/licence_window.py python/maingui.py python/midicontrols.py python/mutagentagger.py python/songdb.py python/playergui.py python/preferences.py python/sourceclientgui.py python/format.py idjc-0.8.16/po/Rules-quot0000644000175000017500000000340012631274031012055 00000000000000# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-create: $(MAKE) en@quot.po-update en@boldquot.po-create: $(MAKE) en@boldquot.po-update en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header idjc-0.8.16/po/fr.po0000644000175000017500000042066112711167613011043 00000000000000# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # # nicotux, 2013. # Stephen Fairchild , 2013. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk\n" "POT-Creation-Date: 2016-04-30 18:46+0100\n" "PO-Revision-Date: 2013-11-07 16:47+0000\n" "Last-Translator: \n" "Language-Team: English \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: python/prelims/__init__.py:101 #, python-format msgid "" "show this help message and exit -- additional help is available on each of " "the sub-commands for example: \"%(prog)s run --help\" shows the help for the " "run command" msgstr "" "Afficher ce message d'aide et quitter -- plus d'aide est disponible pour " "chacune des sous-commandes, par exemple : « %(prog)s run --help » affiche " "l'aide concernant la commande run" #. TC: a command line option help string. #: python/prelims/__init__.py:108 msgid "show the version number and exit" msgstr "Afficher le numéro de version et quitter" #. TC: a command line option help string. #: python/prelims/__init__.py:112 msgid "" "run the main idjc application -- this is the default when no command line " "options are specified" msgstr "" "exécuter l'application idjc principale -- c'est le défaut lorsqu'aucune " "option n'est spécifiée" #. TC: do not translate run. #: python/prelims/__init__.py:116 msgid "-- sub-command: run -- launch the idjc application" msgstr "-- sous-commande : run -- exécuter l'application idjc" #: python/prelims/__init__.py:121 msgid "make a new profile" msgstr "créer un nouveau profil" #. TC: do not translate the word new. #: python/prelims/__init__.py:123 msgid "-- sub-command: new -- make a new profile" msgstr "-- sous-commande : new -- créer un nouveau profil" #. TC: a command line option help string. #: python/prelims/__init__.py:127 msgid "remove profile(s)" msgstr "supprimer un/des profil(s)" #. TC: do not translate the word rm. #: python/prelims/__init__.py:129 msgid "-- sub-command: rm -- remove profile(s)" msgstr "-- sous-commande : rm -- supprimer un/des profil(s)" #. TC: a command line option help string. #: python/prelims/__init__.py:133 msgid "select which profile is to automatically launch" msgstr "Sélection du profil chargé automatiquement" #. TC: do not translate the word auto. #: python/prelims/__init__.py:136 msgid "-- sub-command: auto -- mark a profile for auto-launch" msgstr "-- sous-commande : auto -- rendre un profil auto-exécutable" #: python/prelims/__init__.py:141 msgid "remove auto-launch" msgstr "supprimer le démarrage automatique" #: python/prelims/__init__.py:142 msgid "-- sub-command: noauto -- remove auto-launch" msgstr "--sous-commande : noauto -- supprimer le démarrage automatique" #: python/prelims/__init__.py:147 msgid "list available profiles" msgstr "lister les profils disponibles" #. TC: do not translate the word ls. #: python/prelims/__init__.py:149 msgid "-- sub-command: ls -- list available profiles" msgstr "-- sous-commande : ls -- lister les profils disponibles" #: python/prelims/__init__.py:153 python/prelims/__init__.py:206 #: python/prelims/__init__.py:231 python/prelims/__init__.py:236 #: python/prelims/__init__.py:241 python/prelims/__init__.py:246 msgid "show this help message and exit" msgstr "Afficher cette aide et quitter" #: python/prelims/__init__.py:156 msgid "" "force the appearance or non-appearance of the\n" " profile chooser dialog -- when used with the -p option\n" " the chosen profile is preselected" msgstr "" "forcer l'apparition/non apparition de la boite\n" " de sélection de profil -- lorsque utilisé avec l'option -p\n" " le profil choisi est pré-sélectionné" #: python/prelims/__init__.py:161 msgid "profile_choice" msgstr "sélection du profil" #: python/prelims/__init__.py:162 msgid "" "the profile to use -- overrides the user interface\n" " preferences \"show profile dialog\" option" msgstr "" "Profil à utiliser -- remplace l'option des préférences de\n" " l'interface utilisateur «afficher le sélecteur de profils»" #. TC: command line help placeholder. #: python/prelims/__init__.py:166 msgid "server_name" msgstr "nom_du_serveur" #: python/prelims/__init__.py:166 msgid "the named jack sound-server to connect with" msgstr "Nom du serveur Jack auquel se connecter" #. TC: command line help placeholder. #: python/prelims/__init__.py:170 msgid "session_details" msgstr "Détails de la session" #: python/prelims/__init__.py:171 msgid "" "e.g. 'L1:name' for a named Ladish [L1] session called 'name' -- refer to the " "idjc man page for more details" msgstr "" "ex. : «L1:name» pour une session Ladish [L1] appelée «name» -- voir la page " "de manuel d'idjc pour plus de détails" #: python/prelims/__init__.py:176 msgid "" "At start-up do not make any JACK connections. This option delegates all " "control over restored connections to the session handler." msgstr "" "Ne pas se connecter à JACK au démarrage. Cette option délègue tout le " "contrôle des connexions à restaurer au gestionnaire de sessions." #: python/prelims/__init__.py:181 msgid "" "No JACK ports will be connected except those listed in the session file." msgstr "" "Aucun autre port JACK que ceux listés dans le fichier de session ne sera " "connecté." #: python/prelims/__init__.py:184 msgid "user interface settings" msgstr "Paramêtres de l'interface utilisateur" #: python/prelims/__init__.py:187 msgid "the audio channels to have open at startup" msgstr "Canaux audio à ouvrir au démarrage" #: python/prelims/__init__.py:190 msgid "the voip mode at startup" msgstr "Le mode voip au démarrage" #: python/prelims/__init__.py:196 msgid "attempt connection with the specified servers" msgstr "tenter de se connecter aux serveurs spécifiés" #: python/prelims/__init__.py:199 msgid "" "kick sources on servers -- note that this will be\n" " done before any server connection attempts are made" msgstr "" "Balancer les sources sur les serveurs -- notez que ceci sera fait\n" " avant que toute tentative de connection ne soit effectuée" #: python/prelims/__init__.py:203 msgid "position the crossfader for the specified player" msgstr "position du crossfader pour le lecteur spécifié" #. TC: command line help placeholder. #: python/prelims/__init__.py:208 python/prelims/__init__.py:232 msgid "profile_name" msgstr "nom_du_profil" #: python/prelims/__init__.py:209 msgid "" "new profile name -- will form part of the dbus\n" " bus/object/interface name and the JACK client ID --\n" " restrictions therefore apply" msgstr "" "nouveau nom de profil -- fera partie du nom bus/object/interface \n" " pour dbus ainsi que de l'ID du client JACK --\n" " donc certaines restrictions s'appliquent" #: python/prelims/__init__.py:214 msgid "template_profile" msgstr "profil_modèle" #: python/prelims/__init__.py:215 msgid "an existing profile to use as a template" msgstr "un profil existant à prendre comme modèle" #: python/prelims/__init__.py:218 msgid "icon_pathname" msgstr "chemin_des_icônes" #: python/prelims/__init__.py:219 msgid "pathname to an icon -- defaults to idjc logo" msgstr "chemin vers une icône -- par défaut, le logo idjc" #: python/prelims/__init__.py:223 msgid "nickname" msgstr "pseudo" #: python/prelims/__init__.py:224 msgid "the alternate profile name to appear in window title bars" msgstr "nom alternatif du profil pour la barre de titre de la fenêtre" #: python/prelims/__init__.py:227 msgid "description_text" msgstr "texte_descriptif" #: python/prelims/__init__.py:228 msgid "a description of the profile" msgstr "une description du profil" #: python/prelims/__init__.py:233 msgid "the profile(s) to remove" msgstr "le(s) profil(s) à supprimer" #: python/prelims/__init__.py:238 msgid "the profile to make automatic" msgstr "Profil à rendre automatique" #: python/prelims/__init__.py:417 #, python-format msgid "failed to create profile: %s" msgstr "Echec de la création du profil : %s" #: python/prelims/__init__.py:424 #, python-format msgid "failed to delete profile: %s" msgstr "Echec de la suppression du profil : %s" #: python/prelims/__init__.py:431 #, python-format msgid "auto failed: %s" msgstr "Echec de auto : %s" #: python/prelims/__init__.py:438 #, python-format msgid "noauto failed: %s" msgstr "Echec de noauto : %s" #: python/prelims/__init__.py:447 #, python-format msgid "ls failed: %s" msgstr "Echec de ls : %s" #: python/prelims/__init__.py:466 msgid "the specified profile name is not valid" msgstr "Le nom de profil spécifié n'est pas correct" #: python/prelims/__init__.py:473 msgid "profile name is bad" msgstr "mauvais nom de profil" #: python/prelims/__init__.py:476 python/prelims/__init__.py:744 #, python-format msgid "profile %s does not exist" msgstr "le profil «%s» n'existe pas" #: python/prelims/__init__.py:479 #, python-format msgid "profile %s is already running" msgstr "le profil «%s» est en cours d'utilisation" #: python/prelims/__init__.py:492 #, python-format msgid "" "Error while creating new profile.\n" "\n" "%s" msgstr "" "Erreur lors de la création du nouveau " "profil.\n" "\n" "%s" #: python/prelims/__init__.py:510 msgid "no profile is set" msgstr "aucun profil sélectionné" #: python/prelims/__init__.py:517 msgid "" "failed to grab bus name -- another session by the same name appears to be " "running" msgstr "" "Echec de l'enregistrement du nom dans dbus -- une autre session utilisant ce " "nom semble déjà être en cours" #. TC: text appears in the title bar when in session mode. #: python/prelims/__init__.py:590 #, python-brace-format msgid "session={type}:{name}" msgstr "session={type}:{name}" #: python/prelims/__init__.py:630 #, python-format msgid "specified profile is not valid %s" msgstr "le profil spécifié n'est pas bon %s" #: python/prelims/__init__.py:633 #, python-format msgid "specified profile does not exist: %s" msgstr "le profil spécifié n'existe pas : %s" #: python/prelims/__init__.py:664 #, python-format msgid "unknown session type: %s: must be one of %s" msgstr "type de session inconnu : %s : doit être l'un de %s" #: python/prelims/__init__.py:677 #, python-format msgid "directory does not exist: %s" msgstr "le dossier n'existe pas : %s'" #: python/prelims/__init__.py:708 #, python-format msgid "problem with specified session directory: %s" msgstr "problème avec le dossier de session spécifié : %s" #: python/prelims/__init__.py:781 #, python-format msgid "Profile %s is active." msgstr "Le profil %s est actif." #: python/prelims/__init__.py:791 #, python-brace-format msgid "Cannot rename profile {0} to {1}, {1} currently exists." msgstr "Impossible de renommer le profil {0} en {1}, {1} existe déjà." #: python/prelims/__init__.py:795 #, python-brace-format msgid "Error during attempt to rename {0} to {1}." msgstr "Erreur lors de la tentative de renommage de {0} en {1}." #: python/prelims/__init__.py:805 #, python-brace-format msgid "" "Error while editing profile: {0}.\n" "\n" "{1}" msgstr "" "Erreur durant l'édition du profil : {0}.\n" "\n" "{1}" #: python/prelims/__init__.py:824 #, python-brace-format msgid "could not get a lock on profile {0}: {1}" msgstr "impossible d'obtenir le vérouillage du profil {0} : {1}" #: python/prelims/__init__.py:829 msgid "profile does not exist" msgstr "le profil n'existe pas" #: python/prelims/__init__.py:850 #, python-format msgid "the profile '%s' is in use" msgstr "le profil «%s» est en cours d'utilisation" #: python/prelims/__init__.py:872 #, python-format msgid "the profile length is too long (max %d characters)" msgstr "la taille du profil est trop importante (max %d caractères)" #: python/prelims/__init__.py:874 #, python-format msgid "The profile length is too long (max %d characters)." msgstr "La taille du profil est trop importante (max %d caractères)" #: python/prelims/__init__.py:878 msgid "the new profile name is not valid" msgstr "Le nouveau profil n'est pas bon" #: python/prelims/__init__.py:879 msgid "The new profile name is not valid." msgstr "Le nouveau nom de profil n'est pas bon." #: python/prelims/__init__.py:884 msgid "the chosen profile is currently running" msgstr "le profil choisi est en cours d'exécution" #: python/prelims/__init__.py:885 msgid "The chosen profile is currently running." msgstr "Le profil choisi ent en cours d'exécution." #: python/prelims/__init__.py:890 msgid "temporary directory creation failed" msgstr "échec de la création du dossier temporaire" #: python/prelims/__init__.py:891 msgid "Temporary directory creation failed." msgstr "Echec de la création du dossier temporaire." #: python/prelims/__init__.py:897 #, python-format msgid "the specified template '%s' is not valid" msgstr "le modèle «%s» n'est pas bon" #: python/prelims/__init__.py:899 #, python-format msgid "The specified template '%s' is not valid." msgstr "Le modèle «%s» n'est pas bon." #: python/prelims/__init__.py:921 #, python-format msgid "the template profile '%s' does not exist" msgstr "Le modèle de profil «%s» n'existe pas" #: python/prelims/__init__.py:923 #, python-format msgid "The template profile '%s' does not exist." msgstr "Le modèle de profil «%s» n'existe pas." #: python/prelims/__init__.py:933 #, python-format msgid "could not write file %s" msgstr "impossible d'écrire le fichier «%s»" #: python/prelims/__init__.py:934 #, python-format msgid "Could not write file %s." msgstr "Impossible d'écrire le fichier %s." #: python/prelims/__init__.py:942 #, python-format msgid "the profile directory '%s' already exists" msgstr "le dossier du profil «%s» existe déjà" #: python/prelims/__init__.py:944 #, python-format msgid "The profile directory '%s' already exists." msgstr "Le dossier du profil «%s» existe déjà." #: python/prelims/__init__.py:947 #, python-format msgid "a non directory path exists at: '%s'" msgstr "un chemin vers un non-dossier existe à : «%s»" #: python/prelims/__init__.py:948 #, python-format msgid "A Non directory path exists at: '%s'." msgstr "Un chemin vers un non-dossier existe à : «%s»" #: python/prelims/__init__.py:959 msgid "The default profile" msgstr "Profil par défaut" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:98 #, python-format msgid "Edit profile %s" msgstr "Modifier le profil %s" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:101 #, python-format msgid "New profile based upon %s" msgstr "Nouveau profil basé sur «%s»" #. TC: data entry dialog window title text. #: python/prelims/profiledialog.py:105 msgid "New profile details" msgstr "Détails du nouveau profil" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:125 #, fuzzy msgid "Profile name" msgstr "nom_du_profil" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:127 python/maingui.py:681 msgid "Icon" msgstr "Icône" #. TC: data entry dialog label text. #. TC: column heading. The profile nicknames. #. TC: IRC nickname data entry label. #: python/prelims/profiledialog.py:129 python/prelims/profiledialog.py:285 #: python/irc.py:452 msgid "Nickname" msgstr "Pseudo" #. TC: data entry dialog label text. #. TC: column heading. #. TC: Station description. #: python/prelims/profiledialog.py:131 python/prelims/profiledialog.py:288 #: python/irc.py:96 python/playergui.py:334 python/sourceclientgui.py:1786 msgid "Description" msgstr "Description" #. TC: profile dialog window title text. #: python/prelims/profiledialog.py:243 msgid "IDJC Profile Manager" msgstr "Gestionaire de profils IDJC" #: python/prelims/profiledialog.py:277 msgid "Profile" msgstr "Profil" #. TC: column heading. The time a particular profile has been running. #: python/prelims/profiledialog.py:292 msgid "Up-time" msgstr "Durée d'activité" #: python/prelims/profiledialog.py:306 msgid "_Auto" msgstr "_Auto" #: python/prelims/profiledialog.py:365 #, python-format msgid "" "Delete the data of profile '%s'?\n" "\n" "The profile will remain available with initial settings." msgstr "" "Supprimer les données du profil «%s»?\n" "\n" "Le profil restera disponible avec les paramêtres initiaux." #: python/prelims/profiledialog.py:369 #, python-format msgid "" "Delete profile '%s' and all its data?\n" "\n" "The data of deleted profiles cannot be recovered." msgstr "" "Supprimer le profil «%s» et toutes ses " "données ?\n" "\n" "Les données du profil supprimé ne peuvent plus être retrouvées." #. TC: The contents of <> and {} must not be changed. #: python/dialogs.py:198 #, python-brace-format msgid "" "The connection to the server in tab " "{servertab} has failed.\n" "A reconnection attempt will be made in {countdown} seconds.\n" "This is attempt number {attempt} of {maxtries}." msgstr "" "La connexion au serveur de l'onglet " "{servertab} a échouée.\n" "Une tentative de reconnexion sera effectuée dans {countdown} secondes.\n" "Ceci est la tentative {attempt} sur {maxtries}." #: python/dialogs.py:254 #, python-format msgid "This is attempt number %d. There is no retry limit." msgstr "Tentative %d. Il n'y a aucune limite d'essais." #: python/dialogs.py:283 msgid "_Retry Now" msgstr "_Réessayer immédiatement" #: python/__init__.py.in.in:102 #, python-format msgid "Copyright 2005-%s Stephen Fairchild and others." msgstr "Copyright 2005-%s Stephen Fairchild et autres." #: python/__init__.py.in.in:104 msgid "Released under the GNU General Public License V2.0+." msgstr "Distribué selon les termes de la Licence Publique Générale GNU, V2.0+" #. TC: IRC message subcategory, triggers on new track announcements. #: python/irc.py:82 msgid "Track announce" msgstr "Annonce des pistes" #. TC: IRC message subcategory, triggered by a timer. #: python/irc.py:84 msgid "Timer" msgstr "Timer" #. TC: IRC message subcategory, triggered once when the stream starts. #: python/irc.py:86 msgid "On stream up" msgstr "En début de flux" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:88 msgid "On stream down" msgstr "En fin de flux" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:90 #, fuzzy msgid "Operations" msgstr "Autres options" #. TC: Track artist. #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:902 #: python/songdb.py:1290 python/sourceclientgui.py:99 msgid "Artist" msgstr "Artiste" #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:1292 #: python/sourceclientgui.py:99 msgid "Title" msgstr "Titre" #: python/irc.py:95 python/mutagentagger.py:376 python/songdb.py:1291 #: python/sourceclientgui.py:99 msgid "Album" msgstr "Album" #: python/irc.py:95 python/sourceclientgui.py:100 msgid "Song name" msgstr "Chanson" #. TC: The DJ or Stream name. #: python/irc.py:96 python/sourceclientgui.py:1783 msgid "DJ name" msgstr "Nom du DJ" #: python/irc.py:96 python/sourceclientgui.py:1784 msgid "Listen URL" msgstr "URL d'écoute" #: python/irc.py:96 #, fuzzy msgid "Source URI" msgstr "Source" #. TC: Popup menu item for a GTK text entry widget. #: python/irc.py:139 msgid "Insert Attribute or Colour Code" msgstr "Insérer un attribut ou un code couleur" #. TC: Text formatting style. #: python/irc.py:176 msgid "Bold" msgstr "Gras" #. TC: Text formatting style. #: python/irc.py:178 msgid "Underline" msgstr "Sous-ligné" #. TC: Text formatting style. #: python/irc.py:180 msgid "Normal" msgstr "Normal" #: python/irc.py:186 msgid "Colours" msgstr "Couleurs" #: python/irc.py:403 msgid "Optional data entry field for information only." msgstr "Champ de donnée optionelle pour information uniquement." #. TC: Tab heading text. #: python/irc.py:406 msgid "IRC server" msgstr "Serveur IRC" #: python/irc.py:418 msgid "Manual start" msgstr "Départ manuel" #: python/irc.py:420 msgid "Off when restarting IDJC and off initially." msgstr "Arrêté au redémarrage de IDJC et Arrêté au départ" #. TC: The IRC network e.g. EFnet. #: python/irc.py:444 msgid "Network" msgstr "Réseau" #. TC: label for hostname entry. #: python/irc.py:446 python/sourceclientgui.py:270 msgid "Hostname" msgstr "Nom de l'hôte" #. TC: TCP/IP port number label. #. TC: TCP port number. #: python/irc.py:448 python/sourceclientgui.py:785 msgid "Port" msgstr "Port" #: python/irc.py:449 msgid "User name" msgstr "Nom utilisateur" #: python/irc.py:450 python/songdb.py:343 python/sourceclientgui.py:271 msgid "Password" msgstr "Mot de passe" #. TC: Second choice of IRC nickname. #: python/irc.py:454 msgid "Second choice" msgstr "Second choix" #. TC: Third choice of IRC nickname. #: python/irc.py:456 msgid "Third choice" msgstr "Troixième choix" #. TC: The IRC user's 'real' name. #: python/irc.py:458 msgid "Real name" msgstr "Nom réel" #. TC: The NickServ password. #: python/irc.py:460 msgid "NickServ p/w" msgstr "MdP NickServ" #. TC: Tooltip to IRC 'User name' field. #: python/irc.py:465 msgid "" "Ideally set this to something even on servers that allow public anonymous " "access." msgstr "" "Idéalement mettez quelque chose même pour les serveurs permettant l'accès " "anonyme ou public." #. TC: tooltip to all IRC nicknames entry fields. #: python/irc.py:475 msgid "" "When a nickname is in use on the target IRC network, during connection these " "IRC nicknames are cycled through, then twice again after appending an " "additional underscore until giving up. This gives IDJC a maximum of nine IRC " "nicknames to try." msgstr "" "Quand un pseudo est déjà utilisé sur le réseau IRC, ces pseudos sont testés " "les uns après les autres puis une seconde fois en y ajoutant un sous-" "ligné jusqu'à ce la fin. Cela donne à IDJC un maximum de neuf pseudos à " "tenter." #: python/irc.py:480 msgid "" "The real name you want to use which will be available regardless of whether " "the network connection was made with the primary nickname or not.\n" "\n" "Ideally set this to something." msgstr "" "Le nom réel à utiliser, sera disponible que la connexion au réseau soit ou " "non établie en utilisant le pseudo principal.\n" "\n" "Remplissez le par quelque chose." #: python/irc.py:483 msgid "" "If this value is set an attempt will be made to acquire your first choice " "IRC nickname (if needed) and log in with NickServ@services.\n" "\n" "The use of the NickServ service requires prior nickname registration on the " "network using a regular chat client." msgstr "" "Si cette valeur est renseignée, tenter la récupération du pseudo IRC si " "nécessaire et se connecter grace à NickServ@services.\n" "\n" "L'utilisation des services NickServ nécessitent qu'un enregistrement " "préalable du pseudo ait été effectué avec un client IRC standard." #: python/irc.py:511 msgid "" "Permanently delete this server?\n" "\n" "This action will also erase all of its associated messages." msgstr "" "Supprimer ce serveur de façon définitive?\n" "\n" "Cette action effacera aussi tous les messages associés." #. TC: An IRC channel #chan or user name entry box label. #: python/irc.py:559 msgid "Channels/Users" msgstr "Canaux/Utilisateurs" #: python/irc.py:563 msgid "" "The comma or space separated list of channels and/or users to whom the " "message will be sent.\n" "\n" "Protected channels are included with the form:\n" "#channel:keyword." msgstr "" "Liste séparée par des virgules des canaux et/ou utilisateurs à qui ce " "message est destiné.\n" "\n" "Les canaux protégés sont inclus sous la forme :\n" "#canal:motclef" #. TC: Message text to send to an IRC channel. Widget label. #: python/irc.py:616 msgid "Message" msgstr "Message" #: python/irc.py:620 msgid "" "The message to send.\n" "\n" "On the pop-up window (mouse right click) are some useful options for " "embedding metadata and for text formatting.\n" "\n" "The window below displays how the message will appear to users of XChat." msgstr "" "Le message à envoyer.\n" "\n" "Dans la fenêtre de pop-up (clic droit) se trouvent quelques options utiles " "pour les métadonnées et le formatage du texte.\n" "\n" "La fenêtre ci-dessous affiche comment le message apparaitra aux utilisateurs " "de XChat XChat2 ou HexChat." #. TC: Dialog window title text. #: python/irc.py:673 msgid "IRC track announce" msgstr "Annonce de pistes IRC" #. TC: Spinbutton label for a delay value. #: python/irc.py:680 msgid "Delay" msgstr "Délais" #. TC: tooltip on a spinbutton widget. #: python/irc.py:682 msgid "" "The delay time of this message.\n" "\n" "Typically listener clients will buffer approximately ten seconds of audio " "data which means they are listening the same amount of time behind the " "actual stream therefore without a delay IRC messages will appear to the " "listener many seconds ahead of the audio.\n" "\n" "This setting will help synchronise the track change with the message." msgstr "" "Délais pour ce message.\n" "\n" "Typiquement les clients des auditeurs temporisent à peu près 10 secondes de " "données audio ce qui signifie qu'il lisent le flux après cette émission et " "que sans délais, les messages IRC apparaitraient quelques secondes avant " "l'audio.\n" "\n" "Ce paramêtre permet de synchroniser les changements de pistes avec le " "message." #. TC: Dialog window title text. #: python/irc.py:710 msgid "IRC timed message" msgstr "Message IRC temporisé" #. TC: Spinbutton time offset value label. #: python/irc.py:719 msgid "Offset" msgstr "Offset" #. TC: Spinbutton timed interval duration value label. #: python/irc.py:721 msgid "Interval" msgstr "Interval" #. TC: spinbutton tooltip #: python/irc.py:724 msgid "" "The time offset within the below specified interval at which the message " "will be issued." msgstr "" "Offset de temps dans l'interval spécifié après lequel le message sera envoyé." #: python/irc.py:728 msgid "The interval in seconds of the timed message." msgstr "Interval en secondes des messages temporisés." #: python/irc.py:967 msgid "This feature requires the installation of python-irc." msgstr "Cette fonctionalité nécessite l'installation de python-irclib" #. TC: Indicator text: We used a password. #: python/irc.py:1058 msgid "PASSWORD" msgstr "MOT DE PASSE" #. TC: Indicator text: We interact with NickServ. #: python/irc.py:1061 msgid "NICKSERV" msgstr "NICKSERV" #. TC: Indicator text: Server connection started manually. #: python/irc.py:1064 msgid "MANUAL" msgstr "MANUEL" #. TC: Dialog title text. #: python/irc.py:1089 msgid "IRC stream up message" msgstr "Messages IRC vers le haut" #. TC: Dialog title text. #: python/irc.py:1091 msgid "IRC stream down message" msgstr "Messages IRC vers le bas" #. TC: Dialog title text. #: python/irc.py:1093 msgid "IRC station operations" msgstr "" #: python/jingles.py:96 msgid "Stop" msgstr "Stopper" #. TC: Column heading, whether to play. #: python/jingles.py:114 python/playergui.py:326 msgid "Play" msgstr "Lire" #: python/jingles.py:123 python/sourceclientgui.py:1132 msgid "Repeat" msgstr "Répéter" #: python/jingles.py:136 msgid "Configure" msgstr "Configurer" #: python/jingles.py:327 python/playergui.py:4194 msgid "Supported media" msgstr "Média supportaté" #: python/jingles.py:334 #, python-format msgid "Effect %d Config" msgstr "Config effet %d" #: python/jingles.py:349 msgid "Trigger text" msgstr "Texte Trigger" #: python/jingles.py:350 msgid "No Name" msgstr "Sans nom" #: python/jingles.py:357 msgid "Level adjustment (dB)" msgstr "Ajustement des niveaux (dB)" #: python/jingles.py:432 msgid "Effects volume." msgstr "Volume des effets" #: python/jingles.py:439 msgid "Player headroom that is applied when an effect is playing." msgstr "Headroom appliqué au lecteur quand un effet est lu." #: python/jingles.py:502 msgid "Alternative" msgstr "Alternatif" #: python/jingles.py:503 msgid "Default" msgstr "Défaut" #: python/jingles.py:548 msgid "Effects" msgstr "Effets" #: python/jingles.py:591 #, python-format msgid "Effects %d" msgstr "Effet %d" #: python/jingles.py:599 python/maingui.py:190 msgid "Background Tracks" msgstr "Pistes de fond" #: python/jingles.py:618 msgid "Background Tracks volume." msgstr "Volume des pistes de fond" #: python/maingui.py:94 msgid "Show a JACK freewheel control on the main panel" msgstr "Afficher le contrôle rouelibre de JACK en page principale" #: python/maingui.py:96 msgid "Toggle JACK freewheel mode." msgstr "Commutateur du mode rouelibre de JACK" #: python/maingui.py:169 msgid "File" msgstr "Fichier" #: python/maingui.py:169 python/preferences.py:1130 msgid "View" msgstr "Voir" #: python/maingui.py:170 msgid "JACK Ports" msgstr "Ports JACK" #: python/maingui.py:170 msgid "Help" msgstr "Aide" #: python/maingui.py:172 python/maingui.py:3688 msgid "Streams" msgstr "Flux" #: python/maingui.py:173 msgid "Recorders" msgstr "Enregistreurs" #: python/maingui.py:186 python/maingui.py:225 msgid "Output" msgstr "Sortie" #: python/maingui.py:186 msgid "Preferences" msgstr "Préférences" #: python/maingui.py:186 msgid "Profiles" msgstr "Profiles" #: python/maingui.py:189 python/songdb.py:409 msgid "Music Database" msgstr "Base de donnée musicale" #: python/maingui.py:189 msgid "Channel Meters" msgstr "Canal Mêtres" #: python/maingui.py:189 msgid "Output Meters" msgstr "Sortie Mêtres" #: python/maingui.py:190 msgid "Tabbed Area" msgstr "Zone tabulée" #: python/maingui.py:190 msgid "Button Bar" msgstr "Barre de boutons" #: python/maingui.py:224 python/preferences.py:1485 msgid "Channels" msgstr "Canaux" #: python/maingui.py:224 msgid "Players" msgstr "Lecteur" #: python/maingui.py:225 msgid "VoIP" msgstr "VoIP" #: python/maingui.py:225 python/maingui.py:3128 msgid "DSP" msgstr "DSP" #: python/maingui.py:225 msgid "Mix" msgstr "Mix" #: python/maingui.py:225 msgid "Misc" msgstr "Divers" #: python/maingui.py:270 msgid "Reset" msgstr "RàZ" #: python/maingui.py:273 msgid "Reset the JACK port connections to the default settings." msgstr "Forcer toutes les connexions aux ports JACK à leur valeurs par défaut." #: python/maingui.py:277 msgid "" "Reset all JACK port connections?\n" "\n" "All currently established connections will be lost\n" "and replaced with defaults." msgstr "" "RàZ de toutes les connexions aux ports " "JACK et remise aux paramêtres par défaut." #: python/maingui.py:320 msgid "No compatible ports available." msgstr "Aucun port compatible n'est disponible" #: python/maingui.py:363 #, python-brace-format msgid "{0} profile={1}:{2} settings saved." msgstr "{0} profil={1}:{2} paramêtres sauvegardés." #: python/maingui.py:366 #, python-brace-format msgid "{0} session={1}:{2} settings saved." msgstr "{0} session={1}:{2} paramêtres sauvegardés." #: python/maingui.py:670 msgid "Text" msgstr "Texte" #: python/maingui.py:673 msgid "The opener button's text." msgstr "Texte des boutons d'ouverture" #: python/maingui.py:689 msgid "The opener button's icon." msgstr "L'icône d'ouverture." #: python/maingui.py:697 msgid "" "The headroom is the amount by which to reduce player volume when this opener " "is active. Note that the actual amount will be the largest value of all the " "currently open buttons." msgstr "" "Le headroom est le taux de réduction en dB appliqué au volume du lecteur " "quand ce lanceur est activé. Notez que la valeur utilisée sera la plus " "élevée parmis celles des bouttons activés." #: python/maingui.py:702 msgid "The amount of headroom required (dB)" msgstr "Le taux de headroom nécessaire (dB)" #: python/maingui.py:711 msgid "This button will flash as a reminder to close" msgstr "Ce bouton clignottera pour rappeler de le fermer" #: python/maingui.py:712 msgid "" "After a number of seconds where a main player is active this button's status " "indicator will start to flash and will continue to do so until the button is " "closed or the player stops." msgstr "" "Un certain laps de temps après que le lecteur principal soit actif, " "l'indicateur de status de ce bouton commence à clignotter jusqu'à ce que le " "bouton soit fermé ou le lecteur arrêté." #: python/maingui.py:720 msgid "This button is to be treated as a microphone opener" msgstr "Ce bouton doit être utilisé comme ouvreur de micro" #: python/maingui.py:722 msgid "" "The button will be grouped with the other microphone opener buttons. It will " "be affected by signals to close microphone buttons. Channels associated with " "this button will be mixed differently when using the VoIP modes." msgstr "" "Le bouton sera regroupé avec les autres ouvreurs de micro. Il sera affecté " "par les signaux de fermeture de micro. Les canaux associés à ce bouton " "seront mixés différamment lors de l'utilisation des modes VoIP." #: python/maingui.py:731 msgid "This button will automatically cancel JACK freewheel mode" msgstr "" #: python/maingui.py:733 msgid "" "This should be set for all buttons that control input from a live sound " "source or device." msgstr "" "Doit être configuré pour chacun des boutons contrôlant l'entrée du son en " "direct d'une source ou d'un périphérique." #: python/maingui.py:736 msgid "Button Open Triggers" msgstr "Bouton Trieurs" #: python/maingui.py:743 msgid "Playlist advance button" msgstr "Bouton d'avance dans la liste de lecture" #: python/maingui.py:744 python/maingui.py:745 #, python-format msgid "'%s' control" msgstr "contrôle «%s»" #. TC: Insert playlist control to stop the player. #: python/maingui.py:744 python/playergui.py:4457 msgid "Player Stop" msgstr "Arret lecteur" #. TC: Insert playlist control to stop the player. #: python/maingui.py:745 python/playergui.py:4464 msgid "Player Stop 2" msgstr "Arret Lecteur 2" #: python/maingui.py:746 msgid "Announcements" msgstr "Annonces" #: python/maingui.py:758 msgid "When opened close these other buttons" msgstr "Quand il est ouvert, ferme les autres boutons" #: python/maingui.py:769 msgid "Shell Command" msgstr "Commande Shell" #: python/maingui.py:770 msgid "" "Mostly useful issuing 'amixer' commands, in particular for setting capture." msgstr "" "Pratique principalement avec les commandes de «amixer», en particulier pour " "configurer la capture." #: python/maingui.py:790 msgid "On open" msgstr "A l'ouverture" #: python/maingui.py:791 msgid "On close" msgstr "A la fermeture" #: python/maingui.py:835 msgid "Main Panel Opener Buttons" msgstr "Panneau principal des boutons d'ouvreurs" #: python/maingui.py:847 msgid "Indicate button numbers and associated channel numbers" msgstr "Indique le numéro de boutton et les numéros de canaux associés" #: python/maingui.py:849 msgid "A useful feature to have switched on while allocating channel openers." msgstr "" "Une fonctionalité utile à avoir activée lorsque l'on alloue des ouvreurs de " "canaux." #: python/maingui.py:855 msgid "Status Indicator Appearance" msgstr "Apparence de l'indicateur d'état" #: python/maingui.py:858 msgid "" "Each opener button has two vertical bars at the side to make the button " "state more apparent. These settings control their appearance." msgstr "" "Chaque bouton d'ouverture possède une barre verticale pour le rendre plus " "visible. Ces paramêtre contrôlent cette apparence." #: python/maingui.py:867 python/format.py:847 msgid "Width" msgstr "Largeur" #: python/maingui.py:874 msgid "Opened" msgstr "Ouvert" #: python/maingui.py:878 python/preferences.py:503 python/preferences.py:505 msgid "Closed" msgstr "Fermé" #: python/maingui.py:883 msgid "Remind" msgstr "Se rappeler" #. TC: A placeholder text for when there are no opener buttons. #: python/maingui.py:1064 msgid "No Channel Opener Buttons" msgstr "Aucun bouton d'ouverture de canal" #: python/maingui.py:1353 msgid "" "This indicates the state of the various streams. Flashing means stream " "packets are being discarded because of network congestion. Partial red means " "the send buffer is partially full indicating difficulty communicating with " "the server. Green means everything is okay." msgstr "" "Indique l'état des différents flux. Clignottant indique que des paquets du " "flux sont écartés à cause d'une congestion du réseau. Partiellement rouge " "signifie que le tampon d'émission est partiellement plein, indiquant des " "difficultés de comunication avec le serveur. Vert indique que tout va bien." #: python/maingui.py:1376 msgid "The combined total number of listeners in all server tabs." msgstr "Le nombre total d'auditeurs dans tous les onglets de serveurs." #. TC: Record as in, to make a recording. #: python/maingui.py:1824 python/sourceclientgui.py:2874 msgid "Record" msgstr "Enregistrer" #: python/maingui.py:2646 msgid "Confirmation to quit IDJC is required." msgstr "Une confirmation est nécessaire pour quitter IDJC." #: python/maingui.py:2650 msgid "All active recordings and radio streams will terminate." msgstr "Tous les entregistrements et flux radio seront arrêtés." #: python/maingui.py:2652 msgid "All of the active radio streams will terminate." msgstr "Tous les flux radio en cours seront arrêtés." #: python/maingui.py:2654 msgid "All active recordings will cease." msgstr "Tous les enregistrements sen cours seront arrêtés." #. TC: Popup menu item, wipes away the tracks played history text. #: python/maingui.py:2920 python/maingui.py:3352 msgid "Remove Contents" msgstr "Supprimer le contenu" #: python/maingui.py:3075 msgid "Renameable Labels" msgstr "Labels renommables" #: python/maingui.py:3099 msgid "Main Players" msgstr "Lecteur principal" #: python/maingui.py:3152 msgid "Mix voice over IP audio to the output stream." msgstr "Mixe l'audio VoIP au flux de sortie" #: python/maingui.py:3165 msgid "Mix voice over IP audio to the DJ only." msgstr "Mixe l'audio VoIP uniquement au DJ" #: python/maingui.py:3192 msgid "" "This button steps through the active playlist, pausing between tracks. The " "active playlist is defined by the placement of the crossfader." msgstr "" "Ce bouton avance dans la liste de lecture en s'arrêtant entre chaque piste. " "La liste de lecture en cours est définie par l'emplacement du crossfader." #: python/maingui.py:3237 python/preferences.py:873 msgid "The volume control shared by both music players." msgstr "Le contrôle de volume partagé par les deux lecteurs." #: python/maingui.py:3248 msgid "The volume control for the right music player." msgstr "Le Volume du lecteur de droite." #: python/maingui.py:3276 msgid "VoIP level adjustment. 0dB gain is at the mid point." msgstr "Ajustement du niveau VoIP. 0dB est le point milieu." #: python/maingui.py:3299 msgid "The stream volume level to send to the voice over IP connection." msgstr "Le niveau de volume à envoyer à la connexion VoIP." #: python/maingui.py:3326 python/preferences.py:1413 msgid "Tracks Played" msgstr "Pistes lues" #: python/maingui.py:3397 python/maingui.py:3399 python/maingui.py:3423 msgid "Monitor Mix" msgstr "Monitor Mix" #: python/maingui.py:3406 python/maingui.py:3423 python/playergui.py:4398 msgid "DJ" msgstr "DJ" #. TC: binding editor, action pane, first row, toplevel menu. #: python/maingui.py:3409 python/maingui.py:3423 python/midicontrols.py:155 #: python/midicontrols.py:1507 python/playergui.py:4390 #: python/sourceclientgui.py:2882 msgid "Stream" msgstr "Flux" #. TC: Context {0}, {1}, {2} = Monitor Mix, Stream, DJ #. TC: Or whatever they become translated to. #: python/maingui.py:3419 #, python-brace-format msgid "" "In IDJC there are are two audio paths and this '{0}' control toggles between " "them. When '{1}' is active you can hear what the listeners are hearing " "including the effects of the crossfader. '{0}' needs to be set to '{2}' in " "order to make proper use of the VoIP features." msgstr "" "Dans IDJC il existe deux chemins et le contrôle «{0}» fait passer de l'un à " "l'autre. Lorsque «{1}» est actif, vous entendez ce que les auditeurs " "entendent effets du crossfader compris. «{0}» doit être positionné sur «{2}» " "pour pouvoir utiliser la fonctionalité VoIP" #. TC: Dropdown box title text widget. #: python/maingui.py:3432 python/maingui.py:3434 msgid "Metadata Source" msgstr "Source de métadonnées" #. TC: The chosen source of track metadata. #: python/maingui.py:3440 python/playergui.py:4103 msgid "Playlist 1" msgstr "Liste de lecture 1" #. TC: The chosen source of track metadata. #: python/maingui.py:3442 python/playergui.py:4104 msgid "Playlist 2" msgstr "Liste de lecture 2" #. TC: The chosen source of track metadata. #: python/maingui.py:3444 python/songdb.py:909 python/songdb.py:1293 msgid "Last Played" msgstr "Dernière lue" #. TC: The chosen source of track metadata. #: python/maingui.py:3446 python/maingui.py:3483 python/maingui.py:3485 msgid "Crossfader" msgstr "Crossfader" #. TC: The chosen source of track metadata. In this case no metadata. #. TC: Fade time is zero. No fade, none. #: python/maingui.py:3448 python/playergui.py:4373 msgid "None" msgstr "Aucune" #. TC: The chosen source of track metadata. In this case no metadata. #: python/maingui.py:3450 python/playergui.py:4104 msgid "Playlist 3" msgstr "Liste de lecture 3" #: python/maingui.py:3455 msgid "Select the origin for the playing track metadata on the stream." msgstr "Sélectionner l'origine pour la piste de métadonnées" #. TC: Abbreviation of left. #: python/maingui.py:3465 python/maingui.py:3467 msgid "L" msgstr "G" #: python/maingui.py:3477 msgid "Move the crossfader fully left." msgstr "Déplacer le crossfader totalement à gauche" #: python/maingui.py:3497 msgid "The crossfader." msgstr "Le crossfader" #. TC: Abbreviation of right. #: python/maingui.py:3501 python/maingui.py:3503 msgid "R" msgstr "D" #: python/maingui.py:3513 msgid "Move the crossfader fully right." msgstr "Déplacer le crossfader totalement à droite" #. TC: Describes a mid point. #: python/maingui.py:3522 python/maingui.py:3524 msgid "Middle" msgstr "Milieu" #: python/maingui.py:3541 python/maingui.py:3548 msgid "Move the crossfader to the middle of its range of travel." msgstr "Déplacer le crossfader au point milieu de son chemin." #. TC: The attenuation response curve of the crossfader. User selectable. #: python/maingui.py:3553 python/maingui.py:3555 msgid "Response" msgstr "Réponse" #: python/maingui.py:3577 msgid "" "This selects the response curve of the crossfader.\n" "\n" "The mid-point attenuations are -3dB, 0dB, and -22dB respectively." msgstr "" "Sélectionne le type de courbe de réponse du crossfader.\n" "Les atténuations au point milieu sont respectivement -3dB, 0dB et -22dB " #. TC: Duration in seconds. #: python/maingui.py:3591 python/maingui.py:3593 msgid "Time" msgstr "Durée" #: python/maingui.py:3610 msgid "" "The time in seconds that the crossfader will take to automatically pass " "across when the button to the right is clicked." msgstr "" "Durée en secondes que le crossfader met à passer automatiquement lors d'un " "appuis sur le bouton droit." #. TC: The crossfader pass-across button text. #. TC: The actual button appears as [<-->] with this text above it. #: python/maingui.py:3619 python/maingui.py:3621 msgid "Pass" msgstr "Passer" #: python/maingui.py:3634 msgid "" "This button causes the crossfader to move to the opposite side at a speed " "determined by the speed selector to the left." msgstr "" "Ce bouton fait passer le crossfader vers le côté opposé à la vitesse " "déterminée par le sélecteur de vitesse à gauche." #: python/maingui.py:3677 msgid "Peak" msgstr "Pick" #: python/maingui.py:3680 msgid "A peak hold meter indicating the signal strength of the stream audio." msgstr "" "Un indicateur de pic temporisé montrant la force du signal du flux audio." #. TC: This text appears above the stream mix VU meter. #: python/maingui.py:3702 msgid "VU" msgstr "VU" #: python/maingui.py:3706 msgid "A VU meter for the stream audio." msgstr "Un Vumêtre pour le flux audio." #. TC: Appears above the mic meters as a label followed by a number. #: python/maingui.py:3709 msgid "Ch" msgstr "Ch" #: python/maingui.py:3736 msgid "" "A peak hold meter indicating the microphone signal strength and a meter " "indicating attenuation levels in the microphone signal processing system. " "Green indicates attenuation from the noise gate, yellow from the de-esser, " "red from the limiter." msgstr "" "Un indicateur de pic temporisé montrant la force du signal du micro et un " "autre indiquant le niveau d'atténuation dans le processeur de signal du " "micro. Vert indique une attenuation par la noise gate, Jaune par le de-" "esseur, Rouge par le limiteur." #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:48 msgid "Tooltips enable" msgstr "Ballons Activer" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:50 msgid "DJ-mix monitor" msgstr "DJ-Mix Monitoring" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:52 msgid "Panning load from presets" msgstr "Placement chargé depuis la présélection" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:54 msgid "Player play/pause" msgstr "Lecteur Lecture/pause" #. TC: Control method. Please keep it as Target:Action. #. TC: Playlist control. #: python/midicontrols.py:56 python/playergui.py:3857 msgid "Player stop" msgstr "Arret lecteur" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:58 msgid "Player advance" msgstr "Lecteur Avance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:60 msgid "Player play previous" msgstr "Lecteur Lire précédente" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:62 msgid "Player play next" msgstr "Lecteur Lire suivante" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:64 msgid "Player play selected from start" msgstr "Lecteur Reprendre au début" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:66 msgid "Player select previous" msgstr "Lecteur Sélectionner la précédente" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:68 msgid "Player select next" msgstr "Lecteur Sélectionner la suivante" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:70 msgid "Player stream output enable" msgstr "Lecteur de flux Activer la sortie" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:72 msgid "Player DJ output enable" msgstr "Lecteur DJ Activer la sortie" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:74 msgid "Player DJ-only switch" msgstr "Lecteur Commuter DJ seul" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:76 msgid "Player set volume" msgstr "Lecteur Régler le volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:78 msgid "Player set gain" msgstr "Lecteur Régler le gain" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:80 msgid "Player set balance" msgstr "Lecteur Régler la balance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:82 msgid "Player set pitchbend" msgstr "Lecteur Régler la tonalité" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:85 msgid "Playlist edit tags" msgstr "Liste de lecture Editer les tags" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:87 msgid "Playlist insert stop" msgstr "Liste de lecture Insérer un arret" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:89 msgid "Playlist insert stop 2" msgstr "Liste de lecture Insérer un arret 2" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:91 msgid "Playlist insert announce" msgstr "Liste de lecture Insérer une annonce" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:93 msgid "Playlist insert transfer" msgstr "Liste de lecture Insérer un transfert" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:95 msgid "Playlist insert crossfade" msgstr "Liste de lecture Insérer un crossfader" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:97 msgid "Playlist insert pitchunbend" msgstr "Liste de lecture Revenir à la tonalité originale" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:99 msgid "Playlist insert jump to top" msgstr "Liste de lecture Insérer un saut en haut" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:102 msgid "Players set crossfade" msgstr "Lecteurs Régler le crossfader" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:104 msgid "Players pass crossfade" msgstr "Lecteurs Effectuer un crossfader" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:106 msgid "Players set focus" msgstr "Lecteur Régler le focus" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:108 msgid "Players show pitchbend" msgstr "Lecteurs Afficher la tonalité" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:110 msgid "Players advance" msgstr "Lecteur Avance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:113 msgid "Channel output enable" msgstr "Canal Activer la sortie" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:115 msgid "Channel set volume" msgstr "Canal Régler le volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:117 msgid "Channel set gain" msgstr "Canal Régler le gain" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:119 msgid "Channel set balance" msgstr "Canal Régler la balance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:122 msgid "VoIP output enable" msgstr "VoIP Activer la sortie" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:124 msgid "VoIP DJ-only switch" msgstr "VoIP DJ-Seul Commuter" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:126 msgid "VoIP set volume" msgstr "VoIP Régler le volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:128 msgid "VoIP set mixback" msgstr "VoIP Régler le retour" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:130 msgid "VoIP set gain" msgstr "VoIP Régler le gain" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:132 msgid "VoIP set balance" msgstr "VoIP Régler la balance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:135 msgid "Effect play from start" msgstr "Effet Lire depuis le début" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:138 msgid "Effects stop many" msgstr "Effets Arrèter plusieurs" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:140 msgid "Effects set volume" msgstr "Effets Régler le volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:142 msgid "Effects set headroom" msgstr "Effets Régler le headroom" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:145 msgid "Stream set connected" msgstr "Flux Connecter" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:148 msgid "Recorder set recording" msgstr "Enregistreur Enregistrement" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:152 python/midicontrols.py:1493 msgid "Player" msgstr "Lecteur" #. TC: binding editor, action pane, first row, toplevel menu. #. TC: The midi channel. #. TC: Specifically, the numerical midi channel. #: python/midicontrols.py:153 python/midicontrols.py:1499 #: python/midicontrols.py:1568 python/midicontrols.py:1758 msgid "Channel" msgstr "Canal" #: python/midicontrols.py:154 python/preferences.py:599 #: python/preferences.py:609 msgid "Effect" msgstr "Effet" #: python/midicontrols.py:156 msgid "Recorder" msgstr "Enregistreur" #: python/midicontrols.py:157 msgid "Setting" msgstr "Paramètres" #: python/midicontrols.py:161 msgid "Left player" msgstr "Lecteur de gauche" #: python/midicontrols.py:162 msgid "Right player" msgstr "Lecteur de droite" #: python/midicontrols.py:163 msgid "Background player" msgstr "Lecteur de fond" #: python/midicontrols.py:164 msgid "Focused player" msgstr "Lecteur actif" #: python/midicontrols.py:165 msgid "Fadered player" msgstr "Lecteur affaibli" #: python/midicontrols.py:169 msgid "Effects bank 1" msgstr "Effets Banque 1" #: python/midicontrols.py:170 msgid "Effects bank 2" msgstr "Effets Banque 2" #: python/midicontrols.py:171 msgid "All effects" msgstr "Tous les effets" #. TC: The name of the backspace key. #: python/midicontrols.py:405 msgid "BackSpace" msgstr "Retour Arrière" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1469 msgid "Use value" msgstr "Utiliser la valeur" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1471 msgid "Act if" msgstr "Agir si" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1473 msgid "Set to" msgstr "Régler à" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1475 msgid "Adjust by" msgstr "Ajuster par" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1480 python/midicontrols.py:1484 msgid "Control" msgstr "Contrôle" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1482 msgid "Note" msgstr "Note" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1486 msgid "Key" msgstr "Touche" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1491 msgid "Miscellaneous" msgstr "Divers" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1495 msgid "Both players" msgstr "Les deux lecteurs" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1497 msgid "Quick panning" msgstr "Panoramique rapide" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1501 msgid "VoIP channel" msgstr "Canal VoIP" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1503 msgid "Single effect" msgstr "Effet unique" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1505 msgid "Effects bank" msgstr "Banque d'effets" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1509 msgid "Stream recorder" msgstr "Enregistreur de flux" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1514 msgid "Direct fader/held button" msgstr "Bouton fader/premuto" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1516 msgid "One-shot/toggle button" msgstr "Bouton One-shot/Commuter" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1518 msgid "Set value" msgstr "Régler la valeur" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1520 msgid "Alter value" msgstr "Modifier la valeur" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1525 msgid "MIDI control" msgstr "Contrôle MIDI" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1527 msgid "MIDI note" msgstr "Note MIDI" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1529 msgid "MIDI pitch-wheel" msgstr "Tonalité MIDI" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1531 msgid "Keyboard press" msgstr "Touché du clavier" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1533 msgid "XChat command" msgstr "Commande XChat" #. TC: Dialog window title text. #. TC: User is expected to edit a control binding. #: python/midicontrols.py:1542 msgid "Edit control binding" msgstr "Editer les contrôleurs" #. TC: After clicking this button the binding editor will be listening #. TC: for a key press or midi control surface input. #. TC: Button text. If pressed triggers 'Listening for input' mode. #: python/midicontrols.py:1557 python/midicontrols.py:1638 #: python/midicontrols.py:1737 msgid "Listen for input..." msgstr "Ecouter sur l'entrée…" #. TC: The input source. #: python/midicontrols.py:1565 msgid "Source" msgstr "Source" #. TC: The manner in which the input is interpreted. #: python/midicontrols.py:1584 msgid "Interaction" msgstr "Interraction" #. TC: The effect of the control can be directed upon a specific target. #. TC: e.g. On target [Left player] #: python/midicontrols.py:1590 msgid "On target" msgstr "Destination" #. TC: Checkbutton text. #. TC: Use reverse scale and invert the meaning of button presses. #: python/midicontrols.py:1598 msgid "Reversed" msgstr "Inversé" #: python/midicontrols.py:1599 msgid "Pressed" msgstr "Pressé" #: python/midicontrols.py:1601 msgid "Released" msgstr "Relaché" #. TC: Tree column heading for Inputs e.g. Backspace, F1, S. #: python/midicontrols.py:1631 python/midicontrols.py:1992 msgid "Input" msgstr "Entrée" #: python/midicontrols.py:1635 #, python-format msgid "" "The first half of a binding is the input which comes in the form of the " "press of a keyboard key or an event from a midi device.\n" "\n" "Input selection can be done manually or with the help of the '%s' option." msgstr "" "La première moitiée d'une liaison est l'entrée qui arrive sous la forme " "d'une pression sur une touche du clavier ou un évènement midi.\n" "\n" "La sélection peut se faire manuellement ou à l'aide de l'option «%s»." #. TC: Tree column heading for actions e.g. Player stop. #: python/midicontrols.py:1671 python/midicontrols.py:1677 #: python/midicontrols.py:2006 msgid "Action" msgstr "Action" #. TC: %s is the translation of 'Action'. #: python/midicontrols.py:1676 #, python-format msgid "The '%s' pane determines how the input is handled, and to what effect." msgstr "" "Le ventail «%s» détermine comment l'entrée est gérée et quels en sont les " "effets." #: python/midicontrols.py:1733 msgid "Listening for input" msgstr "Lecture de l'entrée" #. TC: Refers to key modifiers including Ctrl, Alt, Shift, .... #: python/midicontrols.py:1754 msgid "Shifting" msgstr "Altération" #: python/midicontrols.py:1953 msgid "Singular control" msgstr "Contrôle unique" #: python/midicontrols.py:2015 msgid "Target" msgstr "Obiettivo" #: python/mutagentagger.py:219 msgid "title" msgstr "titre" #: python/mutagentagger.py:219 msgid "artist" msgstr "artiste" #: python/mutagentagger.py:220 msgid "album" msgstr "album" #: python/mutagentagger.py:220 msgid "track/total" msgstr "piste/total" #: python/mutagentagger.py:221 msgid "genre" msgstr "genre" #: python/mutagentagger.py:221 msgid "record date" msgstr "date d'enregistrement" #: python/mutagentagger.py:360 msgid "" "Add any other ID3 text frames here.\n" "e.g. TIT2:Alternate Title\n" "This will be appended onto the main TIT2 tag.\n" "\n" "Enter user defined text frames like this:\n" "TXXX:foo=bar\n" "\n" "For more information visit www.id3.org." msgstr "" "Ajoutez ICI n'importe quel tag ID3.\n" "ex. : TIT2 : Titre alternatif\n" "Sera ajouté au TIT2 principal.\n" "\n" "Entrez des champs de texte personalisés comme ceci :\n" "TXXX:nimporte=quoi\n" "\n" "Pour plus d'information visitez www.id3.org." #. TC: Remaining textual ID3 data is show below this heading. #: python/mutagentagger.py:366 msgid " Additional Text Frames " msgstr " Champs texte additionnels " #. TC: The album track number. #: python/mutagentagger.py:376 python/songdb.py:906 python/songdb.py:1295 msgid "Track" msgstr "Piste" #: python/mutagentagger.py:377 msgid "Genre" msgstr "Genre" #: python/mutagentagger.py:377 msgid "Year" msgstr "Année" #. TC: Window title. #: python/mutagentagger.py:688 msgid "IDJC Tagger" msgstr "Taggeur IDJC" #: python/mutagentagger.py:700 python/mutagentagger.py:704 #: python/mutagentagger.py:708 msgid "Filename:" msgstr "Nom du fichier :" #: python/mutagentagger.py:777 msgid "Native" msgstr "Natif" #: python/songdb.py:177 msgid "Connecting" msgstr "Connexion" # python-format #: python/songdb.py:188 #, python-format msgid "Connection failed (try %d)" msgstr "Connexion échouée (essayez %d)" #: python/songdb.py:199 #, fuzzy msgid "Connected: autocommit mode failed" msgstr "Connecté : Echec du mode utf-8" #: python/songdb.py:201 #, fuzzy msgid "Connected: autocommit mode set" msgstr "Connecté : Echec du mode utf-8" #: python/songdb.py:202 msgid "Connected" msgstr "Connecté" #: python/songdb.py:210 msgid "Job dropped" msgstr "Tâche abandonnée" #: python/songdb.py:220 python/songdb.py:431 msgid "Disconnected" msgstr "Disconnecté" #: python/songdb.py:233 msgid "Problem dropping connection" msgstr "Problème lors de l'abandon de la tâche" #: python/songdb.py:235 msgid "Connection dropped" msgstr "Connexion abandonnée" #: python/songdb.py:326 msgid "Hostname[:Port]" msgstr "Hôte[:Port]" #: python/songdb.py:331 msgid "User Name" msgstr "Nom utilisateur" #: python/songdb.py:334 msgid "Database" msgstr "Base de données" #: python/songdb.py:389 msgid "Prokyon3 or Ampache (song title) Database" msgstr "Base de donnée Prokyon3 ou Ampache (titre de chanson)" #: python/songdb.py:390 msgid "" "You can make certain media databases accessible in IDJC for easy drag and " "drop into the playlists." msgstr "" "Vous pouvez rendre certaines bases de données accessibles dans IDJC pour " "plusde facilités lors des glisser/déposer dans les listes de lectures" #: python/songdb.py:438 msgid "Module mysql-python (MySQLdb) required" msgstr "Module mysql-python (MySQLdb) nécessaire" #: python/songdb.py:707 python/songdb.py:723 python/songdb.py:747 #: python/songdb.py:805 msgid "" msgstr "" #: python/songdb.py:741 #, fuzzy msgid "Not Played" msgstr "Dernière lue" #: python/songdb.py:878 msgid "Reload the database." msgstr "Recharger la base de données" #: python/songdb.py:883 msgid "Expand entire tree." msgstr "Développer l'arborescence." #: python/songdb.py:884 msgid "Collapse tree." msgstr "Enrouler l'arborescence." #: python/songdb.py:891 msgid "Browse" msgstr "Parcourrir" #. TC: The disk number of the album track. #: python/songdb.py:904 python/songdb.py:1294 msgid "Disk" msgstr "Disque" #. TC: Track playback time. #. TC: Playback time. #: python/songdb.py:908 python/songdb.py:1296 python/playergui.py:340 msgid "Duration" msgstr "Durée" #: python/songdb.py:910 python/songdb.py:1297 python/format.py:614 #: python/format.py:635 python/format.py:721 python/format.py:742 #: python/format.py:877 python/format.py:982 python/format.py:1032 #: python/format.py:1042 python/format.py:1120 python/format.py:1153 msgid "Bitrate" msgstr "Bitrate" #: python/songdb.py:911 python/songdb.py:1298 msgid "Filename" msgstr "Nom du fichier" #. TC: Directory path to a file. #: python/songdb.py:913 python/songdb.py:1299 msgid "Path" msgstr "Répertoire" #: python/songdb.py:918 msgid "Artist - Album - Title" msgstr "Artiste - Album - Titre" #: python/songdb.py:919 msgid "Album - [Disk] - Title" msgstr "Album - [Disque] - Titre" #: python/songdb.py:939 msgid "Fetching" msgstr "Découverte" #: python/songdb.py:1084 msgid "Tree fetch failed" msgstr "Echec de la découverte de l'arborescence" #: python/songdb.py:1085 msgid "Fetch Failed!" msgstr "Echec de la découverte!" #: python/songdb.py:1098 msgid "Populating" msgstr "Popularité" #: python/songdb.py:1224 #, python-format msgid "Disk %d" msgstr "Disque %d" #. TC: User specified search filter entry box title text. #: python/songdb.py:1243 msgid "Filters" msgstr "Filtres" #. TC: A type of search on any data field matching paritial strings. #: python/songdb.py:1255 msgid "Fuzzy Search" msgstr "Recherche floue" #. TC: WHERE is an SQL keyword. #: python/songdb.py:1264 msgid "WHERE" msgstr "WHERE" #: python/songdb.py:1277 msgid "Search" msgstr "Recherche" #: python/songdb.py:1514 python/songdb.py:1639 msgid "Minutes" msgstr "" #: python/songdb.py:1514 python/songdb.py:1639 #, fuzzy msgid "Hours" msgstr "Couleurs" #: python/songdb.py:1515 python/songdb.py:1639 msgid "Days" msgstr "" #: python/songdb.py:1515 python/songdb.py:1639 python/songdb.py:1709 #: python/songdb.py:1803 msgid "Weeks" msgstr "" #: python/songdb.py:1609 msgid "Catalogs" msgstr "Catalogues" #: python/songdb.py:1616 msgid "Name" msgstr "Nom" #: python/songdb.py:1617 msgid "Catalog Path" msgstr "Chemin du Catalogue" #: python/songdb.py:1618 msgid "Prepend Path" msgstr "Chemin Préfixe" #: python/songdb.py:1626 #, fuzzy msgid "Last Played Scale" msgstr "Dernière lue" #: python/songdb.py:1658 msgid "Path Peel" msgstr "Chemin supprimable" #: python/songdb.py:1737 msgid "N/A" msgstr "S/O" #: python/songdb.py:1918 msgid "Failed to create FULLTEXT index" msgstr "Echec de la création de l'index TEXTE" #: python/songdb.py:1922 msgid "Found existing FULLTEXT index" msgstr "Un index TEXTE exite déjà" #: python/songdb.py:1936 python/songdb.py:1949 msgid "Unrecognised database" msgstr "Base de données non reconnue" #: python/songdb.py:1944 msgid "Found Prokyon 3 schema" msgstr "Schéma Prokyon 3 trouvé" #: python/playergui.py:104 msgid "Click to stop adding tracks!" msgstr "" #: python/playergui.py:263 msgid "Cuesheet Playlist" msgstr "Liste de lecture cuesheet" #. TC: Column heading, the track number. #: python/playergui.py:329 msgid "Trk" msgstr "Piste" #. TC: Column heading, the index number. #: python/playergui.py:332 msgid "Ind" msgstr "Index" #: python/playergui.py:441 msgid "External Playlist" msgstr "Liste de lecture externe" #. TC: Button text to activate an external playlist. #: python/playergui.py:452 msgid "Active" msgstr "Attivée" #: python/playergui.py:462 msgid "Choose a playlist file" msgstr "Sélectionner un fichier de liste de lecture" #: python/playergui.py:467 msgid "Choose a media directory" msgstr "Sélectionner un dossier de média" #: python/playergui.py:480 msgid "Choose a playlist file." msgstr "Sélectionner un fichier de liste de lecture." #: python/playergui.py:482 msgid "Choose a folder/directory of music." msgstr "Sélectionner un fichier de musique." #: python/playergui.py:549 msgid "Create a new announcement" msgstr "Créer une nouvelle annonce" #: python/playergui.py:552 msgid "Modify or Delete this announcement" msgstr "Modifier ou supprimer cette annonce" #. TC: Embed a DJ announcement text into the playlist. #: python/playergui.py:555 python/playergui.py:4494 msgid "Announcement" msgstr "Annonce" #. TC: The time format as minutes and seconds. #: python/playergui.py:583 msgid "mm:ss" msgstr "mm:ss" #. TC: Alongside the name of the next track. #: python/playergui.py:636 msgid "Next track" msgstr "Piste suivante" #: python/playergui.py:961 msgid "By Extension" msgstr "Par extention" #: python/playergui.py:961 msgid "M3U playlist" msgstr "Liste de lecture M3U" #: python/playergui.py:961 #, fuzzy msgid "M3U8 playlist" msgstr "Liste de lecture M3U" #: python/playergui.py:962 msgid "XSPF playlist" msgstr "Liste de lecture XSPF" #: python/playergui.py:962 msgid "PLS playlist" msgstr "Liste de lecture PLS" #: python/playergui.py:1034 #, python-format msgid "%d Audio Tracks" msgstr "%d pistes audio" #. TC: Missing metadata text. #: python/playergui.py:1044 msgid "Unknown" msgstr "Inconnu" #: python/playergui.py:1048 msgid "(Cue sheet)" msgstr "(Cue Sheet)" #: python/playergui.py:1085 msgid "Bad Tag" msgstr "Tag erroné" #: python/playergui.py:1921 python/playergui.py:4333 msgid "Manual" msgstr "Manuel" #. TC: playlist modes #: python/playergui.py:1925 python/playergui.py:4332 msgid "Play All" msgstr "Tout jouer" #: python/playergui.py:1933 python/playergui.py:1942 python/playergui.py:4332 msgid "Loop All" msgstr "Tout boucler" #: python/playergui.py:1933 python/playergui.py:4333 msgid "Cue Up" msgstr "Pré-écoute" #: python/playergui.py:1934 python/playergui.py:4337 msgid "Fade Over" msgstr "Fondu dessus" #: python/playergui.py:1946 python/playergui.py:2021 python/playergui.py:4332 msgid "Random" msgstr "Aléatoire" #: python/playergui.py:1990 python/playergui.py:4333 msgid "External" msgstr "Externe" #. TC: yet more playlist modes these ones for the main players only #: python/playergui.py:2002 python/playergui.py:2018 python/playergui.py:4337 msgid "Alternate" msgstr "Alternatif" #: python/playergui.py:2002 python/playergui.py:2020 python/playergui.py:4337 msgid "Random Hop" msgstr "Hop aléatoire" #. TC: The remaining playlist time. #: python/playergui.py:2176 python/playergui.py:2182 msgid "Remaining" msgstr "Restant" #. TC: The estimated finish time of the playlist. #. TC: The estimated finish time of the playlist (ETA). #: python/playergui.py:2178 python/playergui.py:2182 python/playergui.py:2196 msgid "Finish" msgstr "Fini" #. TC: The play duration of the block of audio tracks. #: python/playergui.py:2183 python/playergui.py:2194 msgid "Block size" msgstr "Taille de block" #. TC: File dialog title text. #: python/playergui.py:2584 msgid "Add music to left playlist" msgstr "Ajouter de la musique à la liste de gauche" #. TC: File dialog title text. #: python/playergui.py:2587 msgid "Add music to right playlist" msgstr "Ajouter de la musique à la liste de droite" #: python/playergui.py:2589 msgid "Add background music" msgstr "ajouter une musique de fond" #. TC: File filter text. #: python/playergui.py:2601 msgid "Supported Media Formats" msgstr "Formats de média supportés" #. TC: Expander text "Select File Type (.pls)" for the pls file type. #: python/playergui.py:2652 msgid "Select File Type" msgstr "Sélectionner le type de fichier" #: python/playergui.py:3442 msgid "Save left playlist" msgstr "Sauvegarder la liste de lecture de gauche" #: python/playergui.py:3444 msgid "Save right playlist" msgstr "Sauvegarder la liste de lecture de droite" #: python/playergui.py:3446 msgid "Save background playlist" msgstr "Sauvegarder la liste de lecture de fond" #: python/playergui.py:3464 msgid "File Type" msgstr "Type de fichier" #: python/playergui.py:3469 msgid "Extension" msgstr "Extention" #. TC: Playlist control. #. TC: Insert playlist control to do a ten second fade to the next track. #: python/playergui.py:3833 python/playergui.py:4505 msgid "Fade 10s" msgstr "Fondu 10s" #. TC: Playlist control. #. TC: Insert playlist control to do a five second fade to the next track. #: python/playergui.py:3839 python/playergui.py:4512 msgid "Fade 5s" msgstr "Fondu 5s" #. TC: Playlist control. #. TC: Insert playlist control to not do a fade to the next track. #: python/playergui.py:3844 python/playergui.py:4519 msgid "No Fade" msgstr "Aucun Fondu" #. TC: Playlist control. #: python/playergui.py:3852 msgid ">> Normal Speed <<" msgstr ">> Vitesse normale <<" #. TC: Playlist control. #: python/playergui.py:3862 msgid "Player stop 2" msgstr "Arret Lecteur 2" #. TC: Playlist control. #. TC: Insert playlist control to jump to the top of the playlist. #: python/playergui.py:3867 python/playergui.py:4471 msgid "Jump To Top" msgstr "Retour en haut" #. TC: Playlist control. #: python/playergui.py:3872 python/playergui.py:4531 msgid "Stop streaming" msgstr "Arret du flux" #. TC: Playlist control. #: python/playergui.py:3877 python/playergui.py:4539 msgid "Stop recording" msgstr "Arret de l'enregistrement" #: python/playergui.py:3910 #, fuzzy msgid "Announcement:" msgstr "Annonce" #. TC: Playlist control. #: python/playergui.py:3916 msgid ">>> Transfer across >>>" msgstr ">>> Transfer en face >>>" #. TC: Playlist control. #: python/playergui.py:3919 msgid "<<< Transfer across <<<" msgstr "<<< Transfer en face <<<" #. TC: Playlist control. #: python/playergui.py:3924 msgid ">>> Fade across >>>" msgstr ">>> Fondu en face >>>" #. TC: Playlist control. #: python/playergui.py:3927 msgid "<<< Fade across <<<" msgstr "<<< Fondu en face <<<" #. TC: Playlist control. #: python/playergui.py:3933 msgid "Ignored playlist control" msgstr "Contrôle de liste de lecture ignoré" #: python/playergui.py:4001 #, python-brace-format msgid "Playing track {0} of {1}" msgstr "Lecture piste {0} sur {1}" #. TC: Previous line: Playing track {0} of {1} #: python/playergui.py:4014 #, python-format msgid "From the album, %s" msgstr "De l'album, %s" #: python/playergui.py:4021 #, python-format msgid "Total number of tracks %d" msgstr "Nombre de piste total %d" #: python/playergui.py:4025 python/playergui.py:4027 #, python-format msgid "Total play duration %s" msgstr "Durée totale %s" #: python/playergui.py:4077 msgid "" "Left click toggles between showing the amount of time elapsed or remaining " "on the current track being played." msgstr "" "Clic à gauche pour afficher le temps écoulé ou le temps restant pour la " "piste en cours de reproduction." #: python/playergui.py:4095 msgid "" "This slider acts as both a play progress indicator and as a means for " "seeking within the currently playing track." msgstr "" "Ce curseur agit à la fois comme indicateur de progression et comme " "positionneur dans la piste en cours de reproduction." #. TC: File filter text. #: python/playergui.py:4184 msgid "All file types" msgstr "Tout type de fichier" #: python/playergui.py:4189 #, fuzzy msgid "Playlist types" msgstr "Liste de lecture 1" #: python/playergui.py:4204 msgid "" "'Block size' indicates the amount of time that it will take to play from the " "currently selected track to the next stop.\n" "'Remaining' is the amount of time until the next stop.\n" "'Finish' Is the computed time when the tracks will have finished playing." msgstr "" "«Taille de block» indique la quantité de temps restant entre la piste en " "cours et le prochain arret.\n" "«Restant» indique le temps restant avant le prochain arret.\n" "«Fin» est le temps calculé lorsque la piste aura fini d'être lue." #: python/playergui.py:4230 msgid "This adjusts the playback speed anywhere from 25% to 400%." msgstr "Ajuste la vitesse de reproduction entre 25% et 400%." #: python/playergui.py:4244 msgid "This sets the playback speed back to normal." msgstr "Remet la vitesse de reproduction à sa valeur normale." #: python/playergui.py:4261 msgid "Previous track." msgstr "Piste précédente" #: python/playergui.py:4273 msgid "Play." msgstr "Lecture" #: python/playergui.py:4283 msgid "Pause." msgstr "Pause" #: python/playergui.py:4293 msgid "Stop." msgstr "Arret" #: python/playergui.py:4303 msgid "Next track." msgstr "Piste suivante" #: python/playergui.py:4315 msgid "Add tracks to the playlist." msgstr "Ajouter des pistes à la liste" #: python/playergui.py:4322 python/preferences.py:71 msgid "Playlist Mode" msgstr "Mode de la liste de lecture" #: python/playergui.py:4343 msgid "" "This sets the playlist mode which defines player behaviour after a track has " "finished playing.\n" "\n" "'Play All' is the most versatile mode since it allows the use of embeddable " "playlist control elements which are accessible using the right click context " "menu in the playlist. When no playlist controls are present the tracks are " "played sequentially until the end of the playlist is reached at which point " "the player will stop.\n" "\n" "'Loop All' causes the tracks to be played in sequence, restarting with the " "first track once the end of the playlist is reached.\n" "\n" "'Random' causes the tracks to be played indefinitely with the tracks " "selected at random.\n" "\n" "'Manual' causes the player to stop at the end of each track.\n" "\n" "'Cue Up' is similar to manual except that the next track in the playlist " "will also be highlighted.\n" "\n" "'External' draws it's tracks from an external playlist or directory one at a " "time. Useful for when you want to stream massive playlists.\n" "\n" "'Alternate' causes the next track to be cued up before starting the opposite " "player. The crossfader is moved over.\n" "\n" "'Fade Over' will crossfade to the other player at the end of every track.\n" "\n" "'Random Hop' will pick a track at random from the other playlist." msgstr "" "Configure le mode de la liste de lecture définissant le fonctionnement du " "lecteur après qu'une piste ait finie d'être lue.\n" "\n" "«Lire tout» est le mode le plus universel puisqu'il permet l'utilisation des " "élements de contrôle disponibles dans le menu contextuel accessible par un " "clic droit sur la liste de lecture. Lorsqu'aucun élément de contrôle n'est " "présent, les pistes sont lues de manière séquentielles jusqu'à la fin de la " "liste de lecture après quoi le lecteur s'arrète.\n" " \n" "«Boucler» les pistes sont jouées séquentiellement jusquà la fin de la liste " "de lecture, après quoi le liste est relue depuis le début.\n" "\n" "«Aléatoire» rends la liste de lecture infinie, avec les pistes choisies au " "hazard.\n" "\n" "«Manuel» le lecteur s'arrête à la fin de chaque piste.\n" "\n" "«Suivante» comme pour «Manuel» mis à part que la piste suivante est " "sélectionnée.\n" "\n" "«Externe» prend les pistes depuis une autre liste de lecture ou un autre " "dossier, l'une après l'autre. Utile pour diffuser de grandes listes de " "lecture.\n" "\n" "«Alternatif» Sélectionne la piste suivante avant de démarrer le lecteur " "opposé. Le crossfader est activé.\n" "\n" "«Crossfader» Le passage au lecteur opposé est effectué après chaque piste.\n" "\n" "«Emprun Aléatoire» Prends une piste au hazard dans la liste de lecture " "opposée." #. TC: Fade time heading. #: python/playergui.py:4367 python/preferences.py:72 msgid "Fade" msgstr "Fondu" #: python/playergui.py:4379 msgid "This controls the amount of fade between tracks." msgstr "Contrôle le taux de fondu entre les pistes." #: python/playergui.py:4386 msgid "Audio Feed" msgstr "Audio Feed" #: python/playergui.py:4396 msgid "Make output from this player available for streaming." msgstr "Rendre la sortie de ce lecteur disponible pour le flux" #: python/playergui.py:4404 msgid "Make output from this player audible to the DJ." msgstr "Rendre la sortie de ce lecteur audible au DJ" #: python/playergui.py:4406 msgid "Force" msgstr "Forcer" #: python/playergui.py:4412 msgid "" "When selected this player will be treated like a main player.\n" "It will be affected by microphone ducking and won't mute when a main player " "is operating." msgstr "" "Lorsqu'il est choisi, ce lecteur agis comme le lecteur principal/\n" "Il est affecté par l'aténuation par le micro et ne se mute pas lorsque le " "lecteur principal est en fonction." #. TC: Insert playlist control. #: python/playergui.py:4425 msgid "Insert control" msgstr "Insérer un contrôle" #. TC: The Item submenu. #: python/playergui.py:4434 msgid "Item" msgstr "Elément" #. TC: The Playlist submenu. #: python/playergui.py:4439 msgid "Playlist" msgstr "Liste de lecture" #. TC: Insert playlist control to set playback speed to normal. #: python/playergui.py:4450 msgid "Normal Speed" msgstr "Vitesse normale" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4479 python/playergui.py:4633 msgid "Transfer" msgstr "Transfer" #: python/playergui.py:4487 msgid "Crossfade" msgstr "Crossfader" #. TC: Menu item. Opens the metadata tagger on the selected track. #: python/playergui.py:4552 msgid "Meta Tag" msgstr "Méta Tag" #. TC: Menu Item. Duplicates the selected track in the playlist. #: python/playergui.py:4558 msgid "Duplicate" msgstr "Dupliquer" #. TC: Menu Item. Remove the selected track. #: python/playergui.py:4565 msgid "Remove" msgstr "Supprimer" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4576 msgid "This" msgstr "Ceci" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4583 python/preferences.py:1237 msgid "All" msgstr "Tout" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4590 msgid "From Here" msgstr "Depuis ici" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4597 msgid "To Here" msgstr "Jusqu'ici" #. TC: Open the file dialog for adding music to the chosen playlist. #: python/playergui.py:4610 msgid "Add Music" msgstr "Ajouter de la musique" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4617 msgid "Save" msgstr "Sauvegarder" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4628 msgid "Copy" msgstr "Copier" #: python/playergui.py:4639 msgid "Exchange" msgstr "Echanger" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4646 msgid "Empty" msgstr "Vide" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4660 python/playergui.py:4699 msgid "Append" msgstr "Après" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4667 python/playergui.py:4706 msgid "Prepend" msgstr "Avant" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4678 msgid "Append Cursor" msgstr "Ajouter après le curseur" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4685 msgid "Prepend Cursor" msgstr "Ajouter avant le curseur" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4717 msgid "Append at Cursor" msgstr "Ajouter après au curseur" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4724 msgid "Prepend at Cursor" msgstr "Ajouter avant au curseur" #: python/preferences.py:85 msgid "Track time elapsed" msgstr "Tempo écoulé" #: python/preferences.py:87 msgid "Track time remaining" msgstr "Temps restant" #: python/preferences.py:89 msgid "Audio to stream" msgstr "Audio vers flux" #: python/preferences.py:90 msgid "Audio to DJ" msgstr "Audio vers DJ" #: python/preferences.py:127 #, python-format msgid "" "Stereo panning is the selection of where an audio source sits from left to " "right within the stereo mix.\n" "\n" "This control maintains constant audio power throughout its range of travel, " "giving -3dB attenuation in both audio channels at the half way point.\n" "\n" "If you require 0dB straight down the middle or require a stereo source " "remain as stereo then this feature should be turned off.\n" "\n" "Paired channels should be set to 100% left/right unless narrowing of the " "stereo field is the intention." msgstr "" "La panoramique stéréo est une sélection ou une source audio se situe plus ou " "moins à gauche ou a droite par rapport au mix stéréo.\n" "\n" "Ce contrôle garde une puissance audio constante sur toute sa plage, en " "donnant une atténuation de -3dB sur les deux canaux au point milieu.\n" "\n" "Si vous voulez obtenir 0dB au point milieu ou si vous voulez maintenir la " "stéréo de la source, cette fonctionalité doit être désactivée.\n" "\n" "L'appairage des canaux doit être laissé à 100% gauche/droite à moins que la " "réduction du champ stéréo ne soit votre intention." #: python/preferences.py:158 msgid "Presets" msgstr "Présélections" #: python/preferences.py:249 msgid "" "The pan preset selection buttons.\n" "\n" "In the stereo image at a click the DJ can be on the left and a guest on the " "right and when the guest is gone at a click the DJ can be central again.\n" "\n" "Note: preconfiguration of pan preset settings is required." msgstr "" "Les boutons de présélection de panoramique.\n" "\n" "Dans une image stéréo en 1 clic le DJ peut se situer à gauche et l'invité à " "droite et dès que l'invité part, en 1 click le DJ peut se retrouver de " "nouveau au centre.\n" "\n" "Note : Une préconfiguration des présélections est nécessaire." #. TC: Microphone mode combobox text. #: python/preferences.py:274 msgid "Deactivated" msgstr "Désactivé" #. TC: Microphone mode combobox text. #: python/preferences.py:276 msgid "Basic input" msgstr "Entrée de base" #. TC: Microphone mode combobox text. #: python/preferences.py:278 msgid "Processed input" msgstr "Ingresso elaborato" #. TC: Microphone mode combobox text. #: python/preferences.py:280 #, python-format msgid "Partnered with channel %s" msgstr "Associer au canal %s" #: python/preferences.py:432 msgid "A label so you may describe briefly the role of this audio channel." msgstr "Un label décrivant brièvement le rôle de ce canal audio." #: python/preferences.py:464 msgid "The signal processing mode." msgstr "Mode de traitement du signal" #. TC: A frame heading. The channel opener is selected within. #: python/preferences.py:468 msgid "Channel Opener" msgstr "Ouvreur de canal" #: python/preferences.py:471 msgid "" "This controls the allocation of front panel open/unmute buttons. Having one " "button control multiple microphones can save time." msgstr "" "Contrôle l'allocation des boutons Ouvrir/DéMuter du paneau principal. Avoir " "un bouton pour contrôler plusieurs micro peut faire gagner du temps." #. TC: Spinbutton label text. #: python/preferences.py:478 msgid "Main Panel Button" msgstr "Boutton du paneau principal" #: python/preferences.py:495 msgid "This:" msgstr "Ceci :" #: python/preferences.py:504 msgid "Open" msgstr "Ouvrir" #: python/preferences.py:517 msgid "Stereo Panning" msgstr "Panoramique Stéréo" #. TC: A set of controls that perform audio signal matching. #: python/preferences.py:530 msgid "Signal Matching" msgstr "Correspondance de signal" #: python/preferences.py:531 msgid "" "These controls are provided to obtain a decent match between the two " "microphones." msgstr "" "Ces contrôles sont mis à disposition pour obtenir une correction de gain " "convenable entre les micros." #: python/preferences.py:540 msgid "Relative Gain (dB)" msgstr "Gain relatif (dB)" #. TC: Mic audio phase inversion control. #: python/preferences.py:545 python/preferences.py:550 msgid "Invert Signal" msgstr "Invercer le signal" #: python/preferences.py:551 python/preferences.py:571 #: python/preferences.py:667 msgid "" "Useful for when microphones are cancelling one another out, producing a " "hollow sound." msgstr "" "Utile lorsque les micros s'annulent mutuellement provoquant un son caverneux." #. TC: Control whether to mix microphone audio to the DJ mix. #: python/preferences.py:554 msgid "In The DJ's Mix" msgstr "Dans le mix du DJ" #: python/preferences.py:555 python/preferences.py:577 #: python/preferences.py:677 msgid "" "Make the microphone audio audible in the DJ mix. This may not always be " "desirable." msgstr "" "Rendre le micro audio audible dans le mix DJ. Ce n'est pas toujour désiré." #: python/preferences.py:563 msgid "Basic Controls" msgstr "Contrôles de base" #: python/preferences.py:564 python/preferences.py:619 msgid "Boost/Cut (dB)" msgstr "Augmenter/Couper (dB)" #: python/preferences.py:585 msgid "High Pass Filter" msgstr "Filtre passe haut" #: python/preferences.py:586 python/preferences.py:601 #: python/preferences.py:611 msgid "Cutoff Frequency" msgstr "Fréquence de coupure" #. TC: User can set the number of filter stages. #: python/preferences.py:590 msgid "Stages" msgstr "Passes" #: python/preferences.py:593 msgid "" "Frequency in Hertz above which audio can pass to later stages. Use this " "feature to restrict low frequency sounds such as mains hum. Setting too high " "a level will make your voice sound thin." msgstr "" "La fréquence en Hertz au dessus de laquelle l'audio peut passer à l'étape " "suivante. Utilisez cette fonctionalité pour restreindre les basses " "fréquencestelles que les humms. En paramêtrant un niveau trop haut, la voix " "sonnera aiguë." #. TC: this is the treble control. HF = high frequency. #: python/preferences.py:598 msgid "HF Detail" msgstr "Détails HF" #: python/preferences.py:605 msgid "You can use this to boost the amount of treble in the audio." msgstr "Vous pouvez l'utiliser pour augmenter le taux d'aiguës dans l'audio." #. TC: this is the bass control. LF = low frequency. #: python/preferences.py:608 msgid "LF Detail" msgstr "Détails LF" #: python/preferences.py:615 msgid "You can use this to boost the amount of bass in the audio." msgstr "Vous pouvez l'utiliser pour augmenter le taux de basses dans l'audio." #. TC: lookahead brick wall limiter. #: python/preferences.py:618 msgid "Limiter" msgstr "Limiteur" #. TC: this is the peak signal limit. #: python/preferences.py:623 msgid "Upper Limit" msgstr "Limite supérieure" #: python/preferences.py:625 msgid "" "A look-ahead brick-wall limiter. Audio signals are capped at the upper limit." msgstr "" "Un limiteur prédictif. Les signaux audio sont bloqués à la limite supérieure." #: python/preferences.py:628 msgid "Noise Gate" msgstr "Noise Gate" #. TC: noise gate triggers at this level. #: python/preferences.py:630 msgid "Threshold" msgstr "Profondeur" #. TC: negative gain when the noise gate is active. #. TC: The de-esser attenuation in ess-detected state. #: python/preferences.py:634 python/preferences.py:644 msgid "Gain" msgstr "Gain" #: python/preferences.py:636 msgid "" "Reduce the unwanted quietest sounds and background noise which you don't " "want your listeners to hear with this." msgstr "" "Réduit les sons faibles non désirés et le bruit de fond que vous ne désirez " "transmettre aux auditeurs." #: python/preferences.py:639 msgid "De-esser" msgstr "De-esser" #. TC: Bias has a numeric setting. #: python/preferences.py:641 msgid "Bias" msgstr "Bias" #: python/preferences.py:646 msgid "" "Reduce the S, T, and P sounds which microphones tend to exaggerate. Ideally " "the Bias control will be set low so that the de-esser is off when there is " "silence but is set high enough that mouse clicks are detected and suppressed." msgstr "" "Réduit les sons S, T et P que les micros ont tendance à exagérer. " "Idéallement le contrôle du Bias sera mis très bas de façon à ce que le de-" "esseur soit inopérant lorsqu'il y a du silence mais suffisament haut pour " "que les clics de la souris soient détectés et éliminés." #: python/preferences.py:651 msgid "Ducker" msgstr "Atténuateur" #: python/preferences.py:652 msgid "Release" msgstr "Relâche" #: python/preferences.py:655 msgid "Hold" msgstr "Maintenu" #: python/preferences.py:658 msgid "" "The ducker automatically reduces the level of player audio when the DJ " "speaks. These settings allow you to adjust the timings of that audio " "reduction." msgstr "" "L'aténuateur réduit automatiquement le niveau du lecteur audio lorsque le DJ " "parle. Ces paramêtres permettent l'ajustement de la durée de " "l'affaiblissement audio." #: python/preferences.py:662 msgid "Other options" msgstr "Autres options" #: python/preferences.py:669 msgid "Phase Rotator" msgstr "Rotacteur de phase" #: python/preferences.py:672 msgid "" "This feature processes the microphone audio so that it sounds more even. The " "effect is particularly noticable on male voices." msgstr "" "Cette fonctionalité traite le micro pour qu'il paraisse plus présent. Cet " "effet est plus audible avec les voix mâles." #: python/preferences.py:855 msgid "The volume control for the left music player." msgstr "Contrôle de volume du lecteur de gauche." #. TC: preferences window title. #: python/preferences.py:911 msgid "IDJC Preferences" msgstr "Préférences de IDJC" #. TC: The DJ's sound level controller. #: python/preferences.py:936 msgid "DJ Audio Level" msgstr "Niveau audio DJ" #: python/preferences.py:948 msgid "This adjusts the sound level of the DJ audio." msgstr "Ajuste le niveau sonore du canal audio DJ." #. TC: The alarm sound level. #: python/preferences.py:953 msgid "Alarm Level" msgstr "Niveau de l'alarme" #: python/preferences.py:967 msgid "Music Loudness Compensation" msgstr "Compensation Loudness" #: python/preferences.py:965 #, python-format msgid "" "This adjusts the sound level of the DJ alarm. Typically this should be set " "close to the dj audio level when using the '%s' feature, otherwise a bit " "louder." msgstr "" "Ceci ajuste le niveau du son de l'alarme DJ. Normalement ce doit être aux " "alentours du niveau audio du DJ lorsque la fonction «%s» est utilisée, ou " "sinon un petit peu plus fort." #: python/preferences.py:973 msgid "Player Resample Quality" msgstr "Qualité de rééchantillonnage du lecteur" #: python/preferences.py:979 msgid "" "This adjusts the quality of the audio resampling method used whenever the " "sample rate of the music file currently playing does not match the sample " "rate of the JACK sound server. Best mode offers the best sound quality but " "also uses the most CPU (not recommended for systems built before 2006). All " "these modes provide adequate sound quality." msgstr "" "Ajuste la qualité de la méthode de rééchantillonnage audio utilisée lorsque " "la fréquence du fichier lu ne corresponds pas à celle nécessaire au serveur " "JACK. Les meilleurs modes offrent une meilleur qualité sonore mais consoment " "aussi plus de puissance CPU (non recommendé pour les systèmes d'avant 2006). " "Tous ces modes donne une qualité correcte." #: python/preferences.py:987 msgid "Best" msgstr "Meilleure" #: python/preferences.py:996 python/format.py:521 msgid "Medium" msgstr "Moyenne" #: python/preferences.py:1005 msgid "Fast" msgstr "Rapide" #. TC: the set of features - section heading. #: python/preferences.py:1020 msgid "Feature Set" msgstr "Liste de fonctionalités" #. TC: Start in the full featured user interface mode. #: python/preferences.py:1032 msgid "Start Full" msgstr "Démarrer avec tout" #: python/preferences.py:1037 python/preferences.py:1045 msgid "Indicates which mode IDJC will be in when launched." msgstr "Indique quel sera le mode de IDJC au démarrage." #. TC: Start in a reduced user interface mode. #: python/preferences.py:1040 msgid "Start Mini" msgstr "Démarrer avec le minimum" #: python/preferences.py:1053 msgid "Fully Featured" msgstr "Toutes les fonctionalités" #: python/preferences.py:1058 msgid "Run in full functionality mode which uses more CPU power." msgstr "" "Exécuter dans le mode toutes fonctionalités qui utilise plus de puissance " "CPU." #: python/preferences.py:1060 msgid "Basic Streamer" msgstr "Streamer de base" #: python/preferences.py:1064 msgid "" "Run in a reduced functionality mode that lowers the burden on the CPU and " "takes up less screen space." msgstr "" "Exécuter dans le mode fonctionalités réduites qui utilise moins de puissance " "CPU et utilise moins d'espace à l'écran." #: python/preferences.py:1072 msgid "These settings take effect after restarting" msgstr "Ces paramêtres ne prennent effet qu'après un redémarrage." #: python/preferences.py:1093 msgid "Reserve 24 sound effects slots" msgstr "Réserver 24 slots d'effets sonores" #: python/preferences.py:1094 msgid "Only 12" msgstr "Seulement 12" #: python/preferences.py:1106 msgid "Audio input channels" msgstr "Canaux audio en entrée" #: python/preferences.py:1111 msgid "Simultaneous stream(s)" msgstr "Transmission(ws) simultanée(s)" #: python/preferences.py:1117 msgid "Simultaneous recording(s)" msgstr "Enregistrement(s) simultané(s)" #: python/preferences.py:1171 msgid "Fill channel meter void space" msgstr "Remplir l'espace libre du vu-mêtre du canal" #: python/preferences.py:1183 msgid "Player Loudness Normalisation" msgstr "Normalisation du Loudness du lecteur" #: python/preferences.py:1194 msgid "Indicate which tracks have loudness metadata" msgstr "Indique quelles pistes ont une métadonnée de Loudness." #: python/preferences.py:1195 msgid "" "Shows a marker in the playlists next to each track. Either a green circle or " "a red triangle." msgstr "" "Affiche un marqueur à côté de chaque piste dans les listes de lecture. Soit " "un cercle vert, soit un triangle rouge." #: python/preferences.py:1203 msgid "Adjust playback volume in dB" msgstr "Ajuste le volume de rendu en dB" #: python/preferences.py:1204 msgid "Effective only on newly started tracks." msgstr "Effectif uniquement pour les pistes nouvellement jouées." #: python/preferences.py:1210 msgid "R128" msgstr "R128" #: python/preferences.py:1214 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB higher than the ReplayGain setting." msgstr "" "Il peut ne pas être souhaitable d'utiliser le volume par défaut puisqu'il " "est plutot bas. Il doit se situer 4 ou 5 dB plus haut que le réglage de Gain " "Replay." #: python/preferences.py:1219 msgid "ReplayGain" msgstr "Gain Replay" #: python/preferences.py:1223 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB lower than the R128 setting." msgstr "" "Il peut ne pas être souhaitable d'utiliser le volume par défaut puisqu'il " "est plutot bas. Il doit se situer 4 ou 5 dB plus bas que le réglage du R128." #: python/preferences.py:1228 msgid "Untagged" msgstr "Non taggé" #: python/preferences.py:1232 msgid "" "Set this so that any unmarked tracks are playing at a roughly similar " "loudness level as the marked ones." msgstr "" "Cocher pour que toutes les pistes non taggés soient jouées approximativement " "au même volume que celle qui le sont." #: python/preferences.py:1241 msgid "A master level control for the media players." msgstr "Un contrôle maitre pour les Lecteurs." #: python/preferences.py:1252 msgid "Recorder Filename (excluding the file extension)" msgstr "Non du fichier d'enregistrement (sans extention)" #: python/preferences.py:1253 msgid "" "The specifiers are $r for the number of the recorder with the rest being " "documented in the strftime man page.\n" "Users may wish to alter this to make filenames that are compatible with " "particular filesystems." msgstr "" "Les spécifications sont $r pour le numéro d'enregistrement, le reste étant " "documenté dans la page de manuel de strftime.\n" "Les utilisateurs peuvent modifier ceci pour rendre les noms de fichiers " "compatibles avec certains systèmes de fichiers." #: python/preferences.py:1270 msgid "Miscellaneous Features" msgstr "Fonctionalités diverses" #: python/preferences.py:1279 msgid "Trim quiet song endings and trailing silence" msgstr "Eliminer les silences de début et de fin de pistes" #: python/preferences.py:1285 msgid "End tracks containing long passages of silence" msgstr "Terminer les pistes contenant de long segments muets" #: python/preferences.py:1291 msgid "Enable the main-player speed/pitch controls" msgstr "Activer les contrôles de tonalité/vitesse du lecteur principal" #: python/preferences.py:1295 msgid "" "This option causes some extra widgets to appear below the playlists which " "allow the playback speed to be adjusted from 25% to 400% and a normal speed " "button." msgstr "" "Cette option fait apparaitre quelques widgets sous les listes de lecture " "pour permettre l'ajustement de la vitesse entre 25 rt 400% ainsi qu'un " "bouton vitesse normale." #: python/preferences.py:1300 msgid "Separate left/right player volume faders" msgstr "Séparrer les curseurs de volume gauche et droite" #: python/preferences.py:1304 msgid "" "Select this option to use an independent volume fader for the left and right " "music players." msgstr "" "Choisir cette option pour avoir des boutons de fader indépendants pour les " "lecteurs de gauche et de droite." #: python/preferences.py:1308 msgid "Enlarge the time elapsed/remaining windows" msgstr "Elargir les fenêtres de temps écoulé/restant" #: python/preferences.py:1312 msgid "" "The time elapsed/remaining windows sometimes don't appear big enough for the " "text that appears in them due to unusual DPI settings or the use of a " "different rendering engine. This option serves to fix that." msgstr "" "Les fenêtres de temps écoulé/restant n'apparaissent parfois pas assez larges " "pour contenir tout le texte pour cause de DPI inabituel ou d'un moteur de " "rendu différent. Cette option peut remédier à ce défaut." #: python/preferences.py:1318 msgid "Sound an alarm when the music is due to end" msgstr "Jouer une alarme lorsque la musique arrive à sa fin" #: python/preferences.py:1321 msgid "" "An alarm tone alerting the DJ that dead-air is just nine seconds away. This " "also works when monitoring stream audio but the alarm tone is not sent to " "the stream.\n" "\n" "JACK freewheel mode will also be automatically disengaged." msgstr "" "Une alarme alerte le DJ lorsque la durée de diffusion restante atteint 9 " "secondes. Fonctionne également sur le monitoring mais la tonalité n'est pas " "diffusée sur le flux.\n" "\n" "Le mode freewheel de JACK est également désengagé automatiquement." #: python/preferences.py:1331 msgid "Apply dither to 16 bit PCM playback" msgstr "Appliquer un adoucissement au rendu 16 bits PCM" #: python/preferences.py:1335 msgid "" "This feature maybe improves the sound quality a little when listening on a " "24 bit sound card." msgstr "" "Cette fonctionalité peut augmenter légèrement la qualité lors de l'écoute " "sur une carte son 24bit" #: python/preferences.py:1338 msgid "Enable tooltips" msgstr "Activer les bulles d'aide" #: python/preferences.py:1342 msgid "" "This, what you are currently reading, is a tooltip. This feature turns them " "on or off." msgstr "" "Ce que vous lisez actuellement est une bulle d'aide. Cette fonctionalité les " "dés/active. " #: python/preferences.py:1361 msgid "Player Settings At Startup" msgstr "Configuration de démarrage du lecteur" #: python/preferences.py:1372 msgid "Restore the previous session" msgstr "Restaurer la session précédente" #: python/preferences.py:1377 msgid "" "When starting IDJC most of the main window settings will be as they were " "left. As an alternative you may specify below how you want the various " "settings to be when IDJC starts." msgstr "" "Au démarrage de IDJC la plupart des paramètres de la fenêtre principale " "resteront comme vous les aviez laissés. Comme alternative, vous pouvez " "spécifier ci-dessous comment ils doivent être initialisés." #: python/preferences.py:1387 msgid "Player 1" msgstr "Lecteur 1" #: python/preferences.py:1389 msgid "Player 2" msgstr "Lecteur 2" #. TC: DJ hears the stream mix. #: python/preferences.py:1417 msgid "Monitor Stream Mix" msgstr "Moniteur du stream Mixé" #. TC: A heading label for miscellaneous settings. #: python/preferences.py:1428 msgid "General" msgstr "Général" #: python/preferences.py:1478 msgid "VoIP panning + mono downmix" msgstr "Placement VoIP + réduction mono" #. TC: Keyboard and MIDI bindings configuration. #: python/preferences.py:1492 msgid "Bindings" msgstr "Scorciatoie" #: python/preferences.py:1540 msgid "Licence" msgstr "Licence" #: python/preferences.py:1563 msgid "Contributors" msgstr "Collaborateurs" #: python/preferences.py:1570 msgid "Translators" msgstr "Traducteurs" #: python/preferences.py:1575 msgid "Build Info" msgstr "" #: python/preferences.py:1592 msgid "About" msgstr "Concernant…" #: python/sourceclientgui.py:75 msgid "Disabled" msgstr "" #: python/sourceclientgui.py:75 #, fuzzy msgid "Auto" msgstr "_Auto" #: python/sourceclientgui.py:75 msgid "Auto, no plaintext" msgstr "" #: python/sourceclientgui.py:76 msgid "RFC2818" msgstr "" #: python/sourceclientgui.py:76 msgid "RFC2817" msgstr "" #: python/sourceclientgui.py:96 msgid "Insert Attribute" msgstr "Insérer un attribut" #: python/sourceclientgui.py:140 msgid "Icecast 2 Master" msgstr "Icecast 2 Maitre" #: python/sourceclientgui.py:140 msgid "Shoutcast Master" msgstr "Shoutcast Maitre" #: python/sourceclientgui.py:141 msgid "Icecast 2 Stats/Relay" msgstr "Icecast 2 Stats/Relais" #: python/sourceclientgui.py:141 msgid "Shoutcast Stats/Relay" msgstr "Icecast 2 Stats/Relais" #: python/sourceclientgui.py:144 msgid "Enter new server connection details" msgstr "Insérer de nouveaux détails concernant la connexion au serveur" #: python/sourceclientgui.py:164 msgid "Edit existing server connection details" msgstr "Editer les détails de la connexion au serveur" #. TC: Dialog title bar text. #: python/sourceclientgui.py:218 msgid "Certificate Authority Directory" msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:232 msgid "Certificate Authority File" msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:246 msgid "TLS Client Certificate" msgstr "" #: python/sourceclientgui.py:257 msgid "This server is to be scanned for audience figures" msgstr "Ce serveur doit être scanné pour les stats d'audience" #: python/sourceclientgui.py:270 msgid "Server type" msgstr "Type de serveur" #: python/sourceclientgui.py:270 msgid "Port number" msgstr "Numéro du port" #: python/sourceclientgui.py:271 msgid "Mount point" msgstr "Point de montage" #: python/sourceclientgui.py:271 msgid "Login name" msgstr "Nome utente" #: python/sourceclientgui.py:272 msgid "TLS" msgstr "" #: python/sourceclientgui.py:272 #, fuzzy msgid "CA directory" msgstr "Sélectionner un dossier de média" #: python/sourceclientgui.py:272 msgid "CA file" msgstr "" #: python/sourceclientgui.py:272 msgid "Client cert" msgstr "" #: python/sourceclientgui.py:556 msgid "Encoder Format Not Set/Compatible" msgstr "Format d'encodage non défini/incompatible" #. TC: Connection button text when no details have been entered. #: python/sourceclientgui.py:559 msgid "No Master Server Configured" msgstr "Aucun serveur maitre n'es configuré" #: python/sourceclientgui.py:761 msgid "" "A table of servers with which to connect. Only one master server can be " "added for the purpose of streaming. All other servers will appear below the " "master server in the list for the purpose of stats collection which can be " "toggled on a per server basis." msgstr "" "Une table de serveurs auxquels se connecter. Seul le serveur maitre peut " "être ajouté dans le but de streaming. Tous les autres serveurs apparaitrons " "sous le serveur maitre pour les statistiques, qui peuvent être occultés par " "serveurs." #: python/sourceclientgui.py:777 msgid "Hostname/IP address" msgstr "Hôte/Adresse IP" #. TC: Mount point is a technical term in relation to icecast servers. #: python/sourceclientgui.py:790 msgid "Mount point " msgstr "Point de montage " #. TC: This is the listener count heading. #: python/sourceclientgui.py:799 msgid "Listeners" msgstr "Auditeurs" #: python/sourceclientgui.py:814 msgid "The sum total of listeners in this server tab." msgstr "Nombre total d'auditeurs pour cet onglet serveur" #: python/sourceclientgui.py:841 msgid "Never" msgstr "Jamais" #: python/sourceclientgui.py:844 msgid "Always" msgstr "Toujours" #: python/sourceclientgui.py:846 msgid "If connected" msgstr "Si connecté" #: python/sourceclientgui.py:1102 msgid "Custom user agent string" msgstr "User agent personnalisé" #: python/sourceclientgui.py:1109 msgid "" "Set this on the occasion that the server or its firewall specifically " "refuses to allow libshout based clients." msgstr "" "A configurer au cas ou le serveur ou le pare-feux refuse spécialement " "d'autoriser les clients basés sur libshout." #: python/sourceclientgui.py:1114 msgid "If the connection breaks reconnect to the server" msgstr "Si la connexion est interrompue, se reconnecter au sserveur" #. TC: Label for a comma separated list of delay times. #: python/sourceclientgui.py:1124 msgid "Delay times" msgstr "Temps de délais" #: python/sourceclientgui.py:1128 msgid "" "A comma separated list of delays in seconds between reconnection attempts. " "Note that bad values or values less than 5 will be interpreted as 5." msgstr "" "Une liste de délais en secondes, séparés par une virgule, entre les " "tentatives de reconnexion. Notez que de mauvaises valeurs ou inférieures à 5 " "seront interprétées comme 5." #: python/sourceclientgui.py:1134 msgid "Repeat the sequence of delays indefinitely." msgstr "Répéter la saquence de délais indéfiniment." #. TC: User specifies no dialog box to be shown. #: python/sourceclientgui.py:1137 msgid "Quiet" msgstr "Muet" #: python/sourceclientgui.py:1139 msgid "Keep the reconnection dialogue box hidden at all times." msgstr "Laisser la boite de reconnexion cachée tout le temps." #: python/sourceclientgui.py:1144 msgid "The contingency plan upon the stream buffer becoming full is..." msgstr "Le plan d'action lorsque le tampon de streaming est plein est…" #: python/sourceclientgui.py:1153 msgid "Discard audio data for as long as needed." msgstr "Laisser tomber les données audio pour la durée nécessaire." #: python/sourceclientgui.py:1155 msgid "Assume the connection is beyond saving and reconnect." msgstr "" "Assumer que la connexion est interrompue, se déconnecter et se reconnecter." #: python/sourceclientgui.py:1442 python/format.py:1227 msgid "Shoutcast" msgstr "Shoucast" #: python/sourceclientgui.py:1483 msgid "[Metadata suppressed]" msgstr "[Métadonnée supprimmée]" #: python/sourceclientgui.py:1562 msgid "Individual Controls" msgstr "Contrôles individuels" #: python/sourceclientgui.py:1576 msgid "" "Connect to or disconnect from the radio server. If the button does not stay " "in, the connection failed for some reason.\n" "\n" "If the button is greyed out it means your settings within the 'Connections' " "and 'Format' sections are either incompatible with one another or are " "incomplete.\n" "\n" "In order to stream a master server needs to be specified in the " "configuration section below and must be capable of handling the chosen " "streaming format." msgstr "" "Se connecter ou se déconnecter du serveur radio. Si le bouton ne reste pas " "enclanché, la connexion a échouée pour une raison quelconque.\n" "\n" "Si le bouton est grisé, cela indique que les paramêtres dans les sections " "«Connexion» et «Formats» sont soit incompatibles soit erronnées.\n" "Pour pouvoir fonctionner, un serveur maitre doit être spécifié et doit être " "capable de sélectionner le format du flux." #. TC: Kick whoever is on the server. #: python/sourceclientgui.py:1593 msgid "Kick Source" msgstr "Kick Source" #: python/sourceclientgui.py:1595 msgid "" "This will disconnect whoever is currently using the server, freeing it up " "for personal use." msgstr "" "Déconnectera tous ceux qui utilisent le serveurs, le libérant ainsi pour une " "utilisation privée." #: python/sourceclientgui.py:1605 msgid "Timer:" msgstr "Timer :" #: python/sourceclientgui.py:1609 msgid "From" msgstr "Depuis" #: python/sourceclientgui.py:1610 msgid "" "Automatically connect to the server at a specific time in 24 hour format, " "midnight being 00:00" msgstr "" "Se connecter à une heure spécifique au format 24 heures, minuit étant 00:00" #: python/sourceclientgui.py:1615 msgid "Kick" msgstr "" #: python/sourceclientgui.py:1617 msgid "Disconnect whoever is using the server just before start time." msgstr "Déconnecter tous ceux qui utilisent le serveur avant de démarrer." #: python/sourceclientgui.py:1626 msgid "To" msgstr "" #: python/sourceclientgui.py:1627 msgid "" "Automatically disconnect from the server at a specific time in 24 hour " "format." msgstr "" "Se déconnecter automatiquement à une heure spécifique au format 24 heures" #: python/sourceclientgui.py:1630 msgid "Fade out" msgstr "Fondu" #: python/sourceclientgui.py:1632 msgid "Fade audio before disconnecting." msgstr "Fondu audio avant la déconnexion." #: python/sourceclientgui.py:1646 msgid "At connect:" msgstr "A la connection :" #. TC: [x] Start player (*) 1 ( ) 2 #: python/sourceclientgui.py:1650 msgid "Start player" msgstr "Démarrer le lecteur" #: python/sourceclientgui.py:1655 msgid "" "Have one of the players start automatically when a radio server connection " "is successfully made." msgstr "" "Pour avoir l'un des lecteurs qui démarre automatiquement lorsque la " "connexion au serveur radio a réussie." #. TC: [x] Start recorder (*) 1 ( ) 2 #: python/sourceclientgui.py:1663 msgid "Start recorder" msgstr "Démarrer l'enregistreur" #: python/sourceclientgui.py:1670 msgid "" "Have a recorder start automatically when a radio server connection is " "successfully made." msgstr "" "Pour démarrer automatiquement un enregistreur lorsqu'une connexion au " "serveur radio est établie." #: python/sourceclientgui.py:1675 python/format.py:530 python/format.py:541 #: python/format.py:552 python/format.py:562 msgid "Metadata" msgstr "Métadonnées" #: python/sourceclientgui.py:1685 msgid "Format String" msgstr "Chaine de format" #. TC: Label for the metadata fallback value. #: python/sourceclientgui.py:1687 msgid "Fallback" msgstr "Fallback" #: python/sourceclientgui.py:1701 msgid "" "You can enter text to accompany the stream here and can specify placemarkers " "%r %t %l %s for the artist, title, album, and songname respectively, or " "leave this text field blank to use the default metadata.\n" "\n" "Songname (%s) is derived from the filename in the absence of sufficient " "metadata, while the other placemarkers will use the fallback text to the " "right.\n" "\n" "When blank, Ogg streams will use the standard Vorbis tags and mp3 will use " "%s." msgstr "" "Vous pouvez entrer un texte pour accompagner le flux et y spécifier des " "emplacements pour les noms d'artiste, de titre, d'album et de chanson, %r %t " "%l %s, ou laisser ce champ vide pour utiliser les métadonnées par défaut.\n" "\n" "Le nom de la chanson (%s) est dérivé du nom de fichier en cas d'absence ou " "d'insuffisance de métadonnées, alors que les autres emplacements utiliseront " "le texte de remplacement à droite.\n" "\n" "Lorsque ce champ est vide, les flux Ogg utiliseront les tags standards " "vorbis et les mp3 utiliseront %s." #: python/sourceclientgui.py:1709 msgid "" "The fallback text to use when %r %t %l metadata is unavailable. See the " "format string to the left." msgstr "" "Texte de remplacement lorsque les métadonnées %r %t %l ne sont pas " "disponibles. voir Chaine de format à gauche." #: python/sourceclientgui.py:1711 msgid "" "Metadata normally updates only on song title changes but you can force an " "immediate update here." msgstr "" "Les métadonnées se mettent à jour lorsque le titre change mais vous pouvez " "aussi forcer leur mise à jour immédiate ici." #: python/sourceclientgui.py:1730 msgid "Configuration" msgstr "Configuration" #: python/sourceclientgui.py:1731 msgid "The controls for configuring a stream." msgstr "Les contrôles pour configurer un flux." #: python/sourceclientgui.py:1739 msgid "Connection" msgstr "Connexion" #: python/sourceclientgui.py:1744 msgid "Format" msgstr "Format" #. TC: Tab heading. User can enter information about the stream here. #: python/sourceclientgui.py:1753 msgid "Stream Info" msgstr "Informations sur le flux" #: python/sourceclientgui.py:1758 msgid "" "Enter your DJ name or station name here. Typically this information will be " "displayed by listener clients." msgstr "" "Saisissez le nom du DJ ou de la station. Typiquement cette information sera " "affichée par les clients des Auditeurs." #: python/sourceclientgui.py:1761 msgid "" "The URL of your radio station. This and the rest of the information below is " "intended for display on a radio station listings website." msgstr "" "L'URL de votre station. Ceci ainsi que les informations suivantes sont " "destinées à l'affichage sur un site listant les stations." #: python/sourceclientgui.py:1766 msgid "A description of your radio station." msgstr "Description de votre station." #: python/sourceclientgui.py:1771 msgid "The musical genres you are likely to play." msgstr "Genres musicaux offerts." #: python/sourceclientgui.py:1774 msgid "Make Public" msgstr "Rendre publique" #: python/sourceclientgui.py:1775 msgid "" "Publish your radio station on a listings website. The website in question " "will depend on how the server to which you connect is configured." msgstr "" "Publier votre station sur le site de liste. Le site en question dépends de " "la configuration du serveur auquel vous vous connectez." #: python/sourceclientgui.py:1787 msgid "Genre(s)" msgstr "Genere(s)" #: python/sourceclientgui.py:1798 msgid "Master server admin password" msgstr "Mot de passe administrateur principal" #: python/sourceclientgui.py:1803 msgid "" "This is for kick and stats on Shoutcast master servers that have an " "administrator password. For those that don't leave this blank (the source " "password is sufficient for those)." msgstr "" "Pour kick et stats des serveyurs maitres Soutcast ayant un mot de passe " "d'administration. Pour ceux n'en possédant pas, laissez vide (le mot de " "passe de la source est suffisant pour eux)" #: python/sourceclientgui.py:1812 msgid "Contact Details" msgstr "Détails de contact" #: python/sourceclientgui.py:1816 msgid "Internet Relay Chat connection info goes here." msgstr "Les informations d'IRC viennent ici" #: python/sourceclientgui.py:1819 msgid "Connection info for AOL instant messenger goes here." msgstr "Informations de connexion au messager AOL viennent ici." #: python/sourceclientgui.py:1822 msgid "ICQ instant messenger connection info goes here." msgstr "Les informations concernant le messager ICQ viennent ici." #: python/sourceclientgui.py:1825 msgid "IRC" msgstr "IRC" #: python/sourceclientgui.py:1826 msgid "AIM" msgstr "AIM" #: python/sourceclientgui.py:1827 msgid "ICQ" msgstr "ICQ" #: python/sourceclientgui.py:1837 msgid "Use ISO-8859-1 encoding for fixed metadata" msgstr "" #: python/sourceclientgui.py:1839 msgid "Enable this if sending to a Shoutcast V1 server." msgstr "" #: python/sourceclientgui.py:1843 msgid "Extra Shoutcast" msgstr "Extra Shoutcast" #: python/sourceclientgui.py:1848 msgid "Troubleshooting" msgstr "Résolution des problèmes" #: python/sourceclientgui.py:1979 msgid "Stop recording." msgstr "Arrêter l'enregistrement" #: python/sourceclientgui.py:1981 msgid "" "Start recording.\n" "\n" "If this button is greyed out it could mean either the encoder settings are " "not valid or write permission is not granted on the selected folder." msgstr "" "Démarrer l'enregistrement\n" "\n" "Si le bouton est grisé, cela signifie soit que les paramêtres d'encodage ne " "sont pas corrects ou que les permissions d'écriture ne sont pas obtenues " "pour le dossier de destination." #: python/sourceclientgui.py:1986 msgid "Pause recording." msgstr "Enregistrement en pause" #: python/sourceclientgui.py:2023 msgid "Recording time elapsed." msgstr "Temps d'enregistement écoulé." #. TC: Dialog title bar text. #: python/sourceclientgui.py:2077 msgid "Select the folder to record to" msgstr "Sélection du dossier pour l'enregistrement" #: python/sourceclientgui.py:2088 msgid "" "Choose which stream to record or the 24 bit FLAC option. If the stream isn't " "already running the encoder will be started automatically using whatever " "settings are currently configured." msgstr "" "Sélection du flux à enregistrer ou l'option 24 bits FLAC. Si le flux n'est " "pas en cours de lecture, l'encodage commencera automatiquement quels que " "soient les paramêtres actuellement configurés." #: python/sourceclientgui.py:2092 msgid "" "Choose which directory you want to save to. All file names will be in a " "timestamp format and have either an oga, mp3, or flac file extension. " "Important: you need to select a directory to which you have adequate write " "permission." msgstr "" "Sélection du dossier des sauvegardes Tous les noms de fichiers seront dans " "le format timestamp et auront soit oga mp3 ou flac comme extention. " "Important : vous devez sélectionner un dossier avec les permissions en " "écriture adéquates." #: python/sourceclientgui.py:2199 msgid "Perform operations on multiple servers in unison." msgstr "Effecter des opérations simultanément sur plusieurs serveurs." #: python/sourceclientgui.py:2211 msgid "Connect" msgstr "Connecter" #: python/sourceclientgui.py:2228 msgid "Disconnect" msgstr "Déconnecter" #: python/sourceclientgui.py:2236 msgid "Kick Sources" msgstr "Kick Sources" #: python/sourceclientgui.py:2245 msgid "Metadata:" msgstr "Metadonnées :" #: python/sourceclientgui.py:2275 msgid "Group Controls" msgstr "Contrôles de groupe" #: python/sourceclientgui.py:2782 msgid "Recording Facility Unavailable" msgstr "Fonctionalités d'enregistrement non disponibles" #: python/sourceclientgui.py:2785 msgid "No Recorders Are Correctly Configured" msgstr "Aucun enregistreur configuré correctement" #. TC: Recorder menu format string. #: python/sourceclientgui.py:2798 #, python-brace-format msgid "{numericid} [{source}] > [{directory}]" msgstr "{numericid} [{source}] > [{directory}]" #: python/sourceclientgui.py:2800 msgid "Misconfigured" msgstr "Mal configuré" #: python/sourceclientgui.py:2821 msgid "Streaming Facility Unavailable" msgstr "Fonctionalités de flux non disponibles" #: python/sourceclientgui.py:2823 msgid "No Streams Are Currently Configured" msgstr "Aucun flux actuellement configuré" #: python/sourceclientgui.py:2826 msgid "Group Connect" msgstr "Connexion de groupe" #: python/sourceclientgui.py:2832 msgid "Group Disconnect" msgstr "Déconnetion de groupe" #. TC: Window title bar text. #: python/sourceclientgui.py:2863 msgid "IDJC Output" msgstr "Sortie IDJC" #: python/sourceclientgui.py:2879 msgid "" "Each one of these tabs represents a separate stream recorder. The LED " "indicator colours represent the following: Clear=Stopped Yellow=Paused " "Red=Recording." msgstr "" "Chacun de ces onglets représente un enregistreur de flux. La couleur de la " "LED indique : Eteinte=Arret Jaune=Pause Rouge=Enregistrement." #: python/sourceclientgui.py:2887 msgid "" "Each one of these tabs represents a separate radio streamer. The LED " "indicator colours represent the following: Clear=No connection " "Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to " "a bad connection." msgstr "" "Chacun de ces onglets représente une radio séparée. La couleur de la LED " "indique : Eteinte=Aucune connexion Jaune=En attente d'autentification. " "Verte=Connecté. Clignottante=Perte de paquet du à une mauvaise connexion." #: python/sourceclientgui.py:2905 msgid " Stream " msgstr " Flux " #: python/sourceclientgui.py:2940 msgid "" "A connection to a radio server has " "failed.\n" "\n" "Reconnection will not be attempted." msgstr "" "Une connexion à un serveur radio a " "échouée.\n" "\n" "Aucune tentative de reconnexion ne sera faite." #: python/sourceclientgui.py:2945 msgid "" "A scheduled stream disconnection has " "occurred." msgstr "" "Une déconnexion pré-programmée du flux " "s'est produite." #: python/format.py:419 msgid "Right click for suggested values." msgstr "" #: python/format.py:439 #, fuzzy msgid "Suggested Values" msgstr "Régler la valeur" #: python/format.py:503 #, fuzzy msgid "Pregain" msgstr "Lecteur Régler le gain" #: python/format.py:504 python/format.py:933 msgid "0 dB" msgstr "" #: python/format.py:505 python/format.py:934 msgid "-0.5 dB" msgstr "" #: python/format.py:506 python/format.py:935 msgid "-1.0 dB" msgstr "" #: python/format.py:507 python/format.py:936 msgid "-1.5 dB" msgstr "" #: python/format.py:508 python/format.py:937 msgid "-2.0 dB" msgstr "" #: python/format.py:509 python/format.py:938 msgid "-2.5 dB" msgstr "" #: python/format.py:510 python/format.py:939 msgid "-3.0 dB" msgstr "" #: python/format.py:511 msgid "" "A blanket gain reduction to promote audio quality when using long " "established lossy audio codecs like mp3 with loud audio material.\n" "\n" "ReplayGain makes this feature generally unnecessary and the correct setting " "in that case is 0 dB." msgstr "" #: python/format.py:519 #, fuzzy msgid "Resample Quality" msgstr "Qualité de rééchantillonnage du lecteur" #: python/format.py:520 msgid "Highest" msgstr "La plus élevée" #: python/format.py:522 msgid "Lowest" msgstr "La plus basse" #: python/format.py:523 msgid "" "All of these settings will provide adequate audio quality. The highest " "setting will preserve more of the original audio bandwidth at the expense of " "many CPU cycles." msgstr "" #: python/format.py:531 python/format.py:553 python/format.py:563 #, fuzzy msgid "Suppressed" msgstr "Pressé" #: python/format.py:532 python/format.py:554 msgid "UTF-8" msgstr "" #: python/format.py:533 msgid "Latin1 *" msgstr "" #: python/format.py:534 msgid "" "This affects the stream metadata only. Recordings will use UTF-8 for their " "metadata." msgstr "" #: python/format.py:542 #, fuzzy msgid "Unsupported" msgstr "Média supportaté" #: python/format.py:543 python/format.py:555 msgid "" "Choose whether the stream will carry dynamic metadata. In the case of Ogg " "streams this is important as a great many players can't handle chained Ogg " "streams which result from the metadata updates." msgstr "" #: python/format.py:564 msgid "Latin1" msgstr "" #: python/format.py:565 msgid "Choose whether to send metadata. Recordings will use UTF-8 metadata." msgstr "" #: python/format.py:581 python/format.py:592 python/format.py:603 #: python/format.py:710 python/format.py:838 python/format.py:908 #: python/format.py:917 python/format.py:991 python/format.py:1014 #: python/format.py:1023 python/format.py:1141 python/format.py:1163 msgid "Mode" msgstr "" #: python/format.py:582 python/format.py:593 python/format.py:604 #: python/format.py:711 python/format.py:839 python/format.py:909 #: python/format.py:918 python/format.py:992 python/format.py:1015 #: python/format.py:1024 python/format.py:1142 python/format.py:1164 msgid "Mono" msgstr "" #: python/format.py:583 python/format.py:594 python/format.py:605 #: python/format.py:712 python/format.py:840 python/format.py:910 #: python/format.py:919 python/format.py:993 python/format.py:1016 #: python/format.py:1025 python/format.py:1143 python/format.py:1165 #, fuzzy msgid "Stereo" msgstr "Panoramique Stéréo" #: python/format.py:584 python/format.py:595 python/format.py:606 #: python/format.py:713 msgid "Joint Stereo" msgstr "" #: python/format.py:585 msgid "Joint Stereo is a good choice on streams with low bitrates." msgstr "" #: python/format.py:596 msgid "Due to the high bitrate selected, this codec will only support stereo." msgstr "" #: python/format.py:607 msgid "Due to the low bitrate selected, this codec will only support mono." msgstr "" #: python/format.py:656 python/format.py:666 python/format.py:763 #: python/format.py:773 python/format.py:783 python/format.py:889 #: python/format.py:899 python/format.py:1052 python/format.py:1072 #: python/format.py:1132 msgid "Samplerate" msgstr "" #. TC: Abbreviation of the word, standard. #: python/format.py:677 python/format.py:794 msgid "Std." msgstr "" #. TC: v stands for version. #: python/format.py:679 python/format.py:796 msgid "V 1" msgstr "" #. TC: v stands for version. #: python/format.py:681 python/format.py:798 msgid "V 2" msgstr "" #: python/format.py:682 msgid "" "MPEG2 introduced lower samplerate options and corresponding lower bitrates. " "Choose 2 if those are required." msgstr "" #: python/format.py:689 python/format.py:817 msgid "Quality" msgstr "" #: python/format.py:690 msgid "0 most" msgstr "" #. TC: * means is the recommended setting. #: python/format.py:693 msgid "2 *" msgstr "" #: python/format.py:695 msgid "Higher quality costs more in terms of CPU cycles." msgstr "" #: python/format.py:714 msgid "Joint Stereo is a good choice on streams with low bitrates" msgstr "" #. TC: v stands for version. #: python/format.py:800 msgid "V 2.5" msgstr "" #: python/format.py:807 msgid "Complexity" msgstr "" #: python/format.py:810 msgid "A quality setting that affects how heavily the CPU is used." msgstr "" #: python/format.py:820 msgid "The higher this setting, the higher the bitrate." msgstr "" #: python/format.py:827 msgid "Bandwidth" msgstr "" #: python/format.py:828 msgid "Ultrawide" msgstr "" #: python/format.py:829 msgid "Wide" msgstr "" #: python/format.py:830 msgid "Narrow" msgstr "" #: python/format.py:831 msgid "Essentially a samplerate setting." msgstr "" #: python/format.py:848 msgid "24 bit" msgstr "" #: python/format.py:849 msgid "20 bit" msgstr "" #: python/format.py:850 msgid "16 bit" msgstr "" #: python/format.py:851 msgid "" "24 bit records with the highest level of detail. If file size is a concern " "maybe FLAC is not the right codec." msgstr "" #: python/format.py:858 python/format.py:947 msgid "Variability" msgstr "" #: python/format.py:859 msgid "Constant" msgstr "" #: python/format.py:860 msgid "±10%" msgstr "" #: python/format.py:861 msgid "±20%" msgstr "" #: python/format.py:862 msgid "±30%" msgstr "" #: python/format.py:863 msgid "±40%" msgstr "" #: python/format.py:864 msgid "±50%" msgstr "" #: python/format.py:865 #, fuzzy msgid "This control is for enabling variable bitrate on Vorbis streams." msgstr "Les contrôles pour configurer un flux." #: python/format.py:926 #, fuzzy msgid "Postgain" msgstr "VoIP Régler le gain" #: python/format.py:927 msgid "3.0 dB" msgstr "" #: python/format.py:928 msgid "2.5 dB" msgstr "" #: python/format.py:929 msgid "2.0 dB" msgstr "" #: python/format.py:930 msgid "1.5 dB" msgstr "" #: python/format.py:931 msgid "1.0 dB" msgstr "" #: python/format.py:932 msgid "0.5 dB" msgstr "" #: python/format.py:940 msgid "A gain adjustment for the player to apply." msgstr "" #: python/format.py:948 msgid "CBR *" msgstr "" #: python/format.py:949 msgid "CVBR" msgstr "" #: python/format.py:950 msgid "VBR" msgstr "" #: python/format.py:951 msgid "" "Bitrate variability. Actual VBR operation may require a higher frame size." msgstr "" #: python/format.py:958 msgid "Frame Size" msgstr "" #: python/format.py:959 msgid "60 ms" msgstr "" #: python/format.py:960 msgid "40 ms" msgstr "" #: python/format.py:961 msgid "20 ms" msgstr "" #: python/format.py:962 msgid "A higher frame size may sound better on very low bitrates." msgstr "" #: python/format.py:969 msgid "CPU" msgstr "" #: python/format.py:972 msgid "The encoder complexity setting which affects CPU load." msgstr "" #: python/format.py:1000 python/format.py:1103 python/format.py:1172 msgid "Codec" msgstr "" #: python/format.py:1001 python/format.py:1174 msgid "Vorbis" msgstr "" #: python/format.py:1002 msgid "FLAC" msgstr "" #: python/format.py:1003 msgid "Speex" msgstr "" #: python/format.py:1004 python/format.py:1173 msgid "Opus" msgstr "" #: python/format.py:1007 msgid "Codecs of the Ogg container." msgstr "" #: python/format.py:1053 msgid "96000 Hz" msgstr "" #: python/format.py:1054 msgid "88200 Hz" msgstr "" #: python/format.py:1055 msgid "64000 Hz" msgstr "" #: python/format.py:1056 python/format.py:1073 msgid "48000 Hz" msgstr "" #: python/format.py:1057 python/format.py:1074 msgid "44100 Hz" msgstr "" #: python/format.py:1058 msgid "32000 Hz" msgstr "" #: python/format.py:1059 msgid "24000 Hz" msgstr "" #: python/format.py:1060 msgid "22050 Hz" msgstr "" #: python/format.py:1061 msgid "16000 Hz" msgstr "" #: python/format.py:1062 msgid "12000 Hz" msgstr "" #: python/format.py:1063 msgid "11025 Hz" msgstr "" #: python/format.py:1064 msgid "8000 Hz" msgstr "" #: python/format.py:1065 msgid "7350 Hz" msgstr "" #: python/format.py:1087 msgid "The MP2 option requires IDJC be rebuilt against libtwolame." msgstr "" #: python/format.py:1090 msgid "Enable the MP3 option by installing libmp3lame." msgstr "" #: python/format.py:1093 msgid "The AAC options require IDJC be rebuilt against libav libraries." msgstr "" #: python/format.py:1096 msgid "" "Specific AAC support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" #: python/format.py:1098 msgid "" "Specific AAC+ support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" #: python/format.py:1101 msgid "Codecs of the MPEG family." msgstr "" #: python/format.py:1104 msgid "MP2" msgstr "" #: python/format.py:1105 msgid "MP3" msgstr "" #: python/format.py:1106 msgid "AAC" msgstr "" #: python/format.py:1107 msgid "AAC+ v2" msgstr "" #. TC: Codec family e.g. Xiph/Ogg, MPEG etc. #: python/format.py:1185 msgid "Family" msgstr "" #: python/format.py:1186 msgid "WebM" msgstr "" #. TC: Xiph.org Ogg container format. #: python/format.py:1188 msgid "Xiph/Ogg" msgstr "" #: python/format.py:1189 msgid "MPEG" msgstr "" #: python/format.py:1190 msgid "Codecs have been grouped by standards body and or container format." msgstr "" #: python/format.py:1215 msgid "Capabilities" msgstr "" #: python/format.py:1227 #, fuzzy msgid "Icecast" msgstr "Icecast 2 Maitre" #: python/format.py:1227 #, fuzzy msgid "Recordable" msgstr "Enregistreur" #~ msgid "Playlist types (*.m3u, *.xspf, *.pls)" #~ msgstr "Type de listes de lecture (*.m3u, *.xspf, *.pls)" #~ msgid "File Path Modify" #~ msgstr "Modifier le chemin" #~ msgid "" #~ "The number of characters to strip from the left hand side of media file " #~ "paths." #~ msgstr "" #~ "Nombre de caractères à supprimer de la partie gauche des chemins vers " #~ "lesfichiers média." #~ msgid "The characters to prefix to the media file paths." #~ msgstr "Caractères à ajouter devant les chemins vers les fichiers média." #~ msgid "Connection timer:" #~ msgstr "Timer de connexion :" #~ msgid "Begin" #~ msgstr "Début" #~ msgid "With kick" #~ msgstr "Avec kick" #~ msgid "End" #~ msgstr "Fin" #~ msgid "SSL" #~ msgstr "SSL" #~ msgid "" #~ "Connect to the server using the SSL security protocol.\n" #~ "\n" #~ "This feature is typically offered on different ports than the standard " #~ "connection method and is widespread but not universally available." #~ msgstr "" #~ "Se connecter azu serveur en utilisant le protocol de sécurité SSL.\n" #~ "\n" #~ "Cette fonctionalité est courrament offerte sur un port différent de celui " #~ "utilisé par la méthode standard et est, souvent mais pas toujours, " #~ "disponible." #~ msgid "Released under the GNU General Public License V2.0 or later." #~ msgstr "" #~ "Distribué selon les termes de la GNU General Public License V2.0 ou " #~ "suivantes." #~ msgid "Copyright 2005-2012 Stephen Fairchild and others." #~ msgstr "Copyright 2005-2012 Stephen Fairchild et autres." #~ msgid "Media Players" #~ msgstr "Lecteur média" #~ msgid "MIDI" #~ msgstr "MIDI" #~ msgid "Left Player" #~ msgstr "Lecteur de gauche" #~ msgid "Right Player" #~ msgstr "Lecteur de droite" #~ msgid "Background" #~ msgstr "En fond" #~ msgid "Select which Deck is responsible for the metadata on the stream." #~ msgstr "Sélection de la platine responsable des métadonnées du flux." #~ msgid "Jingles" #~ msgstr "Jingles" #~ msgid "Effects stop all" #~ msgstr "Effets Tout arrêter" #~ msgid "Background tracks set volume" #~ msgstr "Pistes en fond Régler le volume" #~ msgid "Jingles players" #~ msgstr "Lecteur de jingles" #~ msgid "" #~ "When selected the output from this player doesn't mute whenever either of " #~ "the main players are active." #~ msgstr "" #~ "Sélectionné, la sortie de ce lecteur ne se coupe pas quel que soit le " #~ "lecteur actif." #~ msgid "" #~ "Stereo panning is the selection of where an audio source sits from left " #~ "to right within the stereo mix.\n" #~ "\n" #~ "This control maintains constant audio power throughout its range of " #~ "travel, giving -3dB attenuation in both audio channels at the half way " #~ "point.\n" #~ "\n" #~ "If you require 0dB straight down the middle then this feature should be " #~ "turned off." #~ msgstr "" #~ "Le placement stéréo est la position ou se situe une source audio, de " #~ "gauche à droite, dans le mix stéréo.\n" #~ "\n" #~ "Ce contrôle concerve la puissance audio sur toute sa plage de " #~ "fonctionnement, donnant une atténuation de -3dB au point central.\n" #~ "\n" #~ "Si vous avez besoin de concerver 0dB au point central, désactivez cette " #~ "fonctionalité." #~ msgid "Meters" #~ msgstr "Indicateurs" #~ msgid "Indicate which tracks have ReplayGain values" #~ msgstr "Indique quelles pistes possèdent des valeurs de Gain Replay" #~ msgid "Show a marker in the playlists next to each track." #~ msgstr "" #~ "Montre un marqueur dans le texte de la liste de lecture après châque piste" #~ msgid "Adjust playback volume" #~ msgstr "Ajuste le volume de reproduction" #~ msgid "Unmarked tracks assumed gain value" #~ msgstr "Décocher les pistes sans valeur de gain" #~ msgid "" #~ "Set this to the typical track gain values you would expect for the " #~ "programme material you are currently playing. For pop and rock music " #~ "(especially modern studio recordings) this should be about a -8 or -9 and " #~ "classical music around zero." #~ msgstr "" #~ "Configurer la valeur de gain typique que vous désirez pour le matériel en " #~ "cours de lecture. Pour la musique Pop et Rock (surtout isssues des studio " #~ "modernes) cela devrait se situer entre -8 ou -9 et pour le classique aux " #~ "alentours de zéro." #~ msgid "Further gain adjustment" #~ msgstr "Ajustement progressif du gain" #~ msgid "" #~ "For material that is generally loud it is recommended to set this between " #~ "4 and 8 dB however going too high will result in a loss of dynamic range. " #~ "The Str Peak meter is a useful guide for getting this right." #~ msgstr "" #~ "Pour les matériaux généralement forts, il est conseillé d'utiliser entre " #~ "4 et 8dB, toutefois une valeur trop élevée entraine une perte de " #~ "dynamique. Le Picmêtre est utile pour trouver la bonne valeur." idjc-0.8.16/po/remove-potcdate.sin0000644000175000017500000000066012631274031013670 00000000000000# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } idjc-0.8.16/po/idjc.pot0000644000175000017500000030316412711167613011527 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Stephen Fairchild # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: idjc 0.8.16\n" "Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk\n" "POT-Creation-Date: 2016-04-30 18:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: python/prelims/__init__.py:101 #, python-format msgid "" "show this help message and exit -- additional help is available on each of " "the sub-commands for example: \"%(prog)s run --help\" shows the help for the " "run command" msgstr "" #. TC: a command line option help string. #: python/prelims/__init__.py:108 msgid "show the version number and exit" msgstr "" #. TC: a command line option help string. #: python/prelims/__init__.py:112 msgid "" "run the main idjc application -- this is the default when no command line " "options are specified" msgstr "" #. TC: do not translate run. #: python/prelims/__init__.py:116 msgid "-- sub-command: run -- launch the idjc application" msgstr "" #: python/prelims/__init__.py:121 msgid "make a new profile" msgstr "" #. TC: do not translate the word new. #: python/prelims/__init__.py:123 msgid "-- sub-command: new -- make a new profile" msgstr "" #. TC: a command line option help string. #: python/prelims/__init__.py:127 msgid "remove profile(s)" msgstr "" #. TC: do not translate the word rm. #: python/prelims/__init__.py:129 msgid "-- sub-command: rm -- remove profile(s)" msgstr "" #. TC: a command line option help string. #: python/prelims/__init__.py:133 msgid "select which profile is to automatically launch" msgstr "" #. TC: do not translate the word auto. #: python/prelims/__init__.py:136 msgid "-- sub-command: auto -- mark a profile for auto-launch" msgstr "" #: python/prelims/__init__.py:141 msgid "remove auto-launch" msgstr "" #: python/prelims/__init__.py:142 msgid "-- sub-command: noauto -- remove auto-launch" msgstr "" #: python/prelims/__init__.py:147 msgid "list available profiles" msgstr "" #. TC: do not translate the word ls. #: python/prelims/__init__.py:149 msgid "-- sub-command: ls -- list available profiles" msgstr "" #: python/prelims/__init__.py:153 python/prelims/__init__.py:206 #: python/prelims/__init__.py:231 python/prelims/__init__.py:236 #: python/prelims/__init__.py:241 python/prelims/__init__.py:246 msgid "show this help message and exit" msgstr "" #: python/prelims/__init__.py:156 msgid "" "force the appearance or non-appearance of the\n" " profile chooser dialog -- when used with the -p option\n" " the chosen profile is preselected" msgstr "" #: python/prelims/__init__.py:161 msgid "profile_choice" msgstr "" #: python/prelims/__init__.py:162 msgid "" "the profile to use -- overrides the user interface\n" " preferences \"show profile dialog\" option" msgstr "" #. TC: command line help placeholder. #: python/prelims/__init__.py:166 msgid "server_name" msgstr "" #: python/prelims/__init__.py:166 msgid "the named jack sound-server to connect with" msgstr "" #. TC: command line help placeholder. #: python/prelims/__init__.py:170 msgid "session_details" msgstr "" #: python/prelims/__init__.py:171 msgid "" "e.g. 'L1:name' for a named Ladish [L1] session called 'name' -- refer to the " "idjc man page for more details" msgstr "" #: python/prelims/__init__.py:176 msgid "" "At start-up do not make any JACK connections. This option delegates all " "control over restored connections to the session handler." msgstr "" #: python/prelims/__init__.py:181 msgid "" "No JACK ports will be connected except those listed in the session file." msgstr "" #: python/prelims/__init__.py:184 msgid "user interface settings" msgstr "" #: python/prelims/__init__.py:187 msgid "the audio channels to have open at startup" msgstr "" #: python/prelims/__init__.py:190 msgid "the voip mode at startup" msgstr "" #: python/prelims/__init__.py:196 msgid "attempt connection with the specified servers" msgstr "" #: python/prelims/__init__.py:199 msgid "" "kick sources on servers -- note that this will be\n" " done before any server connection attempts are made" msgstr "" #: python/prelims/__init__.py:203 msgid "position the crossfader for the specified player" msgstr "" #. TC: command line help placeholder. #: python/prelims/__init__.py:208 python/prelims/__init__.py:232 msgid "profile_name" msgstr "" #: python/prelims/__init__.py:209 msgid "" "new profile name -- will form part of the dbus\n" " bus/object/interface name and the JACK client ID --\n" " restrictions therefore apply" msgstr "" #: python/prelims/__init__.py:214 msgid "template_profile" msgstr "" #: python/prelims/__init__.py:215 msgid "an existing profile to use as a template" msgstr "" #: python/prelims/__init__.py:218 msgid "icon_pathname" msgstr "" #: python/prelims/__init__.py:219 msgid "pathname to an icon -- defaults to idjc logo" msgstr "" #: python/prelims/__init__.py:223 msgid "nickname" msgstr "" #: python/prelims/__init__.py:224 msgid "the alternate profile name to appear in window title bars" msgstr "" #: python/prelims/__init__.py:227 msgid "description_text" msgstr "" #: python/prelims/__init__.py:228 msgid "a description of the profile" msgstr "" #: python/prelims/__init__.py:233 msgid "the profile(s) to remove" msgstr "" #: python/prelims/__init__.py:238 msgid "the profile to make automatic" msgstr "" #: python/prelims/__init__.py:417 #, python-format msgid "failed to create profile: %s" msgstr "" #: python/prelims/__init__.py:424 #, python-format msgid "failed to delete profile: %s" msgstr "" #: python/prelims/__init__.py:431 #, python-format msgid "auto failed: %s" msgstr "" #: python/prelims/__init__.py:438 #, python-format msgid "noauto failed: %s" msgstr "" #: python/prelims/__init__.py:447 #, python-format msgid "ls failed: %s" msgstr "" #: python/prelims/__init__.py:466 msgid "the specified profile name is not valid" msgstr "" #: python/prelims/__init__.py:473 msgid "profile name is bad" msgstr "" #: python/prelims/__init__.py:476 python/prelims/__init__.py:744 #, python-format msgid "profile %s does not exist" msgstr "" #: python/prelims/__init__.py:479 #, python-format msgid "profile %s is already running" msgstr "" #: python/prelims/__init__.py:492 #, python-format msgid "" "Error while creating new profile.\n" "\n" "%s" msgstr "" #: python/prelims/__init__.py:510 msgid "no profile is set" msgstr "" #: python/prelims/__init__.py:517 msgid "" "failed to grab bus name -- another session by the same name appears to be " "running" msgstr "" #. TC: text appears in the title bar when in session mode. #: python/prelims/__init__.py:590 #, python-brace-format msgid "session={type}:{name}" msgstr "" #: python/prelims/__init__.py:630 #, python-format msgid "specified profile is not valid %s" msgstr "" #: python/prelims/__init__.py:633 #, python-format msgid "specified profile does not exist: %s" msgstr "" #: python/prelims/__init__.py:664 #, python-format msgid "unknown session type: %s: must be one of %s" msgstr "" #: python/prelims/__init__.py:677 #, python-format msgid "directory does not exist: %s" msgstr "" #: python/prelims/__init__.py:708 #, python-format msgid "problem with specified session directory: %s" msgstr "" #: python/prelims/__init__.py:781 #, python-format msgid "Profile %s is active." msgstr "" #: python/prelims/__init__.py:791 #, python-brace-format msgid "Cannot rename profile {0} to {1}, {1} currently exists." msgstr "" #: python/prelims/__init__.py:795 #, python-brace-format msgid "Error during attempt to rename {0} to {1}." msgstr "" #: python/prelims/__init__.py:805 #, python-brace-format msgid "" "Error while editing profile: {0}.\n" "\n" "{1}" msgstr "" #: python/prelims/__init__.py:824 #, python-brace-format msgid "could not get a lock on profile {0}: {1}" msgstr "" #: python/prelims/__init__.py:829 msgid "profile does not exist" msgstr "" #: python/prelims/__init__.py:850 #, python-format msgid "the profile '%s' is in use" msgstr "" #: python/prelims/__init__.py:872 #, python-format msgid "the profile length is too long (max %d characters)" msgstr "" #: python/prelims/__init__.py:874 #, python-format msgid "The profile length is too long (max %d characters)." msgstr "" #: python/prelims/__init__.py:878 msgid "the new profile name is not valid" msgstr "" #: python/prelims/__init__.py:879 msgid "The new profile name is not valid." msgstr "" #: python/prelims/__init__.py:884 msgid "the chosen profile is currently running" msgstr "" #: python/prelims/__init__.py:885 msgid "The chosen profile is currently running." msgstr "" #: python/prelims/__init__.py:890 msgid "temporary directory creation failed" msgstr "" #: python/prelims/__init__.py:891 msgid "Temporary directory creation failed." msgstr "" #: python/prelims/__init__.py:897 #, python-format msgid "the specified template '%s' is not valid" msgstr "" #: python/prelims/__init__.py:899 #, python-format msgid "The specified template '%s' is not valid." msgstr "" #: python/prelims/__init__.py:921 #, python-format msgid "the template profile '%s' does not exist" msgstr "" #: python/prelims/__init__.py:923 #, python-format msgid "The template profile '%s' does not exist." msgstr "" #: python/prelims/__init__.py:933 #, python-format msgid "could not write file %s" msgstr "" #: python/prelims/__init__.py:934 #, python-format msgid "Could not write file %s." msgstr "" #: python/prelims/__init__.py:942 #, python-format msgid "the profile directory '%s' already exists" msgstr "" #: python/prelims/__init__.py:944 #, python-format msgid "The profile directory '%s' already exists." msgstr "" #: python/prelims/__init__.py:947 #, python-format msgid "a non directory path exists at: '%s'" msgstr "" #: python/prelims/__init__.py:948 #, python-format msgid "A Non directory path exists at: '%s'." msgstr "" #: python/prelims/__init__.py:959 msgid "The default profile" msgstr "" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:98 #, python-format msgid "Edit profile %s" msgstr "" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:101 #, python-format msgid "New profile based upon %s" msgstr "" #. TC: data entry dialog window title text. #: python/prelims/profiledialog.py:105 msgid "New profile details" msgstr "" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:125 msgid "Profile name" msgstr "" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:127 python/maingui.py:681 msgid "Icon" msgstr "" #. TC: data entry dialog label text. #. TC: column heading. The profile nicknames. #. TC: IRC nickname data entry label. #: python/prelims/profiledialog.py:129 python/prelims/profiledialog.py:285 #: python/irc.py:452 msgid "Nickname" msgstr "" #. TC: data entry dialog label text. #. TC: column heading. #. TC: Station description. #: python/prelims/profiledialog.py:131 python/prelims/profiledialog.py:288 #: python/irc.py:96 python/playergui.py:334 python/sourceclientgui.py:1786 msgid "Description" msgstr "" #. TC: profile dialog window title text. #: python/prelims/profiledialog.py:243 msgid "IDJC Profile Manager" msgstr "" #: python/prelims/profiledialog.py:277 msgid "Profile" msgstr "" #. TC: column heading. The time a particular profile has been running. #: python/prelims/profiledialog.py:292 msgid "Up-time" msgstr "" #: python/prelims/profiledialog.py:306 msgid "_Auto" msgstr "" #: python/prelims/profiledialog.py:365 #, python-format msgid "" "Delete the data of profile '%s'?\n" "\n" "The profile will remain available with initial settings." msgstr "" #: python/prelims/profiledialog.py:369 #, python-format msgid "" "Delete profile '%s' and all its data?\n" "\n" "The data of deleted profiles cannot be recovered." msgstr "" #. TC: The contents of <> and {} must not be changed. #: python/dialogs.py:198 #, python-brace-format msgid "" "The connection to the server in tab " "{servertab} has failed.\n" "A reconnection attempt will be made in {countdown} seconds.\n" "This is attempt number {attempt} of {maxtries}." msgstr "" #: python/dialogs.py:254 #, python-format msgid "This is attempt number %d. There is no retry limit." msgstr "" #: python/dialogs.py:283 msgid "_Retry Now" msgstr "" #: python/__init__.py.in.in:102 #, python-format msgid "Copyright 2005-%s Stephen Fairchild and others." msgstr "" #: python/__init__.py.in.in:104 msgid "Released under the GNU General Public License V2.0+." msgstr "" #. TC: IRC message subcategory, triggers on new track announcements. #: python/irc.py:82 msgid "Track announce" msgstr "" #. TC: IRC message subcategory, triggered by a timer. #: python/irc.py:84 msgid "Timer" msgstr "" #. TC: IRC message subcategory, triggered once when the stream starts. #: python/irc.py:86 msgid "On stream up" msgstr "" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:88 msgid "On stream down" msgstr "" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:90 msgid "Operations" msgstr "" #. TC: Track artist. #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:902 #: python/songdb.py:1290 python/sourceclientgui.py:99 msgid "Artist" msgstr "" #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:1292 #: python/sourceclientgui.py:99 msgid "Title" msgstr "" #: python/irc.py:95 python/mutagentagger.py:376 python/songdb.py:1291 #: python/sourceclientgui.py:99 msgid "Album" msgstr "" #: python/irc.py:95 python/sourceclientgui.py:100 msgid "Song name" msgstr "" #. TC: The DJ or Stream name. #: python/irc.py:96 python/sourceclientgui.py:1783 msgid "DJ name" msgstr "" #: python/irc.py:96 python/sourceclientgui.py:1784 msgid "Listen URL" msgstr "" #: python/irc.py:96 msgid "Source URI" msgstr "" #. TC: Popup menu item for a GTK text entry widget. #: python/irc.py:139 msgid "Insert Attribute or Colour Code" msgstr "" #. TC: Text formatting style. #: python/irc.py:176 msgid "Bold" msgstr "" #. TC: Text formatting style. #: python/irc.py:178 msgid "Underline" msgstr "" #. TC: Text formatting style. #: python/irc.py:180 msgid "Normal" msgstr "" #: python/irc.py:186 msgid "Colours" msgstr "" #: python/irc.py:403 msgid "Optional data entry field for information only." msgstr "" #. TC: Tab heading text. #: python/irc.py:406 msgid "IRC server" msgstr "" #: python/irc.py:418 msgid "Manual start" msgstr "" #: python/irc.py:420 msgid "Off when restarting IDJC and off initially." msgstr "" #. TC: The IRC network e.g. EFnet. #: python/irc.py:444 msgid "Network" msgstr "" #. TC: label for hostname entry. #: python/irc.py:446 python/sourceclientgui.py:270 msgid "Hostname" msgstr "" #. TC: TCP/IP port number label. #. TC: TCP port number. #: python/irc.py:448 python/sourceclientgui.py:785 msgid "Port" msgstr "" #: python/irc.py:449 msgid "User name" msgstr "" #: python/irc.py:450 python/songdb.py:343 python/sourceclientgui.py:271 msgid "Password" msgstr "" #. TC: Second choice of IRC nickname. #: python/irc.py:454 msgid "Second choice" msgstr "" #. TC: Third choice of IRC nickname. #: python/irc.py:456 msgid "Third choice" msgstr "" #. TC: The IRC user's 'real' name. #: python/irc.py:458 msgid "Real name" msgstr "" #. TC: The NickServ password. #: python/irc.py:460 msgid "NickServ p/w" msgstr "" #. TC: Tooltip to IRC 'User name' field. #: python/irc.py:465 msgid "" "Ideally set this to something even on servers that allow public anonymous " "access." msgstr "" #. TC: tooltip to all IRC nicknames entry fields. #: python/irc.py:475 msgid "" "When a nickname is in use on the target IRC network, during connection these " "IRC nicknames are cycled through, then twice again after appending an " "additional underscore until giving up. This gives IDJC a maximum of nine IRC " "nicknames to try." msgstr "" #: python/irc.py:480 msgid "" "The real name you want to use which will be available regardless of whether " "the network connection was made with the primary nickname or not.\n" "\n" "Ideally set this to something." msgstr "" #: python/irc.py:483 msgid "" "If this value is set an attempt will be made to acquire your first choice " "IRC nickname (if needed) and log in with NickServ@services.\n" "\n" "The use of the NickServ service requires prior nickname registration on the " "network using a regular chat client." msgstr "" #: python/irc.py:511 msgid "" "Permanently delete this server?\n" "\n" "This action will also erase all of its associated messages." msgstr "" #. TC: An IRC channel #chan or user name entry box label. #: python/irc.py:559 msgid "Channels/Users" msgstr "" #: python/irc.py:563 msgid "" "The comma or space separated list of channels and/or users to whom the " "message will be sent.\n" "\n" "Protected channels are included with the form:\n" "#channel:keyword." msgstr "" #. TC: Message text to send to an IRC channel. Widget label. #: python/irc.py:616 msgid "Message" msgstr "" #: python/irc.py:620 msgid "" "The message to send.\n" "\n" "On the pop-up window (mouse right click) are some useful options for " "embedding metadata and for text formatting.\n" "\n" "The window below displays how the message will appear to users of XChat." msgstr "" #. TC: Dialog window title text. #: python/irc.py:673 msgid "IRC track announce" msgstr "" #. TC: Spinbutton label for a delay value. #: python/irc.py:680 msgid "Delay" msgstr "" #. TC: tooltip on a spinbutton widget. #: python/irc.py:682 msgid "" "The delay time of this message.\n" "\n" "Typically listener clients will buffer approximately ten seconds of audio " "data which means they are listening the same amount of time behind the " "actual stream therefore without a delay IRC messages will appear to the " "listener many seconds ahead of the audio.\n" "\n" "This setting will help synchronise the track change with the message." msgstr "" #. TC: Dialog window title text. #: python/irc.py:710 msgid "IRC timed message" msgstr "" #. TC: Spinbutton time offset value label. #: python/irc.py:719 msgid "Offset" msgstr "" #. TC: Spinbutton timed interval duration value label. #: python/irc.py:721 msgid "Interval" msgstr "" #. TC: spinbutton tooltip #: python/irc.py:724 msgid "" "The time offset within the below specified interval at which the message " "will be issued." msgstr "" #: python/irc.py:728 msgid "The interval in seconds of the timed message." msgstr "" #: python/irc.py:967 msgid "This feature requires the installation of python-irc." msgstr "" #. TC: Indicator text: We used a password. #: python/irc.py:1058 msgid "PASSWORD" msgstr "" #. TC: Indicator text: We interact with NickServ. #: python/irc.py:1061 msgid "NICKSERV" msgstr "" #. TC: Indicator text: Server connection started manually. #: python/irc.py:1064 msgid "MANUAL" msgstr "" #. TC: Dialog title text. #: python/irc.py:1089 msgid "IRC stream up message" msgstr "" #. TC: Dialog title text. #: python/irc.py:1091 msgid "IRC stream down message" msgstr "" #. TC: Dialog title text. #: python/irc.py:1093 msgid "IRC station operations" msgstr "" #: python/jingles.py:96 msgid "Stop" msgstr "" #. TC: Column heading, whether to play. #: python/jingles.py:114 python/playergui.py:326 msgid "Play" msgstr "" #: python/jingles.py:123 python/sourceclientgui.py:1132 msgid "Repeat" msgstr "" #: python/jingles.py:136 msgid "Configure" msgstr "" #: python/jingles.py:327 python/playergui.py:4194 msgid "Supported media" msgstr "" #: python/jingles.py:334 #, python-format msgid "Effect %d Config" msgstr "" #: python/jingles.py:349 msgid "Trigger text" msgstr "" #: python/jingles.py:350 msgid "No Name" msgstr "" #: python/jingles.py:357 msgid "Level adjustment (dB)" msgstr "" #: python/jingles.py:432 msgid "Effects volume." msgstr "" #: python/jingles.py:439 msgid "Player headroom that is applied when an effect is playing." msgstr "" #: python/jingles.py:502 msgid "Alternative" msgstr "" #: python/jingles.py:503 msgid "Default" msgstr "" #: python/jingles.py:548 msgid "Effects" msgstr "" #: python/jingles.py:591 #, python-format msgid "Effects %d" msgstr "" #: python/jingles.py:599 python/maingui.py:190 msgid "Background Tracks" msgstr "" #: python/jingles.py:618 msgid "Background Tracks volume." msgstr "" #: python/maingui.py:94 msgid "Show a JACK freewheel control on the main panel" msgstr "" #: python/maingui.py:96 msgid "Toggle JACK freewheel mode." msgstr "" #: python/maingui.py:169 msgid "File" msgstr "" #: python/maingui.py:169 python/preferences.py:1130 msgid "View" msgstr "" #: python/maingui.py:170 msgid "JACK Ports" msgstr "" #: python/maingui.py:170 msgid "Help" msgstr "" #: python/maingui.py:172 python/maingui.py:3688 msgid "Streams" msgstr "" #: python/maingui.py:173 msgid "Recorders" msgstr "" #: python/maingui.py:186 python/maingui.py:225 msgid "Output" msgstr "" #: python/maingui.py:186 msgid "Preferences" msgstr "" #: python/maingui.py:186 msgid "Profiles" msgstr "" #: python/maingui.py:189 python/songdb.py:409 msgid "Music Database" msgstr "" #: python/maingui.py:189 msgid "Channel Meters" msgstr "" #: python/maingui.py:189 msgid "Output Meters" msgstr "" #: python/maingui.py:190 msgid "Tabbed Area" msgstr "" #: python/maingui.py:190 msgid "Button Bar" msgstr "" #: python/maingui.py:224 python/preferences.py:1485 msgid "Channels" msgstr "" #: python/maingui.py:224 msgid "Players" msgstr "" #: python/maingui.py:225 msgid "VoIP" msgstr "" #: python/maingui.py:225 python/maingui.py:3128 msgid "DSP" msgstr "" #: python/maingui.py:225 msgid "Mix" msgstr "" #: python/maingui.py:225 msgid "Misc" msgstr "" #: python/maingui.py:270 msgid "Reset" msgstr "" #: python/maingui.py:273 msgid "Reset the JACK port connections to the default settings." msgstr "" #: python/maingui.py:277 msgid "" "Reset all JACK port connections?\n" "\n" "All currently established connections will be lost\n" "and replaced with defaults." msgstr "" #: python/maingui.py:320 msgid "No compatible ports available." msgstr "" #: python/maingui.py:363 #, python-brace-format msgid "{0} profile={1}:{2} settings saved." msgstr "" #: python/maingui.py:366 #, python-brace-format msgid "{0} session={1}:{2} settings saved." msgstr "" #: python/maingui.py:670 msgid "Text" msgstr "" #: python/maingui.py:673 msgid "The opener button's text." msgstr "" #: python/maingui.py:689 msgid "The opener button's icon." msgstr "" #: python/maingui.py:697 msgid "" "The headroom is the amount by which to reduce player volume when this opener " "is active. Note that the actual amount will be the largest value of all the " "currently open buttons." msgstr "" #: python/maingui.py:702 msgid "The amount of headroom required (dB)" msgstr "" #: python/maingui.py:711 msgid "This button will flash as a reminder to close" msgstr "" #: python/maingui.py:712 msgid "" "After a number of seconds where a main player is active this button's status " "indicator will start to flash and will continue to do so until the button is " "closed or the player stops." msgstr "" #: python/maingui.py:720 msgid "This button is to be treated as a microphone opener" msgstr "" #: python/maingui.py:722 msgid "" "The button will be grouped with the other microphone opener buttons. It will " "be affected by signals to close microphone buttons. Channels associated with " "this button will be mixed differently when using the VoIP modes." msgstr "" #: python/maingui.py:731 msgid "This button will automatically cancel JACK freewheel mode" msgstr "" #: python/maingui.py:733 msgid "" "This should be set for all buttons that control input from a live sound " "source or device." msgstr "" #: python/maingui.py:736 msgid "Button Open Triggers" msgstr "" #: python/maingui.py:743 msgid "Playlist advance button" msgstr "" #: python/maingui.py:744 python/maingui.py:745 #, python-format msgid "'%s' control" msgstr "" #. TC: Insert playlist control to stop the player. #: python/maingui.py:744 python/playergui.py:4457 msgid "Player Stop" msgstr "" #. TC: Insert playlist control to stop the player. #: python/maingui.py:745 python/playergui.py:4464 msgid "Player Stop 2" msgstr "" #: python/maingui.py:746 msgid "Announcements" msgstr "" #: python/maingui.py:758 msgid "When opened close these other buttons" msgstr "" #: python/maingui.py:769 msgid "Shell Command" msgstr "" #: python/maingui.py:770 msgid "" "Mostly useful issuing 'amixer' commands, in particular for setting capture." msgstr "" #: python/maingui.py:790 msgid "On open" msgstr "" #: python/maingui.py:791 msgid "On close" msgstr "" #: python/maingui.py:835 msgid "Main Panel Opener Buttons" msgstr "" #: python/maingui.py:847 msgid "Indicate button numbers and associated channel numbers" msgstr "" #: python/maingui.py:849 msgid "A useful feature to have switched on while allocating channel openers." msgstr "" #: python/maingui.py:855 msgid "Status Indicator Appearance" msgstr "" #: python/maingui.py:858 msgid "" "Each opener button has two vertical bars at the side to make the button " "state more apparent. These settings control their appearance." msgstr "" #: python/maingui.py:867 python/format.py:847 msgid "Width" msgstr "" #: python/maingui.py:874 msgid "Opened" msgstr "" #: python/maingui.py:878 python/preferences.py:503 python/preferences.py:505 msgid "Closed" msgstr "" #: python/maingui.py:883 msgid "Remind" msgstr "" #. TC: A placeholder text for when there are no opener buttons. #: python/maingui.py:1064 msgid "No Channel Opener Buttons" msgstr "" #: python/maingui.py:1353 msgid "" "This indicates the state of the various streams. Flashing means stream " "packets are being discarded because of network congestion. Partial red means " "the send buffer is partially full indicating difficulty communicating with " "the server. Green means everything is okay." msgstr "" #: python/maingui.py:1376 msgid "The combined total number of listeners in all server tabs." msgstr "" #. TC: Record as in, to make a recording. #: python/maingui.py:1824 python/sourceclientgui.py:2874 msgid "Record" msgstr "" #: python/maingui.py:2646 msgid "Confirmation to quit IDJC is required." msgstr "" #: python/maingui.py:2650 msgid "All active recordings and radio streams will terminate." msgstr "" #: python/maingui.py:2652 msgid "All of the active radio streams will terminate." msgstr "" #: python/maingui.py:2654 msgid "All active recordings will cease." msgstr "" #. TC: Popup menu item, wipes away the tracks played history text. #: python/maingui.py:2920 python/maingui.py:3352 msgid "Remove Contents" msgstr "" #: python/maingui.py:3075 msgid "Renameable Labels" msgstr "" #: python/maingui.py:3099 msgid "Main Players" msgstr "" #: python/maingui.py:3152 msgid "Mix voice over IP audio to the output stream." msgstr "" #: python/maingui.py:3165 msgid "Mix voice over IP audio to the DJ only." msgstr "" #: python/maingui.py:3192 msgid "" "This button steps through the active playlist, pausing between tracks. The " "active playlist is defined by the placement of the crossfader." msgstr "" #: python/maingui.py:3237 python/preferences.py:873 msgid "The volume control shared by both music players." msgstr "" #: python/maingui.py:3248 msgid "The volume control for the right music player." msgstr "" #: python/maingui.py:3276 msgid "VoIP level adjustment. 0dB gain is at the mid point." msgstr "" #: python/maingui.py:3299 msgid "The stream volume level to send to the voice over IP connection." msgstr "" #: python/maingui.py:3326 python/preferences.py:1413 msgid "Tracks Played" msgstr "" #: python/maingui.py:3397 python/maingui.py:3399 python/maingui.py:3423 msgid "Monitor Mix" msgstr "" #: python/maingui.py:3406 python/maingui.py:3423 python/playergui.py:4398 msgid "DJ" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/maingui.py:3409 python/maingui.py:3423 python/midicontrols.py:155 #: python/midicontrols.py:1507 python/playergui.py:4390 #: python/sourceclientgui.py:2882 msgid "Stream" msgstr "" #. TC: Context {0}, {1}, {2} = Monitor Mix, Stream, DJ #. TC: Or whatever they become translated to. #: python/maingui.py:3419 #, python-brace-format msgid "" "In IDJC there are are two audio paths and this '{0}' control toggles between " "them. When '{1}' is active you can hear what the listeners are hearing " "including the effects of the crossfader. '{0}' needs to be set to '{2}' in " "order to make proper use of the VoIP features." msgstr "" #. TC: Dropdown box title text widget. #: python/maingui.py:3432 python/maingui.py:3434 msgid "Metadata Source" msgstr "" #. TC: The chosen source of track metadata. #: python/maingui.py:3440 python/playergui.py:4103 msgid "Playlist 1" msgstr "" #. TC: The chosen source of track metadata. #: python/maingui.py:3442 python/playergui.py:4104 msgid "Playlist 2" msgstr "" #. TC: The chosen source of track metadata. #: python/maingui.py:3444 python/songdb.py:909 python/songdb.py:1293 msgid "Last Played" msgstr "" #. TC: The chosen source of track metadata. #: python/maingui.py:3446 python/maingui.py:3483 python/maingui.py:3485 msgid "Crossfader" msgstr "" #. TC: The chosen source of track metadata. In this case no metadata. #. TC: Fade time is zero. No fade, none. #: python/maingui.py:3448 python/playergui.py:4373 msgid "None" msgstr "" #. TC: The chosen source of track metadata. In this case no metadata. #: python/maingui.py:3450 python/playergui.py:4104 msgid "Playlist 3" msgstr "" #: python/maingui.py:3455 msgid "Select the origin for the playing track metadata on the stream." msgstr "" #. TC: Abbreviation of left. #: python/maingui.py:3465 python/maingui.py:3467 msgid "L" msgstr "" #: python/maingui.py:3477 msgid "Move the crossfader fully left." msgstr "" #: python/maingui.py:3497 msgid "The crossfader." msgstr "" #. TC: Abbreviation of right. #: python/maingui.py:3501 python/maingui.py:3503 msgid "R" msgstr "" #: python/maingui.py:3513 msgid "Move the crossfader fully right." msgstr "" #. TC: Describes a mid point. #: python/maingui.py:3522 python/maingui.py:3524 msgid "Middle" msgstr "" #: python/maingui.py:3541 python/maingui.py:3548 msgid "Move the crossfader to the middle of its range of travel." msgstr "" #. TC: The attenuation response curve of the crossfader. User selectable. #: python/maingui.py:3553 python/maingui.py:3555 msgid "Response" msgstr "" #: python/maingui.py:3577 msgid "" "This selects the response curve of the crossfader.\n" "\n" "The mid-point attenuations are -3dB, 0dB, and -22dB respectively." msgstr "" #. TC: Duration in seconds. #: python/maingui.py:3591 python/maingui.py:3593 msgid "Time" msgstr "" #: python/maingui.py:3610 msgid "" "The time in seconds that the crossfader will take to automatically pass " "across when the button to the right is clicked." msgstr "" #. TC: The crossfader pass-across button text. #. TC: The actual button appears as [<-->] with this text above it. #: python/maingui.py:3619 python/maingui.py:3621 msgid "Pass" msgstr "" #: python/maingui.py:3634 msgid "" "This button causes the crossfader to move to the opposite side at a speed " "determined by the speed selector to the left." msgstr "" #: python/maingui.py:3677 msgid "Peak" msgstr "" #: python/maingui.py:3680 msgid "A peak hold meter indicating the signal strength of the stream audio." msgstr "" #. TC: This text appears above the stream mix VU meter. #: python/maingui.py:3702 msgid "VU" msgstr "" #: python/maingui.py:3706 msgid "A VU meter for the stream audio." msgstr "" #. TC: Appears above the mic meters as a label followed by a number. #: python/maingui.py:3709 msgid "Ch" msgstr "" #: python/maingui.py:3736 msgid "" "A peak hold meter indicating the microphone signal strength and a meter " "indicating attenuation levels in the microphone signal processing system. " "Green indicates attenuation from the noise gate, yellow from the de-esser, " "red from the limiter." msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:48 msgid "Tooltips enable" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:50 msgid "DJ-mix monitor" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:52 msgid "Panning load from presets" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:54 msgid "Player play/pause" msgstr "" #. TC: Control method. Please keep it as Target:Action. #. TC: Playlist control. #: python/midicontrols.py:56 python/playergui.py:3857 msgid "Player stop" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:58 msgid "Player advance" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:60 msgid "Player play previous" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:62 msgid "Player play next" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:64 msgid "Player play selected from start" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:66 msgid "Player select previous" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:68 msgid "Player select next" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:70 msgid "Player stream output enable" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:72 msgid "Player DJ output enable" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:74 msgid "Player DJ-only switch" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:76 msgid "Player set volume" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:78 msgid "Player set gain" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:80 msgid "Player set balance" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:82 msgid "Player set pitchbend" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:85 msgid "Playlist edit tags" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:87 msgid "Playlist insert stop" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:89 msgid "Playlist insert stop 2" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:91 msgid "Playlist insert announce" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:93 msgid "Playlist insert transfer" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:95 msgid "Playlist insert crossfade" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:97 msgid "Playlist insert pitchunbend" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:99 msgid "Playlist insert jump to top" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:102 msgid "Players set crossfade" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:104 msgid "Players pass crossfade" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:106 msgid "Players set focus" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:108 msgid "Players show pitchbend" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:110 msgid "Players advance" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:113 msgid "Channel output enable" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:115 msgid "Channel set volume" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:117 msgid "Channel set gain" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:119 msgid "Channel set balance" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:122 msgid "VoIP output enable" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:124 msgid "VoIP DJ-only switch" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:126 msgid "VoIP set volume" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:128 msgid "VoIP set mixback" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:130 msgid "VoIP set gain" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:132 msgid "VoIP set balance" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:135 msgid "Effect play from start" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:138 msgid "Effects stop many" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:140 msgid "Effects set volume" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:142 msgid "Effects set headroom" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:145 msgid "Stream set connected" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:148 msgid "Recorder set recording" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:152 python/midicontrols.py:1493 msgid "Player" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #. TC: The midi channel. #. TC: Specifically, the numerical midi channel. #: python/midicontrols.py:153 python/midicontrols.py:1499 #: python/midicontrols.py:1568 python/midicontrols.py:1758 msgid "Channel" msgstr "" #: python/midicontrols.py:154 python/preferences.py:599 #: python/preferences.py:609 msgid "Effect" msgstr "" #: python/midicontrols.py:156 msgid "Recorder" msgstr "" #: python/midicontrols.py:157 msgid "Setting" msgstr "" #: python/midicontrols.py:161 msgid "Left player" msgstr "" #: python/midicontrols.py:162 msgid "Right player" msgstr "" #: python/midicontrols.py:163 msgid "Background player" msgstr "" #: python/midicontrols.py:164 msgid "Focused player" msgstr "" #: python/midicontrols.py:165 msgid "Fadered player" msgstr "" #: python/midicontrols.py:169 msgid "Effects bank 1" msgstr "" #: python/midicontrols.py:170 msgid "Effects bank 2" msgstr "" #: python/midicontrols.py:171 msgid "All effects" msgstr "" #. TC: The name of the backspace key. #: python/midicontrols.py:405 msgid "BackSpace" msgstr "" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1469 msgid "Use value" msgstr "" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1471 msgid "Act if" msgstr "" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1473 msgid "Set to" msgstr "" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1475 msgid "Adjust by" msgstr "" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1480 python/midicontrols.py:1484 msgid "Control" msgstr "" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1482 msgid "Note" msgstr "" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1486 msgid "Key" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1491 msgid "Miscellaneous" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1495 msgid "Both players" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1497 msgid "Quick panning" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1501 msgid "VoIP channel" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1503 msgid "Single effect" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1505 msgid "Effects bank" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1509 msgid "Stream recorder" msgstr "" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1514 msgid "Direct fader/held button" msgstr "" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1516 msgid "One-shot/toggle button" msgstr "" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1518 msgid "Set value" msgstr "" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1520 msgid "Alter value" msgstr "" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1525 msgid "MIDI control" msgstr "" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1527 msgid "MIDI note" msgstr "" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1529 msgid "MIDI pitch-wheel" msgstr "" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1531 msgid "Keyboard press" msgstr "" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1533 msgid "XChat command" msgstr "" #. TC: Dialog window title text. #. TC: User is expected to edit a control binding. #: python/midicontrols.py:1542 msgid "Edit control binding" msgstr "" #. TC: After clicking this button the binding editor will be listening #. TC: for a key press or midi control surface input. #. TC: Button text. If pressed triggers 'Listening for input' mode. #: python/midicontrols.py:1557 python/midicontrols.py:1638 #: python/midicontrols.py:1737 msgid "Listen for input..." msgstr "" #. TC: The input source. #: python/midicontrols.py:1565 msgid "Source" msgstr "" #. TC: The manner in which the input is interpreted. #: python/midicontrols.py:1584 msgid "Interaction" msgstr "" #. TC: The effect of the control can be directed upon a specific target. #. TC: e.g. On target [Left player] #: python/midicontrols.py:1590 msgid "On target" msgstr "" #. TC: Checkbutton text. #. TC: Use reverse scale and invert the meaning of button presses. #: python/midicontrols.py:1598 msgid "Reversed" msgstr "" #: python/midicontrols.py:1599 msgid "Pressed" msgstr "" #: python/midicontrols.py:1601 msgid "Released" msgstr "" #. TC: Tree column heading for Inputs e.g. Backspace, F1, S. #: python/midicontrols.py:1631 python/midicontrols.py:1992 msgid "Input" msgstr "" #: python/midicontrols.py:1635 #, python-format msgid "" "The first half of a binding is the input which comes in the form of the " "press of a keyboard key or an event from a midi device.\n" "\n" "Input selection can be done manually or with the help of the '%s' option." msgstr "" #. TC: Tree column heading for actions e.g. Player stop. #: python/midicontrols.py:1671 python/midicontrols.py:1677 #: python/midicontrols.py:2006 msgid "Action" msgstr "" #. TC: %s is the translation of 'Action'. #: python/midicontrols.py:1676 #, python-format msgid "The '%s' pane determines how the input is handled, and to what effect." msgstr "" #: python/midicontrols.py:1733 msgid "Listening for input" msgstr "" #. TC: Refers to key modifiers including Ctrl, Alt, Shift, .... #: python/midicontrols.py:1754 msgid "Shifting" msgstr "" #: python/midicontrols.py:1953 msgid "Singular control" msgstr "" #: python/midicontrols.py:2015 msgid "Target" msgstr "" #: python/mutagentagger.py:219 msgid "title" msgstr "" #: python/mutagentagger.py:219 msgid "artist" msgstr "" #: python/mutagentagger.py:220 msgid "album" msgstr "" #: python/mutagentagger.py:220 msgid "track/total" msgstr "" #: python/mutagentagger.py:221 msgid "genre" msgstr "" #: python/mutagentagger.py:221 msgid "record date" msgstr "" #: python/mutagentagger.py:360 msgid "" "Add any other ID3 text frames here.\n" "e.g. TIT2:Alternate Title\n" "This will be appended onto the main TIT2 tag.\n" "\n" "Enter user defined text frames like this:\n" "TXXX:foo=bar\n" "\n" "For more information visit www.id3.org." msgstr "" #. TC: Remaining textual ID3 data is show below this heading. #: python/mutagentagger.py:366 msgid " Additional Text Frames " msgstr "" #. TC: The album track number. #: python/mutagentagger.py:376 python/songdb.py:906 python/songdb.py:1295 msgid "Track" msgstr "" #: python/mutagentagger.py:377 msgid "Genre" msgstr "" #: python/mutagentagger.py:377 msgid "Year" msgstr "" #. TC: Window title. #: python/mutagentagger.py:688 msgid "IDJC Tagger" msgstr "" #: python/mutagentagger.py:700 python/mutagentagger.py:704 #: python/mutagentagger.py:708 msgid "Filename:" msgstr "" #: python/mutagentagger.py:777 msgid "Native" msgstr "" #: python/songdb.py:177 msgid "Connecting" msgstr "" #: python/songdb.py:188 #, python-format msgid "Connection failed (try %d)" msgstr "" #: python/songdb.py:199 msgid "Connected: autocommit mode failed" msgstr "" #: python/songdb.py:201 msgid "Connected: autocommit mode set" msgstr "" #: python/songdb.py:202 msgid "Connected" msgstr "" #: python/songdb.py:210 msgid "Job dropped" msgstr "" #: python/songdb.py:220 python/songdb.py:431 msgid "Disconnected" msgstr "" #: python/songdb.py:233 msgid "Problem dropping connection" msgstr "" #: python/songdb.py:235 msgid "Connection dropped" msgstr "" #: python/songdb.py:326 msgid "Hostname[:Port]" msgstr "" #: python/songdb.py:331 msgid "User Name" msgstr "" #: python/songdb.py:334 msgid "Database" msgstr "" #: python/songdb.py:389 msgid "Prokyon3 or Ampache (song title) Database" msgstr "" #: python/songdb.py:390 msgid "" "You can make certain media databases accessible in IDJC for easy drag and " "drop into the playlists." msgstr "" #: python/songdb.py:438 msgid "Module mysql-python (MySQLdb) required" msgstr "" #: python/songdb.py:707 python/songdb.py:723 python/songdb.py:747 #: python/songdb.py:805 msgid "" msgstr "" #: python/songdb.py:741 msgid "Not Played" msgstr "" #: python/songdb.py:878 msgid "Reload the database." msgstr "" #: python/songdb.py:883 msgid "Expand entire tree." msgstr "" #: python/songdb.py:884 msgid "Collapse tree." msgstr "" #: python/songdb.py:891 msgid "Browse" msgstr "" #. TC: The disk number of the album track. #: python/songdb.py:904 python/songdb.py:1294 msgid "Disk" msgstr "" #. TC: Track playback time. #. TC: Playback time. #: python/songdb.py:908 python/songdb.py:1296 python/playergui.py:340 msgid "Duration" msgstr "" #: python/songdb.py:910 python/songdb.py:1297 python/format.py:614 #: python/format.py:635 python/format.py:721 python/format.py:742 #: python/format.py:877 python/format.py:982 python/format.py:1032 #: python/format.py:1042 python/format.py:1120 python/format.py:1153 msgid "Bitrate" msgstr "" #: python/songdb.py:911 python/songdb.py:1298 msgid "Filename" msgstr "" #. TC: Directory path to a file. #: python/songdb.py:913 python/songdb.py:1299 msgid "Path" msgstr "" #: python/songdb.py:918 msgid "Artist - Album - Title" msgstr "" #: python/songdb.py:919 msgid "Album - [Disk] - Title" msgstr "" #: python/songdb.py:939 msgid "Fetching" msgstr "" #: python/songdb.py:1084 msgid "Tree fetch failed" msgstr "" #: python/songdb.py:1085 msgid "Fetch Failed!" msgstr "" #: python/songdb.py:1098 msgid "Populating" msgstr "" #: python/songdb.py:1224 #, python-format msgid "Disk %d" msgstr "" #. TC: User specified search filter entry box title text. #: python/songdb.py:1243 msgid "Filters" msgstr "" #. TC: A type of search on any data field matching paritial strings. #: python/songdb.py:1255 msgid "Fuzzy Search" msgstr "" #. TC: WHERE is an SQL keyword. #: python/songdb.py:1264 msgid "WHERE" msgstr "" #: python/songdb.py:1277 msgid "Search" msgstr "" #: python/songdb.py:1514 python/songdb.py:1639 msgid "Minutes" msgstr "" #: python/songdb.py:1514 python/songdb.py:1639 msgid "Hours" msgstr "" #: python/songdb.py:1515 python/songdb.py:1639 msgid "Days" msgstr "" #: python/songdb.py:1515 python/songdb.py:1639 python/songdb.py:1709 #: python/songdb.py:1803 msgid "Weeks" msgstr "" #: python/songdb.py:1609 msgid "Catalogs" msgstr "" #: python/songdb.py:1616 msgid "Name" msgstr "" #: python/songdb.py:1617 msgid "Catalog Path" msgstr "" #: python/songdb.py:1618 msgid "Prepend Path" msgstr "" #: python/songdb.py:1626 msgid "Last Played Scale" msgstr "" #: python/songdb.py:1658 msgid "Path Peel" msgstr "" #: python/songdb.py:1737 msgid "N/A" msgstr "" #: python/songdb.py:1918 msgid "Failed to create FULLTEXT index" msgstr "" #: python/songdb.py:1922 msgid "Found existing FULLTEXT index" msgstr "" #: python/songdb.py:1936 python/songdb.py:1949 msgid "Unrecognised database" msgstr "" #: python/songdb.py:1944 msgid "Found Prokyon 3 schema" msgstr "" #: python/playergui.py:104 msgid "Click to stop adding tracks!" msgstr "" #: python/playergui.py:263 msgid "Cuesheet Playlist" msgstr "" #. TC: Column heading, the track number. #: python/playergui.py:329 msgid "Trk" msgstr "" #. TC: Column heading, the index number. #: python/playergui.py:332 msgid "Ind" msgstr "" #: python/playergui.py:441 msgid "External Playlist" msgstr "" #. TC: Button text to activate an external playlist. #: python/playergui.py:452 msgid "Active" msgstr "" #: python/playergui.py:462 msgid "Choose a playlist file" msgstr "" #: python/playergui.py:467 msgid "Choose a media directory" msgstr "" #: python/playergui.py:480 msgid "Choose a playlist file." msgstr "" #: python/playergui.py:482 msgid "Choose a folder/directory of music." msgstr "" #: python/playergui.py:549 msgid "Create a new announcement" msgstr "" #: python/playergui.py:552 msgid "Modify or Delete this announcement" msgstr "" #. TC: Embed a DJ announcement text into the playlist. #: python/playergui.py:555 python/playergui.py:4494 msgid "Announcement" msgstr "" #. TC: The time format as minutes and seconds. #: python/playergui.py:583 msgid "mm:ss" msgstr "" #. TC: Alongside the name of the next track. #: python/playergui.py:636 msgid "Next track" msgstr "" #: python/playergui.py:961 msgid "By Extension" msgstr "" #: python/playergui.py:961 msgid "M3U playlist" msgstr "" #: python/playergui.py:961 msgid "M3U8 playlist" msgstr "" #: python/playergui.py:962 msgid "XSPF playlist" msgstr "" #: python/playergui.py:962 msgid "PLS playlist" msgstr "" #: python/playergui.py:1034 #, python-format msgid "%d Audio Tracks" msgstr "" #. TC: Missing metadata text. #: python/playergui.py:1044 msgid "Unknown" msgstr "" #: python/playergui.py:1048 msgid "(Cue sheet)" msgstr "" #: python/playergui.py:1085 msgid "Bad Tag" msgstr "" #: python/playergui.py:1921 python/playergui.py:4333 msgid "Manual" msgstr "" #. TC: playlist modes #: python/playergui.py:1925 python/playergui.py:4332 msgid "Play All" msgstr "" #: python/playergui.py:1933 python/playergui.py:1942 python/playergui.py:4332 msgid "Loop All" msgstr "" #: python/playergui.py:1933 python/playergui.py:4333 msgid "Cue Up" msgstr "" #: python/playergui.py:1934 python/playergui.py:4337 msgid "Fade Over" msgstr "" #: python/playergui.py:1946 python/playergui.py:2021 python/playergui.py:4332 msgid "Random" msgstr "" #: python/playergui.py:1990 python/playergui.py:4333 msgid "External" msgstr "" #. TC: yet more playlist modes these ones for the main players only #: python/playergui.py:2002 python/playergui.py:2018 python/playergui.py:4337 msgid "Alternate" msgstr "" #: python/playergui.py:2002 python/playergui.py:2020 python/playergui.py:4337 msgid "Random Hop" msgstr "" #. TC: The remaining playlist time. #: python/playergui.py:2176 python/playergui.py:2182 msgid "Remaining" msgstr "" #. TC: The estimated finish time of the playlist. #. TC: The estimated finish time of the playlist (ETA). #: python/playergui.py:2178 python/playergui.py:2182 python/playergui.py:2196 msgid "Finish" msgstr "" #. TC: The play duration of the block of audio tracks. #: python/playergui.py:2183 python/playergui.py:2194 msgid "Block size" msgstr "" #. TC: File dialog title text. #: python/playergui.py:2584 msgid "Add music to left playlist" msgstr "" #. TC: File dialog title text. #: python/playergui.py:2587 msgid "Add music to right playlist" msgstr "" #: python/playergui.py:2589 msgid "Add background music" msgstr "" #. TC: File filter text. #: python/playergui.py:2601 msgid "Supported Media Formats" msgstr "" #. TC: Expander text "Select File Type (.pls)" for the pls file type. #: python/playergui.py:2652 msgid "Select File Type" msgstr "" #: python/playergui.py:3442 msgid "Save left playlist" msgstr "" #: python/playergui.py:3444 msgid "Save right playlist" msgstr "" #: python/playergui.py:3446 msgid "Save background playlist" msgstr "" #: python/playergui.py:3464 msgid "File Type" msgstr "" #: python/playergui.py:3469 msgid "Extension" msgstr "" #. TC: Playlist control. #. TC: Insert playlist control to do a ten second fade to the next track. #: python/playergui.py:3833 python/playergui.py:4505 msgid "Fade 10s" msgstr "" #. TC: Playlist control. #. TC: Insert playlist control to do a five second fade to the next track. #: python/playergui.py:3839 python/playergui.py:4512 msgid "Fade 5s" msgstr "" #. TC: Playlist control. #. TC: Insert playlist control to not do a fade to the next track. #: python/playergui.py:3844 python/playergui.py:4519 msgid "No Fade" msgstr "" #. TC: Playlist control. #: python/playergui.py:3852 msgid ">> Normal Speed <<" msgstr "" #. TC: Playlist control. #: python/playergui.py:3862 msgid "Player stop 2" msgstr "" #. TC: Playlist control. #. TC: Insert playlist control to jump to the top of the playlist. #: python/playergui.py:3867 python/playergui.py:4471 msgid "Jump To Top" msgstr "" #. TC: Playlist control. #: python/playergui.py:3872 python/playergui.py:4531 msgid "Stop streaming" msgstr "" #. TC: Playlist control. #: python/playergui.py:3877 python/playergui.py:4539 msgid "Stop recording" msgstr "" #: python/playergui.py:3910 msgid "Announcement:" msgstr "" #. TC: Playlist control. #: python/playergui.py:3916 msgid ">>> Transfer across >>>" msgstr "" #. TC: Playlist control. #: python/playergui.py:3919 msgid "<<< Transfer across <<<" msgstr "" #. TC: Playlist control. #: python/playergui.py:3924 msgid ">>> Fade across >>>" msgstr "" #. TC: Playlist control. #: python/playergui.py:3927 msgid "<<< Fade across <<<" msgstr "" #. TC: Playlist control. #: python/playergui.py:3933 msgid "Ignored playlist control" msgstr "" #: python/playergui.py:4001 #, python-brace-format msgid "Playing track {0} of {1}" msgstr "" #. TC: Previous line: Playing track {0} of {1} #: python/playergui.py:4014 #, python-format msgid "From the album, %s" msgstr "" #: python/playergui.py:4021 #, python-format msgid "Total number of tracks %d" msgstr "" #: python/playergui.py:4025 python/playergui.py:4027 #, python-format msgid "Total play duration %s" msgstr "" #: python/playergui.py:4077 msgid "" "Left click toggles between showing the amount of time elapsed or remaining " "on the current track being played." msgstr "" #: python/playergui.py:4095 msgid "" "This slider acts as both a play progress indicator and as a means for " "seeking within the currently playing track." msgstr "" #. TC: File filter text. #: python/playergui.py:4184 msgid "All file types" msgstr "" #: python/playergui.py:4189 msgid "Playlist types" msgstr "" #: python/playergui.py:4204 msgid "" "'Block size' indicates the amount of time that it will take to play from the " "currently selected track to the next stop.\n" "'Remaining' is the amount of time until the next stop.\n" "'Finish' Is the computed time when the tracks will have finished playing." msgstr "" #: python/playergui.py:4230 msgid "This adjusts the playback speed anywhere from 25% to 400%." msgstr "" #: python/playergui.py:4244 msgid "This sets the playback speed back to normal." msgstr "" #: python/playergui.py:4261 msgid "Previous track." msgstr "" #: python/playergui.py:4273 msgid "Play." msgstr "" #: python/playergui.py:4283 msgid "Pause." msgstr "" #: python/playergui.py:4293 msgid "Stop." msgstr "" #: python/playergui.py:4303 msgid "Next track." msgstr "" #: python/playergui.py:4315 msgid "Add tracks to the playlist." msgstr "" #: python/playergui.py:4322 python/preferences.py:71 msgid "Playlist Mode" msgstr "" #: python/playergui.py:4343 msgid "" "This sets the playlist mode which defines player behaviour after a track has " "finished playing.\n" "\n" "'Play All' is the most versatile mode since it allows the use of embeddable " "playlist control elements which are accessible using the right click context " "menu in the playlist. When no playlist controls are present the tracks are " "played sequentially until the end of the playlist is reached at which point " "the player will stop.\n" "\n" "'Loop All' causes the tracks to be played in sequence, restarting with the " "first track once the end of the playlist is reached.\n" "\n" "'Random' causes the tracks to be played indefinitely with the tracks " "selected at random.\n" "\n" "'Manual' causes the player to stop at the end of each track.\n" "\n" "'Cue Up' is similar to manual except that the next track in the playlist " "will also be highlighted.\n" "\n" "'External' draws it's tracks from an external playlist or directory one at a " "time. Useful for when you want to stream massive playlists.\n" "\n" "'Alternate' causes the next track to be cued up before starting the opposite " "player. The crossfader is moved over.\n" "\n" "'Fade Over' will crossfade to the other player at the end of every track.\n" "\n" "'Random Hop' will pick a track at random from the other playlist." msgstr "" #. TC: Fade time heading. #: python/playergui.py:4367 python/preferences.py:72 msgid "Fade" msgstr "" #: python/playergui.py:4379 msgid "This controls the amount of fade between tracks." msgstr "" #: python/playergui.py:4386 msgid "Audio Feed" msgstr "" #: python/playergui.py:4396 msgid "Make output from this player available for streaming." msgstr "" #: python/playergui.py:4404 msgid "Make output from this player audible to the DJ." msgstr "" #: python/playergui.py:4406 msgid "Force" msgstr "" #: python/playergui.py:4412 msgid "" "When selected this player will be treated like a main player.\n" "It will be affected by microphone ducking and won't mute when a main player " "is operating." msgstr "" #. TC: Insert playlist control. #: python/playergui.py:4425 msgid "Insert control" msgstr "" #. TC: The Item submenu. #: python/playergui.py:4434 msgid "Item" msgstr "" #. TC: The Playlist submenu. #: python/playergui.py:4439 msgid "Playlist" msgstr "" #. TC: Insert playlist control to set playback speed to normal. #: python/playergui.py:4450 msgid "Normal Speed" msgstr "" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4479 python/playergui.py:4633 msgid "Transfer" msgstr "" #: python/playergui.py:4487 msgid "Crossfade" msgstr "" #. TC: Menu item. Opens the metadata tagger on the selected track. #: python/playergui.py:4552 msgid "Meta Tag" msgstr "" #. TC: Menu Item. Duplicates the selected track in the playlist. #: python/playergui.py:4558 msgid "Duplicate" msgstr "" #. TC: Menu Item. Remove the selected track. #: python/playergui.py:4565 msgid "Remove" msgstr "" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4576 msgid "This" msgstr "" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4583 python/preferences.py:1237 msgid "All" msgstr "" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4590 msgid "From Here" msgstr "" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4597 msgid "To Here" msgstr "" #. TC: Open the file dialog for adding music to the chosen playlist. #: python/playergui.py:4610 msgid "Add Music" msgstr "" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4617 msgid "Save" msgstr "" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4628 msgid "Copy" msgstr "" #: python/playergui.py:4639 msgid "Exchange" msgstr "" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4646 msgid "Empty" msgstr "" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4660 python/playergui.py:4699 msgid "Append" msgstr "" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4667 python/playergui.py:4706 msgid "Prepend" msgstr "" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4678 msgid "Append Cursor" msgstr "" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4685 msgid "Prepend Cursor" msgstr "" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4717 msgid "Append at Cursor" msgstr "" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4724 msgid "Prepend at Cursor" msgstr "" #: python/preferences.py:85 msgid "Track time elapsed" msgstr "" #: python/preferences.py:87 msgid "Track time remaining" msgstr "" #: python/preferences.py:89 msgid "Audio to stream" msgstr "" #: python/preferences.py:90 msgid "Audio to DJ" msgstr "" #: python/preferences.py:127 #, python-format msgid "" "Stereo panning is the selection of where an audio source sits from left to " "right within the stereo mix.\n" "\n" "This control maintains constant audio power throughout its range of travel, " "giving -3dB attenuation in both audio channels at the half way point.\n" "\n" "If you require 0dB straight down the middle or require a stereo source " "remain as stereo then this feature should be turned off.\n" "\n" "Paired channels should be set to 100% left/right unless narrowing of the " "stereo field is the intention." msgstr "" #: python/preferences.py:158 msgid "Presets" msgstr "" #: python/preferences.py:249 msgid "" "The pan preset selection buttons.\n" "\n" "In the stereo image at a click the DJ can be on the left and a guest on the " "right and when the guest is gone at a click the DJ can be central again.\n" "\n" "Note: preconfiguration of pan preset settings is required." msgstr "" #. TC: Microphone mode combobox text. #: python/preferences.py:274 msgid "Deactivated" msgstr "" #. TC: Microphone mode combobox text. #: python/preferences.py:276 msgid "Basic input" msgstr "" #. TC: Microphone mode combobox text. #: python/preferences.py:278 msgid "Processed input" msgstr "" #. TC: Microphone mode combobox text. #: python/preferences.py:280 #, python-format msgid "Partnered with channel %s" msgstr "" #: python/preferences.py:432 msgid "A label so you may describe briefly the role of this audio channel." msgstr "" #: python/preferences.py:464 msgid "The signal processing mode." msgstr "" #. TC: A frame heading. The channel opener is selected within. #: python/preferences.py:468 msgid "Channel Opener" msgstr "" #: python/preferences.py:471 msgid "" "This controls the allocation of front panel open/unmute buttons. Having one " "button control multiple microphones can save time." msgstr "" #. TC: Spinbutton label text. #: python/preferences.py:478 msgid "Main Panel Button" msgstr "" #: python/preferences.py:495 msgid "This:" msgstr "" #: python/preferences.py:504 msgid "Open" msgstr "" #: python/preferences.py:517 msgid "Stereo Panning" msgstr "" #. TC: A set of controls that perform audio signal matching. #: python/preferences.py:530 msgid "Signal Matching" msgstr "" #: python/preferences.py:531 msgid "" "These controls are provided to obtain a decent match between the two " "microphones." msgstr "" #: python/preferences.py:540 msgid "Relative Gain (dB)" msgstr "" #. TC: Mic audio phase inversion control. #: python/preferences.py:545 python/preferences.py:550 msgid "Invert Signal" msgstr "" #: python/preferences.py:551 python/preferences.py:571 #: python/preferences.py:667 msgid "" "Useful for when microphones are cancelling one another out, producing a " "hollow sound." msgstr "" #. TC: Control whether to mix microphone audio to the DJ mix. #: python/preferences.py:554 msgid "In The DJ's Mix" msgstr "" #: python/preferences.py:555 python/preferences.py:577 #: python/preferences.py:677 msgid "" "Make the microphone audio audible in the DJ mix. This may not always be " "desirable." msgstr "" #: python/preferences.py:563 msgid "Basic Controls" msgstr "" #: python/preferences.py:564 python/preferences.py:619 msgid "Boost/Cut (dB)" msgstr "" #: python/preferences.py:585 msgid "High Pass Filter" msgstr "" #: python/preferences.py:586 python/preferences.py:601 #: python/preferences.py:611 msgid "Cutoff Frequency" msgstr "" #. TC: User can set the number of filter stages. #: python/preferences.py:590 msgid "Stages" msgstr "" #: python/preferences.py:593 msgid "" "Frequency in Hertz above which audio can pass to later stages. Use this " "feature to restrict low frequency sounds such as mains hum. Setting too high " "a level will make your voice sound thin." msgstr "" #. TC: this is the treble control. HF = high frequency. #: python/preferences.py:598 msgid "HF Detail" msgstr "" #: python/preferences.py:605 msgid "You can use this to boost the amount of treble in the audio." msgstr "" #. TC: this is the bass control. LF = low frequency. #: python/preferences.py:608 msgid "LF Detail" msgstr "" #: python/preferences.py:615 msgid "You can use this to boost the amount of bass in the audio." msgstr "" #. TC: lookahead brick wall limiter. #: python/preferences.py:618 msgid "Limiter" msgstr "" #. TC: this is the peak signal limit. #: python/preferences.py:623 msgid "Upper Limit" msgstr "" #: python/preferences.py:625 msgid "" "A look-ahead brick-wall limiter. Audio signals are capped at the upper limit." msgstr "" #: python/preferences.py:628 msgid "Noise Gate" msgstr "" #. TC: noise gate triggers at this level. #: python/preferences.py:630 msgid "Threshold" msgstr "" #. TC: negative gain when the noise gate is active. #. TC: The de-esser attenuation in ess-detected state. #: python/preferences.py:634 python/preferences.py:644 msgid "Gain" msgstr "" #: python/preferences.py:636 msgid "" "Reduce the unwanted quietest sounds and background noise which you don't " "want your listeners to hear with this." msgstr "" #: python/preferences.py:639 msgid "De-esser" msgstr "" #. TC: Bias has a numeric setting. #: python/preferences.py:641 msgid "Bias" msgstr "" #: python/preferences.py:646 msgid "" "Reduce the S, T, and P sounds which microphones tend to exaggerate. Ideally " "the Bias control will be set low so that the de-esser is off when there is " "silence but is set high enough that mouse clicks are detected and suppressed." msgstr "" #: python/preferences.py:651 msgid "Ducker" msgstr "" #: python/preferences.py:652 msgid "Release" msgstr "" #: python/preferences.py:655 msgid "Hold" msgstr "" #: python/preferences.py:658 msgid "" "The ducker automatically reduces the level of player audio when the DJ " "speaks. These settings allow you to adjust the timings of that audio " "reduction." msgstr "" #: python/preferences.py:662 msgid "Other options" msgstr "" #: python/preferences.py:669 msgid "Phase Rotator" msgstr "" #: python/preferences.py:672 msgid "" "This feature processes the microphone audio so that it sounds more even. The " "effect is particularly noticable on male voices." msgstr "" #: python/preferences.py:855 msgid "The volume control for the left music player." msgstr "" #. TC: preferences window title. #: python/preferences.py:911 msgid "IDJC Preferences" msgstr "" #. TC: The DJ's sound level controller. #: python/preferences.py:936 msgid "DJ Audio Level" msgstr "" #: python/preferences.py:948 msgid "This adjusts the sound level of the DJ audio." msgstr "" #. TC: The alarm sound level. #: python/preferences.py:953 msgid "Alarm Level" msgstr "" #: python/preferences.py:967 msgid "Music Loudness Compensation" msgstr "" #: python/preferences.py:965 #, python-format msgid "" "This adjusts the sound level of the DJ alarm. Typically this should be set " "close to the dj audio level when using the '%s' feature, otherwise a bit " "louder." msgstr "" #: python/preferences.py:973 msgid "Player Resample Quality" msgstr "" #: python/preferences.py:979 msgid "" "This adjusts the quality of the audio resampling method used whenever the " "sample rate of the music file currently playing does not match the sample " "rate of the JACK sound server. Best mode offers the best sound quality but " "also uses the most CPU (not recommended for systems built before 2006). All " "these modes provide adequate sound quality." msgstr "" #: python/preferences.py:987 msgid "Best" msgstr "" #: python/preferences.py:996 python/format.py:521 msgid "Medium" msgstr "" #: python/preferences.py:1005 msgid "Fast" msgstr "" #. TC: the set of features - section heading. #: python/preferences.py:1020 msgid "Feature Set" msgstr "" #. TC: Start in the full featured user interface mode. #: python/preferences.py:1032 msgid "Start Full" msgstr "" #: python/preferences.py:1037 python/preferences.py:1045 msgid "Indicates which mode IDJC will be in when launched." msgstr "" #. TC: Start in a reduced user interface mode. #: python/preferences.py:1040 msgid "Start Mini" msgstr "" #: python/preferences.py:1053 msgid "Fully Featured" msgstr "" #: python/preferences.py:1058 msgid "Run in full functionality mode which uses more CPU power." msgstr "" #: python/preferences.py:1060 msgid "Basic Streamer" msgstr "" #: python/preferences.py:1064 msgid "" "Run in a reduced functionality mode that lowers the burden on the CPU and " "takes up less screen space." msgstr "" #: python/preferences.py:1072 msgid "These settings take effect after restarting" msgstr "" #: python/preferences.py:1093 msgid "Reserve 24 sound effects slots" msgstr "" #: python/preferences.py:1094 msgid "Only 12" msgstr "" #: python/preferences.py:1106 msgid "Audio input channels" msgstr "" #: python/preferences.py:1111 msgid "Simultaneous stream(s)" msgstr "" #: python/preferences.py:1117 msgid "Simultaneous recording(s)" msgstr "" #: python/preferences.py:1171 msgid "Fill channel meter void space" msgstr "" #: python/preferences.py:1183 msgid "Player Loudness Normalisation" msgstr "" #: python/preferences.py:1194 msgid "Indicate which tracks have loudness metadata" msgstr "" #: python/preferences.py:1195 msgid "" "Shows a marker in the playlists next to each track. Either a green circle or " "a red triangle." msgstr "" #: python/preferences.py:1203 msgid "Adjust playback volume in dB" msgstr "" #: python/preferences.py:1204 msgid "Effective only on newly started tracks." msgstr "" #: python/preferences.py:1210 msgid "R128" msgstr "" #: python/preferences.py:1214 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB higher than the ReplayGain setting." msgstr "" #: python/preferences.py:1219 msgid "ReplayGain" msgstr "" #: python/preferences.py:1223 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB lower than the R128 setting." msgstr "" #: python/preferences.py:1228 msgid "Untagged" msgstr "" #: python/preferences.py:1232 msgid "" "Set this so that any unmarked tracks are playing at a roughly similar " "loudness level as the marked ones." msgstr "" #: python/preferences.py:1241 msgid "A master level control for the media players." msgstr "" #: python/preferences.py:1252 msgid "Recorder Filename (excluding the file extension)" msgstr "" #: python/preferences.py:1253 msgid "" "The specifiers are $r for the number of the recorder with the rest being " "documented in the strftime man page.\n" "Users may wish to alter this to make filenames that are compatible with " "particular filesystems." msgstr "" #: python/preferences.py:1270 msgid "Miscellaneous Features" msgstr "" #: python/preferences.py:1279 msgid "Trim quiet song endings and trailing silence" msgstr "" #: python/preferences.py:1285 msgid "End tracks containing long passages of silence" msgstr "" #: python/preferences.py:1291 msgid "Enable the main-player speed/pitch controls" msgstr "" #: python/preferences.py:1295 msgid "" "This option causes some extra widgets to appear below the playlists which " "allow the playback speed to be adjusted from 25% to 400% and a normal speed " "button." msgstr "" #: python/preferences.py:1300 msgid "Separate left/right player volume faders" msgstr "" #: python/preferences.py:1304 msgid "" "Select this option to use an independent volume fader for the left and right " "music players." msgstr "" #: python/preferences.py:1308 msgid "Enlarge the time elapsed/remaining windows" msgstr "" #: python/preferences.py:1312 msgid "" "The time elapsed/remaining windows sometimes don't appear big enough for the " "text that appears in them due to unusual DPI settings or the use of a " "different rendering engine. This option serves to fix that." msgstr "" #: python/preferences.py:1318 msgid "Sound an alarm when the music is due to end" msgstr "" #: python/preferences.py:1321 msgid "" "An alarm tone alerting the DJ that dead-air is just nine seconds away. This " "also works when monitoring stream audio but the alarm tone is not sent to " "the stream.\n" "\n" "JACK freewheel mode will also be automatically disengaged." msgstr "" #: python/preferences.py:1331 msgid "Apply dither to 16 bit PCM playback" msgstr "" #: python/preferences.py:1335 msgid "" "This feature maybe improves the sound quality a little when listening on a " "24 bit sound card." msgstr "" #: python/preferences.py:1338 msgid "Enable tooltips" msgstr "" #: python/preferences.py:1342 msgid "" "This, what you are currently reading, is a tooltip. This feature turns them " "on or off." msgstr "" #: python/preferences.py:1361 msgid "Player Settings At Startup" msgstr "" #: python/preferences.py:1372 msgid "Restore the previous session" msgstr "" #: python/preferences.py:1377 msgid "" "When starting IDJC most of the main window settings will be as they were " "left. As an alternative you may specify below how you want the various " "settings to be when IDJC starts." msgstr "" #: python/preferences.py:1387 msgid "Player 1" msgstr "" #: python/preferences.py:1389 msgid "Player 2" msgstr "" #. TC: DJ hears the stream mix. #: python/preferences.py:1417 msgid "Monitor Stream Mix" msgstr "" #. TC: A heading label for miscellaneous settings. #: python/preferences.py:1428 msgid "General" msgstr "" #: python/preferences.py:1478 msgid "VoIP panning + mono downmix" msgstr "" #. TC: Keyboard and MIDI bindings configuration. #: python/preferences.py:1492 msgid "Bindings" msgstr "" #: python/preferences.py:1540 msgid "Licence" msgstr "" #: python/preferences.py:1563 msgid "Contributors" msgstr "" #: python/preferences.py:1570 msgid "Translators" msgstr "" #: python/preferences.py:1575 msgid "Build Info" msgstr "" #: python/preferences.py:1592 msgid "About" msgstr "" #: python/sourceclientgui.py:75 msgid "Disabled" msgstr "" #: python/sourceclientgui.py:75 msgid "Auto" msgstr "" #: python/sourceclientgui.py:75 msgid "Auto, no plaintext" msgstr "" #: python/sourceclientgui.py:76 msgid "RFC2818" msgstr "" #: python/sourceclientgui.py:76 msgid "RFC2817" msgstr "" #: python/sourceclientgui.py:96 msgid "Insert Attribute" msgstr "" #: python/sourceclientgui.py:140 msgid "Icecast 2 Master" msgstr "" #: python/sourceclientgui.py:140 msgid "Shoutcast Master" msgstr "" #: python/sourceclientgui.py:141 msgid "Icecast 2 Stats/Relay" msgstr "" #: python/sourceclientgui.py:141 msgid "Shoutcast Stats/Relay" msgstr "" #: python/sourceclientgui.py:144 msgid "Enter new server connection details" msgstr "" #: python/sourceclientgui.py:164 msgid "Edit existing server connection details" msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:218 msgid "Certificate Authority Directory" msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:232 msgid "Certificate Authority File" msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:246 msgid "TLS Client Certificate" msgstr "" #: python/sourceclientgui.py:257 msgid "This server is to be scanned for audience figures" msgstr "" #: python/sourceclientgui.py:270 msgid "Server type" msgstr "" #: python/sourceclientgui.py:270 msgid "Port number" msgstr "" #: python/sourceclientgui.py:271 msgid "Mount point" msgstr "" #: python/sourceclientgui.py:271 msgid "Login name" msgstr "" #: python/sourceclientgui.py:272 msgid "TLS" msgstr "" #: python/sourceclientgui.py:272 msgid "CA directory" msgstr "" #: python/sourceclientgui.py:272 msgid "CA file" msgstr "" #: python/sourceclientgui.py:272 msgid "Client cert" msgstr "" #: python/sourceclientgui.py:556 msgid "Encoder Format Not Set/Compatible" msgstr "" #. TC: Connection button text when no details have been entered. #: python/sourceclientgui.py:559 msgid "No Master Server Configured" msgstr "" #: python/sourceclientgui.py:761 msgid "" "A table of servers with which to connect. Only one master server can be " "added for the purpose of streaming. All other servers will appear below the " "master server in the list for the purpose of stats collection which can be " "toggled on a per server basis." msgstr "" #: python/sourceclientgui.py:777 msgid "Hostname/IP address" msgstr "" #. TC: Mount point is a technical term in relation to icecast servers. #: python/sourceclientgui.py:790 msgid "Mount point " msgstr "" #. TC: This is the listener count heading. #: python/sourceclientgui.py:799 msgid "Listeners" msgstr "" #: python/sourceclientgui.py:814 msgid "The sum total of listeners in this server tab." msgstr "" #: python/sourceclientgui.py:841 msgid "Never" msgstr "" #: python/sourceclientgui.py:844 msgid "Always" msgstr "" #: python/sourceclientgui.py:846 msgid "If connected" msgstr "" #: python/sourceclientgui.py:1102 msgid "Custom user agent string" msgstr "" #: python/sourceclientgui.py:1109 msgid "" "Set this on the occasion that the server or its firewall specifically " "refuses to allow libshout based clients." msgstr "" #: python/sourceclientgui.py:1114 msgid "If the connection breaks reconnect to the server" msgstr "" #. TC: Label for a comma separated list of delay times. #: python/sourceclientgui.py:1124 msgid "Delay times" msgstr "" #: python/sourceclientgui.py:1128 msgid "" "A comma separated list of delays in seconds between reconnection attempts. " "Note that bad values or values less than 5 will be interpreted as 5." msgstr "" #: python/sourceclientgui.py:1134 msgid "Repeat the sequence of delays indefinitely." msgstr "" #. TC: User specifies no dialog box to be shown. #: python/sourceclientgui.py:1137 msgid "Quiet" msgstr "" #: python/sourceclientgui.py:1139 msgid "Keep the reconnection dialogue box hidden at all times." msgstr "" #: python/sourceclientgui.py:1144 msgid "The contingency plan upon the stream buffer becoming full is..." msgstr "" #: python/sourceclientgui.py:1153 msgid "Discard audio data for as long as needed." msgstr "" #: python/sourceclientgui.py:1155 msgid "Assume the connection is beyond saving and reconnect." msgstr "" #: python/sourceclientgui.py:1442 python/format.py:1227 msgid "Shoutcast" msgstr "" #: python/sourceclientgui.py:1483 msgid "[Metadata suppressed]" msgstr "" #: python/sourceclientgui.py:1562 msgid "Individual Controls" msgstr "" #: python/sourceclientgui.py:1576 msgid "" "Connect to or disconnect from the radio server. If the button does not stay " "in, the connection failed for some reason.\n" "\n" "If the button is greyed out it means your settings within the 'Connections' " "and 'Format' sections are either incompatible with one another or are " "incomplete.\n" "\n" "In order to stream a master server needs to be specified in the " "configuration section below and must be capable of handling the chosen " "streaming format." msgstr "" #. TC: Kick whoever is on the server. #: python/sourceclientgui.py:1593 msgid "Kick Source" msgstr "" #: python/sourceclientgui.py:1595 msgid "" "This will disconnect whoever is currently using the server, freeing it up " "for personal use." msgstr "" #: python/sourceclientgui.py:1605 msgid "Timer:" msgstr "" #: python/sourceclientgui.py:1609 msgid "From" msgstr "" #: python/sourceclientgui.py:1610 msgid "" "Automatically connect to the server at a specific time in 24 hour format, " "midnight being 00:00" msgstr "" #: python/sourceclientgui.py:1615 msgid "Kick" msgstr "" #: python/sourceclientgui.py:1617 msgid "Disconnect whoever is using the server just before start time." msgstr "" #: python/sourceclientgui.py:1626 msgid "To" msgstr "" #: python/sourceclientgui.py:1627 msgid "" "Automatically disconnect from the server at a specific time in 24 hour " "format." msgstr "" #: python/sourceclientgui.py:1630 msgid "Fade out" msgstr "" #: python/sourceclientgui.py:1632 msgid "Fade audio before disconnecting." msgstr "" #: python/sourceclientgui.py:1646 msgid "At connect:" msgstr "" #. TC: [x] Start player (*) 1 ( ) 2 #: python/sourceclientgui.py:1650 msgid "Start player" msgstr "" #: python/sourceclientgui.py:1655 msgid "" "Have one of the players start automatically when a radio server connection " "is successfully made." msgstr "" #. TC: [x] Start recorder (*) 1 ( ) 2 #: python/sourceclientgui.py:1663 msgid "Start recorder" msgstr "" #: python/sourceclientgui.py:1670 msgid "" "Have a recorder start automatically when a radio server connection is " "successfully made." msgstr "" #: python/sourceclientgui.py:1675 python/format.py:530 python/format.py:541 #: python/format.py:552 python/format.py:562 msgid "Metadata" msgstr "" #: python/sourceclientgui.py:1685 msgid "Format String" msgstr "" #. TC: Label for the metadata fallback value. #: python/sourceclientgui.py:1687 msgid "Fallback" msgstr "" #: python/sourceclientgui.py:1701 msgid "" "You can enter text to accompany the stream here and can specify placemarkers " "%r %t %l %s for the artist, title, album, and songname respectively, or " "leave this text field blank to use the default metadata.\n" "\n" "Songname (%s) is derived from the filename in the absence of sufficient " "metadata, while the other placemarkers will use the fallback text to the " "right.\n" "\n" "When blank, Ogg streams will use the standard Vorbis tags and mp3 will use " "%s." msgstr "" #: python/sourceclientgui.py:1709 msgid "" "The fallback text to use when %r %t %l metadata is unavailable. See the " "format string to the left." msgstr "" #: python/sourceclientgui.py:1711 msgid "" "Metadata normally updates only on song title changes but you can force an " "immediate update here." msgstr "" #: python/sourceclientgui.py:1730 msgid "Configuration" msgstr "" #: python/sourceclientgui.py:1731 msgid "The controls for configuring a stream." msgstr "" #: python/sourceclientgui.py:1739 msgid "Connection" msgstr "" #: python/sourceclientgui.py:1744 msgid "Format" msgstr "" #. TC: Tab heading. User can enter information about the stream here. #: python/sourceclientgui.py:1753 msgid "Stream Info" msgstr "" #: python/sourceclientgui.py:1758 msgid "" "Enter your DJ name or station name here. Typically this information will be " "displayed by listener clients." msgstr "" #: python/sourceclientgui.py:1761 msgid "" "The URL of your radio station. This and the rest of the information below is " "intended for display on a radio station listings website." msgstr "" #: python/sourceclientgui.py:1766 msgid "A description of your radio station." msgstr "" #: python/sourceclientgui.py:1771 msgid "The musical genres you are likely to play." msgstr "" #: python/sourceclientgui.py:1774 msgid "Make Public" msgstr "" #: python/sourceclientgui.py:1775 msgid "" "Publish your radio station on a listings website. The website in question " "will depend on how the server to which you connect is configured." msgstr "" #: python/sourceclientgui.py:1787 msgid "Genre(s)" msgstr "" #: python/sourceclientgui.py:1798 msgid "Master server admin password" msgstr "" #: python/sourceclientgui.py:1803 msgid "" "This is for kick and stats on Shoutcast master servers that have an " "administrator password. For those that don't leave this blank (the source " "password is sufficient for those)." msgstr "" #: python/sourceclientgui.py:1812 msgid "Contact Details" msgstr "" #: python/sourceclientgui.py:1816 msgid "Internet Relay Chat connection info goes here." msgstr "" #: python/sourceclientgui.py:1819 msgid "Connection info for AOL instant messenger goes here." msgstr "" #: python/sourceclientgui.py:1822 msgid "ICQ instant messenger connection info goes here." msgstr "" #: python/sourceclientgui.py:1825 msgid "IRC" msgstr "" #: python/sourceclientgui.py:1826 msgid "AIM" msgstr "" #: python/sourceclientgui.py:1827 msgid "ICQ" msgstr "" #: python/sourceclientgui.py:1837 msgid "Use ISO-8859-1 encoding for fixed metadata" msgstr "" #: python/sourceclientgui.py:1839 msgid "Enable this if sending to a Shoutcast V1 server." msgstr "" #: python/sourceclientgui.py:1843 msgid "Extra Shoutcast" msgstr "" #: python/sourceclientgui.py:1848 msgid "Troubleshooting" msgstr "" #: python/sourceclientgui.py:1979 msgid "Stop recording." msgstr "" #: python/sourceclientgui.py:1981 msgid "" "Start recording.\n" "\n" "If this button is greyed out it could mean either the encoder settings are " "not valid or write permission is not granted on the selected folder." msgstr "" #: python/sourceclientgui.py:1986 msgid "Pause recording." msgstr "" #: python/sourceclientgui.py:2023 msgid "Recording time elapsed." msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:2077 msgid "Select the folder to record to" msgstr "" #: python/sourceclientgui.py:2088 msgid "" "Choose which stream to record or the 24 bit FLAC option. If the stream isn't " "already running the encoder will be started automatically using whatever " "settings are currently configured." msgstr "" #: python/sourceclientgui.py:2092 msgid "" "Choose which directory you want to save to. All file names will be in a " "timestamp format and have either an oga, mp3, or flac file extension. " "Important: you need to select a directory to which you have adequate write " "permission." msgstr "" #: python/sourceclientgui.py:2199 msgid "Perform operations on multiple servers in unison." msgstr "" #: python/sourceclientgui.py:2211 msgid "Connect" msgstr "" #: python/sourceclientgui.py:2228 msgid "Disconnect" msgstr "" #: python/sourceclientgui.py:2236 msgid "Kick Sources" msgstr "" #: python/sourceclientgui.py:2245 msgid "Metadata:" msgstr "" #: python/sourceclientgui.py:2275 msgid "Group Controls" msgstr "" #: python/sourceclientgui.py:2782 msgid "Recording Facility Unavailable" msgstr "" #: python/sourceclientgui.py:2785 msgid "No Recorders Are Correctly Configured" msgstr "" #. TC: Recorder menu format string. #: python/sourceclientgui.py:2798 #, python-brace-format msgid "{numericid} [{source}] > [{directory}]" msgstr "" #: python/sourceclientgui.py:2800 msgid "Misconfigured" msgstr "" #: python/sourceclientgui.py:2821 msgid "Streaming Facility Unavailable" msgstr "" #: python/sourceclientgui.py:2823 msgid "No Streams Are Currently Configured" msgstr "" #: python/sourceclientgui.py:2826 msgid "Group Connect" msgstr "" #: python/sourceclientgui.py:2832 msgid "Group Disconnect" msgstr "" #. TC: Window title bar text. #: python/sourceclientgui.py:2863 msgid "IDJC Output" msgstr "" #: python/sourceclientgui.py:2879 msgid "" "Each one of these tabs represents a separate stream recorder. The LED " "indicator colours represent the following: Clear=Stopped Yellow=Paused " "Red=Recording." msgstr "" #: python/sourceclientgui.py:2887 msgid "" "Each one of these tabs represents a separate radio streamer. The LED " "indicator colours represent the following: Clear=No connection " "Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to " "a bad connection." msgstr "" #: python/sourceclientgui.py:2905 msgid " Stream " msgstr "" #: python/sourceclientgui.py:2940 msgid "" "A connection to a radio server has " "failed.\n" "\n" "Reconnection will not be attempted." msgstr "" #: python/sourceclientgui.py:2945 msgid "" "A scheduled stream disconnection has " "occurred." msgstr "" #: python/format.py:419 msgid "Right click for suggested values." msgstr "" #: python/format.py:439 msgid "Suggested Values" msgstr "" #: python/format.py:503 msgid "Pregain" msgstr "" #: python/format.py:504 python/format.py:933 msgid "0 dB" msgstr "" #: python/format.py:505 python/format.py:934 msgid "-0.5 dB" msgstr "" #: python/format.py:506 python/format.py:935 msgid "-1.0 dB" msgstr "" #: python/format.py:507 python/format.py:936 msgid "-1.5 dB" msgstr "" #: python/format.py:508 python/format.py:937 msgid "-2.0 dB" msgstr "" #: python/format.py:509 python/format.py:938 msgid "-2.5 dB" msgstr "" #: python/format.py:510 python/format.py:939 msgid "-3.0 dB" msgstr "" #: python/format.py:511 msgid "" "A blanket gain reduction to promote audio quality when using long " "established lossy audio codecs like mp3 with loud audio material.\n" "\n" "ReplayGain makes this feature generally unnecessary and the correct setting " "in that case is 0 dB." msgstr "" #: python/format.py:519 msgid "Resample Quality" msgstr "" #: python/format.py:520 msgid "Highest" msgstr "" #: python/format.py:522 msgid "Lowest" msgstr "" #: python/format.py:523 msgid "" "All of these settings will provide adequate audio quality. The highest " "setting will preserve more of the original audio bandwidth at the expense of " "many CPU cycles." msgstr "" #: python/format.py:531 python/format.py:553 python/format.py:563 msgid "Suppressed" msgstr "" #: python/format.py:532 python/format.py:554 msgid "UTF-8" msgstr "" #: python/format.py:533 msgid "Latin1 *" msgstr "" #: python/format.py:534 msgid "" "This affects the stream metadata only. Recordings will use UTF-8 for their " "metadata." msgstr "" #: python/format.py:542 msgid "Unsupported" msgstr "" #: python/format.py:543 python/format.py:555 msgid "" "Choose whether the stream will carry dynamic metadata. In the case of Ogg " "streams this is important as a great many players can't handle chained Ogg " "streams which result from the metadata updates." msgstr "" #: python/format.py:564 msgid "Latin1" msgstr "" #: python/format.py:565 msgid "Choose whether to send metadata. Recordings will use UTF-8 metadata." msgstr "" #: python/format.py:581 python/format.py:592 python/format.py:603 #: python/format.py:710 python/format.py:838 python/format.py:908 #: python/format.py:917 python/format.py:991 python/format.py:1014 #: python/format.py:1023 python/format.py:1141 python/format.py:1163 msgid "Mode" msgstr "" #: python/format.py:582 python/format.py:593 python/format.py:604 #: python/format.py:711 python/format.py:839 python/format.py:909 #: python/format.py:918 python/format.py:992 python/format.py:1015 #: python/format.py:1024 python/format.py:1142 python/format.py:1164 msgid "Mono" msgstr "" #: python/format.py:583 python/format.py:594 python/format.py:605 #: python/format.py:712 python/format.py:840 python/format.py:910 #: python/format.py:919 python/format.py:993 python/format.py:1016 #: python/format.py:1025 python/format.py:1143 python/format.py:1165 msgid "Stereo" msgstr "" #: python/format.py:584 python/format.py:595 python/format.py:606 #: python/format.py:713 msgid "Joint Stereo" msgstr "" #: python/format.py:585 msgid "Joint Stereo is a good choice on streams with low bitrates." msgstr "" #: python/format.py:596 msgid "Due to the high bitrate selected, this codec will only support stereo." msgstr "" #: python/format.py:607 msgid "Due to the low bitrate selected, this codec will only support mono." msgstr "" #: python/format.py:656 python/format.py:666 python/format.py:763 #: python/format.py:773 python/format.py:783 python/format.py:889 #: python/format.py:899 python/format.py:1052 python/format.py:1072 #: python/format.py:1132 msgid "Samplerate" msgstr "" #. TC: Abbreviation of the word, standard. #: python/format.py:677 python/format.py:794 msgid "Std." msgstr "" #. TC: v stands for version. #: python/format.py:679 python/format.py:796 msgid "V 1" msgstr "" #. TC: v stands for version. #: python/format.py:681 python/format.py:798 msgid "V 2" msgstr "" #: python/format.py:682 msgid "" "MPEG2 introduced lower samplerate options and corresponding lower bitrates. " "Choose 2 if those are required." msgstr "" #: python/format.py:689 python/format.py:817 msgid "Quality" msgstr "" #: python/format.py:690 msgid "0 most" msgstr "" #. TC: * means is the recommended setting. #: python/format.py:693 msgid "2 *" msgstr "" #: python/format.py:695 msgid "Higher quality costs more in terms of CPU cycles." msgstr "" #: python/format.py:714 msgid "Joint Stereo is a good choice on streams with low bitrates" msgstr "" #. TC: v stands for version. #: python/format.py:800 msgid "V 2.5" msgstr "" #: python/format.py:807 msgid "Complexity" msgstr "" #: python/format.py:810 msgid "A quality setting that affects how heavily the CPU is used." msgstr "" #: python/format.py:820 msgid "The higher this setting, the higher the bitrate." msgstr "" #: python/format.py:827 msgid "Bandwidth" msgstr "" #: python/format.py:828 msgid "Ultrawide" msgstr "" #: python/format.py:829 msgid "Wide" msgstr "" #: python/format.py:830 msgid "Narrow" msgstr "" #: python/format.py:831 msgid "Essentially a samplerate setting." msgstr "" #: python/format.py:848 msgid "24 bit" msgstr "" #: python/format.py:849 msgid "20 bit" msgstr "" #: python/format.py:850 msgid "16 bit" msgstr "" #: python/format.py:851 msgid "" "24 bit records with the highest level of detail. If file size is a concern " "maybe FLAC is not the right codec." msgstr "" #: python/format.py:858 python/format.py:947 msgid "Variability" msgstr "" #: python/format.py:859 msgid "Constant" msgstr "" #: python/format.py:860 msgid "±10%" msgstr "" #: python/format.py:861 msgid "±20%" msgstr "" #: python/format.py:862 msgid "±30%" msgstr "" #: python/format.py:863 msgid "±40%" msgstr "" #: python/format.py:864 msgid "±50%" msgstr "" #: python/format.py:865 msgid "This control is for enabling variable bitrate on Vorbis streams." msgstr "" #: python/format.py:926 msgid "Postgain" msgstr "" #: python/format.py:927 msgid "3.0 dB" msgstr "" #: python/format.py:928 msgid "2.5 dB" msgstr "" #: python/format.py:929 msgid "2.0 dB" msgstr "" #: python/format.py:930 msgid "1.5 dB" msgstr "" #: python/format.py:931 msgid "1.0 dB" msgstr "" #: python/format.py:932 msgid "0.5 dB" msgstr "" #: python/format.py:940 msgid "A gain adjustment for the player to apply." msgstr "" #: python/format.py:948 msgid "CBR *" msgstr "" #: python/format.py:949 msgid "CVBR" msgstr "" #: python/format.py:950 msgid "VBR" msgstr "" #: python/format.py:951 msgid "" "Bitrate variability. Actual VBR operation may require a higher frame size." msgstr "" #: python/format.py:958 msgid "Frame Size" msgstr "" #: python/format.py:959 msgid "60 ms" msgstr "" #: python/format.py:960 msgid "40 ms" msgstr "" #: python/format.py:961 msgid "20 ms" msgstr "" #: python/format.py:962 msgid "A higher frame size may sound better on very low bitrates." msgstr "" #: python/format.py:969 msgid "CPU" msgstr "" #: python/format.py:972 msgid "The encoder complexity setting which affects CPU load." msgstr "" #: python/format.py:1000 python/format.py:1103 python/format.py:1172 msgid "Codec" msgstr "" #: python/format.py:1001 python/format.py:1174 msgid "Vorbis" msgstr "" #: python/format.py:1002 msgid "FLAC" msgstr "" #: python/format.py:1003 msgid "Speex" msgstr "" #: python/format.py:1004 python/format.py:1173 msgid "Opus" msgstr "" #: python/format.py:1007 msgid "Codecs of the Ogg container." msgstr "" #: python/format.py:1053 msgid "96000 Hz" msgstr "" #: python/format.py:1054 msgid "88200 Hz" msgstr "" #: python/format.py:1055 msgid "64000 Hz" msgstr "" #: python/format.py:1056 python/format.py:1073 msgid "48000 Hz" msgstr "" #: python/format.py:1057 python/format.py:1074 msgid "44100 Hz" msgstr "" #: python/format.py:1058 msgid "32000 Hz" msgstr "" #: python/format.py:1059 msgid "24000 Hz" msgstr "" #: python/format.py:1060 msgid "22050 Hz" msgstr "" #: python/format.py:1061 msgid "16000 Hz" msgstr "" #: python/format.py:1062 msgid "12000 Hz" msgstr "" #: python/format.py:1063 msgid "11025 Hz" msgstr "" #: python/format.py:1064 msgid "8000 Hz" msgstr "" #: python/format.py:1065 msgid "7350 Hz" msgstr "" #: python/format.py:1087 msgid "The MP2 option requires IDJC be rebuilt against libtwolame." msgstr "" #: python/format.py:1090 msgid "Enable the MP3 option by installing libmp3lame." msgstr "" #: python/format.py:1093 msgid "The AAC options require IDJC be rebuilt against libav libraries." msgstr "" #: python/format.py:1096 msgid "" "Specific AAC support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" #: python/format.py:1098 msgid "" "Specific AAC+ support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" #: python/format.py:1101 msgid "Codecs of the MPEG family." msgstr "" #: python/format.py:1104 msgid "MP2" msgstr "" #: python/format.py:1105 msgid "MP3" msgstr "" #: python/format.py:1106 msgid "AAC" msgstr "" #: python/format.py:1107 msgid "AAC+ v2" msgstr "" #. TC: Codec family e.g. Xiph/Ogg, MPEG etc. #: python/format.py:1185 msgid "Family" msgstr "" #: python/format.py:1186 msgid "WebM" msgstr "" #. TC: Xiph.org Ogg container format. #: python/format.py:1188 msgid "Xiph/Ogg" msgstr "" #: python/format.py:1189 msgid "MPEG" msgstr "" #: python/format.py:1190 msgid "Codecs have been grouped by standards body and or container format." msgstr "" #: python/format.py:1215 msgid "Capabilities" msgstr "" #: python/format.py:1227 msgid "Icecast" msgstr "" #: python/format.py:1227 msgid "Recordable" msgstr "" idjc-0.8.16/po/it.po0000644000175000017500000046256212711167613011056 00000000000000# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # # rmorelli, 2011. # Stephen Fairchild , 2013. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk\n" "POT-Creation-Date: 2016-04-30 18:46+0100\n" "PO-Revision-Date: 2013-11-07 16:48+0000\n" "Last-Translator: \n" "Language-Team: English \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: python/prelims/__init__.py:101 #, python-format msgid "" "show this help message and exit -- additional help is available on each of " "the sub-commands for example: \"%(prog)s run --help\" shows the help for the " "run command" msgstr "" #. TC: a command line option help string. #: python/prelims/__init__.py:108 msgid "show the version number and exit" msgstr "" #. TC: a command line option help string. #: python/prelims/__init__.py:112 msgid "" "run the main idjc application -- this is the default when no command line " "options are specified" msgstr "" #. TC: do not translate run. #: python/prelims/__init__.py:116 msgid "-- sub-command: run -- launch the idjc application" msgstr "" #: python/prelims/__init__.py:121 msgid "make a new profile" msgstr "crea un nuovo profilo" #. TC: do not translate the word new. #: python/prelims/__init__.py:123 #, fuzzy msgid "-- sub-command: new -- make a new profile" msgstr "-- sotto-comando: generaprofilo" #. TC: a command line option help string. #: python/prelims/__init__.py:127 #, fuzzy msgid "remove profile(s)" msgstr "modello_profilo" #. TC: do not translate the word rm. #: python/prelims/__init__.py:129 #, fuzzy msgid "-- sub-command: rm -- remove profile(s)" msgstr "-- sotto-comando: generaprofilo" #. TC: a command line option help string. #: python/prelims/__init__.py:133 msgid "select which profile is to automatically launch" msgstr "" #. TC: do not translate the word auto. #: python/prelims/__init__.py:136 msgid "-- sub-command: auto -- mark a profile for auto-launch" msgstr "" #: python/prelims/__init__.py:141 msgid "remove auto-launch" msgstr "" #: python/prelims/__init__.py:142 #, fuzzy msgid "-- sub-command: noauto -- remove auto-launch" msgstr "--sotto-comando: esegui" #: python/prelims/__init__.py:147 msgid "list available profiles" msgstr "" #. TC: do not translate the word ls. #: python/prelims/__init__.py:149 #, fuzzy msgid "-- sub-command: ls -- list available profiles" msgstr "-- sotto-comando: generaprofilo" #: python/prelims/__init__.py:153 python/prelims/__init__.py:206 #: python/prelims/__init__.py:231 python/prelims/__init__.py:236 #: python/prelims/__init__.py:241 python/prelims/__init__.py:246 msgid "show this help message and exit" msgstr "" #: python/prelims/__init__.py:156 #, fuzzy msgid "" "force the appearance or non-appearance of the\n" " profile chooser dialog -- when used with the -p option\n" " the chosen profile is preselected" msgstr "" "forza la visualizzazione o meno della\n" " finestra di scelta del profilo -- se usato con l'opzione -p\n" " il profilo scelto viene preselezionato" #: python/prelims/__init__.py:161 msgid "profile_choice" msgstr "scelta_profilo" #: python/prelims/__init__.py:162 #, fuzzy msgid "" "the profile to use -- overrides the user interface\n" " preferences \"show profile dialog\" option" msgstr "" "il profilo da utilizzare -- non tiene conto dell'opzione\n" " in \"mostra finestra del profilo\"" #. TC: command line help placeholder. #: python/prelims/__init__.py:166 msgid "server_name" msgstr "nome_server" #: python/prelims/__init__.py:166 msgid "the named jack sound-server to connect with" msgstr "il server audio jack cui connettersi" #. TC: command line help placeholder. #: python/prelims/__init__.py:170 msgid "session_details" msgstr "" #: python/prelims/__init__.py:171 msgid "" "e.g. 'L1:name' for a named Ladish [L1] session called 'name' -- refer to the " "idjc man page for more details" msgstr "" #: python/prelims/__init__.py:176 msgid "" "At start-up do not make any JACK connections. This option delegates all " "control over restored connections to the session handler." msgstr "" #: python/prelims/__init__.py:181 msgid "" "No JACK ports will be connected except those listed in the session file." msgstr "" #: python/prelims/__init__.py:184 msgid "user interface settings" msgstr "impostazioni dell'interfaccia utente" #: python/prelims/__init__.py:187 msgid "the audio channels to have open at startup" msgstr "i canali audio da aprire all'avvio" #: python/prelims/__init__.py:190 msgid "the voip mode at startup" msgstr "la modalità VoIP all'avvio" #: python/prelims/__init__.py:196 msgid "attempt connection with the specified servers" msgstr "tenta la connessione con i server specificati" #: python/prelims/__init__.py:199 msgid "" "kick sources on servers -- note that this will be\n" " done before any server connection attempts are made" msgstr "" #: python/prelims/__init__.py:203 msgid "position the crossfader for the specified player" msgstr "posiziona il \"crossfader\" per il lettore specificato" #. TC: command line help placeholder. #: python/prelims/__init__.py:208 python/prelims/__init__.py:232 msgid "profile_name" msgstr "nome_profilo" #: python/prelims/__init__.py:209 #, fuzzy msgid "" "new profile name -- will form part of the dbus\n" " bus/object/interface name and the JACK client ID --\n" " restrictions therefore apply" msgstr "" "nuovo nome profilo -- sarà parte del nome del bus/oggetto/interfaccia dbus\n" " e dell'ID del client JACK --\n" " e delle relative restrizioni" #: python/prelims/__init__.py:214 msgid "template_profile" msgstr "modello_profilo" #: python/prelims/__init__.py:215 msgid "an existing profile to use as a template" msgstr "un profilo esistente da usare come template" #: python/prelims/__init__.py:218 msgid "icon_pathname" msgstr "nomepercorso_icona" #: python/prelims/__init__.py:219 msgid "pathname to an icon -- defaults to idjc logo" msgstr "percorso ad un'icona -- di base è il logo di idjc " #: python/prelims/__init__.py:223 msgid "nickname" msgstr "nickname" #: python/prelims/__init__.py:224 msgid "the alternate profile name to appear in window title bars" msgstr "" "il nome profilo alternativo da mostrare nella barra del titolo delle finestre" #: python/prelims/__init__.py:227 msgid "description_text" msgstr "testo_descrittivo" #: python/prelims/__init__.py:228 msgid "a description of the profile" msgstr "descrizione del profilo" #: python/prelims/__init__.py:233 #, fuzzy msgid "the profile(s) to remove" msgstr "il profilo '%s' è in uso" #: python/prelims/__init__.py:238 msgid "the profile to make automatic" msgstr "" #: python/prelims/__init__.py:417 #, python-format msgid "failed to create profile: %s" msgstr "errore nella creazione del profilo: %s" #: python/prelims/__init__.py:424 #, fuzzy, python-format msgid "failed to delete profile: %s" msgstr "errore nella creazione del profilo: %s" #: python/prelims/__init__.py:431 #, python-format msgid "auto failed: %s" msgstr "" #: python/prelims/__init__.py:438 #, python-format msgid "noauto failed: %s" msgstr "" #: python/prelims/__init__.py:447 #, python-format msgid "ls failed: %s" msgstr "" #: python/prelims/__init__.py:466 msgid "the specified profile name is not valid" msgstr "il nome profilo non è valido" #: python/prelims/__init__.py:473 #, fuzzy msgid "profile name is bad" msgstr "nome_profilo" #: python/prelims/__init__.py:476 python/prelims/__init__.py:744 #, fuzzy, python-format msgid "profile %s does not exist" msgstr "il profilo del modello '%s' non esiste" #: python/prelims/__init__.py:479 #, fuzzy, python-format msgid "profile %s is already running" msgstr "il profilo scelto è attualmente in uso" #: python/prelims/__init__.py:492 #, python-format msgid "" "Error while creating new profile.\n" "\n" "%s" msgstr "" "Errore nella creazione del nuovo profilo.\n" "\n" "%s" #: python/prelims/__init__.py:510 msgid "no profile is set" msgstr "nessun profilo impostato" #: python/prelims/__init__.py:517 msgid "" "failed to grab bus name -- another session by the same name appears to be " "running" msgstr "" #. TC: text appears in the title bar when in session mode. #: python/prelims/__init__.py:590 #, python-brace-format msgid "session={type}:{name}" msgstr "" #: python/prelims/__init__.py:630 #, fuzzy, python-format msgid "specified profile is not valid %s" msgstr "il nome profilo non è valido" #: python/prelims/__init__.py:633 #, fuzzy, python-format msgid "specified profile does not exist: %s" msgstr "il profilo del modello '%s' non esiste" #: python/prelims/__init__.py:664 #, python-format msgid "unknown session type: %s: must be one of %s" msgstr "" #: python/prelims/__init__.py:677 #, fuzzy, python-format msgid "directory does not exist: %s" msgstr "il profilo del modello '%s' non esiste" #: python/prelims/__init__.py:708 #, python-format msgid "problem with specified session directory: %s" msgstr "" #: python/prelims/__init__.py:781 #, python-format msgid "Profile %s is active." msgstr "Il profilo %s è attivo." #: python/prelims/__init__.py:791 #, python-brace-format msgid "Cannot rename profile {0} to {1}, {1} currently exists." msgstr "Non posso rinominare il profilo {0} in {1}, {1} è già presente." #: python/prelims/__init__.py:795 #, python-brace-format msgid "Error during attempt to rename {0} to {1}." msgstr "Errore nel tentativo di rinominare {0} in {1}." #: python/prelims/__init__.py:805 #, python-brace-format msgid "" "Error while editing profile: {0}.\n" "\n" "{1}" msgstr "" "Errore nella modifica del profilo: {0}.\n" "\n" "{1}" #: python/prelims/__init__.py:824 #, python-brace-format msgid "could not get a lock on profile {0}: {1}" msgstr "" #: python/prelims/__init__.py:829 #, fuzzy msgid "profile does not exist" msgstr "il profilo del modello '%s' non esiste" #: python/prelims/__init__.py:850 #, python-format msgid "the profile '%s' is in use" msgstr "il profilo '%s' è in uso" #: python/prelims/__init__.py:872 #, python-format msgid "the profile length is too long (max %d characters)" msgstr "la lunghezza del profilo è eccessiva (max %d caratteri)" #: python/prelims/__init__.py:874 #, python-format msgid "The profile length is too long (max %d characters)." msgstr "La lunghezza del profilo è eccessiva (max %d caratteri)" #: python/prelims/__init__.py:878 msgid "the new profile name is not valid" msgstr "il nuovo nome profilo non è valido" #: python/prelims/__init__.py:879 msgid "The new profile name is not valid." msgstr "Il nuovo nome profilo non è valido." #: python/prelims/__init__.py:884 msgid "the chosen profile is currently running" msgstr "il profilo scelto è attualmente in uso" #: python/prelims/__init__.py:885 msgid "The chosen profile is currently running." msgstr "Il profilo scelto è attualmente in uso." #: python/prelims/__init__.py:890 msgid "temporary directory creation failed" msgstr "creazione della cartella temporanea fallita" #: python/prelims/__init__.py:891 msgid "Temporary directory creation failed." msgstr "Creazione della cartella temporanea fallita." #: python/prelims/__init__.py:897 #, python-format msgid "the specified template '%s' is not valid" msgstr "il modello '%s' non è valido" #: python/prelims/__init__.py:899 #, python-format msgid "The specified template '%s' is not valid." msgstr "Il modello '%s' non è valido." #: python/prelims/__init__.py:921 #, python-format msgid "the template profile '%s' does not exist" msgstr "il profilo del modello '%s' non esiste" #: python/prelims/__init__.py:923 #, python-format msgid "The template profile '%s' does not exist." msgstr "Il profilo del modello '%s' non esiste." #: python/prelims/__init__.py:933 #, python-format msgid "could not write file %s" msgstr "non posso scrivere il file %s" #: python/prelims/__init__.py:934 #, python-format msgid "Could not write file %s." msgstr "Non posso scrivere il file %s." #: python/prelims/__init__.py:942 #, python-format msgid "the profile directory '%s' already exists" msgstr "la directory del profilo '%s' esiste già" #: python/prelims/__init__.py:944 #, python-format msgid "The profile directory '%s' already exists." msgstr "La directory del profilo '%s' esiste già." #: python/prelims/__init__.py:947 #, python-format msgid "a non directory path exists at: '%s'" msgstr "non c'è il percorso ad una directory: '%s'" #: python/prelims/__init__.py:948 #, python-format msgid "A Non directory path exists at: '%s'." msgstr "Non c'è il percorso ad una directory: '%s'" #: python/prelims/__init__.py:959 msgid "The default profile" msgstr "Il profilo base" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:98 #, python-format msgid "Edit profile %s" msgstr "Modifica il profilo %s" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:101 #, python-format msgid "New profile based upon %s" msgstr "Nuovo profilo basato su %s" #. TC: data entry dialog window title text. #: python/prelims/profiledialog.py:105 msgid "New profile details" msgstr "Dettagli del nuovo profilo" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:125 #, fuzzy msgid "Profile name" msgstr "nome_profilo" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:127 python/maingui.py:681 msgid "Icon" msgstr "Icona" #. TC: data entry dialog label text. #. TC: column heading. The profile nicknames. #. TC: IRC nickname data entry label. #: python/prelims/profiledialog.py:129 python/prelims/profiledialog.py:285 #: python/irc.py:452 msgid "Nickname" msgstr "Nickname" #. TC: data entry dialog label text. #. TC: column heading. #. TC: Station description. #: python/prelims/profiledialog.py:131 python/prelims/profiledialog.py:288 #: python/irc.py:96 python/playergui.py:334 python/sourceclientgui.py:1786 msgid "Description" msgstr "Descrizione" #. TC: profile dialog window title text. #: python/prelims/profiledialog.py:243 msgid "IDJC Profile Manager" msgstr "Gestore dei profili IDJC" #: python/prelims/profiledialog.py:277 msgid "Profile" msgstr "Profilo" #. TC: column heading. The time a particular profile has been running. #: python/prelims/profiledialog.py:292 msgid "Up-time" msgstr "Avviato da" #: python/prelims/profiledialog.py:306 msgid "_Auto" msgstr "_Auto" #: python/prelims/profiledialog.py:365 #, python-format msgid "" "Delete the data of profile '%s'?\n" "\n" "The profile will remain available with initial settings." msgstr "" "Eliminare i dati del profilo '%s'?\n" "\n" "Il profilo resterà disponibile con le impostazioni iniziali" #: python/prelims/profiledialog.py:369 #, python-format msgid "" "Delete profile '%s' and all its data?\n" "\n" "The data of deleted profiles cannot be recovered." msgstr "" "Eliminare il profilo '%s' e tutti i suoi " "dati?\n" "\n" "I dati dei profili eliminati non possono essere recuperati." #. TC: The contents of <> and {} must not be changed. #: python/dialogs.py:198 #, python-brace-format msgid "" "The connection to the server in tab " "{servertab} has failed.\n" "A reconnection attempt will be made in {countdown} seconds.\n" "This is attempt number {attempt} of {maxtries}." msgstr "" "La connessione al server nella " "linguetta {servertab} è fallita.\n" "Un tentativo di riconnessione verrà effettuato tra {countdown} secondi.\n" "Questo è il tentativo {attempt} di {maxtries}." #: python/dialogs.py:254 #, python-format msgid "This is attempt number %d. There is no retry limit." msgstr "Tentativo %d. Non ci sono limiti ai tentativi." #: python/dialogs.py:283 msgid "_Retry Now" msgstr "_Riprova adesso" #: python/__init__.py.in.in:102 #, python-format msgid "Copyright 2005-%s Stephen Fairchild and others." msgstr "Diritti 2005-%s Stephen Fairchild ed altri." #: python/__init__.py.in.in:104 msgid "Released under the GNU General Public License V2.0+." msgstr "Rilasciato sotto la Licenza Pubblica Generica GNU, V2.0+" #. TC: IRC message subcategory, triggers on new track announcements. #: python/irc.py:82 msgid "Track announce" msgstr "Annuncio traccia" #. TC: IRC message subcategory, triggered by a timer. #: python/irc.py:84 msgid "Timer" msgstr "Cronometro" #. TC: IRC message subcategory, triggered once when the stream starts. #: python/irc.py:86 msgid "On stream up" msgstr "Se il flusso è attivo" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:88 msgid "On stream down" msgstr "Se il flusso non è attivo" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:90 #, fuzzy msgid "Operations" msgstr "Altre opzioni" #. TC: Track artist. #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:902 #: python/songdb.py:1290 python/sourceclientgui.py:99 msgid "Artist" msgstr "Artista" #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:1292 #: python/sourceclientgui.py:99 msgid "Title" msgstr "Titolo" #: python/irc.py:95 python/mutagentagger.py:376 python/songdb.py:1291 #: python/sourceclientgui.py:99 msgid "Album" msgstr "Album" #: python/irc.py:95 python/sourceclientgui.py:100 msgid "Song name" msgstr "Canzone" #. TC: The DJ or Stream name. #: python/irc.py:96 python/sourceclientgui.py:1783 msgid "DJ name" msgstr "Nome DJ" #: python/irc.py:96 python/sourceclientgui.py:1784 msgid "Listen URL" msgstr "Indirizzo di ascolto (URL)" #: python/irc.py:96 #, fuzzy msgid "Source URI" msgstr "Fonte" #. TC: Popup menu item for a GTK text entry widget. #: python/irc.py:139 msgid "Insert Attribute or Colour Code" msgstr "Inserisci un attributo o un codice colore" #. TC: Text formatting style. #: python/irc.py:176 msgid "Bold" msgstr "Grassetto" #. TC: Text formatting style. #: python/irc.py:178 msgid "Underline" msgstr "Sottolineato" #. TC: Text formatting style. #: python/irc.py:180 msgid "Normal" msgstr "Normale" #: python/irc.py:186 msgid "Colours" msgstr "Colori" #: python/irc.py:403 msgid "Optional data entry field for information only." msgstr "Campo opzionale a scopo informativo." #. TC: Tab heading text. #: python/irc.py:406 msgid "IRC server" msgstr "Server IRC" #: python/irc.py:418 #, fuzzy msgid "Manual start" msgstr "Manuale" #: python/irc.py:420 msgid "Off when restarting IDJC and off initially." msgstr "" #. TC: The IRC network e.g. EFnet. #: python/irc.py:444 msgid "Network" msgstr "Rete" #. TC: label for hostname entry. #: python/irc.py:446 python/sourceclientgui.py:270 msgid "Hostname" msgstr "Nome host" #. TC: TCP/IP port number label. #. TC: TCP port number. #: python/irc.py:448 python/sourceclientgui.py:785 msgid "Port" msgstr "Porta" #: python/irc.py:449 msgid "User name" msgstr "Nome utente" #: python/irc.py:450 python/songdb.py:343 python/sourceclientgui.py:271 msgid "Password" msgstr "Password" #. TC: Second choice of IRC nickname. #: python/irc.py:454 msgid "Second choice" msgstr "Seconda scelta" #. TC: Third choice of IRC nickname. #: python/irc.py:456 msgid "Third choice" msgstr "Terza scelta" #. TC: The IRC user's 'real' name. #: python/irc.py:458 msgid "Real name" msgstr "Nome reale" #. TC: The NickServ password. #: python/irc.py:460 msgid "NickServ p/w" msgstr "NickServ p/w" #. TC: Tooltip to IRC 'User name' field. #: python/irc.py:465 msgid "" "Ideally set this to something even on servers that allow public anonymous " "access." msgstr "" "Impostate questo campo anche per server che consentono l'accesso pubblico " "anonimo." #. TC: tooltip to all IRC nicknames entry fields. #: python/irc.py:475 msgid "" "When a nickname is in use on the target IRC network, during connection these " "IRC nicknames are cycled through, then twice again after appending an " "additional underscore until giving up. This gives IDJC a maximum of nine IRC " "nicknames to try." msgstr "" "Quando un nickname è in uso sulla rete IRC, in fase di connessione vengono " "provati questi nickname, poi vengono usati di nuovo ma aggiungendo un " "trattino basso in coda fino a smettere. Questo fornisce a IDJC un massimo di " "nove nickname IRC da provare." #: python/irc.py:480 msgid "" "The real name you want to use which will be available regardless of whether " "the network connection was made with the primary nickname or not.\n" "\n" "Ideally set this to something." msgstr "" "Il nome reale che volete utilizzare e che sarà sempre disponibile a " "prescindere se per la connessione viene usato il nickname primario o meno.\n" "\n" "Dovreste impostarlo." #: python/irc.py:483 msgid "" "If this value is set an attempt will be made to acquire your first choice " "IRC nickname (if needed) and log in with NickServ@services.\n" "\n" "The use of the NickServ service requires prior nickname registration on the " "network using a regular chat client." msgstr "" "Se questo valore è impostato verrà effettuato un tentativo di acquisire il " "vostro primo nickname IRC (se necessario) ed accedere in NickServ@services.\n" "\n" "L'utilizzo del servizio NickServ necessista la preventiva registrazione del " "nickname sulla rete utilizzando un client regolare." #: python/irc.py:511 msgid "" "Permanently delete this server?\n" "\n" "This action will also erase all of its associated messages." msgstr "" "Eliminare il server in modo permanente?\n" "\n" "Questa azione eliminerà anche tutti i messaggi associati" #. TC: An IRC channel #chan or user name entry box label. #: python/irc.py:559 msgid "Channels/Users" msgstr "Canali/Utenti" #: python/irc.py:563 msgid "" "The comma or space separated list of channels and/or users to whom the " "message will be sent.\n" "\n" "Protected channels are included with the form:\n" "#channel:keyword." msgstr "" "La lista di canali e/o utenti, separati da virgola o spazio, ai quali verrà " "inviato il messaggio.\n" "\n" "I canali protetti sono inclusi nella forma:\n" "#canale:parolachiave" #. TC: Message text to send to an IRC channel. Widget label. #: python/irc.py:616 msgid "Message" msgstr "Messaggio" #: python/irc.py:620 msgid "" "The message to send.\n" "\n" "On the pop-up window (mouse right click) are some useful options for " "embedding metadata and for text formatting.\n" "\n" "The window below displays how the message will appear to users of XChat." msgstr "" "Il messaggio da inviare.\n" "\n" "Sulla finestra di pop-up (clic con il tasto destro del mouse) ci sono alcune " "opzioni utili per includere i metadati e per la formattazione del testo.\n" "\n" "La finestra in basso mostra il messaggio così come apparirà agli utenti di " "XChat." #. TC: Dialog window title text. #: python/irc.py:673 msgid "IRC track announce" msgstr "Annuncio traccia IRC" #. TC: Spinbutton label for a delay value. #: python/irc.py:680 msgid "Delay" msgstr "Ritardo" #. TC: tooltip on a spinbutton widget. #: python/irc.py:682 msgid "" "The delay time of this message.\n" "\n" "Typically listener clients will buffer approximately ten seconds of audio " "data which means they are listening the same amount of time behind the " "actual stream therefore without a delay IRC messages will appear to the " "listener many seconds ahead of the audio.\n" "\n" "This setting will help synchronise the track change with the message." msgstr "" "Il ritardo del messaggio.\n" "\n" "Tipicamente i client degli ascoltatori memorizzeranno circa dieci secondi di " "audio il che vuol dire che ascolteranno il flusso con lo stesso ritardo, " "quindi senza un ritardo il messaggi IRC apparirebbero all'ascoltatore " "altrettanti secondi in anticipo rispetto all'audio.\n" "\n" "Questa impostazione consente di sincronizzare il cambio di traccia con il " "messaggio." #. TC: Dialog window title text. #: python/irc.py:710 msgid "IRC timed message" msgstr "Messaggio a tempo IRC" #. TC: Spinbutton time offset value label. #: python/irc.py:719 msgid "Offset" msgstr "Sfasamento" #. TC: Spinbutton timed interval duration value label. #: python/irc.py:721 msgid "Interval" msgstr "Intervallo" #. TC: spinbutton tooltip #: python/irc.py:724 msgid "" "The time offset within the below specified interval at which the message " "will be issued." msgstr "" "Lo sfasamento con l'intervallo specificato qui sotto con cui il messaggio " "verrà recapitato." #: python/irc.py:728 msgid "The interval in seconds of the timed message." msgstr "L'intervallo in secondi del messaggio temporizzato" #: python/irc.py:967 #, fuzzy msgid "This feature requires the installation of python-irc." msgstr "Questa funzionalità necessita dell'installazione di python-irclib" #. TC: Indicator text: We used a password. #: python/irc.py:1058 msgid "PASSWORD" msgstr "" #. TC: Indicator text: We interact with NickServ. #: python/irc.py:1061 msgid "NICKSERV" msgstr "" #. TC: Indicator text: Server connection started manually. #: python/irc.py:1064 msgid "MANUAL" msgstr "" #. TC: Dialog title text. #: python/irc.py:1089 msgid "IRC stream up message" msgstr "Messaggio di in onda di IRC" #. TC: Dialog title text. #: python/irc.py:1091 msgid "IRC stream down message" msgstr "Messaggio di fuori onda IRC" #. TC: Dialog title text. #: python/irc.py:1093 msgid "IRC station operations" msgstr "" #: python/jingles.py:96 #, fuzzy msgid "Stop" msgstr "Ferma" #. TC: Column heading, whether to play. #: python/jingles.py:114 python/playergui.py:326 msgid "Play" msgstr "Riproduci" #: python/jingles.py:123 python/sourceclientgui.py:1132 msgid "Repeat" msgstr "Ripeti" #: python/jingles.py:136 #, fuzzy msgid "Configure" msgstr "Configurazione" #: python/jingles.py:327 python/playergui.py:4194 msgid "Supported media" msgstr "Media supportati" #: python/jingles.py:334 #, python-format msgid "Effect %d Config" msgstr "" #: python/jingles.py:349 msgid "Trigger text" msgstr "" #: python/jingles.py:350 msgid "No Name" msgstr "" #: python/jingles.py:357 msgid "Level adjustment (dB)" msgstr "" #: python/jingles.py:432 #, fuzzy msgid "Effects volume." msgstr "VoIP imposta volume" #: python/jingles.py:439 msgid "Player headroom that is applied when an effect is playing." msgstr "" #: python/jingles.py:502 #, fuzzy msgid "Alternative" msgstr "Alterna" #: python/jingles.py:503 #, fuzzy msgid "Default" msgstr "Base" #: python/jingles.py:548 #, fuzzy msgid "Effects" msgstr "Effetto" #: python/jingles.py:591 #, fuzzy, python-format msgid "Effects %d" msgstr "Effetto" #: python/jingles.py:599 python/maingui.py:190 msgid "Background Tracks" msgstr "" #: python/jingles.py:618 msgid "Background Tracks volume." msgstr "" #: python/maingui.py:94 msgid "Show a JACK freewheel control on the main panel" msgstr "" #: python/maingui.py:96 msgid "Toggle JACK freewheel mode." msgstr "" #: python/maingui.py:169 #, fuzzy msgid "File" msgstr "Nome file" #: python/maingui.py:169 python/preferences.py:1130 msgid "View" msgstr "Vista" #: python/maingui.py:170 msgid "JACK Ports" msgstr "Porte JACK" #: python/maingui.py:170 msgid "Help" msgstr "" #: python/maingui.py:172 python/maingui.py:3688 msgid "Streams" msgstr "Flussi" #: python/maingui.py:173 #, fuzzy msgid "Recorders" msgstr "Registratore" #: python/maingui.py:186 python/maingui.py:225 msgid "Output" msgstr "Uscita" #: python/maingui.py:186 msgid "Preferences" msgstr "Preferenze" #: python/maingui.py:186 msgid "Profiles" msgstr "Profili" #: python/maingui.py:189 python/songdb.py:409 #, fuzzy msgid "Music Database" msgstr "Database" #: python/maingui.py:189 #, fuzzy msgid "Channel Meters" msgstr "Gestore canale" #: python/maingui.py:189 #, fuzzy msgid "Output Meters" msgstr "Uscita" #: python/maingui.py:190 msgid "Tabbed Area" msgstr "" #: python/maingui.py:190 msgid "Button Bar" msgstr "" #: python/maingui.py:224 python/preferences.py:1485 msgid "Channels" msgstr "Canali" #: python/maingui.py:224 #, fuzzy msgid "Players" msgstr "Lettore" #: python/maingui.py:225 msgid "VoIP" msgstr "" #: python/maingui.py:225 python/maingui.py:3128 msgid "DSP" msgstr "" #: python/maingui.py:225 msgid "Mix" msgstr "" #: python/maingui.py:225 msgid "Misc" msgstr "" #: python/maingui.py:270 msgid "Reset" msgstr "" #: python/maingui.py:273 msgid "Reset the JACK port connections to the default settings." msgstr "" #: python/maingui.py:277 msgid "" "Reset all JACK port connections?\n" "\n" "All currently established connections will be lost\n" "and replaced with defaults." msgstr "" #: python/maingui.py:320 msgid "No compatible ports available." msgstr "" #: python/maingui.py:363 #, python-brace-format msgid "{0} profile={1}:{2} settings saved." msgstr "" #: python/maingui.py:366 #, python-brace-format msgid "{0} session={1}:{2} settings saved." msgstr "" #: python/maingui.py:670 msgid "Text" msgstr "Testo" #: python/maingui.py:673 msgid "The opener button's text." msgstr "Il testo del pulsante di apertura" #: python/maingui.py:689 msgid "The opener button's icon." msgstr "L'iconda del pulsante di apertura." #: python/maingui.py:697 msgid "" "The headroom is the amount by which to reduce player volume when this opener " "is active. Note that the actual amount will be the largest value of all the " "currently open buttons." msgstr "" "L'headroom è la riduzione in dB da applicare al volume del lettore quando " "questo opener è attivo. Notare che la riduzione attuale sarà relativa al " "valore più alto tra tutti i pulsanti aperti." #: python/maingui.py:702 msgid "The amount of headroom required (dB)" msgstr "La quantità di headroom richiesta (dB)" #: python/maingui.py:711 msgid "This button will flash as a reminder to close" msgstr "Questo pulsante lampeggerà per ricordarvi di chiuderlo" #: python/maingui.py:712 msgid "" "After a number of seconds where a main player is active this button's status " "indicator will start to flash and will continue to do so until the button is " "closed or the player stops." msgstr "" "Dopo un certo numero di secondi che il lettore principale è attivo, " "l'indicatore di stato di questo pulsante inizierà a lampeggiare e continuerà " "a farlo finché il pulsante non sarà rilasciato o finché non verrò fermata la " "riproduzione." #: python/maingui.py:720 msgid "This button is to be treated as a microphone opener" msgstr "Questo apre il microfono" #: python/maingui.py:722 msgid "" "The button will be grouped with the other microphone opener buttons. It will " "be affected by signals to close microphone buttons. Channels associated with " "this button will be mixed differently when using the VoIP modes." msgstr "" "Questo pulsante sarà raggruppato insieme ai pulsanti degli altri microfoni. " "Sarà agito dai segnali per spegnere i microfoni. I canali associati con " "questo pulsante saranno missati in modo diverso quando vengono usate le " "modalità VoIP." #: python/maingui.py:731 msgid "This button will automatically cancel JACK freewheel mode" msgstr "" #: python/maingui.py:733 msgid "" "This should be set for all buttons that control input from a live sound " "source or device." msgstr "" #: python/maingui.py:736 msgid "Button Open Triggers" msgstr "Inneschi apertura pulsante" #: python/maingui.py:743 msgid "Playlist advance button" msgstr "Pulsante di avanzamento playlist" #: python/maingui.py:744 python/maingui.py:745 #, python-format msgid "'%s' control" msgstr "controllo '%s'" #. TC: Insert playlist control to stop the player. #: python/maingui.py:744 python/playergui.py:4457 msgid "Player Stop" msgstr "Ferma lettore" #. TC: Insert playlist control to stop the player. #: python/maingui.py:745 python/playergui.py:4464 msgid "Player Stop 2" msgstr "Ferma lettore 2" #: python/maingui.py:746 msgid "Announcements" msgstr "Annunci" #: python/maingui.py:758 msgid "When opened close these other buttons" msgstr "Chiude questi altri pulsanti se aperto" #: python/maingui.py:769 msgid "Shell Command" msgstr "Comando Shell" #: python/maingui.py:770 msgid "" "Mostly useful issuing 'amixer' commands, in particular for setting capture." msgstr "" "Più utile se si lancia il comando 'amixer', in particolare per impostare la " "registrazione." #: python/maingui.py:790 msgid "On open" msgstr "All'avvio" #: python/maingui.py:791 msgid "On close" msgstr "In chiusura" #: python/maingui.py:835 msgid "Main Panel Opener Buttons" msgstr "Pulsanti di apertura del pannello principale" #: python/maingui.py:847 msgid "Indicate button numbers and associated channel numbers" msgstr "Indica il numero dei pulsanti e dei numeri di canale associati" #: python/maingui.py:849 msgid "A useful feature to have switched on while allocating channel openers." msgstr "Una funzionalità utile da attivare mentre si allocano i canali" #: python/maingui.py:855 msgid "Status Indicator Appearance" msgstr "Aspetto dell'indicatore di stato" #: python/maingui.py:858 msgid "" "Each opener button has two vertical bars at the side to make the button " "state more apparent. These settings control their appearance." msgstr "" "Ogni pulsante ha due barre verticali ai lati per renderne chiaro lo stato. " "Queste impostazioni ne controllano la grafica." #: python/maingui.py:867 python/format.py:847 msgid "Width" msgstr "Larghezza" #: python/maingui.py:874 msgid "Opened" msgstr "Aperto" #: python/maingui.py:878 python/preferences.py:503 python/preferences.py:505 msgid "Closed" msgstr "Chiuso" #: python/maingui.py:883 msgid "Remind" msgstr "Ricorda" #. TC: A placeholder text for when there are no opener buttons. #: python/maingui.py:1064 msgid "No Channel Opener Buttons" msgstr "Nessun canale da abilitare" #: python/maingui.py:1353 msgid "" "This indicates the state of the various streams. Flashing means stream " "packets are being discarded because of network congestion. Partial red means " "the send buffer is partially full indicating difficulty communicating with " "the server. Green means everything is okay." msgstr "" "Indica lo stato dei vari flussi. Il lampeggiamento indica che i pacchetti " "del flusso vengono perduti perché la rete è congestionata. Un rosso parziale " "indica che il buffer di invio è parzialmente pieno, ovvero difficoltà di " "comunicazione con il server. Verde indica che tutto è a posto." #: python/maingui.py:1376 msgid "The combined total number of listeners in all server tabs." msgstr "Il numero cumulato di ascoltatori per tutti i server." #. TC: Record as in, to make a recording. #: python/maingui.py:1824 python/sourceclientgui.py:2874 msgid "Record" msgstr "Registra" #: python/maingui.py:2646 msgid "Confirmation to quit IDJC is required." msgstr "Viene chiesta una conferma per chiudere IDJC." #: python/maingui.py:2650 msgid "All active recordings and radio streams will terminate." msgstr "Tutte le registrazioni ed i flussi radio verranno interrotti." #: python/maingui.py:2652 msgid "All of the active radio streams will terminate." msgstr "Tutti flussi radio verranno interrotti." #: python/maingui.py:2654 msgid "All active recordings will cease." msgstr "Tutte le registrazioni verranno interrotte." #. TC: Popup menu item, wipes away the tracks played history text. #: python/maingui.py:2920 python/maingui.py:3352 msgid "Remove Contents" msgstr "Rimuove i contenuti" #: python/maingui.py:3075 msgid "Renameable Labels" msgstr "" #: python/maingui.py:3099 #, fuzzy msgid "Main Players" msgstr "Lettore destro" #: python/maingui.py:3152 msgid "Mix voice over IP audio to the output stream." msgstr "Manda in onda l'audio del VoIP" #: python/maingui.py:3165 msgid "Mix voice over IP audio to the DJ only." msgstr "Missa l'audio del VoIP solo al DJ" #: python/maingui.py:3192 msgid "" "This button steps through the active playlist, pausing between tracks. The " "active playlist is defined by the placement of the crossfader." msgstr "" "Questo pulsante scorre la playlist attiva facendo una pausa tra le tracce. " "La playlist attiva viene dedotta dal posizionamento del crossfader" #: python/maingui.py:3237 python/preferences.py:873 msgid "The volume control shared by both music players." msgstr "Il controllo del volume per entrambi i lettori" #: python/maingui.py:3248 msgid "The volume control for the right music player." msgstr "Il volume del lettore di destra." #: python/maingui.py:3276 msgid "VoIP level adjustment. 0dB gain is at the mid point." msgstr "" #: python/maingui.py:3299 msgid "The stream volume level to send to the voice over IP connection." msgstr "Il volume del flusso da inviare alla connessione VoIP" #: python/maingui.py:3326 python/preferences.py:1413 msgid "Tracks Played" msgstr "Tracce eseguite" #: python/maingui.py:3397 python/maingui.py:3399 python/maingui.py:3423 msgid "Monitor Mix" msgstr "Monitoraggio Mix" #: python/maingui.py:3406 python/maingui.py:3423 python/playergui.py:4398 msgid "DJ" msgstr "DJ" #. TC: binding editor, action pane, first row, toplevel menu. #: python/maingui.py:3409 python/maingui.py:3423 python/midicontrols.py:155 #: python/midicontrols.py:1507 python/playergui.py:4390 #: python/sourceclientgui.py:2882 msgid "Stream" msgstr "Flusso" #. TC: Context {0}, {1}, {2} = Monitor Mix, Stream, DJ #. TC: Or whatever they become translated to. #: python/maingui.py:3419 #, python-brace-format msgid "" "In IDJC there are are two audio paths and this '{0}' control toggles between " "them. When '{1}' is active you can hear what the listeners are hearing " "including the effects of the crossfader. '{0}' needs to be set to '{2}' in " "order to make proper use of the VoIP features." msgstr "" "In IDJC ci sono due percorsi per l'audio e questo '{0}' controllo passa " "dall'uno all'altro. Se '{1}' è attivo ascolterete quello che sentono gli " "ascoltatori, inclusi gli effetti della dissolvenza. '{0}' deve essere " "impostato su '{2}' per utilizzare al meglio le funzionalità VoIP" #. TC: Dropdown box title text widget. #: python/maingui.py:3432 python/maingui.py:3434 msgid "Metadata Source" msgstr "Sorgente dei metadati" #. TC: The chosen source of track metadata. #: python/maingui.py:3440 python/playergui.py:4103 msgid "Playlist 1" msgstr "Playlist 1" #. TC: The chosen source of track metadata. #: python/maingui.py:3442 python/playergui.py:4104 msgid "Playlist 2" msgstr "Playlist 2" #. TC: The chosen source of track metadata. #: python/maingui.py:3444 python/songdb.py:909 python/songdb.py:1293 msgid "Last Played" msgstr "Ultima eseguita" #. TC: The chosen source of track metadata. #: python/maingui.py:3446 python/maingui.py:3483 python/maingui.py:3485 msgid "Crossfader" msgstr "Crossfader" #. TC: The chosen source of track metadata. In this case no metadata. #. TC: Fade time is zero. No fade, none. #: python/maingui.py:3448 python/playergui.py:4373 msgid "None" msgstr "Nessuna" #. TC: The chosen source of track metadata. In this case no metadata. #: python/maingui.py:3450 python/playergui.py:4104 msgid "Playlist 3" msgstr "Playlist 3" #: python/maingui.py:3455 #, fuzzy msgid "Select the origin for the playing track metadata on the stream." msgstr "Seleziona quale Deck è responsabile dei metadati del flusso" #. TC: Abbreviation of left. #: python/maingui.py:3465 python/maingui.py:3467 msgid "L" msgstr "L" #: python/maingui.py:3477 msgid "Move the crossfader fully left." msgstr "Sposta il crossfader a sinistra" #: python/maingui.py:3497 msgid "The crossfader." msgstr "Il crossfader" #. TC: Abbreviation of right. #: python/maingui.py:3501 python/maingui.py:3503 msgid "R" msgstr "R" #: python/maingui.py:3513 msgid "Move the crossfader fully right." msgstr "Sposta il crossfader a destra" #. TC: Describes a mid point. #: python/maingui.py:3522 python/maingui.py:3524 msgid "Middle" msgstr "Mezzo/Metà" #: python/maingui.py:3541 python/maingui.py:3548 msgid "Move the crossfader to the middle of its range of travel." msgstr "Sposta il crossfader a metà della corsa" #. TC: The attenuation response curve of the crossfader. User selectable. #: python/maingui.py:3553 python/maingui.py:3555 msgid "Response" msgstr "Risposta" #: python/maingui.py:3577 msgid "" "This selects the response curve of the crossfader.\n" "\n" "The mid-point attenuations are -3dB, 0dB, and -22dB respectively." msgstr "" "Consente di selezionare la curva di risposta del crossfader.\n" "Le attenuzioni nel punto di mezzo sono -3dB, 0dB e -22dB rispettivamente." #. TC: Duration in seconds. #: python/maingui.py:3591 python/maingui.py:3593 msgid "Time" msgstr "Tempo" #: python/maingui.py:3610 msgid "" "The time in seconds that the crossfader will take to automatically pass " "across when the button to the right is clicked." msgstr "" "Il tempo in secondi che impiegherà il crossfader per passare da una parte " "all'altra quando viene premuto il pulsante qui a destra." #. TC: The crossfader pass-across button text. #. TC: The actual button appears as [<-->] with this text above it. #: python/maingui.py:3619 python/maingui.py:3621 msgid "Pass" msgstr "Avvia" #: python/maingui.py:3634 msgid "" "This button causes the crossfader to move to the opposite side at a speed " "determined by the speed selector to the left." msgstr "" "Questo pulsante muove il crossfader fino alla parte opposta nel lasso di " "tempo specificato qui a sinistra" #: python/maingui.py:3677 #, fuzzy msgid "Peak" msgstr "Str Peak" #: python/maingui.py:3680 msgid "A peak hold meter indicating the signal strength of the stream audio." msgstr "" "Un indicatore a tenuta di picco che indica la potenza del segnale audio " "trasmesso." #. TC: This text appears above the stream mix VU meter. #: python/maingui.py:3702 msgid "VU" msgstr "" #: python/maingui.py:3706 msgid "A VU meter for the stream audio." msgstr "Indicatore VU per il flusso audio" #. TC: Appears above the mic meters as a label followed by a number. #: python/maingui.py:3709 msgid "Ch" msgstr "Ch" #: python/maingui.py:3736 msgid "" "A peak hold meter indicating the microphone signal strength and a meter " "indicating attenuation levels in the microphone signal processing system. " "Green indicates attenuation from the noise gate, yellow from the de-esser, " "red from the limiter." msgstr "" "Un indicatore a tenuta di picco che indica la potenza del segnale e uno che " "indica l'attenuazione del livello del microfono da parte dell'elaboratore di " "segnale. Il verde indica l'attenuazione del noise gate, il giallo del de-" "esser. Il rosso del limiter." #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:48 #, fuzzy msgid "Tooltips enable" msgstr "VoIP abilita l'uscita" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:50 msgid "DJ-mix monitor" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:52 msgid "Panning load from presets" msgstr "" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:54 msgid "Player play/pause" msgstr "Lettore riproduci/pausa" #. TC: Control method. Please keep it as Target:Action. #. TC: Playlist control. #: python/midicontrols.py:56 python/playergui.py:3857 msgid "Player stop" msgstr "Lettore ferma" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:58 msgid "Player advance" msgstr "Lettore avanza" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:60 msgid "Player play previous" msgstr "Lettore suona la precedente" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:62 msgid "Player play next" msgstr "Lettore suona la prossima" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:64 msgid "Player play selected from start" msgstr "Lettore suona la selezione dall'inizio" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:66 msgid "Player select previous" msgstr "Lettore seleziona la precedente" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:68 msgid "Player select next" msgstr "Lettore seleziona la successiva" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:70 msgid "Player stream output enable" msgstr "Lettore abilita il flusso" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:72 msgid "Player DJ output enable" msgstr "Lettore abilita l'uscita DJ" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:74 msgid "Player DJ-only switch" msgstr "Lettore solo al DJ " #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:76 msgid "Player set volume" msgstr "Lettore Imposta il volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:78 msgid "Player set gain" msgstr "Lettore imposta il gain" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:80 msgid "Player set balance" msgstr "Lettore imposta il bilanciamento" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:82 msgid "Player set pitchbend" msgstr "Lettore imposta variazione tono" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:85 msgid "Playlist edit tags" msgstr "Playlist modifica i tag" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:87 msgid "Playlist insert stop" msgstr "Playlist inserisci stop" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:89 msgid "Playlist insert stop 2" msgstr "Playlist inserisci stop 2" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:91 msgid "Playlist insert announce" msgstr "Lettore inserisci annuncio" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:93 msgid "Playlist insert transfer" msgstr "Lettore inserisci trasferimento" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:95 msgid "Playlist insert crossfade" msgstr "Playlist inserisci dissolvenza" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:97 msgid "Playlist insert pitchunbend" msgstr "Playlist inserisci abbassamento tono" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:99 msgid "Playlist insert jump to top" msgstr "Playlist inserisci salto all'inizio" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:102 msgid "Players set crossfade" msgstr "Lettori imposta dissolvenza" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:104 msgid "Players pass crossfade" msgstr "Lettori supera dissolvenza" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:106 msgid "Players set focus" msgstr "Lettori imposta focus" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:108 msgid "Players show pitchbend" msgstr "Lettori mostra alzamento tono" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:110 #, fuzzy msgid "Players advance" msgstr "Lettore avanza" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:113 msgid "Channel output enable" msgstr "Canale abilita l'uscita" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:115 msgid "Channel set volume" msgstr "Canale imposta volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:117 msgid "Channel set gain" msgstr "Canale imposta guadagno" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:119 msgid "Channel set balance" msgstr "Canale imposta bilanciameno" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:122 msgid "VoIP output enable" msgstr "VoIP abilita l'uscita" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:124 msgid "VoIP DJ-only switch" msgstr "VoIP solo al DJ" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:126 msgid "VoIP set volume" msgstr "VoIP imposta volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:128 #, fuzzy msgid "VoIP set mixback" msgstr "VoIP imposta il bilanciamento" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:130 msgid "VoIP set gain" msgstr "VoIP imposta guadagno" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:132 msgid "VoIP set balance" msgstr "VoIP imposta il bilanciamento" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:135 #, fuzzy msgid "Effect play from start" msgstr "Stacchetto suona dall'inizio" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:138 #, fuzzy msgid "Effects stop many" msgstr "VoIP imposta volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:140 #, fuzzy msgid "Effects set volume" msgstr "VoIP imposta volume" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:142 #, fuzzy msgid "Effects set headroom" msgstr "Stacchetti seleziona il successivo" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:145 msgid "Stream set connected" msgstr "Flusso imposta connessione" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:148 msgid "Recorder set recording" msgstr "Registratore imposta registrazione" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:152 python/midicontrols.py:1493 msgid "Player" msgstr "Lettore" #. TC: binding editor, action pane, first row, toplevel menu. #. TC: The midi channel. #. TC: Specifically, the numerical midi channel. #: python/midicontrols.py:153 python/midicontrols.py:1499 #: python/midicontrols.py:1568 python/midicontrols.py:1758 msgid "Channel" msgstr "Canale" #: python/midicontrols.py:154 python/preferences.py:599 #: python/preferences.py:609 msgid "Effect" msgstr "Effetto" #: python/midicontrols.py:156 msgid "Recorder" msgstr "Registratore" #: python/midicontrols.py:157 #, fuzzy msgid "Setting" msgstr "Modificatori" #: python/midicontrols.py:161 msgid "Left player" msgstr "Lettore sinistro" #: python/midicontrols.py:162 msgid "Right player" msgstr "Lettore destro" #: python/midicontrols.py:163 #, fuzzy msgid "Background player" msgstr "Lettore attivo" #: python/midicontrols.py:164 msgid "Focused player" msgstr "Lettore attivo" #: python/midicontrols.py:165 msgid "Fadered player" msgstr "Lettore inattivo" #: python/midicontrols.py:169 #, fuzzy msgid "Effects bank 1" msgstr "Effetto" #: python/midicontrols.py:170 #, fuzzy msgid "Effects bank 2" msgstr "Effetto" #: python/midicontrols.py:171 #, fuzzy msgid "All effects" msgstr "Stacchetti seleziona il successivo" #. TC: The name of the backspace key. #: python/midicontrols.py:405 msgid "BackSpace" msgstr "BackSpace" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1469 msgid "Use value" msgstr "Usa valore" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1471 msgid "Act if" msgstr "Agisci se" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1473 msgid "Set to" msgstr "Imposta a" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1475 msgid "Adjust by" msgstr "Regola di" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1480 python/midicontrols.py:1484 msgid "Control" msgstr "Controllo" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1482 msgid "Note" msgstr "Nota" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1486 msgid "Key" msgstr "Tasto" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1491 #, fuzzy msgid "Miscellaneous" msgstr "Impostazioni varie" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1495 msgid "Both players" msgstr "Entrambi i lettori" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1497 msgid "Quick panning" msgstr "" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1501 msgid "VoIP channel" msgstr "Canale VoIP" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1503 #, fuzzy msgid "Single effect" msgstr "Stacchetti seleziona il successivo" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1505 #, fuzzy msgid "Effects bank" msgstr "Effetto" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1509 msgid "Stream recorder" msgstr "Flusso registratore " #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1514 msgid "Direct fader/held button" msgstr "Pulsante cursore/premuto" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1516 msgid "One-shot/toggle button" msgstr "Pulsante a singolo colpo" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1518 msgid "Set value" msgstr "Imposta valore" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1520 msgid "Alter value" msgstr "Altera valore" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1525 msgid "MIDI control" msgstr "MIDI controllo" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1527 msgid "MIDI note" msgstr "MIDI nota" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1529 msgid "MIDI pitch-wheel" msgstr "MIDI controllo della tonalità " #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1531 msgid "Keyboard press" msgstr "Azione da tastiera" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1533 msgid "XChat command" msgstr "XChat comando" #. TC: Dialog window title text. #. TC: User is expected to edit a control binding. #: python/midicontrols.py:1542 msgid "Edit control binding" msgstr "Modifica le scorciatoie per i controlli" #. TC: After clicking this button the binding editor will be listening #. TC: for a key press or midi control surface input. #. TC: Button text. If pressed triggers 'Listening for input' mode. #: python/midicontrols.py:1557 python/midicontrols.py:1638 #: python/midicontrols.py:1737 msgid "Listen for input..." msgstr "In attesa di input..." #. TC: The input source. #: python/midicontrols.py:1565 msgid "Source" msgstr "Fonte" #. TC: The manner in which the input is interpreted. #: python/midicontrols.py:1584 msgid "Interaction" msgstr "Interazione" #. TC: The effect of the control can be directed upon a specific target. #. TC: e.g. On target [Left player] #: python/midicontrols.py:1590 msgid "On target" msgstr "Obiettivo" #. TC: Checkbutton text. #. TC: Use reverse scale and invert the meaning of button presses. #: python/midicontrols.py:1598 msgid "Reversed" msgstr "Invertito" #: python/midicontrols.py:1599 msgid "Pressed" msgstr "Premuto" #: python/midicontrols.py:1601 msgid "Released" msgstr "Rilasciato" #. TC: Tree column heading for Inputs e.g. Backspace, F1, S. #: python/midicontrols.py:1631 python/midicontrols.py:1992 msgid "Input" msgstr "Ingresso" #: python/midicontrols.py:1635 #, python-format msgid "" "The first half of a binding is the input which comes in the form of the " "press of a keyboard key or an event from a midi device.\n" "\n" "Input selection can be done manually or with the help of the '%s' option." msgstr "" "La prima metà di un binding è l'input che proviene nella forma di un tasto " "premuto della tastiera o di un evento di un dispositivo midi.\n" "\n" "La selezione dell'input può essere fatta manualmente o con l'ausilio " "dell'opzione '%s'." #. TC: Tree column heading for actions e.g. Player stop. #: python/midicontrols.py:1671 python/midicontrols.py:1677 #: python/midicontrols.py:2006 msgid "Action" msgstr "Azione" #. TC: %s is the translation of 'Action'. #: python/midicontrols.py:1676 #, python-format msgid "The '%s' pane determines how the input is handled, and to what effect." msgstr "" "Il pannello '%s' determina come viene gestito l'ingresso e con quale effetto." #: python/midicontrols.py:1733 msgid "Listening for input" msgstr "In attesta di input" #. TC: Refers to key modifiers including Ctrl, Alt, Shift, .... #: python/midicontrols.py:1754 msgid "Shifting" msgstr "Modificatori" #: python/midicontrols.py:1953 msgid "Singular control" msgstr "Controllo unico" #: python/midicontrols.py:2015 msgid "Target" msgstr "Obiettivo" #: python/mutagentagger.py:219 msgid "title" msgstr "titolo" #: python/mutagentagger.py:219 msgid "artist" msgstr "artista" #: python/mutagentagger.py:220 msgid "album" msgstr "album" #: python/mutagentagger.py:220 msgid "track/total" msgstr "traccia/totale" #: python/mutagentagger.py:221 msgid "genre" msgstr "genere" #: python/mutagentagger.py:221 msgid "record date" msgstr "data di registrazione" #: python/mutagentagger.py:360 msgid "" "Add any other ID3 text frames here.\n" "e.g. TIT2:Alternate Title\n" "This will be appended onto the main TIT2 tag.\n" "\n" "Enter user defined text frames like this:\n" "TXXX:foo=bar\n" "\n" "For more information visit www.id3.org." msgstr "" "Aggiunge qualsiasi altro riquadro ID3.\n" "es. TIT2: Titolo alternativo \n" "Verrà accodato la TIT2 principale.\n" "\n" "Inserire riquadri definiti dall'utente in questo modo:\n" "TXXX:pinco=pallo\n" "\n" "Per ulteriori informazioni visitare www.id3.org." #. TC: Remaining textual ID3 data is show below this heading. #: python/mutagentagger.py:366 msgid " Additional Text Frames " msgstr " Riquadri di testo aggiuntivi " #. TC: The album track number. #: python/mutagentagger.py:376 python/songdb.py:906 python/songdb.py:1295 msgid "Track" msgstr "Traccia" #: python/mutagentagger.py:377 msgid "Genre" msgstr "Genere" #: python/mutagentagger.py:377 msgid "Year" msgstr "Anno" #. TC: Window title. #: python/mutagentagger.py:688 msgid "IDJC Tagger" msgstr "Il tagger IDJC" #: python/mutagentagger.py:700 python/mutagentagger.py:704 #: python/mutagentagger.py:708 msgid "Filename:" msgstr "Nome file:" #: python/mutagentagger.py:777 msgid "Native" msgstr "Nativo" #: python/songdb.py:177 #, fuzzy msgid "Connecting" msgstr "Connessione" #: python/songdb.py:188 #, fuzzy, python-format msgid "Connection failed (try %d)" msgstr "Timer di connessione:" #: python/songdb.py:199 msgid "Connected: autocommit mode failed" msgstr "" #: python/songdb.py:201 msgid "Connected: autocommit mode set" msgstr "" #: python/songdb.py:202 #, fuzzy msgid "Connected" msgstr "Connetti" #: python/songdb.py:210 msgid "Job dropped" msgstr "" #: python/songdb.py:220 python/songdb.py:431 #, fuzzy msgid "Disconnected" msgstr "Disconnetti" #: python/songdb.py:233 msgid "Problem dropping connection" msgstr "" #: python/songdb.py:235 #, fuzzy msgid "Connection dropped" msgstr "Connessione" #: python/songdb.py:326 #, fuzzy msgid "Hostname[:Port]" msgstr "Nome host" #: python/songdb.py:331 #, fuzzy msgid "User Name" msgstr "Nome utente" #: python/songdb.py:334 msgid "Database" msgstr "Database" #: python/songdb.py:389 #, fuzzy msgid "Prokyon3 or Ampache (song title) Database" msgstr "Prokyon3 (titolo canzone) Database" #: python/songdb.py:390 msgid "" "You can make certain media databases accessible in IDJC for easy drag and " "drop into the playlists." msgstr "" #: python/songdb.py:438 #, fuzzy msgid "Module mysql-python (MySQLdb) required" msgstr "E' necessario il modulo Python MySQLdb" #: python/songdb.py:707 python/songdb.py:723 python/songdb.py:747 #: python/songdb.py:805 msgid "" msgstr "" #: python/songdb.py:741 #, fuzzy msgid "Not Played" msgstr "Ultima eseguita" #: python/songdb.py:878 msgid "Reload the database." msgstr "" #: python/songdb.py:883 msgid "Expand entire tree." msgstr "" #: python/songdb.py:884 #, fuzzy msgid "Collapse tree." msgstr "_Collassa" #: python/songdb.py:891 msgid "Browse" msgstr "" #. TC: The disk number of the album track. #: python/songdb.py:904 python/songdb.py:1294 msgid "Disk" msgstr "" #. TC: Track playback time. #. TC: Playback time. #: python/songdb.py:908 python/songdb.py:1296 python/playergui.py:340 msgid "Duration" msgstr "Durata" #: python/songdb.py:910 python/songdb.py:1297 python/format.py:614 #: python/format.py:635 python/format.py:721 python/format.py:742 #: python/format.py:877 python/format.py:982 python/format.py:1032 #: python/format.py:1042 python/format.py:1120 python/format.py:1153 msgid "Bitrate" msgstr "Bitrate" #: python/songdb.py:911 python/songdb.py:1298 msgid "Filename" msgstr "Nome file" #. TC: Directory path to a file. #: python/songdb.py:913 python/songdb.py:1299 msgid "Path" msgstr "Percorso" #: python/songdb.py:918 msgid "Artist - Album - Title" msgstr "" #: python/songdb.py:919 msgid "Album - [Disk] - Title" msgstr "" #: python/songdb.py:939 msgid "Fetching" msgstr "" #: python/songdb.py:1084 msgid "Tree fetch failed" msgstr "" #: python/songdb.py:1085 msgid "Fetch Failed!" msgstr "" #: python/songdb.py:1098 msgid "Populating" msgstr "Sto popolando" #: python/songdb.py:1224 #, python-format msgid "Disk %d" msgstr "" #. TC: User specified search filter entry box title text. #: python/songdb.py:1243 msgid "Filters" msgstr "Filtri" #. TC: A type of search on any data field matching paritial strings. #: python/songdb.py:1255 msgid "Fuzzy Search" msgstr "Ricerca approssimativa" #. TC: WHERE is an SQL keyword. #: python/songdb.py:1264 msgid "WHERE" msgstr "WHERE" #: python/songdb.py:1277 #, fuzzy msgid "Search" msgstr "Ricerca approssimativa" #: python/songdb.py:1514 python/songdb.py:1639 msgid "Minutes" msgstr "" #: python/songdb.py:1514 python/songdb.py:1639 #, fuzzy msgid "Hours" msgstr "Colori" #: python/songdb.py:1515 python/songdb.py:1639 msgid "Days" msgstr "" #: python/songdb.py:1515 python/songdb.py:1639 python/songdb.py:1709 #: python/songdb.py:1803 msgid "Weeks" msgstr "" #: python/songdb.py:1609 msgid "Catalogs" msgstr "" #: python/songdb.py:1616 #, fuzzy msgid "Name" msgstr "Nome utente" #: python/songdb.py:1617 msgid "Catalog Path" msgstr "" #: python/songdb.py:1618 #, fuzzy msgid "Prepend Path" msgstr "Prependi" #: python/songdb.py:1626 #, fuzzy msgid "Last Played Scale" msgstr "Ultima eseguita" #: python/songdb.py:1658 #, fuzzy msgid "Path Peel" msgstr "Percorso" #: python/songdb.py:1737 msgid "N/A" msgstr "" #: python/songdb.py:1918 #, fuzzy msgid "Failed to create FULLTEXT index" msgstr "errore nella creazione del profilo: %s" #: python/songdb.py:1922 msgid "Found existing FULLTEXT index" msgstr "" #: python/songdb.py:1936 python/songdb.py:1949 #, fuzzy msgid "Unrecognised database" msgstr "data di registrazione" #: python/songdb.py:1944 msgid "Found Prokyon 3 schema" msgstr "" #: python/playergui.py:104 msgid "Click to stop adding tracks!" msgstr "" #: python/playergui.py:263 msgid "Cuesheet Playlist" msgstr "Playlist da file cue" #. TC: Column heading, the track number. #: python/playergui.py:329 msgid "Trk" msgstr "Trk" #. TC: Column heading, the index number. #: python/playergui.py:332 msgid "Ind" msgstr "Ind" #: python/playergui.py:441 msgid "External Playlist" msgstr "Playlist esterna" #. TC: Button text to activate an external playlist. #: python/playergui.py:452 msgid "Active" msgstr "Attivo" #: python/playergui.py:462 msgid "Choose a playlist file" msgstr "Scegli un file playlist" #: python/playergui.py:467 msgid "Choose a media directory" msgstr "Scegli una cartella per i media" #: python/playergui.py:480 msgid "Choose a playlist file." msgstr "Scegli un playlist file" #: python/playergui.py:482 msgid "Choose a folder/directory of music." msgstr "Scegli una cartella per la musica" #: python/playergui.py:549 msgid "Create a new announcement" msgstr "Crea un nuovo annuncio" #: python/playergui.py:552 msgid "Modify or Delete this announcement" msgstr "Modifica o elimina questo annuncio" #. TC: Embed a DJ announcement text into the playlist. #: python/playergui.py:555 python/playergui.py:4494 msgid "Announcement" msgstr "Avviso" #. TC: The time format as minutes and seconds. #: python/playergui.py:583 msgid "mm:ss" msgstr "mm:ss" #. TC: Alongside the name of the next track. #: python/playergui.py:636 msgid "Next track" msgstr "Traccia successiva" #: python/playergui.py:961 msgid "By Extension" msgstr "Per estensione" #: python/playergui.py:961 msgid "M3U playlist" msgstr "Playlist M3U" #: python/playergui.py:961 #, fuzzy msgid "M3U8 playlist" msgstr "Playlist M3U" #: python/playergui.py:962 msgid "XSPF playlist" msgstr "XSPF playlist" #: python/playergui.py:962 msgid "PLS playlist" msgstr "PLS playlist" #: python/playergui.py:1034 #, python-format msgid "%d Audio Tracks" msgstr "" #. TC: Missing metadata text. #: python/playergui.py:1044 msgid "Unknown" msgstr "Sconosciuto" #: python/playergui.py:1048 msgid "(Cue sheet)" msgstr "(Elementi del file cue)" #: python/playergui.py:1085 msgid "Bad Tag" msgstr "Tag errato" #: python/playergui.py:1921 python/playergui.py:4333 msgid "Manual" msgstr "Manuale" #. TC: playlist modes #: python/playergui.py:1925 python/playergui.py:4332 msgid "Play All" msgstr "Riproduci tutto" #: python/playergui.py:1933 python/playergui.py:1942 python/playergui.py:4332 msgid "Loop All" msgstr "Riproduci in ciclo" #: python/playergui.py:1933 python/playergui.py:4333 msgid "Cue Up" msgstr "Accoda" #: python/playergui.py:1934 python/playergui.py:4337 msgid "Fade Over" msgstr "Dissolvenza in uscita" #: python/playergui.py:1946 python/playergui.py:2021 python/playergui.py:4332 msgid "Random" msgstr "Casuale" #: python/playergui.py:1990 python/playergui.py:4333 msgid "External" msgstr "Esterna" #. TC: yet more playlist modes these ones for the main players only #: python/playergui.py:2002 python/playergui.py:2018 python/playergui.py:4337 msgid "Alternate" msgstr "Alterna" #: python/playergui.py:2002 python/playergui.py:2020 python/playergui.py:4337 msgid "Random Hop" msgstr "Salto casuale" #. TC: The remaining playlist time. #: python/playergui.py:2176 python/playergui.py:2182 msgid "Remaining" msgstr "Restante" #. TC: The estimated finish time of the playlist. #. TC: The estimated finish time of the playlist (ETA). #: python/playergui.py:2178 python/playergui.py:2182 python/playergui.py:2196 msgid "Finish" msgstr "Fine" #. TC: The play duration of the block of audio tracks. #: python/playergui.py:2183 python/playergui.py:2194 msgid "Block size" msgstr "Dimensione blocco" #. TC: File dialog title text. #: python/playergui.py:2584 msgid "Add music to left playlist" msgstr "Aggiungi musica alla playlist di sinistra" #. TC: File dialog title text. #: python/playergui.py:2587 msgid "Add music to right playlist" msgstr "Aggiungi musica alla playlist di destra" #: python/playergui.py:2589 msgid "Add background music" msgstr "" #. TC: File filter text. #: python/playergui.py:2601 msgid "Supported Media Formats" msgstr "Formati di media supportati" #. TC: Expander text "Select File Type (.pls)" for the pls file type. #: python/playergui.py:2652 msgid "Select File Type" msgstr "Seleziona il tipo di file" #: python/playergui.py:3442 msgid "Save left playlist" msgstr "Salva la playlist di sinistra" #: python/playergui.py:3444 msgid "Save right playlist" msgstr "Salva la playlist di destra" #: python/playergui.py:3446 #, fuzzy msgid "Save background playlist" msgstr "Salva la playlist di destra" #: python/playergui.py:3464 msgid "File Type" msgstr "Tipo file" #: python/playergui.py:3469 msgid "Extension" msgstr "Estensione" #. TC: Playlist control. #. TC: Insert playlist control to do a ten second fade to the next track. #: python/playergui.py:3833 python/playergui.py:4505 msgid "Fade 10s" msgstr "Dissolvi 10sec" #. TC: Playlist control. #. TC: Insert playlist control to do a five second fade to the next track. #: python/playergui.py:3839 python/playergui.py:4512 msgid "Fade 5s" msgstr "Dissolvi 5sec" #. TC: Playlist control. #. TC: Insert playlist control to not do a fade to the next track. #: python/playergui.py:3844 python/playergui.py:4519 msgid "No Fade" msgstr "Nessun dissolvenza" #. TC: Playlist control. #: python/playergui.py:3852 msgid ">> Normal Speed <<" msgstr ">> Velocità normale <<" #. TC: Playlist control. #: python/playergui.py:3862 msgid "Player stop 2" msgstr "Lettore ferma 2" #. TC: Playlist control. #. TC: Insert playlist control to jump to the top of the playlist. #: python/playergui.py:3867 python/playergui.py:4471 msgid "Jump To Top" msgstr "Passa all'inizio" #. TC: Playlist control. #: python/playergui.py:3872 python/playergui.py:4531 msgid "Stop streaming" msgstr "Interrompi il flusso" #. TC: Playlist control. #: python/playergui.py:3877 python/playergui.py:4539 msgid "Stop recording" msgstr "Interrompi la registrazione" #: python/playergui.py:3910 #, fuzzy msgid "Announcement:" msgstr "Avviso" #. TC: Playlist control. #: python/playergui.py:3916 msgid ">>> Transfer across >>>" msgstr ">>> Trasferisci tra >>>" #. TC: Playlist control. #: python/playergui.py:3919 msgid "<<< Transfer across <<<" msgstr "<<< Trasferisci tra <<<" #. TC: Playlist control. #: python/playergui.py:3924 msgid ">>> Fade across >>>" msgstr ">>> Dissolvi tra >>>" #. TC: Playlist control. #: python/playergui.py:3927 msgid "<<< Fade across <<<" msgstr "<<< Dissolvi tra <<<" #. TC: Playlist control. #: python/playergui.py:3933 msgid "Ignored playlist control" msgstr "Controlli playlist ignorati" #: python/playergui.py:4001 #, python-brace-format msgid "Playing track {0} of {1}" msgstr "Riproduzione traccia {0} di {1}" #. TC: Previous line: Playing track {0} of {1} #: python/playergui.py:4014 #, python-format msgid "From the album, %s" msgstr "Dall'album, %s" #: python/playergui.py:4021 #, python-format msgid "Total number of tracks %d" msgstr "Numero totale di tracce %d" #: python/playergui.py:4025 python/playergui.py:4027 #, python-format msgid "Total play duration %s" msgstr "Durata totale %s" #: python/playergui.py:4077 msgid "" "Left click toggles between showing the amount of time elapsed or remaining " "on the current track being played." msgstr "" "Il click sinistro cambia dal mostrare il tempo trascorso o restante della " "traccia in esecuzione." #: python/playergui.py:4095 msgid "" "This slider acts as both a play progress indicator and as a means for " "seeking within the currently playing track." msgstr "" "Questo cursore agisce sia come un indicatore di avanzamento che come " "strumento per spostarsi nella traccia attualmente in esecuzione." #. TC: File filter text. #: python/playergui.py:4184 msgid "All file types" msgstr "Tutti i tipi di file" #: python/playergui.py:4189 #, fuzzy msgid "Playlist types" msgstr "Playlist 1" #: python/playergui.py:4204 msgid "" "'Block size' indicates the amount of time that it will take to play from the " "currently selected track to the next stop.\n" "'Remaining' is the amount of time until the next stop.\n" "'Finish' Is the computed time when the tracks will have finished playing." msgstr "" "'Dimensione blocco' indica la quantità di tempo che intercorre tra la " "riproduzione della traccia selezionata ed il prossimo stop.\n" "'Restante' è il tempo fino al prossimo stop.\n" "'Fine' è il tempo calcolato quando finirà la riproduzione delle tracce." #: python/playergui.py:4230 msgid "This adjusts the playback speed anywhere from 25% to 400%." msgstr "Regola la velocità di riproduzione tra il 25% ed il 400%." #: python/playergui.py:4244 msgid "This sets the playback speed back to normal." msgstr "Reimposta la normale velocità di riproduzione " #: python/playergui.py:4261 msgid "Previous track." msgstr "Traccia precedente" #: python/playergui.py:4273 msgid "Play." msgstr "Riproduci" #: python/playergui.py:4283 msgid "Pause." msgstr "Pausa" #: python/playergui.py:4293 msgid "Stop." msgstr "Ferma" #: python/playergui.py:4303 msgid "Next track." msgstr "Traccia successiva" #: python/playergui.py:4315 msgid "Add tracks to the playlist." msgstr "Aggiungi tracce alla playlist" #: python/playergui.py:4322 python/preferences.py:71 msgid "Playlist Mode" msgstr "Modalità playlist" #: python/playergui.py:4343 msgid "" "This sets the playlist mode which defines player behaviour after a track has " "finished playing.\n" "\n" "'Play All' is the most versatile mode since it allows the use of embeddable " "playlist control elements which are accessible using the right click context " "menu in the playlist. When no playlist controls are present the tracks are " "played sequentially until the end of the playlist is reached at which point " "the player will stop.\n" "\n" "'Loop All' causes the tracks to be played in sequence, restarting with the " "first track once the end of the playlist is reached.\n" "\n" "'Random' causes the tracks to be played indefinitely with the tracks " "selected at random.\n" "\n" "'Manual' causes the player to stop at the end of each track.\n" "\n" "'Cue Up' is similar to manual except that the next track in the playlist " "will also be highlighted.\n" "\n" "'External' draws it's tracks from an external playlist or directory one at a " "time. Useful for when you want to stream massive playlists.\n" "\n" "'Alternate' causes the next track to be cued up before starting the opposite " "player. The crossfader is moved over.\n" "\n" "'Fade Over' will crossfade to the other player at the end of every track.\n" "\n" "'Random Hop' will pick a track at random from the other playlist." msgstr "" "Imposta la modalità della playlist, che definisce il comportamento del " "lettore dopo che una traccia è stata eseguita.\n" "\n" "'Riproduci tutto' è la modalità più versatile perché consente di usare gli " "elementi di controllo disponibili nel menù contestuale della playlist, " "accessibile con il clic destro. Se non sono presenti elementi di controllo " "le tracce verranno riprodotte sequenzialmente fino alla fine della playlist " "dopodiché il lettore si fermerà.\n" "\n" "'Riproduci in ciclo' fa in modo che le tracce vengano riprodottein sequenza, " "iniziando da capo una volta raggiunta la fine della playlist.\n" "\n" "'Casuale' le tracce verranno riprodotte all'infinito e casualmente.\n" "\n" "'Manuale' il lettore si fermerà alla fine di ogni traccia.\n" "\n" "'Accoda' come per Manuale ma che la traccia successiva verrà evidenziata.\n" "\n" "'Esterna' prende le tracce una alla volta da una playlist esterna o da una " "cartella. Utile per trasmettere playlist di grosse dimensioni.\n" "\n" "'Alterna' fa in modo che la traccia successiva sia messa in coda prima di " "avviare l'altro lettore. Il crossfader non viene attivato.\n" "\n" "'Dissolvenza' nel passaggio da un lettore all'altro l'audio si sovrapporrà " "alla fine di ogni traccia.\n" "\n" "'Salto casuale' sceglierà una traccia a caso dall'altra playlist." #. TC: Fade time heading. #: python/playergui.py:4367 python/preferences.py:72 msgid "Fade" msgstr "Dissolvenza" #: python/playergui.py:4379 msgid "This controls the amount of fade between tracks." msgstr "Controlla il tempo di dissolvenza tra tracce" #: python/playergui.py:4386 msgid "Audio Feed" msgstr "Audio Feed" #: python/playergui.py:4396 msgid "Make output from this player available for streaming." msgstr "Manda in onda l'audio di questo lettore" #: python/playergui.py:4404 msgid "Make output from this player audible to the DJ." msgstr "Rende l'uscita di questo lettore udibile dal DJ" #: python/playergui.py:4406 msgid "Force" msgstr "" #: python/playergui.py:4412 msgid "" "When selected this player will be treated like a main player.\n" "It will be affected by microphone ducking and won't mute when a main player " "is operating." msgstr "" #. TC: Insert playlist control. #: python/playergui.py:4425 msgid "Insert control" msgstr "Inserisci controllo" #. TC: The Item submenu. #: python/playergui.py:4434 msgid "Item" msgstr "Elemento" #. TC: The Playlist submenu. #: python/playergui.py:4439 msgid "Playlist" msgstr "Playlist" #. TC: Insert playlist control to set playback speed to normal. #: python/playergui.py:4450 msgid "Normal Speed" msgstr "Velocità normale" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4479 python/playergui.py:4633 msgid "Transfer" msgstr "Trasferisci" #: python/playergui.py:4487 msgid "Crossfade" msgstr "Dissolvi" #. TC: Menu item. Opens the metadata tagger on the selected track. #: python/playergui.py:4552 msgid "Meta Tag" msgstr "Meta Tag" #. TC: Menu Item. Duplicates the selected track in the playlist. #: python/playergui.py:4558 msgid "Duplicate" msgstr "Duplica" #. TC: Menu Item. Remove the selected track. #: python/playergui.py:4565 msgid "Remove" msgstr "Rimuovi" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4576 msgid "This" msgstr "Questo" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4583 python/preferences.py:1237 msgid "All" msgstr "Tutto" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4590 msgid "From Here" msgstr "Da qui" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4597 msgid "To Here" msgstr "Fino a qui" #. TC: Open the file dialog for adding music to the chosen playlist. #: python/playergui.py:4610 msgid "Add Music" msgstr "Aggiungi musica" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4617 msgid "Save" msgstr "Salva" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4628 msgid "Copy" msgstr "Copia" #: python/playergui.py:4639 msgid "Exchange" msgstr "Scambia" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4646 msgid "Empty" msgstr "Vuoto" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4660 python/playergui.py:4699 msgid "Append" msgstr "Appendi" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4667 python/playergui.py:4706 msgid "Prepend" msgstr "Prependi" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4678 msgid "Append Cursor" msgstr "Accoda dal cursore" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4685 msgid "Prepend Cursor" msgstr "Prependi dal cursore" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4717 msgid "Append at Cursor" msgstr "Accoda dal cursore" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4724 msgid "Prepend at Cursor" msgstr "Prependi dal cursore" #: python/preferences.py:85 msgid "Track time elapsed" msgstr "Tempo trascorso" #: python/preferences.py:87 msgid "Track time remaining" msgstr "Tempo restante" #: python/preferences.py:89 msgid "Audio to stream" msgstr "Audio al flusso" #: python/preferences.py:90 msgid "Audio to DJ" msgstr "Audio al DJ" #: python/preferences.py:127 #, fuzzy, python-format msgid "" "Stereo panning is the selection of where an audio source sits from left to " "right within the stereo mix.\n" "\n" "This control maintains constant audio power throughout its range of travel, " "giving -3dB attenuation in both audio channels at the half way point.\n" "\n" "If you require 0dB straight down the middle or require a stereo source " "remain as stereo then this feature should be turned off.\n" "\n" "Paired channels should be set to 100% left/right unless narrowing of the " "stereo field is the intention." msgstr "" "Il panorama stereo è la scelta del posizionamento dell'audio, da destra a " "sinistra, in un mix stereofonico.\n" "\n" "Questo controllo mantiene costante la potenza del segnale in tutto il suo " "percorso attenuando entrambi i canali di -3dB nel punto di mezzo.\n" "\n" "Se volete i 0dB di potenza anche nel punto di mezzo allora dovrete " "disattivare questa opzione." #: python/preferences.py:158 #, fuzzy msgid "Presets" msgstr "Premuto" #: python/preferences.py:249 msgid "" "The pan preset selection buttons.\n" "\n" "In the stereo image at a click the DJ can be on the left and a guest on the " "right and when the guest is gone at a click the DJ can be central again.\n" "\n" "Note: preconfiguration of pan preset settings is required." msgstr "" #. TC: Microphone mode combobox text. #: python/preferences.py:274 msgid "Deactivated" msgstr "Disattivato" #. TC: Microphone mode combobox text. #: python/preferences.py:276 msgid "Basic input" msgstr "Ingresso semplice" #. TC: Microphone mode combobox text. #: python/preferences.py:278 msgid "Processed input" msgstr "Ingresso elaborato" #. TC: Microphone mode combobox text. #: python/preferences.py:280 #, python-format msgid "Partnered with channel %s" msgstr "Abbinato al canale %s" #: python/preferences.py:432 msgid "A label so you may describe briefly the role of this audio channel." msgstr "" "Un'etichetta per descrivere in modo sintetico il ruolo di questo canale " "audio." #: python/preferences.py:464 msgid "The signal processing mode." msgstr "La modalità di elaborazione del segnale" #. TC: A frame heading. The channel opener is selected within. #: python/preferences.py:468 msgid "Channel Opener" msgstr "Gestore canale" #: python/preferences.py:471 msgid "" "This controls the allocation of front panel open/unmute buttons. Having one " "button control multiple microphones can save time." msgstr "" "Regola l'allocazione dei pulsanti apri/chiudi sul pannello principale. Un " "pulsante che controlla più microfoni può far risparmiare del tempo." #. TC: Spinbutton label text. #: python/preferences.py:478 msgid "Main Panel Button" msgstr "Pulsante del pannello principale" #: python/preferences.py:495 msgid "This:" msgstr "Questo:" #: python/preferences.py:504 msgid "Open" msgstr "Apri" #: python/preferences.py:517 msgid "Stereo Panning" msgstr "Panorama Stereo" #. TC: A set of controls that perform audio signal matching. #: python/preferences.py:530 msgid "Signal Matching" msgstr "Corrispondenza segnale" #: python/preferences.py:531 msgid "" "These controls are provided to obtain a decent match between the two " "microphones." msgstr "" "Questi controlli servono per ottenere una corrispondenza decente tra " "microfoni." #: python/preferences.py:540 msgid "Relative Gain (dB)" msgstr "Guadagno relativo (dB)" #. TC: Mic audio phase inversion control. #: python/preferences.py:545 python/preferences.py:550 msgid "Invert Signal" msgstr "Inverti il segnale" #: python/preferences.py:551 python/preferences.py:571 #: python/preferences.py:667 msgid "" "Useful for when microphones are cancelling one another out, producing a " "hollow sound." msgstr "" "Utile quando i microfoni si annullano l'un l'altro producendo un suono " "ovattato." #. TC: Control whether to mix microphone audio to the DJ mix. #: python/preferences.py:554 msgid "In The DJ's Mix" msgstr "Invia al mix del DJ" #: python/preferences.py:555 python/preferences.py:577 #: python/preferences.py:677 msgid "" "Make the microphone audio audible in the DJ mix. This may not always be " "desirable." msgstr "" "Fa in modo che l'audio del microfono sia udibile nel mix del DJ. Non sempre " "è desiderabile." #: python/preferences.py:563 msgid "Basic Controls" msgstr "Controlli base" #: python/preferences.py:564 python/preferences.py:619 msgid "Boost/Cut (dB)" msgstr "Aumenta/Taglia (dB)" #: python/preferences.py:585 msgid "High Pass Filter" msgstr "Filtro passa alto" #: python/preferences.py:586 python/preferences.py:601 #: python/preferences.py:611 msgid "Cutoff Frequency" msgstr "Frequenza di taglio" #. TC: User can set the number of filter stages. #: python/preferences.py:590 msgid "Stages" msgstr "Livelli" #: python/preferences.py:593 msgid "" "Frequency in Hertz above which audio can pass to later stages. Use this " "feature to restrict low frequency sounds such as mains hum. Setting too high " "a level will make your voice sound thin." msgstr "" "La frequenza in Hertz sopra la quale l'audio viene fatto passare ai livelli " "successivi. Usare questa funzionalità per eliminare i suoni sulle basse " "frequenze quali il ronzio. Impostare questo valore troppo elevato renderà il " "suono della voce 'sottile'" #. TC: this is the treble control. HF = high frequency. #: python/preferences.py:598 msgid "HF Detail" msgstr "Dettaglio HF" #: python/preferences.py:605 msgid "You can use this to boost the amount of treble in the audio." msgstr "Potete usarlo per aumentare la quantità di alte frequenze nell'audio." #. TC: this is the bass control. LF = low frequency. #: python/preferences.py:608 msgid "LF Detail" msgstr "Dettagli LF" #: python/preferences.py:615 msgid "You can use this to boost the amount of bass in the audio." msgstr "Potete usarlo per aumentare la quantità di basse frequenze nell'audio." #. TC: lookahead brick wall limiter. #: python/preferences.py:618 msgid "Limiter" msgstr "Limiter" #. TC: this is the peak signal limit. #: python/preferences.py:623 msgid "Upper Limit" msgstr "Limite superiore" #: python/preferences.py:625 msgid "" "A look-ahead brick-wall limiter. Audio signals are capped at the upper limit." msgstr "" "Un limiter predittivo. I segnali audio vengono bloccati al limite superiore" #: python/preferences.py:628 msgid "Noise Gate" msgstr "Noise Gate" #. TC: noise gate triggers at this level. #: python/preferences.py:630 msgid "Threshold" msgstr "Soglia" #. TC: negative gain when the noise gate is active. #. TC: The de-esser attenuation in ess-detected state. #: python/preferences.py:634 python/preferences.py:644 msgid "Gain" msgstr "Guadagno" #: python/preferences.py:636 msgid "" "Reduce the unwanted quietest sounds and background noise which you don't " "want your listeners to hear with this." msgstr "" "Riduce i suoni sommessi indesiderati ed il rumore di fondo che non volete " "venga udito dagli ascoltatori." #: python/preferences.py:639 msgid "De-esser" msgstr "De-esser" #. TC: Bias has a numeric setting. #: python/preferences.py:641 msgid "Bias" msgstr "Bias" #: python/preferences.py:646 msgid "" "Reduce the S, T, and P sounds which microphones tend to exaggerate. Ideally " "the Bias control will be set low so that the de-esser is off when there is " "silence but is set high enough that mouse clicks are detected and suppressed." msgstr "" "Riduce i suoni delle S,T e P che i microfoni normalmente tendono ad " "accentuare. Il controllo Bias verrà impostato in modo che il de-esser sia " "spento nei momenti di silenzio ma sia sufficentemente alto da non rendere " "udibili i click del mouse." #: python/preferences.py:651 msgid "Ducker" msgstr "Ducker" #: python/preferences.py:652 msgid "Release" msgstr "Rilascio" #: python/preferences.py:655 msgid "Hold" msgstr "Tenuta" #: python/preferences.py:658 msgid "" "The ducker automatically reduces the level of player audio when the DJ " "speaks. These settings allow you to adjust the timings of that audio " "reduction." msgstr "" "Il ducker riduce automaticamente il livello dell'audio quando il DJ parla. " "Queste impostazioni ti consentono di regolare la tempistica della riduzione " "dell'audio." #: python/preferences.py:662 msgid "Other options" msgstr "Altre opzioni" #: python/preferences.py:669 msgid "Phase Rotator" msgstr "Rotatore di fase" #: python/preferences.py:672 msgid "" "This feature processes the microphone audio so that it sounds more even. The " "effect is particularly noticable on male voices." msgstr "" "Questa funzionalità elabora l'audio del microfono in modo di renderlo più " "costante. L'effetto è particolarmente distinguibile sulle voci maschili." #: python/preferences.py:855 msgid "The volume control for the left music player." msgstr "Il controllo del volume per il lettore di sinistra" #. TC: preferences window title. #: python/preferences.py:911 msgid "IDJC Preferences" msgstr "Preferenze IDJC" #. TC: The DJ's sound level controller. #: python/preferences.py:936 msgid "DJ Audio Level" msgstr "Livello audio DJ" #: python/preferences.py:948 msgid "This adjusts the sound level of the DJ audio." msgstr "Regola il livello dell'audio del DJ" #. TC: The alarm sound level. #: python/preferences.py:953 msgid "Alarm Level" msgstr "" #: python/preferences.py:967 msgid "Music Loudness Compensation" msgstr "" #: python/preferences.py:965 #, python-format msgid "" "This adjusts the sound level of the DJ alarm. Typically this should be set " "close to the dj audio level when using the '%s' feature, otherwise a bit " "louder." msgstr "" #: python/preferences.py:973 msgid "Player Resample Quality" msgstr "Qualità di ricampionamento del lettore" #: python/preferences.py:979 #, fuzzy msgid "" "This adjusts the quality of the audio resampling method used whenever the " "sample rate of the music file currently playing does not match the sample " "rate of the JACK sound server. Best mode offers the best sound quality but " "also uses the most CPU (not recommended for systems built before 2006). All " "these modes provide adequate sound quality." msgstr "" "Regola la qualità del metodo di ricampionamento audio utilizzato qualora la " "frequenza di campionamento del file in esecuzione non corrisponda a quella " "del server JACK. Valori alti forniscono la migliore qualità ma utilizzano " "più CPU (non consigliato per sistemi antecedenti al 2006). Benché utilizzi " "meno CPU la modalità 'Più veloce' dovrebbe essere evitata del tutto." #: python/preferences.py:987 msgid "Best" msgstr "" #: python/preferences.py:996 python/format.py:521 msgid "Medium" msgstr "" #: python/preferences.py:1005 msgid "Fast" msgstr "Veloce" #. TC: the set of features - section heading. #: python/preferences.py:1020 msgid "Feature Set" msgstr "Impostazioni funzionalità" #. TC: Start in the full featured user interface mode. #: python/preferences.py:1032 msgid "Start Full" msgstr "Avvia completo" #: python/preferences.py:1037 python/preferences.py:1045 msgid "Indicates which mode IDJC will be in when launched." msgstr "Indica con quale modalità verrà avviato IDJC" #. TC: Start in a reduced user interface mode. #: python/preferences.py:1040 msgid "Start Mini" msgstr "Avvia minimale" #: python/preferences.py:1053 msgid "Fully Featured" msgstr "Tutte le funzionalità" #: python/preferences.py:1058 msgid "Run in full functionality mode which uses more CPU power." msgstr "Avvia con tutte le funzionalità, consuma più CPU" #: python/preferences.py:1060 msgid "Basic Streamer" msgstr "Trasmettitore base" #: python/preferences.py:1064 msgid "" "Run in a reduced functionality mode that lowers the burden on the CPU and " "takes up less screen space." msgstr "" "Avvia con funzionalità ridotte, diminuisce il carico sulla CPU e occupa meno " "spazio sullo schermo." #: python/preferences.py:1072 msgid "These settings take effect after restarting" msgstr "Queste impostazioni avranno effetto dopo il riavvio." #: python/preferences.py:1093 msgid "Reserve 24 sound effects slots" msgstr "" #: python/preferences.py:1094 msgid "Only 12" msgstr "" #: python/preferences.py:1106 msgid "Audio input channels" msgstr "" #: python/preferences.py:1111 msgid "Simultaneous stream(s)" msgstr "Trasmissione(i) in simultanea" #: python/preferences.py:1117 msgid "Simultaneous recording(s)" msgstr "Registrazione(i) in simultanea" #: python/preferences.py:1171 msgid "Fill channel meter void space" msgstr "Riempi il vuoto dell'indicatore per il canale" #: python/preferences.py:1183 msgid "Player Loudness Normalisation" msgstr "" #: python/preferences.py:1194 #, fuzzy msgid "Indicate which tracks have loudness metadata" msgstr "Indica quali tracce hanno il ReplayGain" #: python/preferences.py:1195 #, fuzzy msgid "" "Shows a marker in the playlists next to each track. Either a green circle or " "a red triangle." msgstr "Mostra un segno accanto ad ogni traccia nella playlist" #: python/preferences.py:1203 #, fuzzy msgid "Adjust playback volume in dB" msgstr "Regola il volume di riproduzione" #: python/preferences.py:1204 msgid "Effective only on newly started tracks." msgstr "Efficace solo sulle tracce avviate ex-novo " #: python/preferences.py:1210 msgid "R128" msgstr "" #: python/preferences.py:1214 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB higher than the ReplayGain setting." msgstr "" #: python/preferences.py:1219 msgid "ReplayGain" msgstr "ReplayGain" #: python/preferences.py:1223 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB lower than the R128 setting." msgstr "" #: python/preferences.py:1228 msgid "Untagged" msgstr "" #: python/preferences.py:1232 msgid "" "Set this so that any unmarked tracks are playing at a roughly similar " "loudness level as the marked ones." msgstr "" #: python/preferences.py:1241 #, fuzzy msgid "A master level control for the media players." msgstr "Il controllo del volume per il lettore di sinistra" #: python/preferences.py:1252 msgid "Recorder Filename (excluding the file extension)" msgstr "" #: python/preferences.py:1253 msgid "" "The specifiers are $r for the number of the recorder with the rest being " "documented in the strftime man page.\n" "Users may wish to alter this to make filenames that are compatible with " "particular filesystems." msgstr "" #: python/preferences.py:1270 msgid "Miscellaneous Features" msgstr "Impostazioni varie" #: python/preferences.py:1279 msgid "Trim quiet song endings and trailing silence" msgstr "Elimina i finali sommessi ed il silenzio iniziale delle canzoni" #: python/preferences.py:1285 msgid "End tracks containing long passages of silence" msgstr "Interrompi tracce che contengono lunghi passaggi di silenzio" #: python/preferences.py:1291 msgid "Enable the main-player speed/pitch controls" msgstr "" "Abilita il controllo di velocità di riproduzione sul lettore principale" #: python/preferences.py:1295 msgid "" "This option causes some extra widgets to appear below the playlists which " "allow the playback speed to be adjusted from 25% to 400% and a normal speed " "button." msgstr "" "Questa opzione fa apparire più linguette sotto la playlist che consentono di " "regolare la velocità di riproduzione tra il 25% ed il 400% e un pulsante per " "la velocità normale." #: python/preferences.py:1300 msgid "Separate left/right player volume faders" msgstr "Cursori del volume separati per i lettori destro/sinistro" #: python/preferences.py:1304 msgid "" "Select this option to use an independent volume fader for the left and right " "music players." msgstr "" "Selezionare questa opzione per usare un cursore indipendente per il lettore " "di destra e sinistra." #: python/preferences.py:1308 msgid "Enlarge the time elapsed/remaining windows" msgstr "Allarga la finestra del tempo trascorso/restante" #: python/preferences.py:1312 msgid "" "The time elapsed/remaining windows sometimes don't appear big enough for the " "text that appears in them due to unusual DPI settings or the use of a " "different rendering engine. This option serves to fix that." msgstr "" "La finestra del tempo trascorso/restante a volte non compare grande " "abbastanza a causa di impostazioni anomale dei DPI o per l'utilizzo di " "motori di rendering diversi. Questa opzione sistema le cose." #: python/preferences.py:1318 msgid "Sound an alarm when the music is due to end" msgstr "Avviso sonoro quando la musica si avvicina alla fine" #: python/preferences.py:1321 #, fuzzy msgid "" "An alarm tone alerting the DJ that dead-air is just nine seconds away. This " "also works when monitoring stream audio but the alarm tone is not sent to " "the stream.\n" "\n" "JACK freewheel mode will also be automatically disengaged." msgstr "" "Un suono di allarme che avvisa il DJ che mancano nove secondi al fuori onda. " "Funziona anche in fase di monitoraggio del flusso ma il suono di allarme non " "viene mandato in onda." #: python/preferences.py:1331 #, fuzzy msgid "Apply dither to 16 bit PCM playback" msgstr "Applica il dither alla riproduzione MP3 e FLAC" #: python/preferences.py:1335 msgid "" "This feature maybe improves the sound quality a little when listening on a " "24 bit sound card." msgstr "" "Questa impostazione potrebbe migliorare la qualità del suondo su schede " "audio a 24bit" #: python/preferences.py:1338 msgid "Enable tooltips" msgstr "Abilita suggerimenti" #: python/preferences.py:1342 msgid "" "This, what you are currently reading, is a tooltip. This feature turns them " "on or off." msgstr "" "Questo che state leggendo adesso è un suggerimento. Questa opzione li " "abilita o meno." #: python/preferences.py:1361 msgid "Player Settings At Startup" msgstr "Impostazioni del lettore all'avvio" #: python/preferences.py:1372 msgid "Restore the previous session" msgstr "Ripristina la sessione precedente" #: python/preferences.py:1377 msgid "" "When starting IDJC most of the main window settings will be as they were " "left. As an alternative you may specify below how you want the various " "settings to be when IDJC starts." msgstr "" "Quando si avvia IDJC molte delle impostazioni della finestra principale " "saranno come le avete lasciate. In alternativa potete specificare qui sotto " "come volete trovare le varie impostazioni all'avvio di IDJC." #: python/preferences.py:1387 msgid "Player 1" msgstr "Lettore 1" #: python/preferences.py:1389 msgid "Player 2" msgstr "Lettore 2" #. TC: DJ hears the stream mix. #: python/preferences.py:1417 msgid "Monitor Stream Mix" msgstr "Monitora il Flusso" #. TC: A heading label for miscellaneous settings. #: python/preferences.py:1428 msgid "General" msgstr "Generale" #: python/preferences.py:1478 msgid "VoIP panning + mono downmix" msgstr "" #. TC: Keyboard and MIDI bindings configuration. #: python/preferences.py:1492 msgid "Bindings" msgstr "Scorciatoie" #: python/preferences.py:1540 msgid "Licence" msgstr "Licenza" #: python/preferences.py:1563 msgid "Contributors" msgstr "Collaboratori" #: python/preferences.py:1570 msgid "Translators" msgstr "Traduttori" #: python/preferences.py:1575 msgid "Build Info" msgstr "" #: python/preferences.py:1592 msgid "About" msgstr "Circa" #: python/sourceclientgui.py:75 #, fuzzy msgid "Disabled" msgstr "Configurazione disabilitata" #: python/sourceclientgui.py:75 msgid "Auto" msgstr "Auto" #: python/sourceclientgui.py:75 msgid "Auto, no plaintext" msgstr "" #: python/sourceclientgui.py:76 msgid "RFC2818" msgstr "" #: python/sourceclientgui.py:76 msgid "RFC2817" msgstr "" #: python/sourceclientgui.py:96 msgid "Insert Attribute" msgstr "Inserisci attributo" #: python/sourceclientgui.py:140 msgid "Icecast 2 Master" msgstr "Icecast 2 Master" #: python/sourceclientgui.py:140 msgid "Shoutcast Master" msgstr "Shoutcast Master" #: python/sourceclientgui.py:141 msgid "Icecast 2 Stats/Relay" msgstr "Icecast 2 Stats/Relay" #: python/sourceclientgui.py:141 msgid "Shoutcast Stats/Relay" msgstr "Icecast 2 Stats/Relay" #: python/sourceclientgui.py:144 msgid "Enter new server connection details" msgstr "Inserisci i dettagli della connessione al server" #: python/sourceclientgui.py:164 msgid "Edit existing server connection details" msgstr "Modifica i dettagli della connessione" #. TC: Dialog title bar text. #: python/sourceclientgui.py:218 msgid "Certificate Authority Directory" msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:232 msgid "Certificate Authority File" msgstr "" #. TC: Dialog title bar text. #: python/sourceclientgui.py:246 msgid "TLS Client Certificate" msgstr "" #: python/sourceclientgui.py:257 msgid "This server is to be scanned for audience figures" msgstr "Da scansionare per il pubblico in ascolto" #: python/sourceclientgui.py:270 msgid "Server type" msgstr "Tipo server" #: python/sourceclientgui.py:270 msgid "Port number" msgstr "Numero porta" #: python/sourceclientgui.py:271 msgid "Mount point" msgstr "Punto di montaggio" #: python/sourceclientgui.py:271 msgid "Login name" msgstr "Nome utente" #: python/sourceclientgui.py:272 msgid "TLS" msgstr "" #: python/sourceclientgui.py:272 #, fuzzy msgid "CA directory" msgstr "Scegli una cartella per i media" #: python/sourceclientgui.py:272 msgid "CA file" msgstr "" #: python/sourceclientgui.py:272 msgid "Client cert" msgstr "" #: python/sourceclientgui.py:556 msgid "Encoder Format Not Set/Compatible" msgstr "" #. TC: Connection button text when no details have been entered. #: python/sourceclientgui.py:559 msgid "No Master Server Configured" msgstr "Nessun server principale configurato" #: python/sourceclientgui.py:761 msgid "" "A table of servers with which to connect. Only one master server can be " "added for the purpose of streaming. All other servers will appear below the " "master server in the list for the purpose of stats collection which can be " "toggled on a per server basis." msgstr "" "Una tabella di server cui connettersi. Soltanto un server principale può " "essere aggiunto per trasmettere flussi. Tutti gli altri server compariranno " "sotto il server principale nella lista allo scopo di raccogliere statistiche " "che possono essere attivate per ciascun server." #: python/sourceclientgui.py:777 msgid "Hostname/IP address" msgstr "Nomehost/Indirizzo IP" #. TC: Mount point is a technical term in relation to icecast servers. #: python/sourceclientgui.py:790 #, fuzzy msgid "Mount point " msgstr "Punto di mount " #. TC: This is the listener count heading. #: python/sourceclientgui.py:799 msgid "Listeners" msgstr "Ascoltatori" #: python/sourceclientgui.py:814 msgid "The sum total of listeners in this server tab." msgstr "Il totale degli ascoltatori per questo server" #: python/sourceclientgui.py:841 msgid "Never" msgstr "Mai" #: python/sourceclientgui.py:844 msgid "Always" msgstr "Sempre" #: python/sourceclientgui.py:846 msgid "If connected" msgstr "Se connesso" #: python/sourceclientgui.py:1102 msgid "Custom user agent string" msgstr "Stringa personalizzata per i navigatori" #: python/sourceclientgui.py:1109 msgid "" "Set this on the occasion that the server or its firewall specifically " "refuses to allow libshout based clients." msgstr "" "Impostare questa opzione nell'eventualità che il server o il suo firewall " "rifiutino esplicitamente connessioni da client che usano libshout." #: python/sourceclientgui.py:1114 msgid "If the connection breaks reconnect to the server" msgstr "Se la connessione si interrompe riconnettiti al server" #. TC: Label for a comma separated list of delay times. #: python/sourceclientgui.py:1124 msgid "Delay times" msgstr "Tempi di ritardo" #: python/sourceclientgui.py:1128 msgid "" "A comma separated list of delays in seconds between reconnection attempts. " "Note that bad values or values less than 5 will be interpreted as 5." msgstr "" "Una lista di ritardi, separati da virgola, tra i vari tentativi di " "riconnessione. Valori errati o inferiori a 5 verranno interpretati come 5." #: python/sourceclientgui.py:1134 msgid "Repeat the sequence of delays indefinitely." msgstr "Ripeti all'infinito la sequenza dei ritardi" #. TC: User specifies no dialog box to be shown. #: python/sourceclientgui.py:1137 msgid "Quiet" msgstr "Calmo" #: python/sourceclientgui.py:1139 msgid "Keep the reconnection dialogue box hidden at all times." msgstr "Tieni nascosta la finestra della riconnessone ad ogni tentativo." #: python/sourceclientgui.py:1144 msgid "The contingency plan upon the stream buffer becoming full is..." msgstr "Il piano da attuare nel caso il buffer si stia riempiendo è..." #: python/sourceclientgui.py:1153 msgid "Discard audio data for as long as needed." msgstr "Scarta i dati audio finché è necessario." #: python/sourceclientgui.py:1155 msgid "Assume the connection is beyond saving and reconnect." msgstr "Assumi che la connessione sia in fase di salvataggio e riconnettiti." #: python/sourceclientgui.py:1442 python/format.py:1227 msgid "Shoutcast" msgstr "Shoucast" #: python/sourceclientgui.py:1483 #, fuzzy msgid "[Metadata suppressed]" msgstr "Sorgente dei metadati" #: python/sourceclientgui.py:1562 msgid "Individual Controls" msgstr "Controlli individuali" #: python/sourceclientgui.py:1576 #, fuzzy msgid "" "Connect to or disconnect from the radio server. If the button does not stay " "in, the connection failed for some reason.\n" "\n" "If the button is greyed out it means your settings within the 'Connections' " "and 'Format' sections are either incompatible with one another or are " "incomplete.\n" "\n" "In order to stream a master server needs to be specified in the " "configuration section below and must be capable of handling the chosen " "streaming format." msgstr "" "Connette o disconnette dal server della radio. Se il pulsante non rimane " "premuto, allora per qualche ragione la connessione è fallita.\n" "\n" "Se il pulsante è grigio vuol dire che state usando impostazioni non " "suportate. Shoutcast supporta soltanto mp3 ed mp3 richiede di utilizzare " "solo una delle frequenze di campionamento nel menù a tendina. Ogg supporta " "soltanto alcune combinazioni di frequenze di campionamento, bit rate e " "stereo. In più, la lista delle connessioni deve contenere in dettagli per un " "server principale." #. TC: Kick whoever is on the server. #: python/sourceclientgui.py:1593 #, fuzzy msgid "Kick Source" msgstr "Fonte" #: python/sourceclientgui.py:1595 msgid "" "This will disconnect whoever is currently using the server, freeing it up " "for personal use." msgstr "" "Questo disconnetterà chiunque stia utilizzando il server, liberandolo per un " "uso personale." #: python/sourceclientgui.py:1605 #, fuzzy msgid "Timer:" msgstr "Cronometro" #: python/sourceclientgui.py:1609 #, fuzzy msgid "From" msgstr "Da qui" #: python/sourceclientgui.py:1610 msgid "" "Automatically connect to the server at a specific time in 24 hour format, " "midnight being 00:00" msgstr "" "Connessione automatica al server ad un orario specifico nel formato a 24 " "ore, la mezzanotte è indicata con 00:00" #: python/sourceclientgui.py:1615 msgid "Kick" msgstr "" #: python/sourceclientgui.py:1617 msgid "Disconnect whoever is using the server just before start time." msgstr "Disconnetti chiunque stia usando il server poco prima dell'inizio." #: python/sourceclientgui.py:1626 msgid "To" msgstr "" #: python/sourceclientgui.py:1627 msgid "" "Automatically disconnect from the server at a specific time in 24 hour " "format." msgstr "" "Disconnessione automatica al server ad un orario specifico nel formato a 24 " "ore, la mezzanotte è indicata con 00:00" #: python/sourceclientgui.py:1630 #, fuzzy msgid "Fade out" msgstr "Dissolvi 5sec" #: python/sourceclientgui.py:1632 msgid "Fade audio before disconnecting." msgstr "" #: python/sourceclientgui.py:1646 msgid "At connect:" msgstr "Una volta connesso:" #. TC: [x] Start player (*) 1 ( ) 2 #: python/sourceclientgui.py:1650 msgid "Start player" msgstr "Lettore iniziale" #: python/sourceclientgui.py:1655 msgid "" "Have one of the players start automatically when a radio server connection " "is successfully made." msgstr "" "Avvia uno dei lettori automaticamente quando una connessione al server va a " "buon fine." #. TC: [x] Start recorder (*) 1 ( ) 2 #: python/sourceclientgui.py:1663 msgid "Start recorder" msgstr "Avvia il registratore" #: python/sourceclientgui.py:1670 msgid "" "Have a recorder start automatically when a radio server connection is " "successfully made." msgstr "" "Avvia uno dei registratori automaticamente quando una connessione al server " "va a buon fine." #: python/sourceclientgui.py:1675 python/format.py:530 python/format.py:541 #: python/format.py:552 python/format.py:562 msgid "Metadata" msgstr "Metadati" #: python/sourceclientgui.py:1685 msgid "Format String" msgstr "Stringa di formattazione" #. TC: Label for the metadata fallback value. #: python/sourceclientgui.py:1687 msgid "Fallback" msgstr "Alternativa" #: python/sourceclientgui.py:1701 msgid "" "You can enter text to accompany the stream here and can specify placemarkers " "%r %t %l %s for the artist, title, album, and songname respectively, or " "leave this text field blank to use the default metadata.\n" "\n" "Songname (%s) is derived from the filename in the absence of sufficient " "metadata, while the other placemarkers will use the fallback text to the " "right.\n" "\n" "When blank, Ogg streams will use the standard Vorbis tags and mp3 will use " "%s." msgstr "" "Qui potete inserire del testo da associare al flusso e specificare dei " "segnaposti %r %t %l %s per l'artista, il titolo, l'album e la canzone " "rispettivamente, oppure lasciare vuoto questo campo per usare i dati di " "base.\n" "\n" "In mancanza di metadati sufficenti il nome della canzone (%s) viene preso " "dal nome file, mentre gli altri segnaposti utilizzeranno il testo a destra.\n" "\n" "Se lasciato vuoto, i flussi Ogg utilizzeranno i tag standard e gli mp3 " "utilizzeranno %s." #: python/sourceclientgui.py:1709 msgid "" "The fallback text to use when %r %t %l metadata is unavailable. See the " "format string to the left." msgstr "" "Il testo cui ricorrere quando i metadati %r %t %l non sono disponibili. " "Guarda il formato dell stringa sulla sinitra." #: python/sourceclientgui.py:1711 msgid "" "Metadata normally updates only on song title changes but you can force an " "immediate update here." msgstr "" "I metadati di solito vengono aggiornati quando cambia il titolo della song " "in esecuzione ma potete forzare un aggiornamento automatico qui." #: python/sourceclientgui.py:1730 msgid "Configuration" msgstr "Configurazione" #: python/sourceclientgui.py:1731 msgid "The controls for configuring a stream." msgstr "I controlli per configurare un flusso." #: python/sourceclientgui.py:1739 msgid "Connection" msgstr "Connessione" #: python/sourceclientgui.py:1744 msgid "Format" msgstr "Formato" #. TC: Tab heading. User can enter information about the stream here. #: python/sourceclientgui.py:1753 msgid "Stream Info" msgstr "Informazioni flusso" #: python/sourceclientgui.py:1758 msgid "" "Enter your DJ name or station name here. Typically this information will be " "displayed by listener clients." msgstr "" "Inserisci il tuo nome DJ o il nome della stazione. Tipicamente queste " "informazioni saranno visualizzate attraverso i programmi usati dagli " "ascoltatori." #: python/sourceclientgui.py:1761 msgid "" "The URL of your radio station. This and the rest of the information below is " "intended for display on a radio station listings website." msgstr "" "L'indirizzo (URL) della vostra stazione. Questo ed il resto delle " "informazioni qui sotto sono da intendersi come visualizzabili su di un sito " "web che fornisce una lista di stazioni." #: python/sourceclientgui.py:1766 msgid "A description of your radio station." msgstr "Descrizione della vostra stazione." #: python/sourceclientgui.py:1771 msgid "The musical genres you are likely to play." msgstr "Il genere musicale che offrirete." #: python/sourceclientgui.py:1774 msgid "Make Public" msgstr "Rendi pubblico" #: python/sourceclientgui.py:1775 msgid "" "Publish your radio station on a listings website. The website in question " "will depend on how the server to which you connect is configured." msgstr "" "Pubblicate la vostra stazione su un sito. Il sito in questione dipenderà " "dalla configurazione del server cui vi connettete." #: python/sourceclientgui.py:1787 msgid "Genre(s)" msgstr "Genere(i)" #: python/sourceclientgui.py:1798 msgid "Master server admin password" msgstr "Password di amministrazione del server principale" #: python/sourceclientgui.py:1803 msgid "" "This is for kick and stats on Shoutcast master servers that have an " "administrator password. For those that don't leave this blank (the source " "password is sufficient for those)." msgstr "" "Occorre per le statistiche e per i kick sui server principali che hanno una " "password di amministrazione impostata. Per chi riempie questo campo (la " "password della fonte è sufficente)" #: python/sourceclientgui.py:1812 msgid "Contact Details" msgstr "Dettagli del contatto" #: python/sourceclientgui.py:1816 msgid "Internet Relay Chat connection info goes here." msgstr "Le informazioni per IRC vanno inserite qui" #: python/sourceclientgui.py:1819 msgid "Connection info for AOL instant messenger goes here." msgstr "Le informazioni per AOL vanno inserite qui." #: python/sourceclientgui.py:1822 msgid "ICQ instant messenger connection info goes here." msgstr "Le informazioni per ICQ vanno inserite qui." #: python/sourceclientgui.py:1825 msgid "IRC" msgstr "IRC" #: python/sourceclientgui.py:1826 msgid "AIM" msgstr "AIM" #: python/sourceclientgui.py:1827 msgid "ICQ" msgstr "ICQ" #: python/sourceclientgui.py:1837 #, fuzzy msgid "Use ISO-8859-1 encoding for fixed metadata" msgstr "Usa la codifica utf-8 quando si inviano i metadati" #: python/sourceclientgui.py:1839 msgid "Enable this if sending to a Shoutcast V1 server." msgstr "" #: python/sourceclientgui.py:1843 msgid "Extra Shoutcast" msgstr "Extra Shoutcast" #: python/sourceclientgui.py:1848 msgid "Troubleshooting" msgstr "Risoluzione problemi" #: python/sourceclientgui.py:1979 msgid "Stop recording." msgstr "Ferma la registrazione" #: python/sourceclientgui.py:1981 msgid "" "Start recording.\n" "\n" "If this button is greyed out it could mean either the encoder settings are " "not valid or write permission is not granted on the selected folder." msgstr "" #: python/sourceclientgui.py:1986 msgid "Pause recording." msgstr "Metti in pausa" #: python/sourceclientgui.py:2023 msgid "Recording time elapsed." msgstr "Tempo di registrazione trascorso." #. TC: Dialog title bar text. #: python/sourceclientgui.py:2077 msgid "Select the folder to record to" msgstr "Seleziona la cartella in cui registrare" #: python/sourceclientgui.py:2088 msgid "" "Choose which stream to record or the 24 bit FLAC option. If the stream isn't " "already running the encoder will be started automatically using whatever " "settings are currently configured." msgstr "" "Scegli quale flusso registrare o l'opzione 24bit FLAC. Se il flusso non è " "già attivo il codificatore verrà avviato automaticamente con le impostazioni " "attualmente configurate." #: python/sourceclientgui.py:2092 msgid "" "Choose which directory you want to save to. All file names will be in a " "timestamp format and have either an oga, mp3, or flac file extension. " "Important: you need to select a directory to which you have adequate write " "permission." msgstr "" "Scegliete in quale directory salvare. Tutti i nomi dei file avranno un " "formato basato su data e tempo e avranno una estensione ogg, mp3 o flac. " "Importante: dovete scegliere una cartella per la quale avete i permessi " "necessari alla scrittura." #: python/sourceclientgui.py:2199 msgid "Perform operations on multiple servers in unison." msgstr "Esegue le operazioni su più server alla volta." #: python/sourceclientgui.py:2211 msgid "Connect" msgstr "Connetti" #: python/sourceclientgui.py:2228 msgid "Disconnect" msgstr "Disconnetti" #: python/sourceclientgui.py:2236 #, fuzzy msgid "Kick Sources" msgstr "Fonte" #: python/sourceclientgui.py:2245 msgid "Metadata:" msgstr "Metadati:" #: python/sourceclientgui.py:2275 msgid "Group Controls" msgstr "Controlli di gruppo" #: python/sourceclientgui.py:2782 msgid "Recording Facility Unavailable" msgstr "" #: python/sourceclientgui.py:2785 #, fuzzy msgid "No Recorders Are Correctly Configured" msgstr "Nessun server principale configurato" #. TC: Recorder menu format string. #: python/sourceclientgui.py:2798 #, python-brace-format msgid "{numericid} [{source}] > [{directory}]" msgstr "" #: python/sourceclientgui.py:2800 msgid "Misconfigured" msgstr "" #: python/sourceclientgui.py:2821 msgid "Streaming Facility Unavailable" msgstr "" #: python/sourceclientgui.py:2823 #, fuzzy msgid "No Streams Are Currently Configured" msgstr "Nessun server principale configurato" #: python/sourceclientgui.py:2826 #, fuzzy msgid "Group Connect" msgstr "Controlli di gruppo" #: python/sourceclientgui.py:2832 #, fuzzy msgid "Group Disconnect" msgstr "Disconnetti" #. TC: Window title bar text. #: python/sourceclientgui.py:2863 msgid "IDJC Output" msgstr "Uscita IDJC" #: python/sourceclientgui.py:2879 msgid "" "Each one of these tabs represents a separate stream recorder. The LED " "indicator colours represent the following: Clear=Stopped Yellow=Paused " "Red=Recording." msgstr "" "Ognuna di queste linguette rappresenta un registratore di flusso. I colori " "del LED indicano: Vuoto=Fermo Giallo=Pausa Rosso=Registrazione." #: python/sourceclientgui.py:2887 msgid "" "Each one of these tabs represents a separate radio streamer. The LED " "indicator colours represent the following: Clear=No connection " "Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to " "a bad connection." msgstr "" "Ognuna di queste linguette rappresenta un flusso. I colori del LED indicano: " "Vuoto=Non connesso Giallo=In attesa di autenticazione. Verde=Connesso. " "Lampeggiante=Perdita di pacchetti a causa di una cattiva connessione." #: python/sourceclientgui.py:2905 msgid " Stream " msgstr " Flusso " #: python/sourceclientgui.py:2940 msgid "" "A connection to a radio server has " "failed.\n" "\n" "Reconnection will not be attempted." msgstr "" "Una connessione al server è fallita.\n" "\n" "Non verrà effettuato un altro tentativo." #: python/sourceclientgui.py:2945 msgid "" "A scheduled stream disconnection has " "occurred." msgstr "" "E' intervenuta una disconnessione " "pianificata." #: python/format.py:419 msgid "Right click for suggested values." msgstr "" #: python/format.py:439 #, fuzzy msgid "Suggested Values" msgstr "Imposta valore" #: python/format.py:503 #, fuzzy msgid "Pregain" msgstr "Lettore imposta il gain" #: python/format.py:504 python/format.py:933 msgid "0 dB" msgstr "" #: python/format.py:505 python/format.py:934 msgid "-0.5 dB" msgstr "" #: python/format.py:506 python/format.py:935 msgid "-1.0 dB" msgstr "" #: python/format.py:507 python/format.py:936 msgid "-1.5 dB" msgstr "" #: python/format.py:508 python/format.py:937 msgid "-2.0 dB" msgstr "" #: python/format.py:509 python/format.py:938 msgid "-2.5 dB" msgstr "" #: python/format.py:510 python/format.py:939 msgid "-3.0 dB" msgstr "" #: python/format.py:511 msgid "" "A blanket gain reduction to promote audio quality when using long " "established lossy audio codecs like mp3 with loud audio material.\n" "\n" "ReplayGain makes this feature generally unnecessary and the correct setting " "in that case is 0 dB." msgstr "" #: python/format.py:519 #, fuzzy msgid "Resample Quality" msgstr "Qualità di ricampionamento del lettore" #: python/format.py:520 msgid "Highest" msgstr "Elevata" #: python/format.py:522 #, fuzzy msgid "Lowest" msgstr "Inferiore %" #: python/format.py:523 msgid "" "All of these settings will provide adequate audio quality. The highest " "setting will preserve more of the original audio bandwidth at the expense of " "many CPU cycles." msgstr "" #: python/format.py:531 python/format.py:553 python/format.py:563 #, fuzzy msgid "Suppressed" msgstr "Premuto" #: python/format.py:532 python/format.py:554 msgid "UTF-8" msgstr "" #: python/format.py:533 msgid "Latin1 *" msgstr "" #: python/format.py:534 msgid "" "This affects the stream metadata only. Recordings will use UTF-8 for their " "metadata." msgstr "" #: python/format.py:542 #, fuzzy msgid "Unsupported" msgstr "Media supportati" #: python/format.py:543 python/format.py:555 msgid "" "Choose whether the stream will carry dynamic metadata. In the case of Ogg " "streams this is important as a great many players can't handle chained Ogg " "streams which result from the metadata updates." msgstr "" #: python/format.py:564 msgid "Latin1" msgstr "" #: python/format.py:565 msgid "Choose whether to send metadata. Recordings will use UTF-8 metadata." msgstr "" #: python/format.py:581 python/format.py:592 python/format.py:603 #: python/format.py:710 python/format.py:838 python/format.py:908 #: python/format.py:917 python/format.py:991 python/format.py:1014 #: python/format.py:1023 python/format.py:1141 python/format.py:1163 msgid "Mode" msgstr "Modo" #: python/format.py:582 python/format.py:593 python/format.py:604 #: python/format.py:711 python/format.py:839 python/format.py:909 #: python/format.py:918 python/format.py:992 python/format.py:1015 #: python/format.py:1024 python/format.py:1142 python/format.py:1164 msgid "Mono" msgstr "Mono" #: python/format.py:583 python/format.py:594 python/format.py:605 #: python/format.py:712 python/format.py:840 python/format.py:910 #: python/format.py:919 python/format.py:993 python/format.py:1016 #: python/format.py:1025 python/format.py:1143 python/format.py:1165 msgid "Stereo" msgstr "Stereo" #: python/format.py:584 python/format.py:595 python/format.py:606 #: python/format.py:713 #, fuzzy msgid "Joint Stereo" msgstr "Stereo" #: python/format.py:585 msgid "Joint Stereo is a good choice on streams with low bitrates." msgstr "" #: python/format.py:596 msgid "Due to the high bitrate selected, this codec will only support stereo." msgstr "" #: python/format.py:607 msgid "Due to the low bitrate selected, this codec will only support mono." msgstr "" #: python/format.py:656 python/format.py:666 python/format.py:763 #: python/format.py:773 python/format.py:783 python/format.py:889 #: python/format.py:899 python/format.py:1052 python/format.py:1072 #: python/format.py:1132 #, fuzzy msgid "Samplerate" msgstr "Frequenza di campionamento" #. TC: Abbreviation of the word, standard. #: python/format.py:677 python/format.py:794 msgid "Std." msgstr "" #. TC: v stands for version. #: python/format.py:679 python/format.py:796 msgid "V 1" msgstr "" #. TC: v stands for version. #: python/format.py:681 python/format.py:798 msgid "V 2" msgstr "" #: python/format.py:682 msgid "" "MPEG2 introduced lower samplerate options and corresponding lower bitrates. " "Choose 2 if those are required." msgstr "" #: python/format.py:689 python/format.py:817 msgid "Quality" msgstr "Qualità" #: python/format.py:690 msgid "0 most" msgstr "" #. TC: * means is the recommended setting. #: python/format.py:693 msgid "2 *" msgstr "" #: python/format.py:695 msgid "Higher quality costs more in terms of CPU cycles." msgstr "" #: python/format.py:714 msgid "Joint Stereo is a good choice on streams with low bitrates" msgstr "" #. TC: v stands for version. #: python/format.py:800 msgid "V 2.5" msgstr "" #: python/format.py:807 msgid "Complexity" msgstr "" #: python/format.py:810 msgid "A quality setting that affects how heavily the CPU is used." msgstr "" #: python/format.py:820 msgid "The higher this setting, the higher the bitrate." msgstr "" #: python/format.py:827 msgid "Bandwidth" msgstr "" #: python/format.py:828 #, fuzzy msgid "Ultrawide" msgstr "Banda ultra larga" #: python/format.py:829 #, fuzzy msgid "Wide" msgstr "Banda larga" #: python/format.py:830 #, fuzzy msgid "Narrow" msgstr "Banda stretta" #: python/format.py:831 msgid "Essentially a samplerate setting." msgstr "" #: python/format.py:848 msgid "24 bit" msgstr "" #: python/format.py:849 msgid "20 bit" msgstr "" #: python/format.py:850 msgid "16 bit" msgstr "" #: python/format.py:851 msgid "" "24 bit records with the highest level of detail. If file size is a concern " "maybe FLAC is not the right codec." msgstr "" #: python/format.py:858 python/format.py:947 msgid "Variability" msgstr "" #: python/format.py:859 msgid "Constant" msgstr "" #: python/format.py:860 msgid "±10%" msgstr "" #: python/format.py:861 msgid "±20%" msgstr "" #: python/format.py:862 msgid "±30%" msgstr "" #: python/format.py:863 msgid "±40%" msgstr "" #: python/format.py:864 msgid "±50%" msgstr "" #: python/format.py:865 #, fuzzy msgid "This control is for enabling variable bitrate on Vorbis streams." msgstr "I controlli per configurare un flusso." #: python/format.py:926 #, fuzzy msgid "Postgain" msgstr "VoIP imposta guadagno" #: python/format.py:927 msgid "3.0 dB" msgstr "" #: python/format.py:928 msgid "2.5 dB" msgstr "" #: python/format.py:929 msgid "2.0 dB" msgstr "" #: python/format.py:930 msgid "1.5 dB" msgstr "" #: python/format.py:931 msgid "1.0 dB" msgstr "" #: python/format.py:932 msgid "0.5 dB" msgstr "" #: python/format.py:940 msgid "A gain adjustment for the player to apply." msgstr "" #: python/format.py:948 msgid "CBR *" msgstr "" #: python/format.py:949 msgid "CVBR" msgstr "" #: python/format.py:950 msgid "VBR" msgstr "" #: python/format.py:951 msgid "" "Bitrate variability. Actual VBR operation may require a higher frame size." msgstr "" #: python/format.py:958 msgid "Frame Size" msgstr "" #: python/format.py:959 msgid "60 ms" msgstr "" #: python/format.py:960 msgid "40 ms" msgstr "" #: python/format.py:961 msgid "20 ms" msgstr "" #: python/format.py:962 msgid "A higher frame size may sound better on very low bitrates." msgstr "" #: python/format.py:969 msgid "CPU" msgstr "CPU" #: python/format.py:972 msgid "The encoder complexity setting which affects CPU load." msgstr "" #: python/format.py:1000 python/format.py:1103 python/format.py:1172 msgid "Codec" msgstr "" #: python/format.py:1001 python/format.py:1174 msgid "Vorbis" msgstr "" #: python/format.py:1002 msgid "FLAC" msgstr "" #: python/format.py:1003 msgid "Speex" msgstr "" #: python/format.py:1004 python/format.py:1173 msgid "Opus" msgstr "" #: python/format.py:1007 msgid "Codecs of the Ogg container." msgstr "" #: python/format.py:1053 msgid "96000 Hz" msgstr "" #: python/format.py:1054 msgid "88200 Hz" msgstr "" #: python/format.py:1055 msgid "64000 Hz" msgstr "" #: python/format.py:1056 python/format.py:1073 msgid "48000 Hz" msgstr "" #: python/format.py:1057 python/format.py:1074 msgid "44100 Hz" msgstr "" #: python/format.py:1058 msgid "32000 Hz" msgstr "" #: python/format.py:1059 msgid "24000 Hz" msgstr "" #: python/format.py:1060 msgid "22050 Hz" msgstr "" #: python/format.py:1061 msgid "16000 Hz" msgstr "" #: python/format.py:1062 msgid "12000 Hz" msgstr "" #: python/format.py:1063 msgid "11025 Hz" msgstr "" #: python/format.py:1064 msgid "8000 Hz" msgstr "" #: python/format.py:1065 msgid "7350 Hz" msgstr "" #: python/format.py:1087 msgid "The MP2 option requires IDJC be rebuilt against libtwolame." msgstr "" #: python/format.py:1090 msgid "Enable the MP3 option by installing libmp3lame." msgstr "" #: python/format.py:1093 msgid "The AAC options require IDJC be rebuilt against libav libraries." msgstr "" #: python/format.py:1096 msgid "" "Specific AAC support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" #: python/format.py:1098 msgid "" "Specific AAC+ support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" #: python/format.py:1101 msgid "Codecs of the MPEG family." msgstr "" #: python/format.py:1104 msgid "MP2" msgstr "" #: python/format.py:1105 msgid "MP3" msgstr "" #: python/format.py:1106 msgid "AAC" msgstr "" #: python/format.py:1107 msgid "AAC+ v2" msgstr "" #. TC: Codec family e.g. Xiph/Ogg, MPEG etc. #: python/format.py:1185 msgid "Family" msgstr "" #: python/format.py:1186 msgid "WebM" msgstr "" #. TC: Xiph.org Ogg container format. #: python/format.py:1188 msgid "Xiph/Ogg" msgstr "" #: python/format.py:1189 msgid "MPEG" msgstr "" #: python/format.py:1190 msgid "Codecs have been grouped by standards body and or container format." msgstr "" #: python/format.py:1215 msgid "Capabilities" msgstr "" #: python/format.py:1227 #, fuzzy msgid "Icecast" msgstr "Icecast 2 Master" #: python/format.py:1227 #, fuzzy msgid "Recordable" msgstr "Registratore" #~ msgid "Playlist types (*.m3u, *.xspf, *.pls)" #~ msgstr "Tipi di playlist (*.m3u, *.xspf, *.pls)" #~ msgid "Connection timer:" #~ msgstr "Timer di connessione:" #~ msgid "Begin" #~ msgstr "Inizio" #~ msgid "With kick" #~ msgstr "Libera" #~ msgid "End" #~ msgstr "Fine" #~ msgid "SSL" #~ msgstr "SSL" #~ msgid "" #~ "Connect to the server using the SSL security protocol.\n" #~ "\n" #~ "This feature is typically offered on different ports than the standard " #~ "connection method and is widespread but not universally available." #~ msgstr "" #~ "Connetti al server usando il protocollo SSL.\n" #~ "\n" #~ "Questa funzionalità è disponibile anche su porte diverse dalla standard " #~ "ed è piuttosto diffusa nonostante non sia universalmente disponibile." #~ msgid "Released under the GNU General Public License V2.0 or later." #~ msgstr "Rilasciato sotto la GNU General Public License V2.0 o successiva." #, fuzzy #~ msgid "Media Players" #~ msgstr "Lettore destro" #, fuzzy #~ msgid "MIDI" #~ msgstr "MIDI nota" #~ msgid "Left Player" #~ msgstr "Lettore sinistro" #~ msgid "Right Player" #~ msgstr "Lettore destro" #, fuzzy #~ msgid "Background" #~ msgstr "Lettore attivo" #~ msgid "Jingles" #~ msgstr "Stacchetti" #, fuzzy #~ msgid "Jingles players" #~ msgstr "Stacchetto lettore" #~ msgid "Meters" #~ msgstr "Indicatori" #~ msgid "Unmarked tracks assumed gain value" #~ msgstr "Valore del guadagno per le tracce non segnate" #~ msgid "" #~ "Set this to the typical track gain values you would expect for the " #~ "programme material you are currently playing. For pop and rock music " #~ "(especially modern studio recordings) this should be about a -8 or -9 and " #~ "classical music around zero." #~ msgstr "" #~ "Impostalo sui valori di guadagno tipici che vi aspettereste dal materiale " #~ "che state riproducendo. Per la musica pop e rock (specialmente le " #~ "registrazioni in studio moderne) dovrebbe essere circa a -8 o -9, per la " #~ "classica intorno allo zero." #~ msgid "Further gain adjustment" #~ msgstr "Ulteriori regolazioni del guadagno" #~ msgid "" #~ "For material that is generally loud it is recommended to set this between " #~ "4 and 8 dB however going too high will result in a loss of dynamic range. " #~ "The Str Peak meter is a useful guide for getting this right." #~ msgstr "" #~ "Per il materiale che \"suona forte\" è raccomandabile impostare questo " #~ "valore tra 4dB e 8dB, in ogni caso valori troppo alti riducono " #~ "sensibilmente la dinamica. L'indicatore 'Str Peak' è utile per regolare " #~ "questo valore." #~ msgid "Prefs enable tooltips" #~ msgstr "Preferenze abilita suggerimenti" #~ msgid "Index" #~ msgstr "Indice" #~ msgid "_Expand" #~ msgstr "_Espandi" #~ msgid "Tree" #~ msgstr "Albero" #~ msgid "Flat" #~ msgstr "Piatto" #~ msgid "P3 Database View (%s)" #~ msgstr "P3 Vista Database (%s)" #~ msgid "User" #~ msgstr "Utente" #~ msgid "Database Connect" #~ msgstr "Connetti al database" #~ msgid "General purpose audio channels*" #~ msgstr "Canali audio generici*" #~ msgid "* In 'Fully Featured' mode." #~ msgstr "* in modalità 'Tutte le funzionalità'" #, fuzzy #~ msgid "Jingles stop effects all" #~ msgstr "Stacchetti seleziona il successivo" #, fuzzy #~ msgid "Jingles set effects volume" #~ msgstr "Stacchetti imposta volume stacchetti 1" #, fuzzy #~ msgid "Jingles set background volume" #~ msgstr "Stacchetti imposta volume interludio" #~ msgid "Jingle" #~ msgstr "Stacchetto" #~ msgid "Kick Incumbent" #~ msgstr "Libera connessione" #~ msgid "Kick Incumbents" #~ msgstr "Libera le connessioni" #~ msgid "IDJC Jingles" #~ msgstr "Stacchetti IDJC" #~ msgid "" #~ "Play the jingles sequence specified above or if none is specified play " #~ "the jingle highlighted in the catalogue. The volume level of the main " #~ "media players will be reduced somewhat during playback." #~ msgstr "" #~ "Suona la sequenza degli stacchetti specificata sopra oppure lo stacchetto " #~ "selezionato nel catalogo. Il volume dei lettori principali verrà " #~ "adeguatamente ridotto durante la riproduzione" #~ msgid "Stop all jingles playback." #~ msgstr "Interrompi la riproduzione di tutti gli stacchetti." #~ msgid "" #~ "This button works the same as the button to the left does except that the " #~ "sound level of all the other media players is fully reduced." #~ msgstr "" #~ "Questo pulsante agisce come il pulsante alla sinistra ma il livello di " #~ "dei lettori verrà completamente diminuito durante la riproduzione" #~ msgid "Sound Level" #~ msgstr "Livello del suono" #~ msgid "Player Muting" #~ msgstr "Silenzia lettore" #~ msgid "" #~ "When you click this button the jingle or track selected in the catalogue " #~ "will be looped continuously and will be audible during moments when the " #~ "main media players are not active. The '{0}' feature needs to be set to " #~ "'{1}' if you want to be able to hear it." #~ msgstr "" #~ "Se cliccate questo pulsante lo stacchetto o la traccia selezionata nel " #~ "catalogo verrà riprodotta in ciclo continuo e sarà udibile nei momenti in " #~ "cui i lettori principali sono spenti. L'opzione '{0}' deve essere " #~ "impostata su '{1}' se volete essre in grado di ascoltarlo." #~ msgid "" #~ "This adjusts the volume level of the music that plays whenever the other " #~ "media players are not active. It is only audible to the DJ when '{0}' in " #~ "the main application window is set to '{1}'." #~ msgstr "" #~ "Regola il volume della musica ogni volta che gli altri lettori non sono " #~ "attivi. E' udibile al DJ solo se '{0}' nella finestra principale è " #~ "impostato su '{1}'" #~ msgid "Add To Jingles" #~ msgstr "Aggiungi agli stacchetti" #~ msgid "" #~ "The jingles catalogue.\n" #~ "\n" #~ "From a main media player tracks can be exported here by right clicking on " #~ "the playlist entry and selecting {0} from the {1} submenu.\n" #~ "\n" #~ "The jingles catalogue can also be managed by modifying the contents of " #~ "the '{2}' directory directly." #~ msgstr "" #~ "Il catalogo degli stacchetti.\n" #~ "\n" #~ "Da un lettore principale le tracce possono essere esportate qui cliccando " #~ "col il destro sulla traccia nella playlist e scegliendo {0} dal sottomenù " #~ "{1}.\n" #~ "\n" #~ "Il catalogo degli stacchetti può essere gestito anche modificando " #~ "direttamente i contenuti della cartella '{2}'." #~ msgid "Sequence" #~ msgstr "Sequenza" #~ msgid "" #~ "Select multiple jingles to play in sequence by entering the corresponding " #~ "index number as part of a comma separated list, or double click entries " #~ "in the catalogue to append them." #~ msgstr "" #~ "Seleziona più stacchetti da riprodurre in sequenza inserendo il numero " #~ "d'ordine in forma di una lista di numeri separata da virgole oppure " #~ "facendo doppio clic negli elementi del catalogo per appenderli in coda." #~ msgid "" #~ "Cause the jingles catalogue to be refreshed. This is for when items have " #~ "been added or removed from the jingles directory located at '%s'." #~ msgstr "" #~ "Provoca l'aggiornamento del catalogo degli stacchetti. Questo è per " #~ "quando gli elementi sono stati aggiunti o rimossi dalla cartella degli " #~ "stacchetti '%s'." #~ msgid "Jingles play/stop 1" #~ msgstr "Stacchetti avvia/interrompi 1" #~ msgid "Jingles play/stop 2" #~ msgstr "Stacchetti avvia/interrompi 2" #~ msgid "Jingles select previous" #~ msgstr "Stacchetti seleziona il precedente" #~ msgid "Jingles play selected from start" #~ msgstr "Stacchetti riproduci selezione dall'inizio" #~ msgid "Jingles set jingles volume 2" #~ msgstr "Stacchetti imposta volume stacchetti 2" #~ msgid "Single jingle" #~ msgstr "Stacchetto singolo" #~ msgid "Restrict the stream audio ceiling to -2dB" #~ msgstr "Limita il tetto del flusso a -2dB" #~ msgid "" #~ "This option may improve the audio quality at the expense of a little " #~ "playback volume. Limiting audio to -2dB at the encoder input will " #~ "generally prevent decoded audio from breaching 0dB." #~ msgstr "" #~ "Questa impostazione potrebbe migliore la qualità audio a spesa di un " #~ "volume di riproduzione leggermente inferiore. Limitare l'audio a -2dB " #~ "all'ingresso del codificatore impedirà all'audio decodificato di superare " #~ "0dB" #~ msgid "" #~ "It is standard to stream mp3 metadata with iso-8859-1 character encoding " #~ "on shoutcast. This option should therefore not be used." #~ msgstr "" #~ "E' uno standard quello di inviare i metadati mp3 con la codifica " #~ "iso-8859-1 su shoutcast. Quindi questa opzione non dovrebbe essere " #~ "utilizzate." #~ msgid "Good" #~ msgstr "Buona" #~ msgid "Fastest" #~ msgstr "Più veloce" #~ msgid "Use JACK sample rate" #~ msgstr "Usa la frequenza di campionamento di JACK" #~ msgid "" #~ "No additional resampling will occur. The stream sample rate will be that " #~ "of the JACK sound server." #~ msgstr "" #~ "Nessun ulteriore campionamento verrà effettuato. La frequenza di " #~ "campionamento del flusso sarà quella del server JACK" #~ msgid "Use one of the standard mp3 sample rates for the stream." #~ msgstr "Usa una delle frequenze di campiomento standard per il flusso." #~ msgid "" #~ "Complete sample rate freedom. Note that only sample rates that appear in " #~ "the drop down box can be used with an mp3 stream." #~ msgstr "" #~ "Totale libertà. Notare che soltanto le frequenze di campionamento che " #~ "compaiono nel menù a tendina possono essere utilizzate con un flusso mp3." #~ msgid "" #~ "This selects the audio resampling method to be used, efficiency versus " #~ "quality. Highest mode offers the best sound quality but also uses the " #~ "most CPU (not recommended for systems built before 2006). Fastest mode " #~ "while it uses by far the least amount of CPU should be avoided if at all " #~ "possible." #~ msgstr "" #~ "Seleziona il metodo di ricampionamento da usare, efficenza contro " #~ "qualità. Valori più alti offrono la migliore qualità di suono ma " #~ "utilizzano più CPU (non consigliato per sistemi costruiti prima del " #~ "2006). Valori bassi utilizzano meno CPU ma dovrebbero essere evitati se " #~ "possibile." #~ msgid "" #~ "Clicking this tab selects the mp3 file format for streaming and contains " #~ "settings for configuring the mp3 encoder." #~ msgstr "" #~ "Questa linguetta seleziona il formato del file mp3 per il flusso e " #~ "contiene le impostazioni per la configurazione del codificatore mp3." #~ msgid "Use one of the standard mp3 bit rates." #~ msgstr "Usa uno dei bitrate standard per mp3." #~ msgid "" #~ "Freedom to choose a non standard bitrate. Note however that the use of a " #~ "non-standard bit rate will result in a 'free-format' stream that cannot " #~ "be handled by a great many media players." #~ msgstr "" #~ "Siete liberi di usare un bitrate non standard. Notate che l'utilizzo " #~ "porterà ad un flusso a 'formato-libero' che non potrà essere gestito da " #~ "parecchi lettori di media." #~ msgid "The bit-rate in kilobits per second." #~ msgstr "Il bitrate espresso in kilobit per secondo." #~ msgid "Quality (0=best)" #~ msgstr "Qualità (0=migliore)" #~ msgid "" #~ "This trades off sound quality against CPU efficiency. The more streams " #~ "you want to run concurrently the more you might want to consider using a " #~ "lower quality setting." #~ msgstr "" #~ "Il compromesso tra qualità audio e efficenza CPU. Più flussi in " #~ "concorrenza vorrete lanciare più dovrete prendere in considerazione di " #~ "diminuirne la qualità." #~ msgid "" #~ "Mono is self explanatory. Joint Stereo is recommended below 160kb/s where " #~ "regular Stereo might result in metallic sounding distortion. At higher " #~ "bitrates regular stereo sounds better due to superior channel separation." #~ msgstr "" #~ "Mono è autoesplicativo. Joint Stereo è raccomandato sotto i 160Kb/s " #~ "laddove uno Stereo potrebbe produrre un suono metallico e distorto. A " #~ "bitrate più elevati Stereo produce un suono migliore grazie alla migliore " #~ "separazione dei canali." #~ msgid "" #~ "The type of mpeg header used in the mp3 stream or either s-rate or " #~ "freeformat. Freeformat indicates that the bitrate is not specified in the " #~ "header since it is non-standard, rather the listener client has to figure " #~ "out what the bitrate is by itself and not all of them are capable of " #~ "doing that. In short you'll be streaming something many listeners may not " #~ "be able to listen to. S-rate indicates the sample rate you have selected " #~ "is not compatible with mp3 and you'll need to change it if you want to " #~ "stream." #~ msgstr "" #~ "Il tipo di intestazione mpeg utilizzata nel flusso mp3 o s-rate o " #~ "freeformat. Freeformat indica che il bitrate non è specificato " #~ "nell'intestazione perché è non standard, è il client dell'ascoltatore " #~ "deve capire qual'è il bitrate e non tutti sono in grado di farlo. In " #~ "breve, trasmetterete qualcosa che non tutti potrebbero essere in grado di " #~ "ascoltare. S-rate indica che la frequenza di campionamento selezionata " #~ "non è compatibile con mp3 e che dovrete cambiarla se volete trasmettere." #~ msgid "" #~ "To enable MP3 streaming\n" #~ "install the package named\n" #~ "'libmp3lame'\n" #~ " and restart IDJC." #~ msgstr "" #~ "Per abilitare il flusso MP3\n" #~ "installare il pacchetto 'libmp3lame'\n" #~ " riavviate IDJC." #~ msgid "" #~ "Installing libmp3lame will allow you to stream the MP3 format to " #~ "Shoutcast servers. Currently only Ogg streaming to Icecast servers is " #~ "possible." #~ msgstr "" #~ "Installare libmp3lame vi consentirà di utilizzare flussi mp3 sui server " #~ "Shoutcast. Attualmente sono possibili soltato flussi Ogg sui server " #~ "Icecast." #~ msgid "Clicking this tab selects the Ogg family of file formats." #~ msgstr "Seleziona la famiglia dei formati file Ogg." #~ msgid "This chooses the Ogg/vorbis format for streaming and recording." #~ msgstr "Sceglie il formato Ogg/Vorbis per il flusso e la registrazione." #~ msgid "This chooses the OggFLAC format for streaming and recording." #~ msgstr "Sceglie il formato OggFlac per il flusso e la registrazione." #, fuzzy #~ msgid "This chooses the Speex format for streaming and recording." #~ msgstr "Sceglie il formato Speex per il flusso e la registrazione." #~ msgid "Upper %" #~ msgstr "Superiore %" #~ msgid "The nominal Ogg/Vorbis bitrate in kilobits per second." #~ msgstr "Il bitrate nominale Ogg/Vorbis in kilobit per secondo." #~ msgid "" #~ "The upper bitrate limit relative to the nominal bitrate. This is an " #~ "advisory limit and it may be exceeded. Normally it is safe to leave the " #~ "upper limit uncapped since the bitrate will be averaged and the listeners " #~ "have buffers that extend for many seconds. The checkbox enables/disables " #~ "this feature." #~ msgstr "" #~ "Il limite superiore del bitrate relativo al bitrate nominale. E' un " #~ "limite di avvertimento e può essere superato. Normalmente può essere " #~ "lasciato andare visto che il bitrate sarà medio e gli ascoltatori hanno " #~ "dei buffer che durano parecchi secondi. La casella di spunta abilita/" #~ "disabilita questa opzione." #~ msgid "" #~ "The minimum bitrate in relative percentage terms. For streaming it is " #~ "recommended that you set a minimum bitrate to ensure correct listener " #~ "client behaviour however setting any upper or lower limit will result in " #~ "a significantly higher CPU usage by a factor of at least three, and " #~ "slightly degraded sound quality. The checkbox enables/disables this " #~ "feature." #~ msgstr "" #~ "Il bitrate minimo in termini percentuali. Per il flusso è raccomandabile " #~ "che lo impostiate in modo da assicurare un comportamento corretto del " #~ "client dell'ascoltatore, comunque impostare un limite superiore o " #~ "inferiore comporterà un significativo aumento nell'utilizzo della CPU, " #~ "almeno a tre volte tanto, ed un suono leggermente peggiore. La casella " #~ "di spunta abilita/disabilita questa opzione." #~ msgid "" #~ "You can prevent the sending of metadata by turning this feature off. This " #~ "will prevent certain players from dropping the stream or inserting an " #~ "audible gap every time the song title changes." #~ msgstr "" #~ "Potete evitare l'invio dei metadati. Questo impedirà a certi lettori di " #~ "interrompere il flusso o di inserire un vuoto ogni volta che il titolo " #~ "della canzone cambia." #~ msgid "%d Bit" #~ msgstr "%d bit" #~ msgid "" #~ "Useful for streaming but for recording choose a higher bitrate option." #~ msgstr "" #~ "Utile per il flusso ma per la registrazione sceglie un bitrate più " #~ "elevato." #~ msgid "" #~ "Ideal for very high quality streaming or recording although not as " #~ "compatible as 16 bit." #~ msgstr "" #~ "Ideale per flussi o registrazioni di alta qualità sebbene non sia " #~ "compatibile come i 16bit." #~ msgid "" #~ "The highest quality audio format available within IDJC. Recommended for " #~ "pre-recording." #~ msgstr "" #~ "Il formato qualitativamente migliore disponibile in IDJC. Consigliato per " #~ "le pre-registrazioni." #~ msgid "" #~ "Apply intensity stereo to the audio stream. This is a very efficient " #~ "implementation of stereo but is only suited to voice." #~ msgstr "" #~ "Applica lo stereo al flusso. E' una implementazione molto efficente ma " #~ "adatta soltanto alla voce." #~ msgid "" #~ "Sending metadata may cause listener clients to misbehave when the " #~ "metadata changes. By keeping this feature turned off you can avoid that." #~ msgstr "" #~ "L'invio dei metadati può essere fuorviante per l'ascoltatore durante il " #~ "cambio. Disattivando questa opzione potete evitarlo." #~ msgid "" #~ "This is the audio bandwidth selector. Ultra Wide Band has a bandwidth of " #~ "16kHz; Wide Band, 8kHz; Narrow Band, 4kHz. The samplerate is twice the " #~ "value of the selected bandwidth consequently all settings in the " #~ "samplerate pane to the left will be disregarded apart from the resample " #~ "quality setting." #~ msgstr "" #~ "Questo è il selettore dell'ampiezza. La Banda Ultra Larga ha una ampiezza " #~ "di 16Khz; la Banda Larga di 8Khz; la Banda Stretta di 4Khz. La frequenza " #~ "di campionamento è il doppio della banda selezionata, conseguentemente " #~ "tutte le impostazioni nel pannello alla sinistra verranno ignorate fatta " #~ "eccezione per la qualità di ri-campionamento." #~ msgid "" #~ "This picks an appropriate bitrate for the selected bandwidth on a quality " #~ "metric. Q8 is a good choice for artifact-free speech and Q10 would be the " #~ "ideal choice for music." #~ msgstr "" #~ "Sceglie un bitrate appropriato per l'ampiezza di banda selezionata in " #~ "base alla qualità. Q8 è un buon compromesso per il parlato e Q10 " #~ "rappresenta la scelta migliore per la musica." #~ msgid "" #~ "This sets the level of complexity in the encoder. Higher values use more " #~ "CPU but result in better sounding audio though not as great an " #~ "improvement as you would get by increasing the quality setting to the " #~ "left." #~ msgstr "" #~ "Imposta il livello di complessità per il codificatore. Valori elevati " #~ "utilizzano più CPU producono un suono migliore, sebbene non così migliore " #~ "come quello che otterreste aumentando l'impostazione di qualità alla " #~ "sinistra." #~ msgid " Test / Monitor " #~ msgstr " Test / Monitor " #~ msgid "" #~ "Use this to change the encoder settings while streaming or recording.\n" #~ " \n" #~ "If this button is greyed out it means that the encoder is not running, or " #~ "the bitrate/samplerate combination is not supported by the encoder, or " #~ "you are trying to switch between Ogg and mp3, which is not permitted." #~ msgstr "" #~ "Utilizzatelo per modificare le impostazioni del codificatore durante la " #~ "registrazione o la messa in onda.\n" #~ "\n" #~ "Se questo pulsante è grigio vuol dire che il codificatore non è in " #~ "esecuzione o che la combinazione bitrate/frequenza non è supportata dal " #~ "codificatore, oppure che state cercando di passare da Ogg a mp3, il che " #~ "non è consentito." #, fuzzy #~ msgid "" #~ "Information about how the encoder iscurrently configured is displayed " #~ "here." #~ msgstr "" #~ "Le informazioni su come è configurato il codificatore sono riportate qui." #~ msgid "" #~ "Start recording.\n" #~ "\n" #~ "If this button is greyed out it could mean the encoder settings are not " #~ "valid. This can be fixed by using one of the approved sample rates for " #~ "mp3 or by choosing a sensible samplerate and bitrate combination for " #~ "Ogg.\n" #~ "\n" #~ "Also check that you have write permission on the folder you have selected " #~ "to record to." #~ msgstr "" #~ "Inizia la registrazione.\n" #~ "\n" #~ "Se questo pulsante è grigio può voler dire che le impostazioni del " #~ "codificatore non sono valide, Potete sistemarle usando uno dei formati " #~ "validi per mp3 o scegliendo una combinazione valida tra frequenza e " #~ "bitrate per il formato Ogg.\n" #~ "\n" #~ "Inoltre verificate di avere i permessi di scrittura sulla cartella che " #~ "avete scelto come destinazione della registrazione." #~ msgid "Set" #~ msgstr "Imposta" #~ msgid "Use default JACK audio routing" #~ msgstr "Usa il sistema base di JACK per il routing audio" #~ msgid "Reroute the audio to/from the specified port" #~ msgstr "Reindirizza l'audio verso/da la porta specificata" #~ msgid "" #~ "Save the audio routing so that it persists across application restarts" #~ msgstr "" #~ "Salva il routing audio in modo che persista tra un avvio e l'altro " #~ "dell'applicazione." #~ msgid "" #~ "Enter the name of the JACK audio port with which to bind and then click " #~ "the set button to the right.\n" #~ "Typing 'jack_lsp -p' in a console will give you a list of valid JACK " #~ "audio ports. Note that inputs will only bind to output ports and outputs " #~ "will only bind to input ports." #~ msgstr "" #~ "Inserire il nome della porta audio JACK alla quale collegarsi e poi " #~ "cliccare sul pulsante a destra.\n" #~ "Il comando 'jack_lsp -p' lanciato in un terminale vi fornirà una lista di " #~ "porte JACK valide. Gli ingressi si collegheranno soltanto a porte in " #~ "uscita e le uscite soltanto a porte in entrata." #~ msgid "The mixer module crashed during initialisation." #~ msgstr "Il modulo del mixer è collassato durante l'inizializzazione." #~ msgid "IDJC Launch Failed" #~ msgstr "L'avvio di IDJC è fallito" #~ msgid "" #~ "The JACK sound server needs to be running in order to run IDJC.\n" #~ "In order to manually start it try something like:\n" #~ "\n" #~ " $ jackd -d alsa -r 44100 -p 2048\n" #~ "\n" #~ "If you would like JACK to start automatically with your user specified " #~ "parameters try something like this, which will create a file called ." #~ "jackdrc in your home directory:\n" #~ "\n" #~ " $ echo \"/usr/bin/jackd -d alsa -r 44100\" > ~/.jackdrc\n" #~ "\n" #~ "If you have already done this it is possible another application or non-" #~ "JACK sound server is using the sound card.\n" #~ "\n" #~ "Possible remedies would be to close the other audio app or configure the " #~ "sound server to go into suspend mode after a brief amount of idle time.\n" #~ "\n" #~ "If you are trying to connect to a named jack server, either set the " #~ "environment variable JACK_DEFAULT_SERVER to that name or launch IDJC with " #~ "the -j jackservername option. For example:\n" #~ "\n" #~ " $ jackd -n xyzzy -d alsa -r 44100 -p 2048 &\n" #~ " $ idjc -p profilename -j xyzzy\n" #~ "\n" #~ "If you are trying to open multiple instances of IDJC use the -e command " #~ "line switch." #~ msgstr "" #~ "Il server audio JACK deve essere in esecuzione per avviare IDJC.\n" #~ "Per avviarlo manualmente provate qualcosa del genere:\n" #~ " $ jackd -d alsa -r 44100 -p 2048\n" #~ "\n" #~ "Se volete eseguire JACK automaticamente con i vostri parametri specifici " #~ "provate qualcosa del genere, che creerà il file .jackdrc nella vostra " #~ "cartella Home.\n" #~ "\n" #~ " $ echo \"/usr/bin/jackd -d alsa -r 44100\" > ~/.jackdrc\n" #~ "\n" #~ "Se già lo avete fatto è possibile che un'altra applicazione o un'altro " #~ "server audio stia utilizzando la scheda audio.\n" #~ "\n" #~ "Potete chiudere l'altra applicazione audio o configurare il server audio " #~ "affinché si sospenda dopo un breve lasso di tempo di non utilizzo.\n" #~ "\n" #~ "Se state cercando di connettervi ad un server JACK con un nome specifico, " #~ "impostate la variabile di ambiente JACK_DEFAULT_SERVER su quel nome " #~ "oppure avviate IDJC con l'opzione -j nomeserver. Ad esempio:\n" #~ "\n" #~ " $ jackd -n xyzyx -d alsa -r 44100 -p 2048 &\n" #~ " $ idjc -p nomeprofilo -j xyzyx\n" #~ "\n" #~ "Se state cercando di avviare istanze multiple di IDJC usate il selettore -" #~ "e dalla riga di comando." #~ msgid "Stream Normaliser" #~ msgstr "Normalizzatore di flusso" #~ msgid "" #~ "This feature is provided to make the various pieces of music that are " #~ "played of a more uniform loudness level. The default settings are likely " #~ "to be sufficient however you may adjust them and you can compare the " #~ "effect by clicking the 'Monitor Mix' 'Stream' button in the main " #~ "application window which will allow you to compare the processed with the " #~ "non-processed audio." #~ msgstr "" #~ "Questa opzione serve per uniformare il livello del suono dei vari tipi di " #~ "musica che viene riprodotta. Le impostazioni di base dovrebbero essere " #~ "sufficenti ma potreste volerle regolare e paragonare cliccando sul " #~ "pulsante 'Monitora il mix' 'Flusso' nella finestra principale " #~ "dell'applicazione, che vi consentirà di confrontare il segnale non " #~ "elaborato con l'elaborato." #~ msgid "Boost" #~ msgstr "Boost" #~ msgid "" #~ "Adjust these settings carefully since they can have subtle but " #~ "undesireable effects on the sound quality." #~ msgstr "" #~ "Regolate queste impostazioni con attenzione poiché potrebbero avere lievi " #~ "ma indesiderabili effetti sulla qualità del suono" #~ msgid "Load the recommended settings." #~ msgstr "Carica le impostazioni consigliate" #~ msgid "Rise" #~ msgstr "Crescita" #~ msgid "Fall" #~ msgstr "Decadenza" #~ msgid "sub-option -h for more info" #~ msgstr "usare -h per più informazioni" #~ msgid "the default command" #~ msgstr "il comando di base" #~ msgid "Open various application windows." #~ msgstr "Apre varie applicazioni" #~ msgid "Str VU" #~ msgstr "Str VU" #~ msgid "Quit" #~ msgstr "Chiudi" #~ msgid "Stream audio levels, connections, and listener figures" #~ msgstr "Livelli del flusso audio, connessioni e ascoltatori" #~ msgid "Using named JACK server: %s" #~ msgstr "Sto usando il server JACK: %s." #~ msgid "Route audio through the DSP interface" #~ msgstr "Ruota l'audio attraverso l'interfaccia DSP" #~ msgid "New" #~ msgstr "Nuovo" #~ msgid "Edit" #~ msgstr "Modifica" #~ msgid "Update" #~ msgstr "Aggiorna" #~ msgid " %s " #~ msgstr "%s" #~ msgid "Compressor" #~ msgstr "Limiter" #~ msgid "" #~ "A lookahead brick wall limiter. Use the Ratio control to boost the " #~ "quieter sounds. The Limit control is used to set the absolute maximum " #~ "audio level." #~ msgstr "" #~ "Un limiter predittivo. Il controllo Limita è utilizzato per impostare il " #~ "livello massimo assoluto dell'audio." idjc-0.8.16/po/es.po0000644000175000017500000042307412711167613011044 00000000000000# Spanish translations for idjc package. # Copyright (C) 2015 Stephen Fairchild # This file is distributed under the same license as the idjc package. # Blank Frank , 2015. # msgid "" msgstr "" "Project-Id-Version: idjc 0.8.16_development\n" "Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk\n" "POT-Creation-Date: 2016-04-30 18:46+0100\n" "PO-Revision-Date: 2015-12-27 16:27-0600\n" "Last-Translator: Blank Frank \n" "Language-Team: English \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: python/prelims/__init__.py:101 #, python-format msgid "" "show this help message and exit -- additional help is available on each of " "the sub-commands for example: \"%(prog)s run --help\" shows the help for the " "run command" msgstr "" "mostrar este mensaje de ayuda y termina -- ayuda adicional está disponible " "en \n" "cada uno de los sub-comandos, por ejemplo: \"%(prog)s run --help\" muestra " "la ayuda \n" "para el comando run" #. TC: a command line option help string. #: python/prelims/__init__.py:108 msgid "show the version number and exit" msgstr "mostrar el número de versión y salir" #. TC: a command line option help string. #: python/prelims/__init__.py:112 msgid "" "run the main idjc application -- this is the default when no command line " "options are specified" msgstr "" "ejecutar la aplicación principal IDJC - este es el valor por defecto cuando " "no se especifican las opciones de línea de comandos" #. TC: do not translate run. #: python/prelims/__init__.py:116 msgid "-- sub-command: run -- launch the idjc application" msgstr "-- sub-comando: run -- iniciar la aplicación IDJC" #: python/prelims/__init__.py:121 msgid "make a new profile" msgstr "hacer un nuevo perfil" #. TC: do not translate the word new. #: python/prelims/__init__.py:123 msgid "-- sub-command: new -- make a new profile" msgstr "-- sub-comando: nuevo -- hacer un nuevo perfil" #. TC: a command line option help string. #: python/prelims/__init__.py:127 msgid "remove profile(s)" msgstr "eliminar perfil(es)" #. TC: do not translate the word rm. #: python/prelims/__init__.py:129 msgid "-- sub-command: rm -- remove profile(s)" msgstr "-- sub-comando: rm -- eliminar el perfil (s)" #. TC: a command line option help string. #: python/prelims/__init__.py:133 msgid "select which profile is to automatically launch" msgstr "seleccionar cuál perfil se pone en marcha de forma automática" #. TC: do not translate the word auto. #: python/prelims/__init__.py:136 msgid "-- sub-command: auto -- mark a profile for auto-launch" msgstr "-- sub-comando: auto -- marcar un perfil para auto-lanzamiento" #: python/prelims/__init__.py:141 msgid "remove auto-launch" msgstr "eliminar auto-lanzamiento" #: python/prelims/__init__.py:142 msgid "-- sub-command: noauto -- remove auto-launch" msgstr "-- sub-comando: noauto -- quitar auto-lanzamiento" #: python/prelims/__init__.py:147 msgid "list available profiles" msgstr "lista de perfiles disponibles" #. TC: do not translate the word ls. #: python/prelims/__init__.py:149 msgid "-- sub-command: ls -- list available profiles" msgstr "-- sub-comando: ls -- Lista perfiles disponibles" #: python/prelims/__init__.py:153 python/prelims/__init__.py:206 #: python/prelims/__init__.py:231 python/prelims/__init__.py:236 #: python/prelims/__init__.py:241 python/prelims/__init__.py:246 msgid "show this help message and exit" msgstr "mostrar este mensaje de ayuda y sale" #: python/prelims/__init__.py:156 msgid "" "force the appearance or non-appearance of the\n" " profile chooser dialog -- when used with the -p option\n" " the chosen profile is preselected" msgstr "" "forzar la aparición o no aparición del\n" "cuadro de diálogo selector de perfil -- cuando se utiliza con la opción -p\n" "el perfil elegido es preseleccionada" #: python/prelims/__init__.py:161 msgid "profile_choice" msgstr "profile_choice" #: python/prelims/__init__.py:162 msgid "" "the profile to use -- overrides the user interface\n" " preferences \"show profile dialog\" option" msgstr "" "el perfil de usar -- invalida la opción\n" "\"mostrar el diálogo de perfil\" de las preferencias \n" "del interfaz de usuario" #. TC: command line help placeholder. #: python/prelims/__init__.py:166 msgid "server_name" msgstr "server_name" #: python/prelims/__init__.py:166 msgid "the named jack sound-server to connect with" msgstr "el sonido-servidor jack nombrado para conectar" #. TC: command line help placeholder. #: python/prelims/__init__.py:170 msgid "session_details" msgstr "session_details" #: python/prelims/__init__.py:171 msgid "" "e.g. 'L1:name' for a named Ladish [L1] session called 'name' -- refer to the " "idjc man page for more details" msgstr "" "por ejemplo, \"L1: el nombre de una sesión Ladish [L1] llamado \n" "'nombre' -- consulte la página de manual IDJC para obtener más detalles" #: python/prelims/__init__.py:176 msgid "" "At start-up do not make any JACK connections. This option delegates all " "control over restored connections to the session handler." msgstr "" "Al arranque no se realice ninguna conexión JACK. Esta opción delega todo " "control sobre las conexiones restauradas al manejador de sesión." #: python/prelims/__init__.py:181 msgid "" "No JACK ports will be connected except those listed in the session file." msgstr "" "Ningúnos puertos JACK se conectarán a excepción de los enumerados en el " "archivo de sesión." #: python/prelims/__init__.py:184 msgid "user interface settings" msgstr "configuración de la interfaz de usuario" #: python/prelims/__init__.py:187 msgid "the audio channels to have open at startup" msgstr "los canales de audio para tener abiertas en el arranque" #: python/prelims/__init__.py:190 msgid "the voip mode at startup" msgstr "el modo de VoIP en el arranque" #: python/prelims/__init__.py:196 msgid "attempt connection with the specified servers" msgstr "intentar la conexión con los servidores especificados" #: python/prelims/__init__.py:199 msgid "" "kick sources on servers -- note that this will be\n" " done before any server connection attempts are made" msgstr "" "patear las fuentes en los servidores -- tenga en cuenta que esto \n" "se hace antes de realizar cualquier intento de conexión del servidor" #: python/prelims/__init__.py:203 msgid "position the crossfader for the specified player" msgstr "sitúe el crossfader para el reproductor especificado" #. TC: command line help placeholder. #: python/prelims/__init__.py:208 python/prelims/__init__.py:232 msgid "profile_name" msgstr "profile_name" #: python/prelims/__init__.py:209 msgid "" "new profile name -- will form part of the dbus\n" " bus/object/interface name and the JACK client ID --\n" " restrictions therefore apply" msgstr "" "nuevo nombre de perfil -- formará parte del nombre \n" "del bus/objeto/interfaz de dbus y la ID del cliente de JACK --\n" "Por lo tanto, se aplican restricciones" #: python/prelims/__init__.py:214 msgid "template_profile" msgstr "template_profile" #: python/prelims/__init__.py:215 msgid "an existing profile to use as a template" msgstr "un perfil existente a utilizar como plantilla" #: python/prelims/__init__.py:218 msgid "icon_pathname" msgstr "icon_pathname" #: python/prelims/__init__.py:219 msgid "pathname to an icon -- defaults to idjc logo" msgstr "ruta de acceso a un icono -- por defecto logo IDJC" #: python/prelims/__init__.py:223 msgid "nickname" msgstr "apodo" #: python/prelims/__init__.py:224 msgid "the alternate profile name to appear in window title bars" msgstr "" "el nombre del perfil alternativo que aparezca en la barra de título de la " "ventana" #: python/prelims/__init__.py:227 msgid "description_text" msgstr "description_text" #: python/prelims/__init__.py:228 msgid "a description of the profile" msgstr "una descripción del perfil" #: python/prelims/__init__.py:233 msgid "the profile(s) to remove" msgstr "perfil(es) para eliminar" #: python/prelims/__init__.py:238 msgid "the profile to make automatic" msgstr "el perfil para hacer automática" #: python/prelims/__init__.py:417 #, python-format msgid "failed to create profile: %s" msgstr "falló en crear el perfil: %s" #: python/prelims/__init__.py:424 #, python-format msgid "failed to delete profile: %s" msgstr "falló en eliminar el perfil: %s" #: python/prelims/__init__.py:431 #, python-format msgid "auto failed: %s" msgstr "falló auto: %s" #: python/prelims/__init__.py:438 #, python-format msgid "noauto failed: %s" msgstr "falló noauto: %s" #: python/prelims/__init__.py:447 #, python-format msgid "ls failed: %s" msgstr "falló ls: %s" #: python/prelims/__init__.py:466 msgid "the specified profile name is not valid" msgstr "el nombre del perfil especificado no es válido" #: python/prelims/__init__.py:473 msgid "profile name is bad" msgstr "nombre del perfil es malo" #: python/prelims/__init__.py:476 python/prelims/__init__.py:744 #, python-format msgid "profile %s does not exist" msgstr "perfil %s no existe" #: python/prelims/__init__.py:479 #, python-format msgid "profile %s is already running" msgstr "perfil %s ya está funcionando" #: python/prelims/__init__.py:492 #, python-format msgid "" "Error while creating new profile.\n" "\n" "%s" msgstr "" "\"Error al crear un perfil nuevo.\\n" "\"\n" "\"\\n\"\n" "\"%s\"" #: python/prelims/__init__.py:510 msgid "no profile is set" msgstr "sin perfil se ajusta" #: python/prelims/__init__.py:517 msgid "" "failed to grab bus name -- another session by the same name appears to be " "running" msgstr "" "no logró agarrar nombre de bus -- otra sesión con el mismo nombre parece " "estar funcionando" #. TC: text appears in the title bar when in session mode. #: python/prelims/__init__.py:590 #, python-brace-format msgid "session={type}:{name}" msgstr "session={type}:{name}" #: python/prelims/__init__.py:630 #, python-format msgid "specified profile is not valid %s" msgstr "perfil especificado no es válido %s" #: python/prelims/__init__.py:633 #, python-format msgid "specified profile does not exist: %s" msgstr "perfil especificado no existe: %s" #: python/prelims/__init__.py:664 #, python-format msgid "unknown session type: %s: must be one of %s" msgstr "desconocido tipo de sesión: %s debe ser uno de %s" #: python/prelims/__init__.py:677 #, python-format msgid "directory does not exist: %s" msgstr "directorio no existe: %s" #: python/prelims/__init__.py:708 #, python-format msgid "problem with specified session directory: %s" msgstr "problema con el directorio de sesión %s" #: python/prelims/__init__.py:781 #, python-format msgid "Profile %s is active." msgstr "El perfil %s está activo." #: python/prelims/__init__.py:791 #, python-brace-format msgid "Cannot rename profile {0} to {1}, {1} currently exists." msgstr "" "No se puede cambiar el nombre de perfil {0} a {1}, {1} actualmente existe." #: python/prelims/__init__.py:795 #, python-brace-format msgid "Error during attempt to rename {0} to {1}." msgstr "Error de intento de cambiar el nombre de {0} a {1}." #: python/prelims/__init__.py:805 #, python-brace-format msgid "" "Error while editing profile: {0}.\n" "\n" "{1}" msgstr "" "Error al editar el perfil: {0}.\n" "\n" "{1}" #: python/prelims/__init__.py:824 #, python-brace-format msgid "could not get a lock on profile {0}: {1}" msgstr "no pudo obtener un bloqueo en el perfil de {0}: {1}" #: python/prelims/__init__.py:829 msgid "profile does not exist" msgstr "el perfil no existe" #: python/prelims/__init__.py:850 #, python-format msgid "the profile '%s' is in use" msgstr "el perfil %s está en uso" #: python/prelims/__init__.py:872 #, python-format msgid "the profile length is too long (max %d characters)" msgstr "la longitud del perfil es demasiado largo (max %d caracteres)" #: python/prelims/__init__.py:874 #, python-format msgid "The profile length is too long (max %d characters)." msgstr "La longitud del perfil es demasiado largo (max %d caracteres)." #: python/prelims/__init__.py:878 msgid "the new profile name is not valid" msgstr "el nuevo nombre de perfil no es válido" #: python/prelims/__init__.py:879 msgid "The new profile name is not valid." msgstr "El nuevo nombre de perfil no es válido." #: python/prelims/__init__.py:884 msgid "the chosen profile is currently running" msgstr "el perfil elegido se está ejecutando actualmente" #: python/prelims/__init__.py:885 msgid "The chosen profile is currently running." msgstr "El perfil elegido se está ejecutando actualmente." #: python/prelims/__init__.py:890 msgid "temporary directory creation failed" msgstr "creación directorio temporal no" #: python/prelims/__init__.py:891 msgid "Temporary directory creation failed." msgstr "Creación del directorio temporal falló." #: python/prelims/__init__.py:897 #, python-format msgid "the specified template '%s' is not valid" msgstr "la plantilla especificada '%s' no es válido" #: python/prelims/__init__.py:899 #, python-format msgid "The specified template '%s' is not valid." msgstr "La plantilla especificada '%s' no es válido." #: python/prelims/__init__.py:921 #, python-format msgid "the template profile '%s' does not exist" msgstr "el perfil de plantilla '%s' no existe" #: python/prelims/__init__.py:923 #, python-format msgid "The template profile '%s' does not exist." msgstr "El perfil de la plantilla '%s' no existe." #: python/prelims/__init__.py:933 #, python-format msgid "could not write file %s" msgstr "no pudo escribir el %s" #: python/prelims/__init__.py:934 #, python-format msgid "Could not write file %s." msgstr "No se pudo escribir el archivo %s." #: python/prelims/__init__.py:942 #, python-format msgid "the profile directory '%s' already exists" msgstr "el directorio de perfil '%s' ya existe'" #: python/prelims/__init__.py:944 #, python-format msgid "The profile directory '%s' already exists." msgstr "El directorio de perfil '%s' ya existe'." #: python/prelims/__init__.py:947 #, python-format msgid "a non directory path exists at: '%s'" msgstr "existe un camino no directorio en: '%s'" #: python/prelims/__init__.py:948 #, python-format msgid "A Non directory path exists at: '%s'." msgstr "Existe una ruta de acceso no directorio en: '%s'." #: python/prelims/__init__.py:959 msgid "The default profile" msgstr "El perfil predeterminado" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:98 #, python-format msgid "Edit profile %s" msgstr "Editar %s" #. TC: data entry dialog window title text. %s = profile name #: python/prelims/profiledialog.py:101 #, python-format msgid "New profile based upon %s" msgstr "Nuevo perfil en base %s" #. TC: data entry dialog window title text. #: python/prelims/profiledialog.py:105 msgid "New profile details" msgstr "Nuevos detalles del perfil" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:125 msgid "Profile name" msgstr "Nombre de perfil" #. TC: data entry dialog label text. #: python/prelims/profiledialog.py:127 python/maingui.py:681 msgid "Icon" msgstr "Icono" #. TC: data entry dialog label text. #. TC: column heading. The profile nicknames. #. TC: IRC nickname data entry label. #: python/prelims/profiledialog.py:129 python/prelims/profiledialog.py:285 #: python/irc.py:452 msgid "Nickname" msgstr "Apodo" #. TC: data entry dialog label text. #. TC: column heading. #. TC: Station description. #: python/prelims/profiledialog.py:131 python/prelims/profiledialog.py:288 #: python/irc.py:96 python/playergui.py:334 python/sourceclientgui.py:1786 msgid "Description" msgstr "Descripción" #. TC: profile dialog window title text. #: python/prelims/profiledialog.py:243 msgid "IDJC Profile Manager" msgstr "IDJC Profile Manager" #: python/prelims/profiledialog.py:277 msgid "Profile" msgstr "Perfil" #. TC: column heading. The time a particular profile has been running. #: python/prelims/profiledialog.py:292 msgid "Up-time" msgstr "Tiempo de actividad" #: python/prelims/profiledialog.py:306 msgid "_Auto" msgstr "_Auto" #: python/prelims/profiledialog.py:365 #, python-format msgid "" "Delete the data of profile '%s'?\n" "\n" "The profile will remain available with initial settings." msgstr "" "Borrar los datos de perfil '%s'?\n" "\n" "El perfil se mantendrá disponible con ajustes iniciales." #: python/prelims/profiledialog.py:369 #, python-format msgid "" "Delete profile '%s' and all its data?\n" "\n" "The data of deleted profiles cannot be recovered." msgstr "" "Eliminar perfil '%s' y todos sus datos?\n" "\n" "Los datos de los perfiles eliminados no se pueden recuperar." #. TC: The contents of <> and {} must not be changed. #: python/dialogs.py:198 #, python-brace-format msgid "" "The connection to the server in tab " "{servertab} has failed.\n" "A reconnection attempt will be made in {countdown} seconds.\n" "This is attempt number {attempt} of {maxtries}." msgstr "" "La conexión con el servidor en la " "pestaña {servertab} ha fallado.\n" "Un intento de reconexión se hará en {countdown} segundos.\n" "Este es el intento número {attempt} de {maxtries}." #: python/dialogs.py:254 #, python-format msgid "This is attempt number %d. There is no retry limit." msgstr "Este es el intento número %d No hay límite de reintentos." #: python/dialogs.py:283 msgid "_Retry Now" msgstr "_Retry Ahora" #: python/__init__.py.in.in:102 #, python-format msgid "Copyright 2005-%s Stephen Fairchild and others." msgstr "Derechos de autor %s Stephen Fairchild y otros." #: python/__init__.py.in.in:104 msgid "Released under the GNU General Public License V2.0+." msgstr "Publicado bajo la GNU General Public License V2.0+." #. TC: IRC message subcategory, triggers on new track announcements. #: python/irc.py:82 msgid "Track announce" msgstr "Anunciar pista" #. TC: IRC message subcategory, triggered by a timer. #: python/irc.py:84 msgid "Timer" msgstr "Minutero" #. TC: IRC message subcategory, triggered once when the stream starts. #: python/irc.py:86 msgid "On stream up" msgstr "Al inicio del stream" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:88 msgid "On stream down" msgstr "Al terminar el stream" #. TC: IRC message subcategory, triggered once at the stream's end. #: python/irc.py:90 msgid "Operations" msgstr "Operaciones" #. TC: Track artist. #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:902 #: python/songdb.py:1290 python/sourceclientgui.py:99 msgid "Artist" msgstr "Artista" #: python/irc.py:95 python/mutagentagger.py:375 python/songdb.py:1292 #: python/sourceclientgui.py:99 msgid "Title" msgstr "Título" #: python/irc.py:95 python/mutagentagger.py:376 python/songdb.py:1291 #: python/sourceclientgui.py:99 msgid "Album" msgstr "Álbum" #: python/irc.py:95 python/sourceclientgui.py:100 msgid "Song name" msgstr "Nombre de la cancion" #. TC: The DJ or Stream name. #: python/irc.py:96 python/sourceclientgui.py:1783 msgid "DJ name" msgstr "Nombre de DJ" #: python/irc.py:96 python/sourceclientgui.py:1784 msgid "Listen URL" msgstr "URL de Escuchar" #: python/irc.py:96 msgid "Source URI" msgstr "URI Fuente" #. TC: Popup menu item for a GTK text entry widget. #: python/irc.py:139 msgid "Insert Attribute or Colour Code" msgstr "Inserte Atributo o Código de color" #. TC: Text formatting style. #: python/irc.py:176 msgid "Bold" msgstr "Negrita" #. TC: Text formatting style. #: python/irc.py:178 msgid "Underline" msgstr "Subrayado" #. TC: Text formatting style. #: python/irc.py:180 msgid "Normal" msgstr "Normal" #: python/irc.py:186 msgid "Colours" msgstr "Colores" #: python/irc.py:403 msgid "Optional data entry field for information only." msgstr "Campo de entrada de datos opcional sólo para información." #. TC: Tab heading text. #: python/irc.py:406 msgid "IRC server" msgstr "Servidor IRC" #: python/irc.py:418 msgid "Manual start" msgstr "Inicio manual" #: python/irc.py:420 msgid "Off when restarting IDJC and off initially." msgstr "Apagado al reiniciar IDJC y apagado inicialmente." #. TC: The IRC network e.g. EFnet. #: python/irc.py:444 msgid "Network" msgstr "La red" #. TC: label for hostname entry. #: python/irc.py:446 python/sourceclientgui.py:270 msgid "Hostname" msgstr "Nombre de host" #. TC: TCP/IP port number label. #. TC: TCP port number. #: python/irc.py:448 python/sourceclientgui.py:785 msgid "Port" msgstr "Puerto" #: python/irc.py:449 msgid "User name" msgstr "Nombre de usuario" #: python/irc.py:450 python/songdb.py:343 python/sourceclientgui.py:271 msgid "Password" msgstr "Contraseña" #. TC: Second choice of IRC nickname. #: python/irc.py:454 msgid "Second choice" msgstr "Segunda elección" #. TC: Third choice of IRC nickname. #: python/irc.py:456 msgid "Third choice" msgstr "Tercera elección" #. TC: The IRC user's 'real' name. #: python/irc.py:458 msgid "Real name" msgstr "Nombre real" #. TC: The NickServ password. #: python/irc.py:460 msgid "NickServ p/w" msgstr "NickServ p/w" #. TC: Tooltip to IRC 'User name' field. #: python/irc.py:465 msgid "" "Ideally set this to something even on servers that allow public anonymous " "access." msgstr "" "Lo ideal sería que ponga esto en algo aún en los servidores que permiten el " "acceso público anónimo." #. TC: tooltip to all IRC nicknames entry fields. #: python/irc.py:475 msgid "" "When a nickname is in use on the target IRC network, during connection these " "IRC nicknames are cycled through, then twice again after appending an " "additional underscore until giving up. This gives IDJC a maximum of nine IRC " "nicknames to try." msgstr "" "Cuando un apodo está en uso en la red objetivo de IRC, durante la conexión " "estos apodos IRC se reciclan, después dos veces de nuevo después de añadir " "un subrayado adicional hasta que darse por vencido. Este IDJC da un máximo " "de nueve apodos IRC para probar." #: python/irc.py:480 msgid "" "The real name you want to use which will be available regardless of whether " "the network connection was made with the primary nickname or not.\n" "\n" "Ideally set this to something." msgstr "" "El verdadero nombre que desea utilizar que estará disponible " "independientemente de si la conexión de red se hizo con el apodo principal o " "no.\n" "\n" "Idealmente establece esto a algo." #: python/irc.py:483 msgid "" "If this value is set an attempt will be made to acquire your first choice " "IRC nickname (if needed) and log in with NickServ@services.\n" "\n" "The use of the NickServ service requires prior nickname registration on the " "network using a regular chat client." msgstr "" "Si este valor se establece se hará un intento para adquirir su primer " "elección \n" "de apodo IRC (si es necesario) e inicie sesión con NickServ@services. \n" "\n" "El uso del servicio NickServ requiere registrar antes el apodo en la red " "utilizando\n" "un cliente regular de chat." #: python/irc.py:511 msgid "" "Permanently delete this server?\n" "\n" "This action will also erase all of its associated messages." msgstr "" "Eliminar permanentemente este servidor?\n" "\n" "Este acción también borrará todos sus mensajes asociados." #. TC: An IRC channel #chan or user name entry box label. #: python/irc.py:559 msgid "Channels/Users" msgstr "Canales/Usuarios" #: python/irc.py:563 msgid "" "The comma or space separated list of channels and/or users to whom the " "message will be sent.\n" "\n" "Protected channels are included with the form:\n" "#channel:keyword." msgstr "" "La lista de canales separados por espacios o comas y/o usuarios a los que se " "enviará el mensaje.\n" "\n" "Los canales protegidos se incluyen con la forma:\n" "#canal:palabra_clave." #. TC: Message text to send to an IRC channel. Widget label. #: python/irc.py:616 msgid "Message" msgstr "Mensaje" #: python/irc.py:620 msgid "" "The message to send.\n" "\n" "On the pop-up window (mouse right click) are some useful options for " "embedding metadata and for text formatting.\n" "\n" "The window below displays how the message will appear to users of XChat." msgstr "" "El mensaje a enviar.\n" "\n" "En la ventana emergente (clic con el ratón derecho) son algunas opciones " "útiles para incrustar metadatos y para el formato de texto.\n" "\n" "La ventana por abajo muestra cómo aparecerá el mensaje a los usuarios de " "XChat." #. TC: Dialog window title text. #: python/irc.py:673 msgid "IRC track announce" msgstr "Anunciar pista IRC" #. TC: Spinbutton label for a delay value. #: python/irc.py:680 msgid "Delay" msgstr "Retrasar" #. TC: tooltip on a spinbutton widget. #: python/irc.py:682 msgid "" "The delay time of this message.\n" "\n" "Typically listener clients will buffer approximately ten seconds of audio " "data which means they are listening the same amount of time behind the " "actual stream therefore without a delay IRC messages will appear to the " "listener many seconds ahead of the audio.\n" "\n" "This setting will help synchronise the track change with the message." msgstr "" "El tiempo de retardo de este mensaje.\n" "\n" "Los clientes de oyente tipicamente amortiguan aproximadamente diez segundos " "de datos de audio que significa que están escuchando la misma cantidad de " "tiempo detrás de la stream real, por lo tanto, sin un retraso los mensajes " "IRC aparecerá al oyente muchos segundos por delante del audio.\n" "\n" "Este ayudará a sincronizar el cambio de pista con el mensaje." #. TC: Dialog window title text. #: python/irc.py:710 msgid "IRC timed message" msgstr "Mensaje cronometrado IRC" #. TC: Spinbutton time offset value label. #: python/irc.py:719 msgid "Offset" msgstr "Compensar" #. TC: Spinbutton timed interval duration value label. #: python/irc.py:721 msgid "Interval" msgstr "Intervalo" #. TC: spinbutton tooltip #: python/irc.py:724 msgid "" "The time offset within the below specified interval at which the message " "will be issued." msgstr "" "El tiempo de desplazamiento dentro del intervalo especificado a continuación " "en la que se emitió el mensaje." #: python/irc.py:728 msgid "The interval in seconds of the timed message." msgstr "El intervalo en segundos del mensaje programado." #: python/irc.py:967 msgid "This feature requires the installation of python-irc." msgstr "Esta función requiere la instalación de python-irc." #. TC: Indicator text: We used a password. #: python/irc.py:1058 msgid "PASSWORD" msgstr "CONTRASEÑA" #. TC: Indicator text: We interact with NickServ. #: python/irc.py:1061 msgid "NICKSERV" msgstr "NICKSERV" #. TC: Indicator text: Server connection started manually. #: python/irc.py:1064 msgid "MANUAL" msgstr "MANUAL" #. TC: Dialog title text. #: python/irc.py:1089 msgid "IRC stream up message" msgstr "Mensaje IRC de stream activo" #. TC: Dialog title text. #: python/irc.py:1091 msgid "IRC stream down message" msgstr "Mensaje IRC de stream inactivo" #. TC: Dialog title text. #: python/irc.py:1093 msgid "IRC station operations" msgstr "Operaciones de la estación de IRC" #: python/jingles.py:96 msgid "Stop" msgstr "Deténgase" #. TC: Column heading, whether to play. #: python/jingles.py:114 python/playergui.py:326 msgid "Play" msgstr "Reproducir" #: python/jingles.py:123 python/sourceclientgui.py:1132 msgid "Repeat" msgstr "Repetir" #: python/jingles.py:136 msgid "Configure" msgstr "Configurar" #: python/jingles.py:327 python/playergui.py:4194 msgid "Supported media" msgstr "Medios compatibles" #: python/jingles.py:334 #, python-format msgid "Effect %d Config" msgstr "Config Efecto %d" #: python/jingles.py:349 msgid "Trigger text" msgstr "Texto Disparador" #: python/jingles.py:350 msgid "No Name" msgstr "Sin Nombre" #: python/jingles.py:357 msgid "Level adjustment (dB)" msgstr "Ajuste de nivel (dB)" #: python/jingles.py:432 msgid "Effects volume." msgstr "Volumen de los efectos." #: python/jingles.py:439 msgid "Player headroom that is applied when an effect is playing." msgstr "" "Altura libre del reproductor que se aplica cuando un efecto está " "reproduciéndose." #: python/jingles.py:502 msgid "Alternative" msgstr "Alternativa" #: python/jingles.py:503 msgid "Default" msgstr "Predeterminado" #: python/jingles.py:548 msgid "Effects" msgstr "Efectos" #: python/jingles.py:591 #, python-format msgid "Effects %d" msgstr "Efectos %d" #: python/jingles.py:599 python/maingui.py:190 msgid "Background Tracks" msgstr "Pistas de fondo" #: python/jingles.py:618 msgid "Background Tracks volume." msgstr "Volumen de las Pistas de Fondo." #: python/maingui.py:94 msgid "Show a JACK freewheel control on the main panel" msgstr "Muestra un control de freewheeling de JACK en el panel principal" #: python/maingui.py:96 msgid "Toggle JACK freewheel mode." msgstr "Cambia el modo de freewheel de JACK." #: python/maingui.py:169 msgid "File" msgstr "Archivo" #: python/maingui.py:169 python/preferences.py:1130 msgid "View" msgstr "Ver" #: python/maingui.py:170 msgid "JACK Ports" msgstr "Puertos JACK" #: python/maingui.py:170 msgid "Help" msgstr "Ayuda" #: python/maingui.py:172 python/maingui.py:3688 msgid "Streams" msgstr "Streams" #: python/maingui.py:173 msgid "Recorders" msgstr "Grabadores" #: python/maingui.py:186 python/maingui.py:225 msgid "Output" msgstr "Salida" #: python/maingui.py:186 msgid "Preferences" msgstr "Preferencias" #: python/maingui.py:186 msgid "Profiles" msgstr "Perfiles" #: python/maingui.py:189 python/songdb.py:409 msgid "Music Database" msgstr "Base de datos musical" #: python/maingui.py:189 msgid "Channel Meters" msgstr "Medidores de canal" #: python/maingui.py:189 msgid "Output Meters" msgstr "Medidores de salida" #: python/maingui.py:190 msgid "Tabbed Area" msgstr "Área de pestañas" #: python/maingui.py:190 msgid "Button Bar" msgstr "Barra de botones" #: python/maingui.py:224 python/preferences.py:1485 msgid "Channels" msgstr "Canales" #: python/maingui.py:224 msgid "Players" msgstr "Reproductores" #: python/maingui.py:225 msgid "VoIP" msgstr "VoIP" #: python/maingui.py:225 python/maingui.py:3128 msgid "DSP" msgstr "DSP" #: python/maingui.py:225 msgid "Mix" msgstr "Mezcla" #: python/maingui.py:225 msgid "Misc" msgstr "Otra información" #: python/maingui.py:270 msgid "Reset" msgstr "Reiniciar" #: python/maingui.py:273 msgid "Reset the JACK port connections to the default settings." msgstr "" "Restablecer las conexiones del puerto JACK a la configuración predeterminada." #: python/maingui.py:277 msgid "" "Reset all JACK port connections?\n" "\n" "All currently established connections will be lost\n" "and replaced with defaults." msgstr "" "Restablecer todas las conexiones del " "puerto JACK?\n" "\n" "Todas las conexiones actualmente establecidas se perderán y serán " "reemplazadas por predeterminadas." #: python/maingui.py:320 msgid "No compatible ports available." msgstr "No hay puertos compatibles disponibles." #: python/maingui.py:363 #, python-brace-format msgid "{0} profile={1}:{2} settings saved." msgstr "{0} perfil = {1} {2} configuración guardada." #: python/maingui.py:366 #, python-brace-format msgid "{0} session={1}:{2} settings saved." msgstr "{0} session = {1} {2} configuración guardada." #: python/maingui.py:670 msgid "Text" msgstr "Texto" #: python/maingui.py:673 msgid "The opener button's text." msgstr "El texto del botón de apertura." #: python/maingui.py:689 msgid "The opener button's icon." msgstr "Icono del botón de apertura." #: python/maingui.py:697 msgid "" "The headroom is the amount by which to reduce player volume when this opener " "is active. Note that the actual amount will be the largest value of all the " "currently open buttons." msgstr "" "La altura libre es la cantidad en que se reduce el volumen del reproductor " "cuando este primer botón está activo. Tenga en cuenta que la cantidad real " "será el valor más grande de todos los botones abiertos actualmente." #: python/maingui.py:702 msgid "The amount of headroom required (dB)" msgstr "La cantidad de altura libre requerido (dB)" #: python/maingui.py:711 msgid "This button will flash as a reminder to close" msgstr "Este botón parpadeará como un recordatorio para cerrar" #: python/maingui.py:712 msgid "" "After a number of seconds where a main player is active this button's status " "indicator will start to flash and will continue to do so until the button is " "closed or the player stops." msgstr "" "Después de un número de segundos que un reproductor principal es activa " "indicador de estado de este botón comenzará a parpadear y continuará " "haciéndolo hasta que el botón se cierra o el reproductor se detiene." #: python/maingui.py:720 msgid "This button is to be treated as a microphone opener" msgstr "Este botón se va a tratar como un abridor de micrófono" #: python/maingui.py:722 msgid "" "The button will be grouped with the other microphone opener buttons. It will " "be affected by signals to close microphone buttons. Channels associated with " "this button will be mixed differently when using the VoIP modes." msgstr "" "El botón se agrupa con los otros botones abridor micrófono. Se afectada por " "las señales para cerrar botones de micrófono. Canales relacionados con este " "botón se mezclarán de manera diferente cuando se utilizan los modos de VoIP." #: python/maingui.py:731 msgid "This button will automatically cancel JACK freewheel mode" msgstr "Este botón, se cancelará automáticamente el modo de freewheel de JACK" #: python/maingui.py:733 msgid "" "This should be set for all buttons that control input from a live sound " "source or device." msgstr "" "Esto se debe establecer para todos los botones que controlan la entrada de " "una fuente de sonido en vivo o dispositivo." #: python/maingui.py:736 msgid "Button Open Triggers" msgstr "Abrir botón dispara" #: python/maingui.py:743 msgid "Playlist advance button" msgstr "Botón de avance de reproducción" #: python/maingui.py:744 python/maingui.py:745 #, python-format msgid "'%s' control" msgstr "%s de control'" #. TC: Insert playlist control to stop the player. #: python/maingui.py:744 python/playergui.py:4457 msgid "Player Stop" msgstr "Detener Reproductor" #. TC: Insert playlist control to stop the player. #: python/maingui.py:745 python/playergui.py:4464 msgid "Player Stop 2" msgstr "Detener Reproductor 2" #: python/maingui.py:746 msgid "Announcements" msgstr "Avisos" #: python/maingui.py:758 msgid "When opened close these other buttons" msgstr "Cuando se abre cerrar estos otros botones" #: python/maingui.py:769 msgid "Shell Command" msgstr "Shell de comandos" #: python/maingui.py:770 msgid "" "Mostly useful issuing 'amixer' commands, in particular for setting capture." msgstr "" "Mayormente útil emitiendo comandos 'amixer' en particular, para el " "establecimiento de la captura." #: python/maingui.py:790 msgid "On open" msgstr "Al abrir" #: python/maingui.py:791 msgid "On close" msgstr "Al cierre" #: python/maingui.py:835 msgid "Main Panel Opener Buttons" msgstr "Panel principal Abridor Botones" #: python/maingui.py:847 msgid "Indicate button numbers and associated channel numbers" msgstr "Indique los números de los botones y números de los canales asociados" #: python/maingui.py:849 msgid "A useful feature to have switched on while allocating channel openers." msgstr "" "Una característica útil de haber encendido mientras se asigna los abridores " "de canal." #: python/maingui.py:855 msgid "Status Indicator Appearance" msgstr "Aparencia del Indicador de estado" #: python/maingui.py:858 msgid "" "Each opener button has two vertical bars at the side to make the button " "state more apparent. These settings control their appearance." msgstr "" "Cada botón abridor tiene dos barras verticales en el lado para que el estado " "de botón más evidente. Estos ajustes controlan su apariencia." #: python/maingui.py:867 python/format.py:847 msgid "Width" msgstr "Anchura" #: python/maingui.py:874 msgid "Opened" msgstr "Abierto" #: python/maingui.py:878 python/preferences.py:503 python/preferences.py:505 msgid "Closed" msgstr "Cerrado" #: python/maingui.py:883 msgid "Remind" msgstr "Recordar" #. TC: A placeholder text for when there are no opener buttons. #: python/maingui.py:1064 msgid "No Channel Opener Buttons" msgstr "No Hay Botones Abridores de Canal" #: python/maingui.py:1353 msgid "" "This indicates the state of the various streams. Flashing means stream " "packets are being discarded because of network congestion. Partial red means " "the send buffer is partially full indicating difficulty communicating with " "the server. Green means everything is okay." msgstr "" "Esto indica el estado de las diversas streams. El parpadeante indica que " "paquetes del stream están siendo desechados debido a la congestión de la " "red. El Rojo significa que el buffer de envío es parcialmente lleno que " "indica dificultades para comunicarse con el servidor. El verde significa que " "todo está bien." #: python/maingui.py:1376 msgid "The combined total number of listeners in all server tabs." msgstr "El número total de oyentes en todas las pestañas de servidor." #. TC: Record as in, to make a recording. #: python/maingui.py:1824 python/sourceclientgui.py:2874 msgid "Record" msgstr "Grabar" #: python/maingui.py:2646 msgid "Confirmation to quit IDJC is required." msgstr "Se requiere confirmación para salir IDJC." #: python/maingui.py:2650 msgid "All active recordings and radio streams will terminate." msgstr "Todas las grabaciones de activos y flujos de radio terminarán." #: python/maingui.py:2652 msgid "All of the active radio streams will terminate." msgstr "Todas las streams de la radio activos terminará." #: python/maingui.py:2654 msgid "All active recordings will cease." msgstr "Todas las grabaciones activas cesarán." #. TC: Popup menu item, wipes away the tracks played history text. #: python/maingui.py:2920 python/maingui.py:3352 msgid "Remove Contents" msgstr "Eliminar Contenido" #: python/maingui.py:3075 msgid "Renameable Labels" msgstr "Etiquetas Renombrables" #: python/maingui.py:3099 msgid "Main Players" msgstr "Reproductores Principales" #: python/maingui.py:3152 msgid "Mix voice over IP audio to the output stream." msgstr "Mezcla de voz sobre IP de audio a la secuencia de salida." #: python/maingui.py:3165 msgid "Mix voice over IP audio to the DJ only." msgstr "Mezcla de voz sobre IP de audio a sólo el DJ." #: python/maingui.py:3192 msgid "" "This button steps through the active playlist, pausing between tracks. The " "active playlist is defined by the placement of the crossfader." msgstr "" "Este botón pasos a través de la lista de reproducción activa, haciendo una " "pausa entre las pistas. La lista de reproducción activa se define por la " "colocación del crossfader." #: python/maingui.py:3237 python/preferences.py:873 msgid "The volume control shared by both music players." msgstr "El control de volumen compartido por ambos reproductores de música." #: python/maingui.py:3248 msgid "The volume control for the right music player." msgstr "El control de volumen para el reproductor de música derecha." #: python/maingui.py:3276 msgid "VoIP level adjustment. 0dB gain is at the mid point." msgstr "Ajuste del nivel de VoIP. Ganancia de 0 dB está en el punto medio." #: python/maingui.py:3299 msgid "The stream volume level to send to the voice over IP connection." msgstr "" "El nivel de volumen stream para enviar a la voz a través de conexión IP." #: python/maingui.py:3326 python/preferences.py:1413 msgid "Tracks Played" msgstr "Pistas Reproducidas" #: python/maingui.py:3397 python/maingui.py:3399 python/maingui.py:3423 msgid "Monitor Mix" msgstr "Mezcla de Monitor" #: python/maingui.py:3406 python/maingui.py:3423 python/playergui.py:4398 msgid "DJ" msgstr "DJ" #. TC: binding editor, action pane, first row, toplevel menu. #: python/maingui.py:3409 python/maingui.py:3423 python/midicontrols.py:155 #: python/midicontrols.py:1507 python/playergui.py:4390 #: python/sourceclientgui.py:2882 msgid "Stream" msgstr "Stream" #. TC: Context {0}, {1}, {2} = Monitor Mix, Stream, DJ #. TC: Or whatever they become translated to. #: python/maingui.py:3419 #, python-brace-format msgid "" "In IDJC there are are two audio paths and this '{0}' control toggles between " "them. When '{1}' is active you can hear what the listeners are hearing " "including the effects of the crossfader. '{0}' needs to be set to '{2}' in " "order to make proper use of the VoIP features." msgstr "" "En IDJC existen dos caminos de audio y esta '{0}' control hace alternar " "entre ellos. Cuando '{1}' está activo se puede oír lo que los oyentes están " "escuchando incluyendo los efectos de crossfader. '{0}' debe ser puesto a " "'{2}' con el fin de hacer un uso correcto de las características de VoIP." #. TC: Dropdown box title text widget. #: python/maingui.py:3432 python/maingui.py:3434 msgid "Metadata Source" msgstr "Fuente de los Metadatos" #. TC: The chosen source of track metadata. #: python/maingui.py:3440 python/playergui.py:4103 msgid "Playlist 1" msgstr "Lista de Reproducción 1" #. TC: The chosen source of track metadata. #: python/maingui.py:3442 python/playergui.py:4104 msgid "Playlist 2" msgstr "Lista de Reproducción 2" #. TC: The chosen source of track metadata. #: python/maingui.py:3444 python/songdb.py:909 python/songdb.py:1293 msgid "Last Played" msgstr "Última Reproducido" #. TC: The chosen source of track metadata. #: python/maingui.py:3446 python/maingui.py:3483 python/maingui.py:3485 msgid "Crossfader" msgstr "Crossfader" #. TC: The chosen source of track metadata. In this case no metadata. #. TC: Fade time is zero. No fade, none. #: python/maingui.py:3448 python/playergui.py:4373 msgid "None" msgstr "Ninguna" #. TC: The chosen source of track metadata. In this case no metadata. #: python/maingui.py:3450 python/playergui.py:4104 msgid "Playlist 3" msgstr "Lista de Reproducción 3" #: python/maingui.py:3455 msgid "Select the origin for the playing track metadata on the stream." msgstr "" "Seleccione el origen de los metadatos en el stream de la pista en " "reproducción." #. TC: Abbreviation of left. #: python/maingui.py:3465 python/maingui.py:3467 msgid "L" msgstr "L" #: python/maingui.py:3477 msgid "Move the crossfader fully left." msgstr "Mueva el crossfader totalmente hacia la izquierda." #: python/maingui.py:3497 msgid "The crossfader." msgstr "El crossfader." #. TC: Abbreviation of right. #: python/maingui.py:3501 python/maingui.py:3503 msgid "R" msgstr "R" #: python/maingui.py:3513 msgid "Move the crossfader fully right." msgstr "Mueva el crossfader totalmente a la derecha." #. TC: Describes a mid point. #: python/maingui.py:3522 python/maingui.py:3524 msgid "Middle" msgstr "Medio" #: python/maingui.py:3541 python/maingui.py:3548 msgid "Move the crossfader to the middle of its range of travel." msgstr "Mueva el crossfader a la mitad de su rango de desplazamiento." #. TC: The attenuation response curve of the crossfader. User selectable. #: python/maingui.py:3553 python/maingui.py:3555 msgid "Response" msgstr "Respuesta" #: python/maingui.py:3577 msgid "" "This selects the response curve of the crossfader.\n" "\n" "The mid-point attenuations are -3dB, 0dB, and -22dB respectively." msgstr "" "Esto selecciona la curva de respuesta del crossfader.\n" "\n" "Los atenuaciones del punto medio son -3dB, 0dB y -22dB respectivamente." #. TC: Duration in seconds. #: python/maingui.py:3591 python/maingui.py:3593 msgid "Time" msgstr "Hora" #: python/maingui.py:3610 msgid "" "The time in seconds that the crossfader will take to automatically pass " "across when the button to the right is clicked." msgstr "" "El tiempo en segundos que el crossfader se llevará a pasar automáticamente a " "través de cuando se hace clic en el botón a la derecha." #. TC: The crossfader pass-across button text. #. TC: The actual button appears as [<-->] with this text above it. #: python/maingui.py:3619 python/maingui.py:3621 msgid "Pass" msgstr "Pasar" #: python/maingui.py:3634 msgid "" "This button causes the crossfader to move to the opposite side at a speed " "determined by the speed selector to the left." msgstr "" "Este botón hace que el crossfader se mueva hacia el lado opuesto a una " "velocidad determinada por el selector de velocidad hacia la izquierda." #: python/maingui.py:3677 msgid "Peak" msgstr "Pico" #: python/maingui.py:3680 msgid "A peak hold meter indicating the signal strength of the stream audio." msgstr "" "Un medidor de retención de pico que indica la intensidad de la señal del " "audio stream." #. TC: This text appears above the stream mix VU meter. #: python/maingui.py:3702 msgid "VU" msgstr "VU" #: python/maingui.py:3706 msgid "A VU meter for the stream audio." msgstr "Un medidor VU para el audio stream." #. TC: Appears above the mic meters as a label followed by a number. #: python/maingui.py:3709 msgid "Ch" msgstr "Ch" #: python/maingui.py:3736 msgid "" "A peak hold meter indicating the microphone signal strength and a meter " "indicating attenuation levels in the microphone signal processing system. " "Green indicates attenuation from the noise gate, yellow from the de-esser, " "red from the limiter." msgstr "" "Un medidor de retención de pico que indica la intensidad de la señal del " "micrófono y un medidor que indica los niveles de atenuación en el sistema de " "procesamiento de la señal del micrófono. El color verde indica la atenuación " "de la puerta de ruido, amarillo del de-esser, rojo del limitador." #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:48 msgid "Tooltips enable" msgstr "Tooltips activar" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:50 msgid "DJ-mix monitor" msgstr "Mezcla-DJ monitor" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:52 msgid "Panning load from presets" msgstr "Paneo carga de predeterminadas" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:54 msgid "Player play/pause" msgstr "Reproductor reproducir/pausa" #. TC: Control method. Please keep it as Target:Action. #. TC: Playlist control. #: python/midicontrols.py:56 python/playergui.py:3857 msgid "Player stop" msgstr "Reproductor detener" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:58 msgid "Player advance" msgstr "Reproductor avanzar" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:60 msgid "Player play previous" msgstr "Reproductor reproducir anterior" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:62 msgid "Player play next" msgstr "Reproductor reproducir siguiente" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:64 msgid "Player play selected from start" msgstr "Reproductor reproducir seleccionado desde inicio" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:66 msgid "Player select previous" msgstr "Reproductor seleccionar anterior" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:68 msgid "Player select next" msgstr "Reproductor Seleccione Siguiente" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:70 msgid "Player stream output enable" msgstr "Reproductor activar salida de stream" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:72 msgid "Player DJ output enable" msgstr "Reproductor activar salida DJ" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:74 msgid "Player DJ-only switch" msgstr "Reproductor activar solo DJ" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:76 msgid "Player set volume" msgstr "Reproductor ajustar volumen" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:78 msgid "Player set gain" msgstr "Reproductor ajustar ganancia" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:80 msgid "Player set balance" msgstr "Reproductor ajustar balance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:82 msgid "Player set pitchbend" msgstr "Reproductor ajustar pitchbend" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:85 msgid "Playlist edit tags" msgstr "Lista de reproducción editar las etiquetas" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:87 msgid "Playlist insert stop" msgstr "Lista de reproducción insertar parada" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:89 msgid "Playlist insert stop 2" msgstr "Lista de Reproducción 2 insertar parada" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:91 msgid "Playlist insert announce" msgstr "Lista de Reproducción inserto anuncio" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:93 msgid "Playlist insert transfer" msgstr "Lista de reproducción insertar transferencia" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:95 msgid "Playlist insert crossfade" msgstr "Lista de reproducción insertar crossfade" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:97 msgid "Playlist insert pitchunbend" msgstr "Lista de reproducción insertar Pitchunbend" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:99 msgid "Playlist insert jump to top" msgstr "Lista de Reproducción insertar salto a la parte superior" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:102 msgid "Players set crossfade" msgstr "Reproductores ajustar crossfade" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:104 msgid "Players pass crossfade" msgstr "Reproductores pasan crossfade" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:106 msgid "Players set focus" msgstr "Reproductores se enfocan" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:108 msgid "Players show pitchbend" msgstr "Reproductores muestran pitchbend" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:110 msgid "Players advance" msgstr "Reproductores avanzan" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:113 msgid "Channel output enable" msgstr "Salida del canal activar" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:115 msgid "Channel set volume" msgstr "Canal ajustar volumen" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:117 msgid "Channel set gain" msgstr "Canal ajustar ganancia" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:119 msgid "Channel set balance" msgstr "Canal ajustar balance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:122 msgid "VoIP output enable" msgstr "Salida VoIP activar" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:124 msgid "VoIP DJ-only switch" msgstr "VoIP solo DJ activar" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:126 msgid "VoIP set volume" msgstr "VoIP ajustar volumen" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:128 msgid "VoIP set mixback" msgstr "VoIP ajustar mezcla" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:130 msgid "VoIP set gain" msgstr "VoIP ajustar ganancia" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:132 msgid "VoIP set balance" msgstr "VoIP ajustar balance" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:135 msgid "Effect play from start" msgstr "Efecto Reproducir desde inicio" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:138 msgid "Effects stop many" msgstr "Efectos paran muchos" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:140 msgid "Effects set volume" msgstr "Efectos ajustar volumen" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:142 msgid "Effects set headroom" msgstr "Efectos ajustar la altura libre" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:145 msgid "Stream set connected" msgstr "Stream activarar conectado" #. TC: Control method. Please keep it as Target:Action. #: python/midicontrols.py:148 msgid "Recorder set recording" msgstr "Grabadora activarar grabando" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:152 python/midicontrols.py:1493 msgid "Player" msgstr "Reproductor" #. TC: binding editor, action pane, first row, toplevel menu. #. TC: The midi channel. #. TC: Specifically, the numerical midi channel. #: python/midicontrols.py:153 python/midicontrols.py:1499 #: python/midicontrols.py:1568 python/midicontrols.py:1758 msgid "Channel" msgstr "Canal" #: python/midicontrols.py:154 python/preferences.py:599 #: python/preferences.py:609 msgid "Effect" msgstr "Efecto" #: python/midicontrols.py:156 msgid "Recorder" msgstr "Grabadora" #: python/midicontrols.py:157 msgid "Setting" msgstr "Ajuste" #: python/midicontrols.py:161 msgid "Left player" msgstr "Reproductor de Izquierda" #: python/midicontrols.py:162 msgid "Right player" msgstr "Reproductor de derecha" #: python/midicontrols.py:163 msgid "Background player" msgstr "Reproductor de fondo" #: python/midicontrols.py:164 msgid "Focused player" msgstr "Reproductor Focused" #: python/midicontrols.py:165 msgid "Fadered player" msgstr "Reproductor Fundido" #: python/midicontrols.py:169 msgid "Effects bank 1" msgstr "Banco 1 de efectos" #: python/midicontrols.py:170 msgid "Effects bank 2" msgstr "Banco 2 de efectos" #: python/midicontrols.py:171 msgid "All effects" msgstr "Todos los efectos" #. TC: The name of the backspace key. #: python/midicontrols.py:405 msgid "BackSpace" msgstr "Retroceso" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1469 msgid "Use value" msgstr "Usar valor" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1471 msgid "Act if" msgstr "Actuar si" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1473 msgid "Set to" msgstr "Ajustar a" #. TC: binding editor, action pane, third row, heading text. #: python/midicontrols.py:1475 msgid "Adjust by" msgstr "Ajuste por" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1480 python/midicontrols.py:1484 msgid "Control" msgstr "Controlar" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1482 msgid "Note" msgstr "Nota" #. TC: binding editor, input pane, fourth row, heading text. #: python/midicontrols.py:1486 msgid "Key" msgstr "Clave" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1491 msgid "Miscellaneous" msgstr "Diverso" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1495 msgid "Both players" msgstr "Ambos reproductores" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1497 msgid "Quick panning" msgstr "Paneo rápido" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1501 msgid "VoIP channel" msgstr "Canal VoIP" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1503 msgid "Single effect" msgstr "Efecto individual" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1505 msgid "Effects bank" msgstr "Banco de efectos" #. TC: binding editor, action pane, first row, toplevel menu. #: python/midicontrols.py:1509 msgid "Stream recorder" msgstr "Grabadora de Stream" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1514 msgid "Direct fader/held button" msgstr "Botón de fader directo/fijo" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1516 msgid "One-shot/toggle button" msgstr "Botón disparo/conmutación" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1518 msgid "Set value" msgstr "Ajustar valor" #. TC: binding editor, action pane, second row, dropdown text. #: python/midicontrols.py:1520 msgid "Alter value" msgstr "Alterar valor" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1525 msgid "MIDI control" msgstr "Control MIDI" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1527 msgid "MIDI note" msgstr "Nota MIDI" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1529 msgid "MIDI pitch-wheel" msgstr "Rueda de tono MIDI" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1531 msgid "Keyboard press" msgstr "Pulse Teclado" #. TC: binding editor, input pane, second row, dropdown text. #: python/midicontrols.py:1533 msgid "XChat command" msgstr "Comando XChat" #. TC: Dialog window title text. #. TC: User is expected to edit a control binding. #: python/midicontrols.py:1542 msgid "Edit control binding" msgstr "Editar las vinculaciones de control" #. TC: After clicking this button the binding editor will be listening #. TC: for a key press or midi control surface input. #. TC: Button text. If pressed triggers 'Listening for input' mode. #: python/midicontrols.py:1557 python/midicontrols.py:1638 #: python/midicontrols.py:1737 msgid "Listen for input..." msgstr "Esperando la entrada..." #. TC: The input source. #: python/midicontrols.py:1565 msgid "Source" msgstr "Fuente" #. TC: The manner in which the input is interpreted. #: python/midicontrols.py:1584 msgid "Interaction" msgstr "Interacción" #. TC: The effect of the control can be directed upon a specific target. #. TC: e.g. On target [Left player] #: python/midicontrols.py:1590 msgid "On target" msgstr "Al objetivo" #. TC: Checkbutton text. #. TC: Use reverse scale and invert the meaning of button presses. #: python/midicontrols.py:1598 msgid "Reversed" msgstr "Invertida" #: python/midicontrols.py:1599 msgid "Pressed" msgstr "Activado" #: python/midicontrols.py:1601 msgid "Released" msgstr "Liberado" #. TC: Tree column heading for Inputs e.g. Backspace, F1, S. #: python/midicontrols.py:1631 python/midicontrols.py:1992 msgid "Input" msgstr "Entrada" #: python/midicontrols.py:1635 #, python-format msgid "" "The first half of a binding is the input which comes in the form of the " "press of a keyboard key or an event from a midi device.\n" "\n" "Input selection can be done manually or with the help of the '%s' option." msgstr "" "La primera mitad de la vinculación es la entrada que viene en la forma de la " "activación de una tecla del teclado o de un evento desde un dispositivo " "MIDI. \n" "\n" "La selección de entrada se puede hacer manualmente o con la ayuda de la " "opción '%s'." #. TC: Tree column heading for actions e.g. Player stop. #: python/midicontrols.py:1671 python/midicontrols.py:1677 #: python/midicontrols.py:2006 msgid "Action" msgstr "Acción" #. TC: %s is the translation of 'Action'. #: python/midicontrols.py:1676 #, python-format msgid "The '%s' pane determines how the input is handled, and to what effect." msgstr "El %s panel' determina cómo se maneja la entrada, y en qué sentido." #: python/midicontrols.py:1733 msgid "Listening for input" msgstr "Escuchando la entrada" #. TC: Refers to key modifiers including Ctrl, Alt, Shift, .... #: python/midicontrols.py:1754 msgid "Shifting" msgstr "Movedizo" #: python/midicontrols.py:1953 msgid "Singular control" msgstr "Control Singular" #: python/midicontrols.py:2015 msgid "Target" msgstr "Objetivo" #: python/mutagentagger.py:219 msgid "title" msgstr "título" #: python/mutagentagger.py:219 msgid "artist" msgstr "artista" #: python/mutagentagger.py:220 msgid "album" msgstr "álbum" #: python/mutagentagger.py:220 msgid "track/total" msgstr "pista/total de" #: python/mutagentagger.py:221 msgid "genre" msgstr "género" #: python/mutagentagger.py:221 msgid "record date" msgstr "fecha de grabación" #: python/mutagentagger.py:360 msgid "" "Add any other ID3 text frames here.\n" "e.g. TIT2:Alternate Title\n" "This will be appended onto the main TIT2 tag.\n" "\n" "Enter user defined text frames like this:\n" "TXXX:foo=bar\n" "\n" "For more information visit www.id3.org." msgstr "" "Añadir cualquier otros marcos de texto ID3 aquí. \n" "Por ejemplo TIT2:Título alternativo\n" "Este se anexará a la principal etiqueta TIT2.\n" "\n" "Introduzca marcos de texto definidos por el usuario así:\n" "TXXX:foo=bar\n" "\n" "Para más información, visite www.id3.org." #. TC: Remaining textual ID3 data is show below this heading. #: python/mutagentagger.py:366 msgid " Additional Text Frames " msgstr " Marcos Adicionales de Texto " #. TC: The album track number. #: python/mutagentagger.py:376 python/songdb.py:906 python/songdb.py:1295 msgid "Track" msgstr "Pista" #: python/mutagentagger.py:377 msgid "Genre" msgstr "Género" #: python/mutagentagger.py:377 msgid "Year" msgstr "Año" #. TC: Window title. #: python/mutagentagger.py:688 msgid "IDJC Tagger" msgstr "Etiquetador IDJC" #: python/mutagentagger.py:700 python/mutagentagger.py:704 #: python/mutagentagger.py:708 msgid "Filename:" msgstr "Nombre del archivo:" #: python/mutagentagger.py:777 msgid "Native" msgstr "Nativo" #: python/songdb.py:177 msgid "Connecting" msgstr "Conectando" #: python/songdb.py:188 #, python-format msgid "Connection failed (try %d)" msgstr "Falló la conexión (intenta %d)" #: python/songdb.py:199 msgid "Connected: autocommit mode failed" msgstr "Conectado: Falló el modo de confirmación automática" #: python/songdb.py:201 msgid "Connected: autocommit mode set" msgstr "Conectado: modo de confirmación automática establecido" #: python/songdb.py:202 msgid "Connected" msgstr "Conectado" #: python/songdb.py:210 msgid "Job dropped" msgstr "Se cayó el trabajo" #: python/songdb.py:220 python/songdb.py:431 msgid "Disconnected" msgstr "Desconectado" #: python/songdb.py:233 msgid "Problem dropping connection" msgstr "Problema terminando la conexión" #: python/songdb.py:235 msgid "Connection dropped" msgstr "Conexión cayó" #: python/songdb.py:326 msgid "Hostname[:Port]" msgstr "Nombre de host[:Puerto]" #: python/songdb.py:331 msgid "User Name" msgstr "Nombre de usuario" #: python/songdb.py:334 msgid "Database" msgstr "Base de datos" #: python/songdb.py:389 msgid "Prokyon3 or Ampache (song title) Database" msgstr "Base de datos Prokyon3 o Ampache (título de la canción)" #: python/songdb.py:390 msgid "" "You can make certain media databases accessible in IDJC for easy drag and " "drop into the playlists." msgstr "" "Usted puede hacer ciertas bases de datos de medios de comunicación " "accesibles en IDJC fácil de arrastrar y soltar en las listas de reproducción." #: python/songdb.py:438 msgid "Module mysql-python (MySQLdb) required" msgstr "Módulo mysql-python (MySQLdb) requerido" #: python/songdb.py:707 python/songdb.py:723 python/songdb.py:747 #: python/songdb.py:805 msgid "" msgstr "" #: python/songdb.py:741 msgid "Not Played" msgstr "No Reproducido" #: python/songdb.py:878 msgid "Reload the database." msgstr "Recargar la base de datos." #: python/songdb.py:883 msgid "Expand entire tree." msgstr "Expandir todo árbol." #: python/songdb.py:884 msgid "Collapse tree." msgstr "Contraer árbol." #: python/songdb.py:891 msgid "Browse" msgstr "Vistazo" #. TC: The disk number of the album track. #: python/songdb.py:904 python/songdb.py:1294 msgid "Disk" msgstr "Disco" #. TC: Track playback time. #. TC: Playback time. #: python/songdb.py:908 python/songdb.py:1296 python/playergui.py:340 msgid "Duration" msgstr "Duración" #: python/songdb.py:910 python/songdb.py:1297 python/format.py:614 #: python/format.py:635 python/format.py:721 python/format.py:742 #: python/format.py:877 python/format.py:982 python/format.py:1032 #: python/format.py:1042 python/format.py:1120 python/format.py:1153 msgid "Bitrate" msgstr "Bitrate" #: python/songdb.py:911 python/songdb.py:1298 msgid "Filename" msgstr "Nombre del archivo" #. TC: Directory path to a file. #: python/songdb.py:913 python/songdb.py:1299 msgid "Path" msgstr "Ruta" #: python/songdb.py:918 msgid "Artist - Album - Title" msgstr "Artista - Álbum - Título" #: python/songdb.py:919 msgid "Album - [Disk] - Title" msgstr "Álbum - [Disco] - Título" #: python/songdb.py:939 msgid "Fetching" msgstr "Atractivo" #: python/songdb.py:1084 msgid "Tree fetch failed" msgstr "Fallo en la descarga de árbol" #: python/songdb.py:1085 msgid "Fetch Failed!" msgstr "Fallo de descarga!" #: python/songdb.py:1098 msgid "Populating" msgstr "Rellenando" #: python/songdb.py:1224 #, python-format msgid "Disk %d" msgstr "%d" #. TC: User specified search filter entry box title text. #: python/songdb.py:1243 msgid "Filters" msgstr "Filtros" #. TC: A type of search on any data field matching paritial strings. #: python/songdb.py:1255 msgid "Fuzzy Search" msgstr "Búsqueda borrosa" #. TC: WHERE is an SQL keyword. #: python/songdb.py:1264 msgid "WHERE" msgstr "WHERE" #: python/songdb.py:1277 msgid "Search" msgstr "Buscar" #: python/songdb.py:1514 python/songdb.py:1639 msgid "Minutes" msgstr "Minutos" #: python/songdb.py:1514 python/songdb.py:1639 msgid "Hours" msgstr "Horas" #: python/songdb.py:1515 python/songdb.py:1639 msgid "Days" msgstr "Días" #: python/songdb.py:1515 python/songdb.py:1639 python/songdb.py:1709 #: python/songdb.py:1803 msgid "Weeks" msgstr "Semanas" #: python/songdb.py:1609 msgid "Catalogs" msgstr "Catálogos" #: python/songdb.py:1616 msgid "Name" msgstr "Nombre" #: python/songdb.py:1617 msgid "Catalog Path" msgstr "Ruta del Catálogo" #: python/songdb.py:1618 msgid "Prepend Path" msgstr "Anteponer Path" #: python/songdb.py:1626 msgid "Last Played Scale" msgstr "Última Escala Reproducido" #: python/songdb.py:1658 msgid "Path Peel" msgstr "Pelar Ruta" #: python/songdb.py:1737 msgid "N/A" msgstr "N/A" #: python/songdb.py:1918 msgid "Failed to create FULLTEXT index" msgstr "No se pudo crear el índice FULLTEXT" #: python/songdb.py:1922 msgid "Found existing FULLTEXT index" msgstr "Encontrado índice FULLTEXT existente" #: python/songdb.py:1936 python/songdb.py:1949 msgid "Unrecognised database" msgstr "Base de datos no reconocido" #: python/songdb.py:1944 msgid "Found Prokyon 3 schema" msgstr "Encontrado Prokyon 3 esquema" #: python/playergui.py:104 msgid "Click to stop adding tracks!" msgstr "" #: python/playergui.py:263 msgid "Cuesheet Playlist" msgstr "Cuesheet lista de reproducción" #. TC: Column heading, the track number. #: python/playergui.py:329 msgid "Trk" msgstr "Pta" #. TC: Column heading, the index number. #: python/playergui.py:332 msgid "Ind" msgstr "Ind" #: python/playergui.py:441 msgid "External Playlist" msgstr "Lista de reproducción externa" #. TC: Button text to activate an external playlist. #: python/playergui.py:452 msgid "Active" msgstr "Activo" #: python/playergui.py:462 msgid "Choose a playlist file" msgstr "Elija un archivo de la lista de reproducción" #: python/playergui.py:467 msgid "Choose a media directory" msgstr "Elija un directorio de los medios de comunicación" #: python/playergui.py:480 msgid "Choose a playlist file." msgstr "Elija un archivo de lista de reproducción." #: python/playergui.py:482 msgid "Choose a folder/directory of music." msgstr "Elija una carpeta/directorio de música." #: python/playergui.py:549 msgid "Create a new announcement" msgstr "Crear un nuevo anuncio" #: python/playergui.py:552 msgid "Modify or Delete this announcement" msgstr "Modificar o Eliminar este anuncio" #. TC: Embed a DJ announcement text into the playlist. #: python/playergui.py:555 python/playergui.py:4494 msgid "Announcement" msgstr "Anuncio" #. TC: The time format as minutes and seconds. #: python/playergui.py:583 msgid "mm:ss" msgstr "mm:ss" #. TC: Alongside the name of the next track. #: python/playergui.py:636 msgid "Next track" msgstr "Siguiente pista" #: python/playergui.py:961 msgid "By Extension" msgstr "Por extensión" #: python/playergui.py:961 msgid "M3U playlist" msgstr "Lista de reproducción M3U" #: python/playergui.py:961 msgid "M3U8 playlist" msgstr "lista de reproducción M3U8" #: python/playergui.py:962 msgid "XSPF playlist" msgstr "lista de reproducción XSPF" #: python/playergui.py:962 msgid "PLS playlist" msgstr "lista de reproducción PLS" #: python/playergui.py:1034 #, python-format msgid "%d Audio Tracks" msgstr "%d Pistas de Audio" #. TC: Missing metadata text. #: python/playergui.py:1044 msgid "Unknown" msgstr "Desconocido" #: python/playergui.py:1048 msgid "(Cue sheet)" msgstr "(Hoja Cue)" #: python/playergui.py:1085 msgid "Bad Tag" msgstr "Tag Mala" #: python/playergui.py:1921 python/playergui.py:4333 msgid "Manual" msgstr "Manual" #. TC: playlist modes #: python/playergui.py:1925 python/playergui.py:4332 msgid "Play All" msgstr "Reproducir Todo" #: python/playergui.py:1933 python/playergui.py:1942 python/playergui.py:4332 msgid "Loop All" msgstr "Repetir Todo" #: python/playergui.py:1933 python/playergui.py:4333 msgid "Cue Up" msgstr "Avanzar Hasta" #: python/playergui.py:1934 python/playergui.py:4337 msgid "Fade Over" msgstr "Desteñirse" #: python/playergui.py:1946 python/playergui.py:2021 python/playergui.py:4332 msgid "Random" msgstr "Al azar" #: python/playergui.py:1990 python/playergui.py:4333 msgid "External" msgstr "Externo" #. TC: yet more playlist modes these ones for the main players only #: python/playergui.py:2002 python/playergui.py:2018 python/playergui.py:4337 msgid "Alternate" msgstr "Alternar" #: python/playergui.py:2002 python/playergui.py:2020 python/playergui.py:4337 msgid "Random Hop" msgstr "Salto al Azar" #. TC: The remaining playlist time. #: python/playergui.py:2176 python/playergui.py:2182 msgid "Remaining" msgstr "Restante" #. TC: The estimated finish time of the playlist. #. TC: The estimated finish time of the playlist (ETA). #: python/playergui.py:2178 python/playergui.py:2182 python/playergui.py:2196 msgid "Finish" msgstr "Termina" #. TC: The play duration of the block of audio tracks. #: python/playergui.py:2183 python/playergui.py:2194 msgid "Block size" msgstr "Tamaño de bloque" #. TC: File dialog title text. #: python/playergui.py:2584 msgid "Add music to left playlist" msgstr "Añadir a la lista de reproducción de música a la izquierda" #. TC: File dialog title text. #: python/playergui.py:2587 msgid "Add music to right playlist" msgstr "Añadir a la lista de reproducción de música derecha" #: python/playergui.py:2589 msgid "Add background music" msgstr "Añadir música de fondo" #. TC: File filter text. #: python/playergui.py:2601 msgid "Supported Media Formats" msgstr "Formatos Admitidos de los Medios" #. TC: Expander text "Select File Type (.pls)" for the pls file type. #: python/playergui.py:2652 msgid "Select File Type" msgstr "Seleccione Tipo de archivo" #: python/playergui.py:3442 msgid "Save left playlist" msgstr "Guardar lista de reproducción izquierda" #: python/playergui.py:3444 msgid "Save right playlist" msgstr "Guardar lista de reproducción a la derecha" #: python/playergui.py:3446 msgid "Save background playlist" msgstr "Guardar lista de reproducción de fondo" #: python/playergui.py:3464 msgid "File Type" msgstr "Tipo de archivo" #: python/playergui.py:3469 msgid "Extension" msgstr "Extensión" #. TC: Playlist control. #. TC: Insert playlist control to do a ten second fade to the next track. #: python/playergui.py:3833 python/playergui.py:4505 msgid "Fade 10s" msgstr "Desteñirse 10s" #. TC: Playlist control. #. TC: Insert playlist control to do a five second fade to the next track. #: python/playergui.py:3839 python/playergui.py:4512 msgid "Fade 5s" msgstr "Desteñirse 5s" #. TC: Playlist control. #. TC: Insert playlist control to not do a fade to the next track. #: python/playergui.py:3844 python/playergui.py:4519 msgid "No Fade" msgstr "Sin Desteñirse" #. TC: Playlist control. #: python/playergui.py:3852 msgid ">> Normal Speed <<" msgstr ">> Velocidad normal <<" #. TC: Playlist control. #: python/playergui.py:3862 msgid "Player stop 2" msgstr "Parada Reproductor 2" #. TC: Playlist control. #. TC: Insert playlist control to jump to the top of the playlist. #: python/playergui.py:3867 python/playergui.py:4471 msgid "Jump To Top" msgstr "Ir al inicio" #. TC: Playlist control. #: python/playergui.py:3872 python/playergui.py:4531 msgid "Stop streaming" msgstr "Detener el streaming" #. TC: Playlist control. #: python/playergui.py:3877 python/playergui.py:4539 msgid "Stop recording" msgstr "Para de grabar" #: python/playergui.py:3910 msgid "Announcement:" msgstr "Anuncio:" #. TC: Playlist control. #: python/playergui.py:3916 msgid ">>> Transfer across >>>" msgstr ">>> Transferencia través >>>" #. TC: Playlist control. #: python/playergui.py:3919 msgid "<<< Transfer across <<<" msgstr "<<< Transferencia través <<<" #. TC: Playlist control. #: python/playergui.py:3924 msgid ">>> Fade across >>>" msgstr ">>> Fundido través >>>" #. TC: Playlist control. #: python/playergui.py:3927 msgid "<<< Fade across <<<" msgstr "<<< Fundido través <<<" #. TC: Playlist control. #: python/playergui.py:3933 msgid "Ignored playlist control" msgstr "Control de lista de reproducción Ignorado" #: python/playergui.py:4001 #, python-brace-format msgid "Playing track {0} of {1}" msgstr "Reproducción de la pista {0} de {1}" #. TC: Previous line: Playing track {0} of {1} #: python/playergui.py:4014 #, python-format msgid "From the album, %s" msgstr "Desde el %s" #: python/playergui.py:4021 #, python-format msgid "Total number of tracks %d" msgstr "Número total de pistas %d" #: python/playergui.py:4025 python/playergui.py:4027 #, python-format msgid "Total play duration %s" msgstr "Duración total de reproducción %s" #: python/playergui.py:4077 msgid "" "Left click toggles between showing the amount of time elapsed or remaining " "on the current track being played." msgstr "" "Alterna clic izquierdo entre mostrar la cantidad de tiempo transcurrido o " "restante de la pista actual que se está reproduciendo." #: python/playergui.py:4095 msgid "" "This slider acts as both a play progress indicator and as a means for " "seeking within the currently playing track." msgstr "" "Este deslizador actúa como tanto un indicador de progreso de la reproducción " "y como un medio para buscar dentro de la pista que se está reproduciendo." #. TC: File filter text. #: python/playergui.py:4184 msgid "All file types" msgstr "Todos los tipos de archivo" #: python/playergui.py:4189 msgid "Playlist types" msgstr "Tipos de reproducción" #: python/playergui.py:4204 msgid "" "'Block size' indicates the amount of time that it will take to play from the " "currently selected track to the next stop.\n" "'Remaining' is the amount of time until the next stop.\n" "'Finish' Is the computed time when the tracks will have finished playing." msgstr "" "'Tamaño de Bloque' indica la cantidad de tiempo que se necesita para " "reproducir desde la pista seleccionada a la siguiente parada.\n" "'Restante' es la cantidad de tiempo hasta la siguiente parada.\n" "'Acabado' Es la hora calculado cuando las pistas se terminarán." #: python/playergui.py:4230 msgid "This adjusts the playback speed anywhere from 25% to 400%." msgstr "" "Ajusta la velocidad de reproducción en cualquier lugar del 25% al ​​400%." #: python/playergui.py:4244 msgid "This sets the playback speed back to normal." msgstr "Esta reestablece la velocidad de reproducción a la normalidad." #: python/playergui.py:4261 msgid "Previous track." msgstr "Pista anterior." #: python/playergui.py:4273 msgid "Play." msgstr "Reproducir." #: python/playergui.py:4283 msgid "Pause." msgstr "Pausa." #: python/playergui.py:4293 msgid "Stop." msgstr "Deténgase." #: python/playergui.py:4303 msgid "Next track." msgstr "Siguiente pista." #: python/playergui.py:4315 msgid "Add tracks to the playlist." msgstr "Añadir pistas a la lista de reproducción." #: python/playergui.py:4322 python/preferences.py:71 msgid "Playlist Mode" msgstr "Modo de reproducción" #: python/playergui.py:4343 msgid "" "This sets the playlist mode which defines player behaviour after a track has " "finished playing.\n" "\n" "'Play All' is the most versatile mode since it allows the use of embeddable " "playlist control elements which are accessible using the right click context " "menu in the playlist. When no playlist controls are present the tracks are " "played sequentially until the end of the playlist is reached at which point " "the player will stop.\n" "\n" "'Loop All' causes the tracks to be played in sequence, restarting with the " "first track once the end of the playlist is reached.\n" "\n" "'Random' causes the tracks to be played indefinitely with the tracks " "selected at random.\n" "\n" "'Manual' causes the player to stop at the end of each track.\n" "\n" "'Cue Up' is similar to manual except that the next track in the playlist " "will also be highlighted.\n" "\n" "'External' draws it's tracks from an external playlist or directory one at a " "time. Useful for when you want to stream massive playlists.\n" "\n" "'Alternate' causes the next track to be cued up before starting the opposite " "player. The crossfader is moved over.\n" "\n" "'Fade Over' will crossfade to the other player at the end of every track.\n" "\n" "'Random Hop' will pick a track at random from the other playlist." msgstr "" "Esto establece el modo de lista de reproducción que define el comportamiento " "del reproductor después de que se termina la pista.\n" "\n" "'Play All' (Reproducir Todo) es el modo más versátil, ya que permite el uso " "de elementos de control de lista de reproducción integrables que se puede " "acceder mediante el menú contextual del botón derecho en el lista de " "reproducción. Cuando ningunos controles de reproducción están presentes las " "pistas se reproducen de forma secuencial hasta que se llega al final de la " "lista de reproducción, y en ese momento el reproductor se detendrá.\n" "\n" "'Loop All' (Repetir Todo) hace que las pistas se reproduzcan en secuencia, " "reiniciándose con la primera pista una vez de que se llega al final de la " "lista de reproducción. \n" "\n" "'Random' (Al Azar) hace que las pistas se reproduzcan indefinidamente con " "las pistas seleccionadas al azar.\n" "\n" "'Manual' (Manual) hace que el reproductor se detendrá al final de cada " "pista.\n" "\n" "'Cue Up' (Avanzar Hasta) es similar al manual, excepto que también se " "destaca la siguiente pista en la lista de reproducción.\n" "\n" "'External' (Externo) obtiene sus pistas de una lista de reproducción o " "directorio externo una tras una. Útil para cuando se quiere transmitir " "listas masivas.\n" "\n" "'Alternate' (Alternar) hace que la siguiente pista se alista antes de " "comenzar el reproductor contrario. El crossfader se mueve al otro.\n" "\n" "'Fade Over' (Desteñirse) se crossfade al otro reproductor al final de cada " "pista.\n" "\n" "'Random Hop' (Salto al Azar) recogerá una pista al azar de la otra lista de " "reproducción." #. TC: Fade time heading. #: python/playergui.py:4367 python/preferences.py:72 msgid "Fade" msgstr "Desteñirse" #: python/playergui.py:4379 msgid "This controls the amount of fade between tracks." msgstr "Esto controla la cantidad de fundido entre las pistas." #: python/playergui.py:4386 msgid "Audio Feed" msgstr "Audio RSS" #: python/playergui.py:4396 msgid "Make output from this player available for streaming." msgstr "Hacer salida de este reproductor disponible para streaming." #: python/playergui.py:4404 msgid "Make output from this player audible to the DJ." msgstr "Hacer salida de este reproductor audible para el DJ." #: python/playergui.py:4406 msgid "Force" msgstr "Forzar" #: python/playergui.py:4412 msgid "" "When selected this player will be treated like a main player.\n" "It will be affected by microphone ducking and won't mute when a main player " "is operating." msgstr "" "Cuando este reproductor se selecciona, será tratado como un reproductor " "principal.\n" "Se verá afectada por atenuación del micrófono y no se silencia cuando un " "reproductor principal está en funcionamiento." #. TC: Insert playlist control. #: python/playergui.py:4425 msgid "Insert control" msgstr "Inserte control" #. TC: The Item submenu. #: python/playergui.py:4434 msgid "Item" msgstr "Ítem" #. TC: The Playlist submenu. #: python/playergui.py:4439 msgid "Playlist" msgstr "Lista de reproducción" #. TC: Insert playlist control to set playback speed to normal. #: python/playergui.py:4450 msgid "Normal Speed" msgstr "Velocidad normal" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4479 python/playergui.py:4633 msgid "Transfer" msgstr "Transferir" #: python/playergui.py:4487 msgid "Crossfade" msgstr "Crossfade" #. TC: Menu item. Opens the metadata tagger on the selected track. #: python/playergui.py:4552 msgid "Meta Tag" msgstr "Meta Tag" #. TC: Menu Item. Duplicates the selected track in the playlist. #: python/playergui.py:4558 msgid "Duplicate" msgstr "Duplicar" #. TC: Menu Item. Remove the selected track. #: python/playergui.py:4565 msgid "Remove" msgstr "Eliminar" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4576 msgid "This" msgstr "Esta" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4583 python/preferences.py:1237 msgid "All" msgstr "Todos" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4590 msgid "From Here" msgstr "De aquí" #. TC: Submenu Item. Parent menu item is Remove. #: python/playergui.py:4597 msgid "To Here" msgstr "Hacia aqui" #. TC: Open the file dialog for adding music to the chosen playlist. #: python/playergui.py:4610 msgid "Add Music" msgstr "Añadir Música" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4617 msgid "Save" msgstr "Guardar" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4628 msgid "Copy" msgstr "Copia" #: python/playergui.py:4639 msgid "Exchange" msgstr "Intercambiar" #. TC: Submenu Item. Parent menu is Playlist. #: python/playergui.py:4646 msgid "Empty" msgstr "Vacío" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4660 python/playergui.py:4699 msgid "Append" msgstr "Añadir" #. TC: Submenu Item. Parent menus are Playlist->Copy. #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4667 python/playergui.py:4706 msgid "Prepend" msgstr "Anteponer" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4678 msgid "Append Cursor" msgstr "Anexar Cursor" #. TC: Submenu Item. Parent menus are Playlist->Copy. #: python/playergui.py:4685 msgid "Prepend Cursor" msgstr "Anteponer Cursor" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4717 msgid "Append at Cursor" msgstr "Anexar en el Cursor" #. TC: Submenu Item. Parent menus are Playlist->Transfer. #: python/playergui.py:4724 msgid "Prepend at Cursor" msgstr "Anteponer al cursor" #: python/preferences.py:85 msgid "Track time elapsed" msgstr "Tiempo transcurrido de la pista" #: python/preferences.py:87 msgid "Track time remaining" msgstr "Tiempo de pista restante" #: python/preferences.py:89 msgid "Audio to stream" msgstr "Audio para transmitir" #: python/preferences.py:90 msgid "Audio to DJ" msgstr "Audio para DJ" #: python/preferences.py:127 #, fuzzy, python-format msgid "" "Stereo panning is the selection of where an audio source sits from left to " "right within the stereo mix.\n" "\n" "This control maintains constant audio power throughout its range of travel, " "giving -3dB attenuation in both audio channels at the half way point.\n" "\n" "If you require 0dB straight down the middle or require a stereo source " "remain as stereo then this feature should be turned off.\n" "\n" "Paired channels should be set to 100% left/right unless narrowing of the " "stereo field is the intention." msgstr "" "Estéreo panorámica es la selección de una fuente de audio, donde se " "encuentra de izquierda a derecha dentro de la mezcla estéreo.\n" "\n" "Este control mantiene la potencia de audio constante en toda su gama de " "viajes, dando -3dB de atenuación en ambos canales de audio en el punto " "medio. \n" "\n" "Si usted requiere 0dB recta por el centro o requiere que una fuente de " "estéreo\n" "permanecer como estéreo entonces esta función debe ser desactivada\n" "\n" "Los caneles emparejados deben establecerse en 100% a la izquierda/derecha a " "menos estrechamiento del campo estéreo es la intención." #: python/preferences.py:158 msgid "Presets" msgstr "Presets" #: python/preferences.py:249 msgid "" "The pan preset selection buttons.\n" "\n" "In the stereo image at a click the DJ can be on the left and a guest on the " "right and when the guest is gone at a click the DJ can be central again.\n" "\n" "Note: preconfiguration of pan preset settings is required." msgstr "" "Los botones para seleccionar los ajustes preestablecidos del panorámico.\n" "\n" "En la imagen estéreo a un clic el DJ puede ser a la izquierda y un invitado " "a la derecha y cuando el huésped se ha ido a un clic el DJ puede estar en el " "centro de nuevo.\n" "\n" "Nota: Se requiere configuración previa de los ajustes preestablecidos del " "panorámico." #. TC: Microphone mode combobox text. #: python/preferences.py:274 msgid "Deactivated" msgstr "Desactivado" #. TC: Microphone mode combobox text. #: python/preferences.py:276 msgid "Basic input" msgstr "Entrada básica" #. TC: Microphone mode combobox text. #: python/preferences.py:278 msgid "Processed input" msgstr "Entrada Procesada" #. TC: Microphone mode combobox text. #: python/preferences.py:280 #, python-format msgid "Partnered with channel %s" msgstr "En conjunto con canal %s" #: python/preferences.py:432 msgid "A label so you may describe briefly the role of this audio channel." msgstr "" "Una etiqueta así que usted puede describir brevemente el papel de este canal " "de audio." #: python/preferences.py:464 msgid "The signal processing mode." msgstr "El modo de procesamiento de señales." #. TC: A frame heading. The channel opener is selected within. #: python/preferences.py:468 msgid "Channel Opener" msgstr "Abridor de Canal" #: python/preferences.py:471 msgid "" "This controls the allocation of front panel open/unmute buttons. Having one " "button control multiple microphones can save time." msgstr "" "Esto controla la asignación de botones abiertos / activar el panel frontal. " "Tener un control de botón de múltiples micrófonos pueden ahorrar tiempo." #. TC: Spinbutton label text. #: python/preferences.py:478 msgid "Main Panel Button" msgstr "Botón de Panel Principal" #: python/preferences.py:495 msgid "This:" msgstr "Esta:" #: python/preferences.py:504 msgid "Open" msgstr "Abierto" #: python/preferences.py:517 msgid "Stereo Panning" msgstr "Paneo Estéreo" #. TC: A set of controls that perform audio signal matching. #: python/preferences.py:530 msgid "Signal Matching" msgstr "De coincidencia de señales" #: python/preferences.py:531 msgid "" "These controls are provided to obtain a decent match between the two " "microphones." msgstr "" "Estos controles se proporcionan para obtener una pareja decente entre los " "dos micrófonos." #: python/preferences.py:540 msgid "Relative Gain (dB)" msgstr "Ganancia relativa (dB)" #. TC: Mic audio phase inversion control. #: python/preferences.py:545 python/preferences.py:550 msgid "Invert Signal" msgstr "Invertir señal" #: python/preferences.py:551 python/preferences.py:571 #: python/preferences.py:667 msgid "" "Useful for when microphones are cancelling one another out, producing a " "hollow sound." msgstr "" "Útil para cuando los micrófonos están cancelando entre sí, produciendo un " "sonido hueco." #. TC: Control whether to mix microphone audio to the DJ mix. #: python/preferences.py:554 msgid "In The DJ's Mix" msgstr "En la mezcla del DJ" #: python/preferences.py:555 python/preferences.py:577 #: python/preferences.py:677 msgid "" "Make the microphone audio audible in the DJ mix. This may not always be " "desirable." msgstr "" "Hacer audible el audio del micrófono en la mezcla de DJ. Esto no siempre es " "deseable." #: python/preferences.py:563 msgid "Basic Controls" msgstr "Controles básicos" #: python/preferences.py:564 python/preferences.py:619 msgid "Boost/Cut (dB)" msgstr "Refuerzo/Corte (dB)" #: python/preferences.py:585 msgid "High Pass Filter" msgstr "Filtro de paso alto" #: python/preferences.py:586 python/preferences.py:601 #: python/preferences.py:611 msgid "Cutoff Frequency" msgstr "Frecuencia de corte" #. TC: User can set the number of filter stages. #: python/preferences.py:590 msgid "Stages" msgstr "Etapas" #: python/preferences.py:593 msgid "" "Frequency in Hertz above which audio can pass to later stages. Use this " "feature to restrict low frequency sounds such as mains hum. Setting too high " "a level will make your voice sound thin." msgstr "" "Frecuencia en Hertz por encima del cual el audio puede pasar a las etapas " "posteriores. Utilice esta función para restringir sonidos de baja " "frecuencia, tales como platos principales zumbidos. Configuración de un " "nivel demasiado alto hará que su voz sonara delgada." #. TC: this is the treble control. HF = high frequency. #: python/preferences.py:598 msgid "HF Detail" msgstr "Detalle HF" #: python/preferences.py:605 msgid "You can use this to boost the amount of treble in the audio." msgstr "Usted puede usar esto para aumentar la cantidad de agudos en el audio." #. TC: this is the bass control. LF = low frequency. #: python/preferences.py:608 msgid "LF Detail" msgstr "Detalle LF" #: python/preferences.py:615 msgid "You can use this to boost the amount of bass in the audio." msgstr "Usted puede usar esto para aumentar la cantidad de graves en el audio." #. TC: lookahead brick wall limiter. #: python/preferences.py:618 msgid "Limiter" msgstr "Limitador" #. TC: this is the peak signal limit. #: python/preferences.py:623 msgid "Upper Limit" msgstr "Limite superior" #: python/preferences.py:625 msgid "" "A look-ahead brick-wall limiter. Audio signals are capped at the upper limit." msgstr "" "Un limitador \"pared de ladrillo\" de preanálisis. Las señales de audio " "tienen un límite en el límite superior." #: python/preferences.py:628 msgid "Noise Gate" msgstr "Puerta de Ruido" #. TC: noise gate triggers at this level. #: python/preferences.py:630 msgid "Threshold" msgstr "Umbral" #. TC: negative gain when the noise gate is active. #. TC: The de-esser attenuation in ess-detected state. #: python/preferences.py:634 python/preferences.py:644 msgid "Gain" msgstr "Ganancia" #: python/preferences.py:636 msgid "" "Reduce the unwanted quietest sounds and background noise which you don't " "want your listeners to hear with this." msgstr "" "Reducir los sonidos más silenciosos no deseados y el ruido de fondo que " "usted no quiere que sus oyentes escuchar con esto." #: python/preferences.py:639 msgid "De-esser" msgstr "De-esser" #. TC: Bias has a numeric setting. #: python/preferences.py:641 msgid "Bias" msgstr "Polarización" #: python/preferences.py:646 msgid "" "Reduce the S, T, and P sounds which microphones tend to exaggerate. Ideally " "the Bias control will be set low so that the de-esser is off when there is " "silence but is set high enough that mouse clicks are detected and suppressed." msgstr "" "Reducir las S, T y P parece que los micrófonos tienden a exagerar. Lo ideal " "sería que el control Bias se establecerá bajo de modo que el de-esser es " "cuando hay silencio, pero está lo suficientemente alto que los clics del " "ratón son detectados y suprimidos." #: python/preferences.py:651 msgid "Ducker" msgstr "Ducker" #: python/preferences.py:652 msgid "Release" msgstr "Relajación" #: python/preferences.py:655 msgid "Hold" msgstr "Mantener" #: python/preferences.py:658 msgid "" "The ducker automatically reduces the level of player audio when the DJ " "speaks. These settings allow you to adjust the timings of that audio " "reduction." msgstr "" "El pisador reduce automáticamente el nivel de reproductor de audio cuando el " "DJ habla. Estos ajustes le permiten ajustar los tiempos de que la reducción " "de audio." #: python/preferences.py:662 msgid "Other options" msgstr "Otras opciones" #: python/preferences.py:669 msgid "Phase Rotator" msgstr "Rotador de Fase" #: python/preferences.py:672 msgid "" "This feature processes the microphone audio so that it sounds more even. The " "effect is particularly noticable on male voices." msgstr "" "Esta función procesa el audio del micrófono para que suene más uniforme. El " "efecto es particularmente notable en las voces masculinas." #: python/preferences.py:855 msgid "The volume control for the left music player." msgstr "El control de volumen para el reproductor de música izquierdo." #. TC: preferences window title. #: python/preferences.py:911 msgid "IDJC Preferences" msgstr "Preferencias IDJC" #. TC: The DJ's sound level controller. #: python/preferences.py:936 msgid "DJ Audio Level" msgstr "DJ de nivel de audio" #: python/preferences.py:948 msgid "This adjusts the sound level of the DJ audio." msgstr "Ajusta el nivel de sonido del audio de DJ." #. TC: The alarm sound level. #: python/preferences.py:953 msgid "Alarm Level" msgstr "Nivel de alarma" #: python/preferences.py:967 msgid "Music Loudness Compensation" msgstr "Música Sonoridad Compensación" #: python/preferences.py:965 #, python-format msgid "" "This adjusts the sound level of the DJ alarm. Typically this should be set " "close to the dj audio level when using the '%s' feature, otherwise a bit " "louder." msgstr "" "Ajusta el nivel de sonido de la alarma de DJ. Normalmente esto se debe " "establecer cerca del nivel de audio dj cuando se utiliza el %s " "característica', de lo contrario un poco más fuerte." #: python/preferences.py:973 msgid "Player Resample Quality" msgstr "Reproductor Volver a muestrear Calidad" #: python/preferences.py:979 msgid "" "This adjusts the quality of the audio resampling method used whenever the " "sample rate of the music file currently playing does not match the sample " "rate of the JACK sound server. Best mode offers the best sound quality but " "also uses the most CPU (not recommended for systems built before 2006). All " "these modes provide adequate sound quality." msgstr "" "Ajusta la calidad del método de remuestreo de audio utilizado cuando la " "frecuencia de muestreo del archivo de música que se está reproduciendo no " "coincide con la frecuencia de muestreo del servidor de sonido JACK. Mejor " "modo ofrece la mejor calidad de sonido, pero también utiliza más CPU (no " "recomendado para los sistemas construidos antes de 2006). Todos estos modos " "proporcionan una adecuada calidad de sonido." #: python/preferences.py:987 msgid "Best" msgstr "Mejor" #: python/preferences.py:996 python/format.py:521 msgid "Medium" msgstr "Mediana" #: python/preferences.py:1005 msgid "Fast" msgstr "Rápido" #. TC: the set of features - section heading. #: python/preferences.py:1020 msgid "Feature Set" msgstr "Conjunto de características" #. TC: Start in the full featured user interface mode. #: python/preferences.py:1032 msgid "Start Full" msgstr "Iniciar llenado" #: python/preferences.py:1037 python/preferences.py:1045 msgid "Indicates which mode IDJC will be in when launched." msgstr "Indica que el modo IDJC estará en cuando se inicia." #. TC: Start in a reduced user interface mode. #: python/preferences.py:1040 msgid "Start Mini" msgstr "Inicio Mini" #: python/preferences.py:1053 msgid "Fully Featured" msgstr "Totalmente destacado" #: python/preferences.py:1058 msgid "Run in full functionality mode which uses more CPU power." msgstr "" "Ejecutar en modo de funcionalidad completa que utiliza más energía de la CPU." #: python/preferences.py:1060 msgid "Basic Streamer" msgstr "Streamer Básica" #: python/preferences.py:1064 msgid "" "Run in a reduced functionality mode that lowers the burden on the CPU and " "takes up less screen space." msgstr "" "Ejecutar en un modo de funcionalidad reducida que disminuye la carga de la " "CPU y ocupa menos espacio en la pantalla." #: python/preferences.py:1072 msgid "These settings take effect after restarting" msgstr "Estos ajustes tienen efecto después de reiniciar" #: python/preferences.py:1093 msgid "Reserve 24 sound effects slots" msgstr "Efectos de sonido Reserva 24 ranuras" #: python/preferences.py:1094 msgid "Only 12" msgstr "Sólo 12" #: python/preferences.py:1106 msgid "Audio input channels" msgstr "Canales de entrada de audio" #: python/preferences.py:1111 msgid "Simultaneous stream(s)" msgstr "Streams simultánea(s)" #: python/preferences.py:1117 msgid "Simultaneous recording(s)" msgstr "Grabación(es) simultánea(s)" #: python/preferences.py:1171 msgid "Fill channel meter void space" msgstr "Llenar canal espacio vacío metros" #: python/preferences.py:1183 msgid "Player Loudness Normalisation" msgstr "Reproductor de sonoridad Normalización" #: python/preferences.py:1194 msgid "Indicate which tracks have loudness metadata" msgstr "Indique cuales pistas tienen metadatos de volumen" #: python/preferences.py:1195 msgid "" "Shows a marker in the playlists next to each track. Either a green circle or " "a red triangle." msgstr "" "Muestra un marcador en las listas al lado de la pista. Cualquiera de un " "círculo verde o un triángulo rojo." #: python/preferences.py:1203 msgid "Adjust playback volume in dB" msgstr "Ajuste el volumen de reproducción en dB" #: python/preferences.py:1204 msgid "Effective only on newly started tracks." msgstr "Efectivo sólo en pistas recién iniciadas." #: python/preferences.py:1210 msgid "R128" msgstr "R128" #: python/preferences.py:1214 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB higher than the ReplayGain setting." msgstr "" "Puede que no sea conveniente utilizar el nivel predeterminado, ya que es " "bastante tranquilo. Esto se debe establecer 4 o 5 dB más alto que el ajuste " "ReplayGain." #: python/preferences.py:1219 msgid "ReplayGain" msgstr "ReplayGain" #: python/preferences.py:1223 msgid "" "It may not be desirable to use the default level since it is rather quiet. " "This should be set 4 or 5 dB lower than the R128 setting." msgstr "" "Puede que no sea conveniente utilizar el nivel predeterminado, ya que es " "bastante tranquilo. Esto se debe establecer 4 o 5 dB inferior al ajuste R128." #: python/preferences.py:1228 msgid "Untagged" msgstr "No etiquetado" #: python/preferences.py:1232 msgid "" "Set this so that any unmarked tracks are playing at a roughly similar " "loudness level as the marked ones." msgstr "" "Establezca esto para que las pistas no marcadas están reproduciendose a un " "nivel de intensidad más o menos similar a los marcados." #: python/preferences.py:1241 msgid "A master level control for the media players." msgstr "Un control de nivel maestro para los reproductores multimedia." #: python/preferences.py:1252 msgid "Recorder Filename (excluding the file extension)" msgstr "" "Nombre del Archivo de la Grabadora (excluyendo la extensión del archivo)" #: python/preferences.py:1253 msgid "" "The specifiers are $r for the number of the recorder with the rest being " "documented in the strftime man page.\n" "Users may wish to alter this to make filenames that are compatible with " "particular filesystems." msgstr "" "Los especificadores son $r el número de la grabadora y el resto se documenta " "en la página man strftime. \n" "Los usuarios que deseen modificar esto para hacer los nombres de archivo que " "son compatibles con los sistemas de archivos particulares." #: python/preferences.py:1270 msgid "Miscellaneous Features" msgstr "Características Misceláneos" #: python/preferences.py:1279 msgid "Trim quiet song endings and trailing silence" msgstr "Recorte terminaciones de canciones tranquilas y posterior silencio" #: python/preferences.py:1285 msgid "End tracks containing long passages of silence" msgstr "Pistas finales que contienen largos pasajes de silencio" #: python/preferences.py:1291 msgid "Enable the main-player speed/pitch controls" msgstr "" "Activar los controles de velocidad/tono de los principales reproductores" #: python/preferences.py:1295 msgid "" "This option causes some extra widgets to appear below the playlists which " "allow the playback speed to be adjusted from 25% to 400% and a normal speed " "button." msgstr "" "Esta opción hace que algunos widgets adicionales para aparecer debajo de las " "listas de reproducción que permiten que la velocidad de reproducción para " "ajustarse desde 25% a 400% y un botón de velocidad normal." #: python/preferences.py:1300 msgid "Separate left/right player volume faders" msgstr "Faders de volumen Reproductor separada izquierda /" #: python/preferences.py:1304 msgid "" "Select this option to use an independent volume fader for the left and right " "music players." msgstr "" "Seleccione esta opción para utilizar un atenuador de volumen independiente " "para los reproductores de música izquierdo y derecho." #: python/preferences.py:1308 msgid "Enlarge the time elapsed/remaining windows" msgstr "Agrandar el tiempo transcurrido / restante ventanas" #: python/preferences.py:1312 msgid "" "The time elapsed/remaining windows sometimes don't appear big enough for the " "text that appears in them due to unusual DPI settings or the use of a " "different rendering engine. This option serves to fix that." msgstr "" "El tiempo transcurrido / restante ventanas a veces no parecen lo " "suficientemente grande para el texto que aparece en ellas, por las opciones " "de DPI inusuales o el uso de un motor de renderizado diferente. Esta opción " "sirve para arreglar eso." #: python/preferences.py:1318 msgid "Sound an alarm when the music is due to end" msgstr "Suena una alarma cuando la música se debe poner fin a" #: python/preferences.py:1321 msgid "" "An alarm tone alerting the DJ that dead-air is just nine seconds away. This " "also works when monitoring stream audio but the alarm tone is not sent to " "the stream.\n" "\n" "JACK freewheel mode will also be automatically disengaged." msgstr "" "Un tono de alarma que alerta al DJ que el aire muerto está a sólo nueve " "segundos en el futuro. Esto también funciona en el seguimiento de audio " "stream, pero el tono de alarma no se envía al stream.\n" "\n" "El modo freewheel de JACK también se desactivará automáticamente." #: python/preferences.py:1331 msgid "Apply dither to 16 bit PCM playback" msgstr "Aplicar tramado a la reproducción PCM de 16 bits" #: python/preferences.py:1335 msgid "" "This feature maybe improves the sound quality a little when listening on a " "24 bit sound card." msgstr "" "Esta característica puede que mejora la calidad de sonido un poco cuando se " "escucha en una tarjeta de sonido de 24 bits." #: python/preferences.py:1338 msgid "Enable tooltips" msgstr "Activar información sobre herramientas" #: python/preferences.py:1342 msgid "" "This, what you are currently reading, is a tooltip. This feature turns them " "on or off." msgstr "" "Esto, lo que está leyendo en este momento, es una información sobre " "herramientas. Esta característica los convierte en o fuera." #: python/preferences.py:1361 msgid "Player Settings At Startup" msgstr "Configuración del reproductor en el arranque" #: python/preferences.py:1372 msgid "Restore the previous session" msgstr "Restaurar la sesión anterior" #: python/preferences.py:1377 msgid "" "When starting IDJC most of the main window settings will be as they were " "left. As an alternative you may specify below how you want the various " "settings to be when IDJC starts." msgstr "" "Al iniciar IDJC la mayoría de los principales parámetros de la ventana será " "como quedaron. Como alternativa se puede especificar a continuación cómo " "desea que los distintos ajustes que sean cuando IDJC comienza." #: python/preferences.py:1387 msgid "Player 1" msgstr "Reproductor 1" #: python/preferences.py:1389 msgid "Player 2" msgstr "Reproductor 2" #. TC: DJ hears the stream mix. #: python/preferences.py:1417 msgid "Monitor Stream Mix" msgstr "Monitorear Mezcla del Stream" #. TC: A heading label for miscellaneous settings. #: python/preferences.py:1428 msgid "General" msgstr "General" #: python/preferences.py:1478 msgid "VoIP panning + mono downmix" msgstr "Paneo VoIP + downmix mono" #. TC: Keyboard and MIDI bindings configuration. #: python/preferences.py:1492 msgid "Bindings" msgstr "Vinculaciones" #: python/preferences.py:1540 msgid "Licence" msgstr "Licencia" #: python/preferences.py:1563 msgid "Contributors" msgstr "Colaboradores" #: python/preferences.py:1570 msgid "Translators" msgstr "Traductores" #: python/preferences.py:1575 msgid "Build Info" msgstr "Versión de SW" #: python/preferences.py:1592 msgid "About" msgstr "Acerca de" #: python/sourceclientgui.py:75 msgid "Disabled" msgstr "Incapacitado" #: python/sourceclientgui.py:75 msgid "Auto" msgstr "Auto" #: python/sourceclientgui.py:75 msgid "Auto, no plaintext" msgstr "Auto, ningún texto plano" #: python/sourceclientgui.py:76 msgid "RFC2818" msgstr "RFC2818" #: python/sourceclientgui.py:76 msgid "RFC2817" msgstr "RFC2817" #: python/sourceclientgui.py:96 msgid "Insert Attribute" msgstr "Insertar Atributo" #: python/sourceclientgui.py:140 msgid "Icecast 2 Master" msgstr "Icecast 2 Maestro" #: python/sourceclientgui.py:140 msgid "Shoutcast Master" msgstr "Shoutcast Maestro" #: python/sourceclientgui.py:141 msgid "Icecast 2 Stats/Relay" msgstr "Icecast 2 Estadísticas/Relay" #: python/sourceclientgui.py:141 msgid "Shoutcast Stats/Relay" msgstr "Shoutcast Estadísticas/Relay" #: python/sourceclientgui.py:144 msgid "Enter new server connection details" msgstr "Introduzca nuevos detalles de la conexión del servidor" #: python/sourceclientgui.py:164 msgid "Edit existing server connection details" msgstr "Editar detalles de la conexión de servidor existentes" #. TC: Dialog title bar text. #: python/sourceclientgui.py:218 msgid "Certificate Authority Directory" msgstr "Certificate Authority Directorio" #. TC: Dialog title bar text. #: python/sourceclientgui.py:232 msgid "Certificate Authority File" msgstr "Certificate Authority Archivo" #. TC: Dialog title bar text. #: python/sourceclientgui.py:246 msgid "TLS Client Certificate" msgstr "TLS certificado de cliente" #: python/sourceclientgui.py:257 msgid "This server is to be scanned for audience figures" msgstr "Este servidor debe ser escaneada por cifras de audiencia" #: python/sourceclientgui.py:270 msgid "Server type" msgstr "Tipo de servidor" #: python/sourceclientgui.py:270 msgid "Port number" msgstr "Número de puerto" #: python/sourceclientgui.py:271 msgid "Mount point" msgstr "punto de montaje" #: python/sourceclientgui.py:271 msgid "Login name" msgstr "Nombre de inicio de sesión" #: python/sourceclientgui.py:272 msgid "TLS" msgstr "TLS" #: python/sourceclientgui.py:272 msgid "CA directory" msgstr "Directorio de CA" #: python/sourceclientgui.py:272 msgid "CA file" msgstr "Archivo de CA" #: python/sourceclientgui.py:272 msgid "Client cert" msgstr "Cert cliente" #: python/sourceclientgui.py:556 msgid "Encoder Format Not Set/Compatible" msgstr "Formato del Codificador No Configurado/Incompatible" #. TC: Connection button text when no details have been entered. #: python/sourceclientgui.py:559 msgid "No Master Server Configured" msgstr "Ningún Maestro servidor configurado" #: python/sourceclientgui.py:761 msgid "" "A table of servers with which to connect. Only one master server can be " "added for the purpose of streaming. All other servers will appear below the " "master server in the list for the purpose of stats collection which can be " "toggled on a per server basis." msgstr "" "Una tabla de servidores con los que se conecte. Sólo un servidor maestro se " "puede añadir a los efectos de streaming. Aparecerán todos los demás " "servidores de abajo el servidor maestro en la lista con el propósito de la " "recolección de estadísticas que pueden activarse en función de cada servidor." #: python/sourceclientgui.py:777 msgid "Hostname/IP address" msgstr "Nombre de host/dirección IP" #. TC: Mount point is a technical term in relation to icecast servers. #: python/sourceclientgui.py:790 msgid "Mount point " msgstr "punto de montaje " #. TC: This is the listener count heading. #: python/sourceclientgui.py:799 msgid "Listeners" msgstr "Los oyentes" #: python/sourceclientgui.py:814 msgid "The sum total of listeners in this server tab." msgstr "La suma total de los oyentes en esta ficha servidor." #: python/sourceclientgui.py:841 msgid "Never" msgstr "Nunca" #: python/sourceclientgui.py:844 msgid "Always" msgstr "Siempre" #: python/sourceclientgui.py:846 msgid "If connected" msgstr "Si está conectado" #: python/sourceclientgui.py:1102 msgid "Custom user agent string" msgstr "Cadena de agente de usuario personalizada" #: python/sourceclientgui.py:1109 msgid "" "Set this on the occasion that the server or its firewall specifically " "refuses to allow libshout based clients." msgstr "" "Establezca este cuando el servidor o su firewall niega específicamente para " "permitir a los clientes basados ​​en libshout." #: python/sourceclientgui.py:1114 msgid "If the connection breaks reconnect to the server" msgstr "Si se rompe la conexión vuelva a conectar al servidor" #. TC: Label for a comma separated list of delay times. #: python/sourceclientgui.py:1124 msgid "Delay times" msgstr "Los tiempos de retardo" #: python/sourceclientgui.py:1128 msgid "" "A comma separated list of delays in seconds between reconnection attempts. " "Note that bad values or values less than 5 will be interpreted as 5." msgstr "" "Una lista separada por comas de los retrasos se separó en segundos entre " "intentos de reconexión. Tenga en cuenta que los valores de los malos o los " "valores inferiores a 5 se interpretará como 5." #: python/sourceclientgui.py:1134 msgid "Repeat the sequence of delays indefinitely." msgstr "Repita la secuencia de los retrasos de forma indefinida." #. TC: User specifies no dialog box to be shown. #: python/sourceclientgui.py:1137 msgid "Quiet" msgstr "Tranquilo" #: python/sourceclientgui.py:1139 msgid "Keep the reconnection dialogue box hidden at all times." msgstr "Mantenga la caja de diálogo de reconexión oculta en todo momento." #: python/sourceclientgui.py:1144 msgid "The contingency plan upon the stream buffer becoming full is..." msgstr "El plan de contingencia en el búfer de la secuencia se llene es ..." #: python/sourceclientgui.py:1153 msgid "Discard audio data for as long as needed." msgstr "Descartar datos de audio durante el tiempo que sea necesario." #: python/sourceclientgui.py:1155 msgid "Assume the connection is beyond saving and reconnect." msgstr "Asumir la conexión está más allá de ahorro y la reconexión." #: python/sourceclientgui.py:1442 python/format.py:1227 msgid "Shoutcast" msgstr "Shoutcast" #: python/sourceclientgui.py:1483 msgid "[Metadata suppressed]" msgstr "[Metadatos suprimidos]" #: python/sourceclientgui.py:1562 msgid "Individual Controls" msgstr "Controles individuales" #: python/sourceclientgui.py:1576 msgid "" "Connect to or disconnect from the radio server. If the button does not stay " "in, the connection failed for some reason.\n" "\n" "If the button is greyed out it means your settings within the 'Connections' " "and 'Format' sections are either incompatible with one another or are " "incomplete.\n" "\n" "In order to stream a master server needs to be specified in the " "configuration section below and must be capable of handling the chosen " "streaming format." msgstr "" "Conectarse o desconectarse del servidor de radio. Si el botón no se queda " "activado, la conexión falla por alguna razón.\n" "\n" "Si el botón está en gris, significa la configuración dentro de las secciones " "de 'Conexiones' y 'Formato' son incompatibles entre sí o son incompletos.\n" "\n" "Para poder transmitir se necesita especificar un servidor maestro necesita " "ser especificadoen la sección de configuración de abajo y debe ser capaz de " "manejar el formato de streaming elegido." #. TC: Kick whoever is on the server. #: python/sourceclientgui.py:1593 msgid "Kick Source" msgstr "Patear Fuente" #: python/sourceclientgui.py:1595 msgid "" "This will disconnect whoever is currently using the server, freeing it up " "for personal use." msgstr "" "Esto desconectará el que está utilizando actualmente el servidor, " "liberándola para uso personal." #: python/sourceclientgui.py:1605 msgid "Timer:" msgstr "Minutero:" #: python/sourceclientgui.py:1609 msgid "From" msgstr "De" #: python/sourceclientgui.py:1610 msgid "" "Automatically connect to the server at a specific time in 24 hour format, " "midnight being 00:00" msgstr "" "Conectar automáticamente al servidor en un momento específico en el formato " "de 24 horas, siendo la media noche 00:00" #: python/sourceclientgui.py:1615 msgid "Kick" msgstr "Patada" #: python/sourceclientgui.py:1617 msgid "Disconnect whoever is using the server just before start time." msgstr "" "Desconecte el que está utilizando el servidor justo antes de la hora de " "inicio." #: python/sourceclientgui.py:1626 msgid "To" msgstr "A" #: python/sourceclientgui.py:1627 msgid "" "Automatically disconnect from the server at a specific time in 24 hour " "format." msgstr "" "Desconectar automáticamente del servidor en un momento específico en el " "formato de 24 horas." #: python/sourceclientgui.py:1630 msgid "Fade out" msgstr "Desaparecer" #: python/sourceclientgui.py:1632 msgid "Fade audio before disconnecting." msgstr "Fundido de audio antes de desconectar." #: python/sourceclientgui.py:1646 msgid "At connect:" msgstr "En conexión:" #. TC: [x] Start player (*) 1 ( ) 2 #: python/sourceclientgui.py:1650 msgid "Start player" msgstr "Comience reproductor" #: python/sourceclientgui.py:1655 msgid "" "Have one of the players start automatically when a radio server connection " "is successfully made." msgstr "" "Hacer uno de los reproductores comienzar automáticamente cuando una conexión " "de servidor de radio se hace con éxito." #. TC: [x] Start recorder (*) 1 ( ) 2 #: python/sourceclientgui.py:1663 msgid "Start recorder" msgstr "Comience grabador" #: python/sourceclientgui.py:1670 msgid "" "Have a recorder start automatically when a radio server connection is " "successfully made." msgstr "" "Tener una grabadora inicia automáticamente cuando una conexión con el " "servidor de radio se hace con éxito." #: python/sourceclientgui.py:1675 python/format.py:530 python/format.py:541 #: python/format.py:552 python/format.py:562 msgid "Metadata" msgstr "Metadatos" #: python/sourceclientgui.py:1685 msgid "Format String" msgstr "Cadena de formato" #. TC: Label for the metadata fallback value. #: python/sourceclientgui.py:1687 msgid "Fallback" msgstr "Retroceder" #: python/sourceclientgui.py:1701 msgid "" "You can enter text to accompany the stream here and can specify placemarkers " "%r %t %l %s for the artist, title, album, and songname respectively, or " "leave this text field blank to use the default metadata.\n" "\n" "Songname (%s) is derived from the filename in the absence of sufficient " "metadata, while the other placemarkers will use the fallback text to the " "right.\n" "\n" "When blank, Ogg streams will use the standard Vorbis tags and mp3 will use " "%s." msgstr "" "Puede introducir texto para acompañar el stream aquí y puede especificar " "marcadores %r %t %l %s para el artista, título, álbum, y nombre de la " "canción respectivamente, o deje este campo de texto en blanco para usar los " "metadatos predeterminados.\n" "\n" "Songname (%s) se deriva del nombre de archivo en la ausencia de metadatos " "suficientes, mientras que los otros MARCADORES usarán el texto de repliegue " "hacia la derecha.\n" "\n" "Cuando en blanco, los streams Ogg usarán las etiquetas Vorbis estándar y mp3 " "utilizará %s." #: python/sourceclientgui.py:1709 msgid "" "The fallback text to use when %r %t %l metadata is unavailable. See the " "format string to the left." msgstr "" "El texto de reserva para utilizar cuando% r% t% l metadatos no está " "disponible. Ver la cadena de formato a la izquierda." #: python/sourceclientgui.py:1711 msgid "" "Metadata normally updates only on song title changes but you can force an " "immediate update here." msgstr "" "Los metadatos se actualizan normalmente sólo en los cambios de título de la " "canción, pero se puede forzar una actualización inmediata aquí." #: python/sourceclientgui.py:1730 msgid "Configuration" msgstr "Configuración" #: python/sourceclientgui.py:1731 msgid "The controls for configuring a stream." msgstr "Los controles para la configuración de un stream." #: python/sourceclientgui.py:1739 msgid "Connection" msgstr "Conexión" #: python/sourceclientgui.py:1744 msgid "Format" msgstr "Formato" #. TC: Tab heading. User can enter information about the stream here. #: python/sourceclientgui.py:1753 msgid "Stream Info" msgstr "Información del Stream" #: python/sourceclientgui.py:1758 msgid "" "Enter your DJ name or station name here. Typically this information will be " "displayed by listener clients." msgstr "" "Introduzca su nombre de DJ o el nombre de la estación de aquí. Normalmente " "esta información se mostrará por los clientes de los radioescuchas." #: python/sourceclientgui.py:1761 msgid "" "The URL of your radio station. This and the rest of the information below is " "intended for display on a radio station listings website." msgstr "" "La URL de su estación de radio. Esta y el resto de la información a " "continuación está destinado para su visualización en un sitio web listados " "de emisoras de radio." #: python/sourceclientgui.py:1766 msgid "A description of your radio station." msgstr "Una descripción de su estación de radio." #: python/sourceclientgui.py:1771 msgid "The musical genres you are likely to play." msgstr "Los géneros musicales que son propensos a reproducir." #: python/sourceclientgui.py:1774 msgid "Make Public" msgstr "Hacer público" #: python/sourceclientgui.py:1775 msgid "" "Publish your radio station on a listings website. The website in question " "will depend on how the server to which you connect is configured." msgstr "" "Publica tu estación de radio en un sitio web de anuncios. El sitio web en " "cuestión dependerá de cómo esté configurado el servidor al que se conecta." #: python/sourceclientgui.py:1787 msgid "Genre(s)" msgstr "Género (s)" #: python/sourceclientgui.py:1798 msgid "Master server admin password" msgstr "Maestro de administración del servidor contraseña" #: python/sourceclientgui.py:1803 msgid "" "This is for kick and stats on Shoutcast master servers that have an " "administrator password. For those that don't leave this blank (the source " "password is sufficient for those)." msgstr "" "Esto es para patear y estadísticas de servidores maestros Shoutcast que " "tienen una contraseña de administrador. Para aquellos que no dejen este " "espacio en blanco (la contraseña de la fuente es suficiente para aquellos)." #: python/sourceclientgui.py:1812 msgid "Contact Details" msgstr "Detalles de contacto" #: python/sourceclientgui.py:1816 msgid "Internet Relay Chat connection info goes here." msgstr "Internet Relay Chat en información de conexión va aquí." #: python/sourceclientgui.py:1819 msgid "Connection info for AOL instant messenger goes here." msgstr "Información de la conexión para AOL Instant Messenger va aquí." #: python/sourceclientgui.py:1822 msgid "ICQ instant messenger connection info goes here." msgstr "ICQ información de conexión de mensajería instantánea va aquí." #: python/sourceclientgui.py:1825 msgid "IRC" msgstr "IRC" #: python/sourceclientgui.py:1826 msgid "AIM" msgstr "AIM" #: python/sourceclientgui.py:1827 msgid "ICQ" msgstr "ICQ" #: python/sourceclientgui.py:1837 msgid "Use ISO-8859-1 encoding for fixed metadata" msgstr "Usar codificación ISO-8859-1 para los metadatos fijo" #: python/sourceclientgui.py:1839 msgid "Enable this if sending to a Shoutcast V1 server." msgstr "Habilite esta si van a enviar a un servidor Shoutcast V1." #: python/sourceclientgui.py:1843 msgid "Extra Shoutcast" msgstr "Shoutcast extra" #: python/sourceclientgui.py:1848 msgid "Troubleshooting" msgstr "Solución de problemas" #: python/sourceclientgui.py:1979 msgid "Stop recording." msgstr "Para de grabar." #: python/sourceclientgui.py:1981 msgid "" "Start recording.\n" "\n" "If this button is greyed out it could mean either the encoder settings are " "not valid or write permission is not granted on the selected folder." msgstr "" "Inicie la grabación.\n" "\n" "Si este botón aparece en gris podría significar o que la configuración del " "codificador no es válido o que el permiso de escribir no se concede en la " "carpeta seleccionada." #: python/sourceclientgui.py:1986 msgid "Pause recording." msgstr "Pausa de grabación." #: python/sourceclientgui.py:2023 msgid "Recording time elapsed." msgstr "El tiempo de grabación transcurrido." #. TC: Dialog title bar text. #: python/sourceclientgui.py:2077 msgid "Select the folder to record to" msgstr "Seleccione la carpeta para grabar" #: python/sourceclientgui.py:2088 msgid "" "Choose which stream to record or the 24 bit FLAC option. If the stream isn't " "already running the encoder will be started automatically using whatever " "settings are currently configured." msgstr "" "Elija el stream para grabar o la opción FLAC de 24 bits. Si el stream no " "está en ejecución se iniciará el codificador automáticamente con los ajustes " "que están configurados actualmente." #: python/sourceclientgui.py:2092 msgid "" "Choose which directory you want to save to. All file names will be in a " "timestamp format and have either an oga, mp3, or flac file extension. " "Important: you need to select a directory to which you have adequate write " "permission." msgstr "" "Elija qué directorio que desea guardar. Todos los nombres de los archivos " "estarán en formato de hora y disponen de un Oga, mp3, o extensión de archivo " "flac. Importante: Es necesario seleccionar un directorio en el que usted " "tiene el permiso adecuado de escritura." #: python/sourceclientgui.py:2199 msgid "Perform operations on multiple servers in unison." msgstr "Realizar operaciones en varios servidores al unisono." #: python/sourceclientgui.py:2211 msgid "Connect" msgstr "Conectar" #: python/sourceclientgui.py:2228 msgid "Disconnect" msgstr "Desconectar" #: python/sourceclientgui.py:2236 msgid "Kick Sources" msgstr "Patear Fuentes" #: python/sourceclientgui.py:2245 msgid "Metadata:" msgstr "Metadatos:" #: python/sourceclientgui.py:2275 msgid "Group Controls" msgstr "Controles de grupo" #: python/sourceclientgui.py:2782 msgid "Recording Facility Unavailable" msgstr "Facilidad de grabación disponible" #: python/sourceclientgui.py:2785 msgid "No Recorders Are Correctly Configured" msgstr "No hay Grabadores que están configurados correctamente" #. TC: Recorder menu format string. #: python/sourceclientgui.py:2798 #, python-brace-format msgid "{numericid} [{source}] > [{directory}]" msgstr "{numericid} [{source}] > [{directory}]" #: python/sourceclientgui.py:2800 msgid "Misconfigured" msgstr "Mal configurado" #: python/sourceclientgui.py:2821 msgid "Streaming Facility Unavailable" msgstr "Fondo para Streaming No Disponible" #: python/sourceclientgui.py:2823 msgid "No Streams Are Currently Configured" msgstr "No hay streams configurados actualmente" #: python/sourceclientgui.py:2826 msgid "Group Connect" msgstr "Group Connect" #: python/sourceclientgui.py:2832 msgid "Group Disconnect" msgstr "Desconecte Grupo" #. TC: Window title bar text. #: python/sourceclientgui.py:2863 msgid "IDJC Output" msgstr "Salida IDJC" #: python/sourceclientgui.py:2879 msgid "" "Each one of these tabs represents a separate stream recorder. The LED " "indicator colours represent the following: Clear=Stopped Yellow=Paused " "Red=Recording." msgstr "" "Cada una de estas pestañas representa una grabadora de stream distinta. Los " "colores indicador LED representan lo siguiente: Transparente=Detenido " "Amarillo=En pausa Rojo=Grabando." #: python/sourceclientgui.py:2887 msgid "" "Each one of these tabs represents a separate radio streamer. The LED " "indicator colours represent the following: Clear=No connection " "Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to " "a bad connection." msgstr "" "Cada una de estas pestañas representa una streamer de radio independiente. " "Los colores indicador LED representan lo siguiente: Borrar = No hay conexión " "Amarillo = En espera de la autenticación. = Verdes conectados. Intermitente " "= pérdida de paquetes debido a una mala conexión." #: python/sourceclientgui.py:2905 msgid " Stream " msgstr "Stream" #: python/sourceclientgui.py:2940 msgid "" "A connection to a radio server has " "failed.\n" "\n" "Reconnection will not be attempted." msgstr "" "Una conexión a un servidor de radio ha " "fallado.\n" "\n" "Reconnection no se intentará." #: python/sourceclientgui.py:2945 msgid "" "A scheduled stream disconnection has " "occurred." msgstr "" "Se ha producido un flujo de desconexión " "programada." #: python/format.py:419 msgid "Right click for suggested values." msgstr "Haga clic derecho para los valores sugeridos." #: python/format.py:439 msgid "Suggested Values" msgstr "Los valores sugeridos" #: python/format.py:503 msgid "Pregain" msgstr "PreGain" #: python/format.py:504 python/format.py:933 msgid "0 dB" msgstr "0 dB" #: python/format.py:505 python/format.py:934 msgid "-0.5 dB" msgstr "-0,5 DB" #: python/format.py:506 python/format.py:935 msgid "-1.0 dB" msgstr "-1,0 DB" #: python/format.py:507 python/format.py:936 msgid "-1.5 dB" msgstr "-1,5 DB" #: python/format.py:508 python/format.py:937 msgid "-2.0 dB" msgstr "-2,0 DB" #: python/format.py:509 python/format.py:938 msgid "-2.5 dB" msgstr "-2,5 DB" #: python/format.py:510 python/format.py:939 msgid "-3.0 dB" msgstr "-3,0 DB" #: python/format.py:511 msgid "" "A blanket gain reduction to promote audio quality when using long " "established lossy audio codecs like mp3 with loud audio material.\n" "\n" "ReplayGain makes this feature generally unnecessary and the correct setting " "in that case is 0 dB." msgstr "" "Una reducción de ganancia generalizada para promover la calidad de audio al " "utilizar los códecs de audio con pérdida de antiguo establecidos como mp3 " "con material de audio muy fuerte.\n" "\n" "ReplayGain hace esta función generalmente innecesario y la configuración " "correcta en este caso es de 0 dB." #: python/format.py:519 msgid "Resample Quality" msgstr "Volver a muestrear Calidad" #: python/format.py:520 msgid "Highest" msgstr "Mayor" #: python/format.py:522 msgid "Lowest" msgstr "Menor" #: python/format.py:523 msgid "" "All of these settings will provide adequate audio quality. The highest " "setting will preserve more of the original audio bandwidth at the expense of " "many CPU cycles." msgstr "" "Todos estos ajustes proporcionarán una calidad de audio adecuado. El ajuste " "más alto preservará más del ancho de banda de audio original a expensas de " "muchos ciclos de CPU." #: python/format.py:531 python/format.py:553 python/format.py:563 msgid "Suppressed" msgstr "Suprimida" #: python/format.py:532 python/format.py:554 msgid "UTF-8" msgstr "UTF-8" #: python/format.py:533 msgid "Latin1 *" msgstr "Latin1 *" #: python/format.py:534 msgid "" "This affects the stream metadata only. Recordings will use UTF-8 for their " "metadata." msgstr "" "Esto sólo afecta a los metadatos stream. Grabaciones usarán UTF-8 para sus " "metadatos." #: python/format.py:542 msgid "Unsupported" msgstr "No compatible" #: python/format.py:543 python/format.py:555 msgid "" "Choose whether the stream will carry dynamic metadata. In the case of Ogg " "streams this is important as a great many players can't handle chained Ogg " "streams which result from the metadata updates." msgstr "" "Elija si la stream llevará metadatos dinámico. En el caso de transmisión de " "Ogg esto es importante como un gran número de reproductores no pueden " "manejar streams Ogg encadenados que resultan de los cambios de metadatos." #: python/format.py:564 msgid "Latin1" msgstr "Latin1" #: python/format.py:565 msgid "Choose whether to send metadata. Recordings will use UTF-8 metadata." msgstr "" "Seleccione si desea enviar los metadatos. Grabaciones usarán UTF-8 de " "metadatos." #: python/format.py:581 python/format.py:592 python/format.py:603 #: python/format.py:710 python/format.py:838 python/format.py:908 #: python/format.py:917 python/format.py:991 python/format.py:1014 #: python/format.py:1023 python/format.py:1141 python/format.py:1163 msgid "Mode" msgstr "Modo" #: python/format.py:582 python/format.py:593 python/format.py:604 #: python/format.py:711 python/format.py:839 python/format.py:909 #: python/format.py:918 python/format.py:992 python/format.py:1015 #: python/format.py:1024 python/format.py:1142 python/format.py:1164 msgid "Mono" msgstr "Mono" #: python/format.py:583 python/format.py:594 python/format.py:605 #: python/format.py:712 python/format.py:840 python/format.py:910 #: python/format.py:919 python/format.py:993 python/format.py:1016 #: python/format.py:1025 python/format.py:1143 python/format.py:1165 msgid "Stereo" msgstr "Estéreo" #: python/format.py:584 python/format.py:595 python/format.py:606 #: python/format.py:713 msgid "Joint Stereo" msgstr "Estéreo conjunto" #: python/format.py:585 msgid "Joint Stereo is a good choice on streams with low bitrates." msgstr "Joint Stereo es una buena opción en streams con bitrates bajos." #: python/format.py:596 msgid "Due to the high bitrate selected, this codec will only support stereo." msgstr "" "Debido a la alta tasa de bits seleccionado, este códec sólo apoyará estéreo." #: python/format.py:607 msgid "Due to the low bitrate selected, this codec will only support mono." msgstr "" "Debido a la baja tasa de bits seleccionado, este códec sólo apoyará mono." #: python/format.py:656 python/format.py:666 python/format.py:763 #: python/format.py:773 python/format.py:783 python/format.py:889 #: python/format.py:899 python/format.py:1052 python/format.py:1072 #: python/format.py:1132 msgid "Samplerate" msgstr "Samplerate" #. TC: Abbreviation of the word, standard. #: python/format.py:677 python/format.py:794 msgid "Std." msgstr "Std." #. TC: v stands for version. #: python/format.py:679 python/format.py:796 msgid "V 1" msgstr "V 1" #. TC: v stands for version. #: python/format.py:681 python/format.py:798 msgid "V 2" msgstr "V 2" #: python/format.py:682 msgid "" "MPEG2 introduced lower samplerate options and corresponding lower bitrates. " "Choose 2 if those are required." msgstr "" "MPEG2 introdujo opciones samplerate más bajos y las correspondientes tasas " "de bits más bajas. Elija 2 si los que son obligatorios." #: python/format.py:689 python/format.py:817 msgid "Quality" msgstr "Calidad" #: python/format.py:690 msgid "0 most" msgstr "0 más" #. TC: * means is the recommended setting. #: python/format.py:693 msgid "2 *" msgstr "2 *" #: python/format.py:695 msgid "Higher quality costs more in terms of CPU cycles." msgstr "Mayor calidad cuesta más en términos de ciclos de CPU." #: python/format.py:714 msgid "Joint Stereo is a good choice on streams with low bitrates" msgstr "Joint Stereo es una buena opción en streams con bitrates bajos" #. TC: v stands for version. #: python/format.py:800 msgid "V 2.5" msgstr "V 2.5" #: python/format.py:807 msgid "Complexity" msgstr "Complejidad" #: python/format.py:810 msgid "A quality setting that affects how heavily the CPU is used." msgstr "" "Un ajuste de calidad que afecta en gran medida de cómo se utiliza la CPU." #: python/format.py:820 msgid "The higher this setting, the higher the bitrate." msgstr "Cuanto mayor sea este valor, mayor será la tasa de bits." #: python/format.py:827 msgid "Bandwidth" msgstr "Ancho de banda" #: python/format.py:828 msgid "Ultrawide" msgstr "Ultrawide" #: python/format.py:829 msgid "Wide" msgstr "Amplio" #: python/format.py:830 msgid "Narrow" msgstr "Angostas" #: python/format.py:831 msgid "Essentially a samplerate setting." msgstr "Esencialmente una configuración de muestreo." #: python/format.py:848 msgid "24 bit" msgstr "24 bits" #: python/format.py:849 msgid "20 bit" msgstr "20 bit" #: python/format.py:850 msgid "16 bit" msgstr "16 bit" #: python/format.py:851 msgid "" "24 bit records with the highest level of detail. If file size is a concern " "maybe FLAC is not the right codec." msgstr "" "24 registros de bits con el más alto nivel de detalle. Si el tamaño del " "archivo es una preocupación tal vez FLAC no es el codec correcto." #: python/format.py:858 python/format.py:947 msgid "Variability" msgstr "Variabilidad" #: python/format.py:859 msgid "Constant" msgstr "Constante" #: python/format.py:860 msgid "±10%" msgstr "± 10%" #: python/format.py:861 msgid "±20%" msgstr "± 20%" #: python/format.py:862 msgid "±30%" msgstr "± 30%" #: python/format.py:863 msgid "±40%" msgstr "± 40%" #: python/format.py:864 msgid "±50%" msgstr "± 50%" #: python/format.py:865 msgid "This control is for enabling variable bitrate on Vorbis streams." msgstr "" "Este control es para permitir el bitrate variable sobre streams Vorbis." #: python/format.py:926 msgid "Postgain" msgstr "PostGain" #: python/format.py:927 msgid "3.0 dB" msgstr "3,0 dB" #: python/format.py:928 msgid "2.5 dB" msgstr "2,5 dB" #: python/format.py:929 msgid "2.0 dB" msgstr "2,0 dB" #: python/format.py:930 msgid "1.5 dB" msgstr "1,5 dB" #: python/format.py:931 msgid "1.0 dB" msgstr "1,0 dB" #: python/format.py:932 msgid "0.5 dB" msgstr "0,5 dB" #: python/format.py:940 msgid "A gain adjustment for the player to apply." msgstr "Un ajuste de ganancia para el reproductor de aplicar." #: python/format.py:948 msgid "CBR *" msgstr "CBR *" #: python/format.py:949 msgid "CVBR" msgstr "CVBR" #: python/format.py:950 msgid "VBR" msgstr "VBR" #: python/format.py:951 msgid "" "Bitrate variability. Actual VBR operation may require a higher frame size." msgstr "" "Variabilidad bitrate. Operación real VBR puede requerir un tamaño de marco " "superior." #: python/format.py:958 msgid "Frame Size" msgstr "Tamaño del marco" #: python/format.py:959 msgid "60 ms" msgstr "60 ms" #: python/format.py:960 msgid "40 ms" msgstr "40 ms" #: python/format.py:961 msgid "20 ms" msgstr "20 ms" #: python/format.py:962 msgid "A higher frame size may sound better on very low bitrates." msgstr "Un tamaño de cuadro más alta puede sonar mejor en bitrates muy bajos." #: python/format.py:969 msgid "CPU" msgstr "UPC" #: python/format.py:972 msgid "The encoder complexity setting which affects CPU load." msgstr "" "El ajuste de la complejidad del codificador que afecta a la carga de la CPU." #: python/format.py:1000 python/format.py:1103 python/format.py:1172 msgid "Codec" msgstr "Codec" #: python/format.py:1001 python/format.py:1174 msgid "Vorbis" msgstr "Vorbis" #: python/format.py:1002 msgid "FLAC" msgstr "FLAC" #: python/format.py:1003 msgid "Speex" msgstr "Speex" #: python/format.py:1004 python/format.py:1173 msgid "Opus" msgstr "Opus" #: python/format.py:1007 msgid "Codecs of the Ogg container." msgstr "Codecs del contenedor Ogg." #: python/format.py:1053 msgid "96000 Hz" msgstr "96000 Hz" #: python/format.py:1054 msgid "88200 Hz" msgstr "88200 Hz" #: python/format.py:1055 msgid "64000 Hz" msgstr "64000 Hz" #: python/format.py:1056 python/format.py:1073 msgid "48000 Hz" msgstr "48000 Hz" #: python/format.py:1057 python/format.py:1074 msgid "44100 Hz" msgstr "44100 Hz" #: python/format.py:1058 msgid "32000 Hz" msgstr "32000 Hz" #: python/format.py:1059 msgid "24000 Hz" msgstr "24000 Hz" #: python/format.py:1060 msgid "22050 Hz" msgstr "22050 Hz" #: python/format.py:1061 msgid "16000 Hz" msgstr "16000 Hz" #: python/format.py:1062 msgid "12000 Hz" msgstr "12000 Hz" #: python/format.py:1063 msgid "11025 Hz" msgstr "11025 Hz" #: python/format.py:1064 msgid "8000 Hz" msgstr "8000 Hz" #: python/format.py:1065 msgid "7350 Hz" msgstr "7350 Hz" #: python/format.py:1087 msgid "The MP2 option requires IDJC be rebuilt against libtwolame." msgstr "La opción MP2 requiere IDJC ser reconstruido contra libtwolame." #: python/format.py:1090 msgid "Enable the MP3 option by installing libmp3lame." msgstr "Active la opción MP3 instalando libmp3lame." #: python/format.py:1093 msgid "The AAC options require IDJC be rebuilt against libav libraries." msgstr "" "Las opciones AAC requieren IDJC ser reconstruido contra bibliotecas libav." #: python/format.py:1096 msgid "" "Specific AAC support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" "Apoyo AAC específica no está presente en libavcodec. Más información: idjc." "sourceforge.net." #: python/format.py:1098 msgid "" "Specific AAC+ support not present in libavcodec. More info: idjc.sourceforge." "net." msgstr "" "AAC + específico de apoyo no está presente en libavcodec. Más información: " "idjc.sourceforge.net." #: python/format.py:1101 msgid "Codecs of the MPEG family." msgstr "Codecs de la familia MPEG." #: python/format.py:1104 msgid "MP2" msgstr "MP2" #: python/format.py:1105 msgid "MP3" msgstr "MP3" #: python/format.py:1106 msgid "AAC" msgstr "AAC" #: python/format.py:1107 msgid "AAC+ v2" msgstr "AAC+ v2" #. TC: Codec family e.g. Xiph/Ogg, MPEG etc. #: python/format.py:1185 msgid "Family" msgstr "Familia" #: python/format.py:1186 msgid "WebM" msgstr "WebM" #. TC: Xiph.org Ogg container format. #: python/format.py:1188 msgid "Xiph/Ogg" msgstr "Xiph/Ogg" #: python/format.py:1189 msgid "MPEG" msgstr "MPEG" #: python/format.py:1190 msgid "Codecs have been grouped by standards body and or container format." msgstr "" "Codecs han sido agrupados por organismo de normalización y o formato " "contenedor." #: python/format.py:1215 msgid "Capabilities" msgstr "Capacidades" #: python/format.py:1227 msgid "Icecast" msgstr "Icecast" #: python/format.py:1227 msgid "Recordable" msgstr "Grabable" idjc-0.8.16/idjc.desktop.in.in0000644000175000017500000000153112630014502012747 00000000000000[Desktop Entry] Categories=GTK;Network; Comment=Create your live radio show or podcast Comment[en_GB]=Create your live radio show or podcast Comment[it]=Crea la tua live radio o podcast Comment[de]=Erstelle deine eigene Radiosendung oder Podcasts Comment[fr]=Créez votre spectacle radio en direct ou votre podcast Exec=@bindir@/@PACKAGE_NAME@ GenericName=Graphical shoutcast/icecast client GenericName[en_GB]=Graphical shoutcast/icecast client GenericName[it]=Client grafico shoutcast/icecast GenericName[de]=Grafischer Shoutcast/Icecast Client GenericName[fr]=Client graphique shoutcast/icecast Icon=${prefix}/share/pixmaps/@PACKAGE_NAME@.png MimeType= Name=Internet DJ Console Path= StartupNotify=true Terminal=false TerminalOptions= Type=Application Version=1.0 X-DCOP-ServiceType= X-KDE-SubstituteUID=false X-KDE-Username= X-Ubuntu-Gettext-Domain=idjc idjc-0.8.16/configure.ac0000644000175000017500000002703612711167201011734 00000000000000# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT([idjc], [0.8.16], [http://idjc.sourceforge.net]) AC_SUBST(COPYRIGHT_YEAR, [2016]) AC_CANONICAL_SYSTEM AC_CONFIG_SRCDIR([config.h.in]) AM_INIT_AUTOMAKE AM_CONFIG_HEADER([config.h]) # Generate python installation stuff AM_PATH_PYTHON([2.7]) AC_SUBST([idjcpythondir], [\${pkglibdir}/site-packages]) AC_SUBST([idjcpkgpythondir], [\${pkglibdir}/site-packages/idjc]) # idjc backend library stuff LT_INIT([disable-static,dlopen]) # Checks for programs. AM_PROG_CC_C_O # Cause autoconfiguration to look for an external libintl. AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.18.1]) # We need libjack in order to compile. PKG_CHECK_MODULES(LIBJACK, [jack >= 0.98.0]) # Core dependencies. PKG_CHECK_MODULES([LIBVORBIS], [vorbis >= 1.0.0]) PKG_CHECK_MODULES([LIBVORBISENC], [vorbisenc >= 1.0.0]) PKG_CHECK_MODULES([LIBSAMPLERATE], [samplerate]) PKG_CHECK_MODULES([LIBSNDFILE], [sndfile]) PKG_CHECK_MODULES([GLIB], [glib-2.0]) # Determine if git is installed and a repository is present in source root dir. AC_CHECK_PROG([GIT_PROG_EXISTS], [git], [yes], [no]) if test ${GIT_PROG_EXISTS} = "yes" ; then # Determine if a repository exists right here in the build directory. AC_MSG_CHECKING([for git repository in source tree root]) if test $(git rev-parse --git-dir) = ".git" ; then AC_MSG_RESULT([yes]) git_repo = 1 else AC_MSG_RESULT([no]) fi fi AM_CONDITIONAL([GIT_VERSION_CONTROL], [test x$git_repo = x]) AC_ARG_ENABLE([libav], AC_HELP_STRING([--disable-libav],[remove capability to decode m4a/wma/avi files]),[makelibav=$enableval],[makelibav="maybe"]) if test $makelibav != "no" ; then AH_BOTTOM( [#if defined(HAVE_AVCODEC) && defined(HAVE_AVFORMAT) && defined(HAVE_AVUTIL) #define HAVE_LIBAV 1 #endif]) PKG_CHECK_MODULES([LIBAVCODEC], [libavcodec], [AC_DEFINE(HAVE_AVCODEC, 1, [Set if libavcodec was found]) AC_SUBST(HAVE_AVCODEC, 1) AC_CHECK_LIB([avcodec],[avcodec_decode_audio4], :, AC_MSG_ERROR("configure with --disable-libav or update ffmpeg/libav")) ], AC_SUBST(HAVE_AVCODEC, 0) if test $makelibav = "yes" ; then AC_MSG_ERROR([libavcodec not detected but specifically requested in configure options (libav)]) else AC_MSG_WARN([IDJC will be built without wma/mp4/ape support]) fi) PKG_CHECK_MODULES([LIBAVFORMAT], [libavformat], AC_DEFINE(HAVE_AVFORMAT, 1, [Set if libavformat was found]) AC_SUBST(HAVE_AVFORMAT, 1), AC_SUBST(HAVE_AVFORMAT, 0) if test $makelibav = "yes" ; then AC_MSG_ERROR([libavformat not detected but specifically requested in configure options (libav)]) else AC_MSG_WARN([IDJC will be built without wma/mp4/ape support]) fi) PKG_CHECK_MODULES([LIBAVUTIL], [libavutil], [AC_DEFINE(HAVE_AVUTIL, 1, [Set if libavutil was found]) AC_SUBST(HAVE_AVUTIL, 1) AC_CHECK_LIB([avutil],[av_frame_alloc], AC_DEFINE(HAVE_AV_FRAME_ALLOC, 1, [Set if av_frame_alloc function exists])) AC_CHECK_LIB([avutil],[av_frame_unref], AC_DEFINE(HAVE_AV_FRAME_UNREF, 1, [Set if av_frame_unref function exists])) ], AC_SUBST(HAVE_AVUTIL, 0) if test $makelibav = "yes" ; then AC_MSG_ERROR([libavutil not detected but specifically requested in configure options (libav)]) else AC_MSG_WARN([IDJC will be built without wma/mp4/ape support]) fi) PKG_CHECK_MODULES([LIBSWRESAMPLE], [libswresample], AC_DEFINE(HAVE_SWRESAMPLE, 1, [Set if libswresample was found]) AC_SUBST(HAVE_SWRESAMPLE, 1), AC_SUBST(HAVE_SWRESAMPLE, 0) if test $makelibav = "yes" ; then AC_MSG_ERROR([libswresample not detected but specifically requested in configure options (libav)]) fi) else AC_SUBST(HAVE_AVCODEC, 0) AC_SUBST(HAVE_AVFORMAT, 0) AC_SUBST(HAVE_AVUTIL, 0) AC_SUBST(HAVE_SWRESAMPLE, 0) fi AC_CHECK_LIB([avutil], [av_opt_set_sample_fmt], AC_DEFINE(USE_SWRESAMPLE, 1, [Set if libswresample allows format conversion])) AC_ARG_ENABLE([speex], AC_HELP_STRING([--disable-speex],[remove the capability to play/stream speex]), [makespeex=$enableval],[makespeex="maybe"]) if test $makespeex != "no" ; then PKG_CHECK_MODULES([LIBSPEEX], [speex], [ AC_DEFINE(HAVE_SPEEX, 1, [Set if libspeex was found]) AC_SUBST(HAVE_SPEEX, 1)], [AC_SUBST(HAVE_SPEEX, 0), if test $makespeex = "yes" ; then AC_MSG_ERROR([libspeex not detected but specifically requested in configure options]) else AC_MSG_WARN([IDJC will be built without speex support]) fi]) else AC_SUBST([HAVE_SPEEX],[0]) fi # Used only to check the correct version is installed PKG_CHECK_MODULES([PYGTK], [pygtk-2.0 >= 2.6.0]) AC_MSG_CHECKING([for mutagen]) ${PYTHON} -c "import mutagen" >/dev/null 2>&1 if test $? -ne 0 ; then AC_MSG_RESULT([no]) AC_MSG_WARN([runtime dependency (mutagen / python-mutagen) is missing]) else AC_MSG_RESULT([yes]) fi AC_ARG_ENABLE([flac], AC_HELP_STRING([--disable-flac],[remove the capability to play/stream in FLAC]), [makeflac=$enableval],[makeflac="maybe"]) if test $makeflac != "no" ; then PKG_CHECK_MODULES([LIBFLAC],[flac >= 1.1.3], [AC_DEFINE([HAVE_FLAC],[1],[Set if libflac >= 1.1.3 was found]) AC_SUBST([HAVE_FLAC],[1]) AC_CHECK_LIB([FLAC], [FLAC__stream_decoder_init_ogg_stream], [AC_SUBST([HAVE_OGGFLAC],[1]) AC_DEFINE([HAVE_OGGFLAC],[1],[Set if libFLAC has oggflac support])], [AC_SUBST([HAVE_OGGFLAC],[0]) AC_MSG_WARN([your version of libFLAC lacks oggflac support])])], [AC_SUBST([HAVE_FLAC],[0]) AC_SUBST([HAVE_OGGFLAC],[0]) if test $makeflac = "yes" ; then AC_MSG_ERROR([libFLAC not detected but specifically requested in configure options]) else AC_MSG_WARN([IDJC will be built without flac support]) fi]) else AC_SUBST([HAVE_FLAC],[0]) AC_SUBST([HAVE_OGGFLAC],[0]) fi AC_CHECK_HEADERS([mpg123.h libavutil/channel_layout.h]) AC_ARG_ENABLE(mpg123, AC_HELP_STRING([--disable-mpg123],[remove capability to play mp3 format]),[makempg123=$enableval],[makempg123="maybe"]) if test $makempg123 != "no" ; then PKG_CHECK_MODULES([MPG123], [libmpg123], [AC_SUBST([MPG123], [-lmpg123]) AC_SUBST([DYN_MPG123], [0])], [AC_DEFINE([DYN_MPG123], [1], [MPG123 to be linked dynamically]) AC_SUBST([DYN_MPG123], [1]) DYNAMIC="1" if test $makempg123 = "yes" ; then AC_MSG_ERROR([libmpg123 not detected but specifically requested in configure options]) fi]) else AC_DEFINE([DYN_MPG123], [1], [MPG123 to be linked dynamically]) AC_SUBST([DYN_MPG123], [1]) DYNAMIC="1" fi AC_CHECK_HEADERS([lame/lame.h]) AC_ARG_ENABLE(lame, AC_HELP_STRING([--disable-lame],[remove capability to stream/record mp3 format]),[makelame=$enableval],[makelame="maybe"]) if test $makelame != "no" ; then AC_CHECK_LIB([mp3lame -lm], [lame_init], [AC_SUBST([LIBMP3LAME], [-lmp3lame]) AC_SUBST([DYN_LAME], [0])], AC_DEFINE([DYN_LAME], [1], [LAME to be linked dynamically]) AC_SUBST([DYN_LAME], [1]) DYNAMIC="1" if test $makelame = "yes" ; then AC_MSG_ERROR([libmp3lame not detected but specifically requested in configure options]) fi) else AC_DEFINE([DYN_LAME], [1], [LAME to be linked dynamically]) AC_SUBST([DYN_LAME], [1]) DYNAMIC="1" fi AC_ARG_ENABLE([twolame], AC_HELP_STRING([--disable-twolame],[remove the capability to stream in mp2]), [maketwolame=$enableval],[maketwolame="maybe"]) if test $maketwolame != "no" ; then PKG_CHECK_MODULES([TWOLAME], [twolame], [ AC_DEFINE(HAVE_TWOLAME, 1, [Set if libtwolame was found]) AC_SUBST(HAVE_TWOLAME, 1)], [AC_SUBST(HAVE_TWOLAME, 0), if test $maketwolame = "yes" ; then AC_MSG_ERROR([libtwolame not detected but specifically requested in configure options]) else AC_MSG_WARN([IDJC will be built without libtwolame mp2 streaming support]) fi]) else AC_SUBST([HAVE_TWOLAME],[0]) fi AC_ARG_ENABLE([opus], AC_HELP_STRING([--disable-opus],[remove capability to play/stream in opus format]), [makeopus=$enableval],[makeopus="maybe"]) AC_CHECK_LIB([ogg], [ogg_stream_flush_fill],[ if test $makeopus != "no" ; then PKG_CHECK_MODULES([OPUS], [opus], [ AC_DEFINE(HAVE_OPUS, 1, [Set if libopus was found]) AC_SUBST(HAVE_OPUS, 1)], [AC_SUBST(HAVE_OPUS, 0), if test $makeopus = "yes" ; then AC_MSG_ERROR([libopus not detected but specifically requested in configure options]) else AC_MSG_WARN([IDJC will be built without opus playback or streaming support]) fi]) else AC_SUBST([HAVE_OPUS], 0) fi ], [ if test $makeopus = "yes" ; then AC_MSG_ERROR([specifically requested opus support requires newer libogg]) fi AC_MSG_WARN([opus streaming requires newer libogg]) AC_SUBST([HAVE_OPUS], 0)] ) AC_CHECK_LIB([pthread], [pthread_create], :, AC_MSG_ERROR([libpthread not detected])) # Conditionally include libm. Some standard libraries could have inbuilt math stuff. AC_CHECK_FUNCS([sqrt pow], :, [AC_CHECK_LIB([m], [sqrt, pow], AC_SUBST(LIBM, "-lm"), AC_MSG_ERROR([math library is missing critical function]))]) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([fcntl.h jack/jack.h jack/transport.h pthread.h], :, AC_MSG_ERROR([Critical header file missing])) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_PID_T AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_TYPE_SIGNAL AC_CHECK_FUNCS([memset strchr], :, AC_MSG_ERROR([Critical function missing])) AC_CHECK_FUNCS([getline strndup canonicalize_file_name], :, [AC_DEFINE([USE_BSD_COMPAT],[1], [Set if GNU extensions need to be replicated])]) # Use png or xpm for graphics AC_SUBST(EXT,[png]) PKG_CHECK_MODULES([SHOUTIDJC], [shout-idjc]) AC_CHECK_HEADERS([shoutidjc/shout.h]) AC_CHECK_LIB([shout-idjc], [shout_set_meta], :, AC_MSG_ERROR([required function not detected])) AC_CHECK_LIB([shout-idjc], [shout_set_tls], AC_SUBST(HAVE_SHOUT_TLS, 1), AC_SUBST(HAVE_SHOUT_TLS, 0)) if test x$DYNAMIC = "x1" ; then AC_CHECK_FUNCS([dlopen], :, AC_CHECK_LIB([dl], [dlopen], AC_SUBST([DYN_LIBS], [-ldl]), AC_MSG_ERROR([Runtime linking functions not found]))) AC_SUBST([DYN_LDFLAGS], [-rdynamic]) fi # Darwin based OS has different file extension for dynamic libs. AC_MSG_CHECKING([dynamic library file extension]) case ${host} in *-*-darwin*) ext=".dylib" ;; *) ext=".so" ;; esac AC_SUBST([DYLIB_EXT], ${ext}) AC_MSG_RESULT([${ext}]) AC_CONFIG_FILES([Makefile po/Makefile.in c/Makefile python/Makefile python/prelims/Makefile artwork/Makefile man/Makefile man/fr/Makefile doc/Makefile python/__init__.py.in idjc.in idjc.desktop.in idjc.appdata.xml.in]) AC_OUTPUT idjc-0.8.16/c/0000755000175000017500000000000012711167613007747 500000000000000idjc-0.8.16/c/ogg_flac_dec.c0000644000175000017500000002114312630014502012374 00000000000000/* # ogg_flac_dec.c: flac decoder for oggdec.c # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_OGGFLAC #include #include #include "oggdec.h" #include "ogg_flac_dec.h" #include "flacdecode.h" #define ACCEPTED 1 #define REJECTED 0 #define TRUE 1 #define FALSE 0 static void ogg_flacdec_cleanup(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct oggflacdec_vars *self = od->dec_data; fprintf(stderr, "ogg_flacdec_cleanup was called\n"); if (self->resample) { if (xlplayer->src_data.data_in) free(xlplayer->src_data.data_in); if (xlplayer->src_data.data_out) free(xlplayer->src_data.data_out); xlplayer->src_state = src_delete(xlplayer->src_state); } FLAC__stream_decoder_delete(self->dec); free(self); /* prevent double free */ od->dec_cleanup = NULL; od->dec_data = NULL; } /* write callback to output data with resample */ FLAC__StreamDecoderWriteStatus ogg_flacdec_write_resample_callback(const FLAC__StreamDecoder *dec, const FLAC__Frame *frame, const FLAC__int32 *const inputbuffer[], void *client_data) { struct oggdec_vars *od = client_data; struct oggflacdec_vars *self = od->dec_data; struct xlplayer *xlplayer = od->xlplayer; SRC_DATA *src_data = &xlplayer->src_data; int src_error; if (self->suppress_audio_output == FALSE) { if (frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER && frame->header.number.frame_number == 0) { fprintf(stderr, "ogg_flacdec_write_resample_callback: performance warning -- can't determine if a block is the last one or not for this file\n"); } else { if (frame->header.number.sample_number + frame->header.blocksize == od->final_granulepos[od->ix]) src_data->end_of_input = TRUE; } src_data->input_frames = frame->header.blocksize; src_data->data_in = realloc(src_data->data_in, src_data->input_frames * frame->header.channels * sizeof (float)); src_data->output_frames = ((int)(src_data->input_frames * src_data->src_ratio)) + 512; src_data->data_out = realloc(src_data->data_out, src_data->output_frames * frame->header.channels * sizeof (float)); make_flac_audio_to_float(xlplayer, src_data->data_in, inputbuffer, frame->header.blocksize, frame->header.bits_per_sample, frame->header.channels); if ((src_error = src_process(xlplayer->src_state, src_data))) { fprintf(stderr, "flac_writer_callback: src_process reports %s\n", src_strerror(src_error)); return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT; } xlplayer_demux_channel_data(xlplayer, src_data->data_out, src_data->output_frames_gen, frame->header.channels, 1.f); xlplayer_write_channel_data(xlplayer); } return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; } /* write callback to output data without resample */ FLAC__StreamDecoderWriteStatus ogg_flacdec_write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const inputbuffer[], void *client_data) { struct oggdec_vars *od = client_data; struct oggflacdec_vars *self = od->dec_data; struct xlplayer *xlplayer = od->xlplayer; if (self->suppress_audio_output == FALSE) { if ((self->flbuf = realloc(self->flbuf, sizeof (float) * frame->header.blocksize * frame->header.channels)) == NULL) { fprintf(stderr, "flac_writer_callback: malloc failure\n"); return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT; } make_flac_audio_to_float(xlplayer, self->flbuf, inputbuffer, frame->header.blocksize, frame->header.bits_per_sample, frame->header.channels); xlplayer_demux_channel_data(xlplayer, self->flbuf, frame->header.blocksize, frame->header.channels, 1.f); xlplayer_write_channel_data(xlplayer); } return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; } static void ogg_flacdec_play(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct oggflacdec_vars *self = od->dec_data; if (!(FLAC__stream_decoder_process_single(self->dec))) { fprintf(stderr, "ogg_flacdec_play: fatal error occurred reading oggflac stream\n"); fprintf(stderr, "%s\n", FLAC__stream_decoder_get_resolved_state_string(self->dec)); oggdecode_playnext(xlplayer); } else if (FLAC__stream_decoder_get_state(self->dec) == FLAC__STREAM_DECODER_END_OF_STREAM) { oggdecode_playnext(xlplayer); } } int ogg_flacdec_init(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct oggflacdec_vars *self = od->dec_data; int src_error; FLAC__StreamDecoderInitStatus status; fprintf(stderr, "ogg_flacdec_init was called\n"); if (!(self = calloc(1, sizeof (struct oggflacdec_vars)))) { fprintf(stderr, "ogg_flacdec_init: malloc failure\n"); return REJECTED; } fseeko(od->fp, od->bos_offset[od->ix], SEEK_SET); if (!(self->dec = FLAC__stream_decoder_new())) { fprintf(stderr, "ogg_flacdec_init: call to FLAC__stream_decoder_new failed\n"); return REJECTED; } if (od->samplerate[od->ix] != xlplayer->samplerate) { self->resample = TRUE; status = FLAC__stream_decoder_init_ogg_stream(self->dec, oggflac_read_callback, oggflac_seek_callback, oggflac_tell_callback, oggflac_length_callback, oggflac_eof_callback, ogg_flacdec_write_resample_callback, NULL, oggflac_error_callback, od); } else { status = FLAC__stream_decoder_init_ogg_stream(self->dec, oggflac_read_callback, oggflac_seek_callback, oggflac_tell_callback, oggflac_length_callback, oggflac_eof_callback, ogg_flacdec_write_callback, NULL, oggflac_error_callback, od); } if (status != FLAC__STREAM_DECODER_INIT_STATUS_OK) { fprintf(stderr, "ogg_flacdec_init: failed to initialise OggFLAC decoder\n"); FLAC__stream_decoder_delete(self->dec); return REJECTED; } if ((self->resample)) { fprintf(stderr, "ogg_flacdec_init: configuring resampler\n"); xlplayer->src_state = src_new(xlplayer->rsqual, (od->channels[od->ix] > 1) ? 2 : 1, &src_error); if (src_error) { fprintf(stderr, "ogg_flacdec_init: src_new reports %s\n", src_strerror(src_error)); FLAC__stream_decoder_delete(self->dec); return REJECTED; } xlplayer->src_data.output_frames = 0; xlplayer->src_data.data_in = xlplayer->src_data.data_out = NULL; xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double) od->samplerate[od->ix]; xlplayer->src_data.end_of_input = 0; } if (!(FLAC__stream_decoder_process_until_end_of_metadata(self->dec))) { if (self->resample) src_delete(xlplayer->src_state); FLAC__stream_decoder_delete(self->dec); return REJECTED; } od->dec_data = self; od->dec_cleanup = ogg_flacdec_cleanup; xlplayer->dec_play = ogg_flacdec_play; if (od->seek_s) { self->suppress_audio_output = TRUE; if (!(FLAC__stream_decoder_seek_absolute(self->dec, (FLAC__uint64)od->seek_s * od->samplerate[od->ix]))) fprintf(stderr, "ogg_flacdec_init: seek failed\n"); self->suppress_audio_output = FALSE; } fprintf(stderr, "ogg_flacdec_init: completed\n"); return ACCEPTED; } #endif /* HAVE_OGGFLAC */ idjc-0.8.16/c/bsdcompat.h0000644000175000017500000000264012630014502012002 00000000000000/* # bsdcompat.h: library functions that are missing from BSD # Copyright (C) 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef BSD_COMPAT_H #define BSD_COMPAT_H #include "gnusource.h" #ifdef USE_BSD_COMPAT #include #include float bsd_pow10f(float x); char *bsd_strndup(const char *s, size_t n); ssize_t bsd_getline(char **lineptr, size_t *n, FILE *stream); char *bsd_canonicalize_file_name(const char *path); #ifndef _GNU_SOURCE #define pow10f(x) bsd_pow10f(x) #define strndup(s, n) bsd_strndup(s, n) #define getline(l, n, s) bsd_getline(l, n, s) #define canonicalize_file_name(p) bsd_canonicalize_file_name(p) #endif /* _GNU_SOURCE */ #endif /* USE_BSD_COMPAT */ #endif /* BSD_COMPAT_H */ idjc-0.8.16/c/ogg_vorbis_dec.h0000644000175000017500000000205012630014502012774 00000000000000/* # ogg_vorbis_dec.h: vorbis decoder for oggdec.c # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include "xlplayer.h" struct vorbisdec_vars { vorbis_info vi; vorbis_comment vc; vorbis_dsp_state v; vorbis_block vb; int resample; }; int ogg_vorbisdec_init(struct xlplayer *xlplayer); idjc-0.8.16/c/ogg_flac_dec.h0000644000175000017500000000213612630014502012402 00000000000000/* # ogg_flac_dec.h: flac decoder for oggdec.c # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_OGGFLAC #include #include "xlplayer.h" struct oggflacdec_vars { FLAC__StreamDecoder *dec; int resample; int suppress_audio_output; float *flbuf; }; int ogg_flacdec_init(struct xlplayer *xlplayer); #endif /* HAVE_OGGFLAC */ idjc-0.8.16/c/kvpparse.c0000644000175000017500000000414212630014502011653 00000000000000/* # kvpparse.c: the mixer and server command parsing mechanism used by IDJC. # Copyright (C) 2005-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "gnusource.h" #include #include #include #include "kvpparse.h" #include "bsdcompat.h" static char *buffer; static void kvp_cleanup() { if (buffer) free(buffer); } int kvp_parse(struct kvpdict *kvpdict, FILE *fp) { static size_t n = 5000; char *value; ssize_t rv; if (!buffer) { if (!(buffer = malloc(n))) { fprintf(stderr, "malloc failure\n"); exit(5); } atexit(kvp_cleanup); } while (rv = getline(&buffer, &n, fp), rv > 0 && strcmp(buffer, "end\n")) { /* the following function is fed a key value pair e.g. key=value */ value = kvp_extract_value(buffer); /* key is truncated at the = */ /* value = a pointer to a copy of the value part after the '=' allocated on the heap */ if(!(kvp_apply_to_dict(kvpdict, buffer, value))) fprintf(stderr, "kvp_parse: %s=%s, key missing from dictionary\n", buffer, value); /* assuming the error message wasn't printed the associated pointer in the dictionary will have been updated */ } if (!buffer) fprintf(stderr, "getline failed to allocate a buffer in function kvp_parse\n"); return rv > 0; } idjc-0.8.16/c/oggdec.c0000644000175000017500000013336112630014502011256 00000000000000/* # oggdec.c: ogg file parser for xlplayer # Copyright (C) 2008-2013 Stephen Fairchild (s-fairchild@users.sf.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #include #include #include #include "xlplayer.h" #include "oggdec.h" #include "ogg_vorbis_dec.h" #include "ogg_opus_dec.h" #include "ogg_flac_dec.h" #include "ogg_speex_dec.h" #include "vorbistagparse.h" #define ACCEPTED 1 #define REJECTED 0 int oggdec_get_next_packet(struct oggdec_vars *self) { char *buffer; size_t bytes; int retval; while ((retval = ogg_stream_packetout(&self->os, &self->op)) == 0) { while (ogg_sync_pageout(&self->oy, &self->og) != 1) { buffer = ogg_sync_buffer(&self->oy, 8192); bytes = fread(buffer, 1, 8192, self->fp); ogg_sync_wrote(&self->oy, bytes); if (bytes == 0) { fprintf(stderr, "oggdec_get_next_packet: the end of the file appears to have been reached, unexpectedly\n"); return 0; } } if (ogg_stream_pagein(&self->os, &self->og)) { fprintf(stderr, "oggdec_get_next_packet: call to ogg_stream_pagein failed, most likely this stream is either multiplexed or improperly terminated\n"); return 0; } else if ((self->new_oggpage_callback)) self->new_oggpage_callback(self, self->new_oggpage_cb_userdata); } if (retval == -1) { fprintf(stderr, "get_next_packet: hole in data detected - possibly not serious\n"); } return 1; } static unsigned vorbis_get_samplerate(struct oggdec_vars *self) /* attempt to get ARTIST=, TITLE= also */ { vorbis_info vi; vorbis_comment vc; unsigned samplerate; vorbis_info_init(&vi); vorbis_comment_init(&vc); void obtain_tag_info(char *name, char **target, int multiple) { int tags = vorbis_comment_query_count(&vc, name); int size, i; if (tags == 0) { *target = strdup(""); return; } if (tags == 1) { *target = strdup(vorbis_comment_query(&vc, name, 0)); return; } if (multiple) { /* calculate the space needed */ size = tags; for (i = 0; i < tags; i++) size += strlen(vorbis_comment_query(&vc, name, i)); if (!(*target = malloc(size))) { *target = strdup(""); fprintf(stderr, "vorbis_get_samplerate: malloc failure\n"); return; } *target[0] = '\0'; /* collect a slash separated list of tags */ for (i = 0; i < tags; i++) { strcat(*target, vorbis_comment_query(&vc, name, i)); if (i < tags - 1) strcat(*target, "/"); } } else { /* grab the last comment when only a single will do */ *target = strdup(vorbis_comment_query(&vc, name, tags - 1)); } } /* enforce that first header yields the sample rate, that granule pos for the header is zero and */ /* that the third and final header finishes on a page boundary */ if (oggdec_get_next_packet(self) && vorbis_synthesis_headerin(&vi, &vc, &self->op) >= 0 && vi.rate && oggdec_get_next_packet(self) && vorbis_synthesis_headerin(&vi, &vc, &self->op) >= 0 && oggdec_get_next_packet(self) && vorbis_synthesis_headerin(&vi, &vc, &self->op) >= 0 && self->op.granulepos == 0 && ogg_stream_packetout(&self->os, &self->op) == 0 && oggdec_get_next_packet(self) && ogg_page_continued(&self->og) == 0) { samplerate = self->samplerate[self->ix] = vi.rate; self->channels[self->ix] = vi.channels; if (vorbis_comment_query_count(&vc, "trk-title")) { obtain_tag_info("trk-artist", &self->artist[self->ix], TRUE); obtain_tag_info("trk-title", &self->title[self->ix], TRUE); obtain_tag_info("trk-album", &self->album[self->ix], TRUE); } else { obtain_tag_info("artist", &self->artist[self->ix], TRUE); obtain_tag_info("title", &self->title[self->ix], TRUE); obtain_tag_info("album", &self->album[self->ix], TRUE); } obtain_tag_info("replaygain_track_gain", &self->replaygain[self->ix], FALSE); obtain_tag_info("replaygain_reference_loudness", &self->rgloudness[self->ix], FALSE); } else { fprintf(stderr, "vorbis_get_samplerate: non standard ogg/vorbis header found\n"); samplerate = 0; self->channels[self->ix] = 0; } vorbis_comment_clear(&vc); vorbis_info_clear(&vi); return samplerate; } #ifdef HAVE_OGGFLAC FLAC__StreamDecoderReadStatus oggflac_read_callback(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data) { struct oggdec_vars *self = client_data; off_t bytes_remaining; if (self->ix == self->n_streams - 1) bytes_remaining = self->eos_offset - ftello(self->fp); else bytes_remaining = self->bos_offset[self->ix + 1] - ftello(self->fp); if (bytes_remaining < 0 || *bytes <= 0) return FLAC__STREAM_DECODER_READ_STATUS_ABORT; if (*bytes > (size_t)bytes_remaining) *bytes = bytes_remaining; *bytes = fread(buffer, sizeof (FLAC__byte), *bytes, self->fp); if (ferror(self->fp)) return FLAC__STREAM_DECODER_READ_STATUS_ABORT; if (*bytes == 0) return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM; return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE; } FLAC__StreamDecoderSeekStatus oggflac_seek_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data) { struct oggdec_vars *self = client_data; off_t start_bound, end_bound; start_bound = self->bos_offset[self->ix]; if (self->ix == self->n_streams - 1) end_bound = self->eos_offset - start_bound; else end_bound = self->bos_offset[self->ix + 1] - start_bound; if (absolute_byte_offset > (FLAC__uint64)(end_bound - start_bound)) { fprintf(stderr, "oggflac_seek_callback: seek error1\n"); return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR; } if (fseeko(self->fp, start_bound + (off_t)absolute_byte_offset, SEEK_SET) < 0) { fprintf(stderr, "oggflac_seek_callback: seek error2\n"); return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR; } return FLAC__STREAM_DECODER_SEEK_STATUS_OK; } FLAC__StreamDecoderTellStatus oggflac_tell_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data) { struct oggdec_vars *self = client_data; off_t where; where = ftello(self->fp); if (where < self->bos_offset[self->ix]) return FLAC__STREAM_DECODER_TELL_STATUS_ERROR; if (self->ix != self->n_streams - 1) { if (where > self->bos_offset[self->ix + 1]) return FLAC__STREAM_DECODER_TELL_STATUS_ERROR; } else { if (where > self->eos_offset) return FLAC__STREAM_DECODER_TELL_STATUS_ERROR; } *absolute_byte_offset = (FLAC__uint64)(where - self->bos_offset[self->ix]); return FLAC__STREAM_DECODER_TELL_STATUS_OK; } FLAC__StreamDecoderLengthStatus oggflac_length_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) { struct oggdec_vars *self = client_data; if (self->ix == self->n_streams - 1) *stream_length = self->eos_offset - self->bos_offset[self->ix]; else *stream_length = self->bos_offset[self->ix + 1] - self->bos_offset[self->ix]; return FLAC__STREAM_DECODER_LENGTH_STATUS_OK; } FLAC__bool oggflac_eof_callback(const FLAC__StreamDecoder *decoder, void *client_data) { struct oggdec_vars *self = client_data; off_t offset; offset = ftello(self->fp) + self->bos_offset[self->ix]; if (self->ix == self->n_streams - 1) return offset >= self->eos_offset; else return offset >= self->bos_offset[self->ix + 1]; } static void oggflac_metadata_callback(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data) { struct oggdec_vars *self = client_data; const FLAC__StreamMetadata_StreamInfo *si; const FLAC__StreamMetadata_VorbisComment *vc; int use_alt_tags; int match(char *t, char *comment) { return !strncasecmp(t, comment, strlen(t)); } char *end(char *t) { while (*t++ != '='); while (isspace(*t) && t != '\0') t++; return t; } void copy_tag(char *t, char **target, int multiple) { char *old, *new; for (unsigned j = 0; j < vc->num_comments; j++) { if (match(t, (char *)vc->comments[j].entry)) { old = strdup(*target); new = end((char *)vc->comments[j].entry); *target = realloc(*target, strlen(old) + strlen(new) + 2); if (old[0] && multiple) sprintf(*target, "%s/%s", old, new); else strcpy(*target, new); free(old); } } if (*target == NULL) *target = strdup(""); } if (metadata->type == FLAC__METADATA_TYPE_STREAMINFO) { fprintf(stderr, "oggflac_metadata_callback: got streaminfo metadata block\n"); si = &metadata->data.stream_info; fprintf(stderr, "Sample rate in comment block is %u\n", si->sample_rate); fprintf(stderr, "Number of channels in comment block is %u\n", si->channels); self->samplerate[self->ix] = si->sample_rate; self->channels[self->ix] = si->channels; } else if (metadata->type == FLAC__METADATA_TYPE_VORBIS_COMMENT) { fprintf(stderr, "oggflac_metadata_callback: got vorbis comment metadata block\n"); vc = &metadata->data.vorbis_comment; fprintf(stderr, "There are %u comment tags\n", (unsigned)vc->num_comments); use_alt_tags = FALSE; for (unsigned i = 0; i < vc->num_comments; i++) { if (match("trk-title", (char *)vc->comments[i].entry)) use_alt_tags = TRUE; fprintf(stderr, "%s\n", vc->comments[i].entry); } if (use_alt_tags) { copy_tag("trk-artist=", &self->artist[self->ix], TRUE); copy_tag("trk-title=", &self->title[self->ix], TRUE); copy_tag("trk-album=", &self->album[self->ix], TRUE); } else { copy_tag("artist=", &self->artist[self->ix], TRUE); copy_tag("title=", &self->title[self->ix], TRUE); copy_tag("album=", &self->album[self->ix], TRUE); } copy_tag("replaygain_track_gain=", &self->replaygain[self->ix], FALSE); copy_tag("replaygain_reference_loudness=", &self->rgloudness[self->ix], FALSE); } else fprintf(stderr, "oggflac_metadata_callback: unhandled FLAC metadata type\n"); fprintf(stderr, "oggflac_metadata_callback: finished\n"); } static FLAC__StreamDecoderWriteStatus oggflac_write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data) { return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; } void oggflac_error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus se, void *client_data) { switch (se) { case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC: fprintf(stderr, "oggflac_error_callback: flac decoder error, lost sync\n"); break; case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER: fprintf(stderr, "oggflac_error_callback: flac decoder error, bad header\n"); break; case FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH: fprintf(stderr, "oggflac_error_callback: flac decoder error, frame crc mismatch\n"); break; default: fprintf(stderr, "oggflac_error_callback: flac decoder error, unknown error\n"); } } static int flac_get_samplerate(struct oggdec_vars *self) { FLAC__StreamDecoder *decoder; if (!(decoder = FLAC__stream_decoder_new())) { fprintf(stderr, "flac_get_samplerate: call to FLAC__stream_decoder_new failed\n"); return 0; } FLAC__stream_decoder_set_metadata_respond(decoder, FLAC__METADATA_TYPE_VORBIS_COMMENT); if (FLAC__stream_decoder_init_ogg_stream(decoder, oggflac_read_callback, oggflac_seek_callback, oggflac_tell_callback, oggflac_length_callback, oggflac_eof_callback, oggflac_write_callback, oggflac_metadata_callback, oggflac_error_callback, self) != FLAC__STREAM_DECODER_INIT_STATUS_OK) { fprintf(stderr, "flac_get_samplerate: call to FLAC__stream_decoder_init_stream failed\n"); FLAC__stream_decoder_delete(decoder); return 0; } FLAC__stream_decoder_process_until_end_of_metadata(decoder); FLAC__stream_decoder_delete(decoder); return self->samplerate[self->ix]; } #endif /* HAVE_OGGFLAC */ #ifdef HAVE_SPEEX static int speex_get_samplerate(struct oggdec_vars *self) { SpeexHeader *h; /* enforce that the speex header packet be in it's own ogg page */ if (oggdec_get_next_packet(self) && ogg_stream_packetout(&self->os, &self->op) == 0 && (h = speex_packet_to_header((char *)self->op.packet, self->op.bytes))) { switch (self->channels[self->ix] = h->nb_channels) { case 1: case 2: self->samplerate[self->ix] = h->rate; speex_header_free(h); if (oggdec_get_next_packet(self) && ogg_stream_packetout(&self->os, &self->op) == 0) { struct vtag *tag; int error; if ((tag = vtag_parse((char *)self->op.packet, self->op.bytes, &error))) { if (!(self->artist[self->ix] = vtag_lookup(tag, "trk-author", VLM_MERGE, "/"))) if (!(self->artist[self->ix] = vtag_lookup(tag, "trk-artist", VLM_MERGE, "/"))) if (!(self->artist[self->ix] = vtag_lookup(tag, "author", VLM_MERGE, "/"))) if (!(self->artist[self->ix] = vtag_lookup(tag, "artist", VLM_MERGE, "/"))) self->artist[self->ix] = strdup(""); if (!(self->title[self->ix] = vtag_lookup(tag, "trk-title", VLM_MERGE, "/"))) if (!(self->title[self->ix] = vtag_lookup(tag, "title", VLM_MERGE, "/"))) self->title[self->ix] = strdup(""); if (!(self->album[self->ix] = vtag_lookup(tag, "trk-album", VLM_MERGE, "/"))) if (!(self->album[self->ix] = vtag_lookup(tag, "album", VLM_MERGE, "/"))) self->album[self->ix] = strdup(""); vtag_cleanup(tag); } else { fprintf(stderr, "%s\n", vtag_strerror(error)); return 0; } } else return 0; return self->samplerate[self->ix]; default: speex_header_free(h); fprintf(stderr, "speex_get_samplerate: header indicates an unsupported number of audio channels\n"); return 0; } } else { fprintf(stderr, "speex_get_samplerate: failed to get speex header\n"); return 0; } } #endif /* HAVE_SPEEX */ #ifdef HAVE_OPUS static int opus_get_samplerate(struct oggdec_vars *self) { int channels, chanmap, streamcount, streamcount_2c, frames, samples, packetsamples; unsigned initial_granulepos, final_granulepos; uint16_t preskip; char const *reason; #define FAIL(x) do {reason = x; goto fail_point;} while(0) #define WARN(x) do {fprintf(stderr, "opus_get_samplerate: warning: %s\n", x);} while (0) if ((final_granulepos = self->final_granulepos[self->ix]) == 0) FAIL("stream final packet granule count is zero"); if (oggdec_get_next_packet(self) && ogg_stream_packetout(&self->os, &self->op) == 0) { if (ogg_page_granulepos(&self->og) != 0) FAIL("non zero granule position"); if (ogg_page_packets(&self->og) != 1 || ogg_page_continued(&self->og) || ogg_page_pageno(&self->og) != 0) FAIL("bad header page alignment"); if (self->op.bytes < 19) FAIL("packet too small to be version 1"); if (self->op.packet[8] > 15) FAIL("encapsulation version unsupported"); if ((channels = ((unsigned char *)self->op.packet)[9]) == 0) FAIL("number of channels is zero"); self->channels[self->ix] = (channels == 1) ? 1 : 2; chanmap = ((unsigned char *)self->op.packet)[18]; if (chanmap > 1) FAIL("unsupported channel map"); if ((chanmap == 0 && channels > 2) || (chanmap == 1 && channels > 8)) FAIL("too many channels for given channel mapping"); if (chanmap == 0 && self->op.bytes != 19) FAIL("OpusHead packet size wrong"); if (chanmap == 1) { if (self->op.bytes != 21 + channels) FAIL("OpusHead packet size wrong"); streamcount = ((unsigned char *)self->op.packet)[19]; streamcount_2c = ((unsigned char *)self->op.packet)[20]; if (streamcount == 0) FAIL("streamcount is zero"); if (streamcount_2c > streamcount) FAIL("two channel streamcount > total streamcount"); if (streamcount_2c + streamcount > 255) FAIL("combined streamcount quantity exceeds 255"); unsigned char *cm = self->op.packet + 21; int index; for (int i = 0; i < channels; ++i) { index = *cm++; if (index != 255 && index >= streamcount + streamcount_2c) FAIL("bad channel map"); } } preskip = self->op.packet[10] | (uint16_t)((unsigned char *)self->op.packet)[11] << 8; if (preskip >= final_granulepos) FAIL("no samples to decode after preskip"); if (oggdec_get_next_packet(self) && ogg_stream_packetout(&self->os, &self->op) == 0) { if (ogg_page_packets(&self->og) != 1 || ogg_page_continued(&self->og) || ogg_page_pageno(&self->og) < 1) FAIL("bad header page alignment"); if (ogg_page_granulepos(&self->og) != 0) FAIL("non zero granule position"); if (self->op.bytes >= 8 && !memcmp(self->op.packet, "OpusTags", 8)) { struct vtag *tag; int error; if ((tag = vtag_parse((char *)self->op.packet + 8, self->op.bytes - 8, &error))) { if (!(self->artist[self->ix] = vtag_lookup(tag, "trk-author", VLM_MERGE, "/"))) if (!(self->artist[self->ix] = vtag_lookup(tag, "trk-artist", VLM_MERGE, "/"))) if (!(self->artist[self->ix] = vtag_lookup(tag, "author", VLM_MERGE, "/"))) if (!(self->artist[self->ix] = vtag_lookup(tag, "artist", VLM_MERGE, "/"))) self->artist[self->ix] = strdup(""); if (!(self->title[self->ix] = vtag_lookup(tag, "trk-title", VLM_MERGE, "/"))) if (!(self->title[self->ix] = vtag_lookup(tag, "title", VLM_MERGE, "/"))) self->title[self->ix] = strdup(""); if (!(self->album[self->ix] = vtag_lookup(tag, "trk-album", VLM_MERGE, "/"))) if (!(self->album[self->ix] = vtag_lookup(tag, "album", VLM_MERGE, "/"))) self->album[self->ix] = strdup(""); if (!(self->artist || self->title || self->album)) FAIL("malloc failure"); int track_gain_tags = vtag_comment_count(tag, "R128_TRACK_GAIN"); char *track_gain_text = vtag_lookup(tag, "R128_TRACK_GAIN", VLM_FIRST, NULL); vtag_cleanup(tag); switch (track_gain_tags) { case 0: break; case 1: if (!track_gain_text) FAIL("vtag lookup failure"); if (isspace(track_gain_text[0])) FAIL("R128_TRACK_GAIN contains whitespace at start"); char *endp; long value = strtol(track_gain_text, &endp, 10); int endchar = *endp; free(track_gain_text); if (endchar) FAIL("R128_TRACK_GAIN contains non digit data"); if (endp - track_gain_text > 6 || value < -32768 || value > 32767) FAIL("R128_TRACK_GAIN value out of range"); break; default: free(track_gain_text); FAIL("too many R128_TRACK_GAIN tags"); } } else FAIL(vtag_strerror(error)); } else FAIL("bad or missing OpusTags packet"); } else FAIL("failed to get OpusTags packet"); if (oggdec_get_next_packet(self)) { if ((frames = opus_packet_get_nb_frames(self->op.packet, self->op.bytes)) < 1) FAIL("first packet has no frames"); samples = packetsamples = opus_packet_get_samples_per_frame(self->op.packet, 48000) * frames; while (self->op.granulepos == -1) { oggdec_get_next_packet(self); if ((frames = opus_packet_get_nb_frames(self->op.packet, self->op.bytes)) < 1) FAIL("packet with no frames detected"); samples += opus_packet_get_samples_per_frame(self->op.packet, 48000) * frames; } if (self->op.e_o_s) { if (samples - self->op.granulepos > packetsamples) WARN("end trimming > size of one packet"); } else { if (self->op.granulepos < samples) FAIL("first page granule position less than number of samples, end of stream not set"); if ((initial_granulepos = self->initial_granulepos[self->ix] = self->op.granulepos - samples)) { if (preskip >= final_granulepos - initial_granulepos) FAIL("no samples to decode after accounting for initial granulepos"); if (initial_granulepos % samples) WARN("can't assign initial granulepos to a specific page"); else { unsigned int pages_missing = initial_granulepos / samples; if (ogg_page_pageno(&self->og) - pages_missing != 2) WARN("opus_get_samplerate: ogg page numbering granulepos mismatch"); else fprintf(stderr, "there are %u ogg pages missing -- this is normal for a captured stream\n", pages_missing); } if (samples - (final_granulepos - initial_granulepos) % samples > packetsamples) WARN("end trimming > size of one packet"); } } } else FAIL("failed to get first data packet"); } else FAIL("failed to get OpusHead packet"); return self->samplerate[self->ix] = 48000; /* Opus always uses this rate */ #undef FAIL #undef WARN fail_point: fprintf(stderr, "opus_get_samplerate: opus header sanity check failed: %s\n", reason); return 0; } #endif /* HAVE_OPUS */ /* oggscan_eos: perform a binary search on the ogg file for the e_o_s page * and log details of the current logical stream when it is found */ static off_t oggscan_eos(struct oggdec_vars *self, off_t offset, off_t offset_end, int serial, int depth) { char *buffer; size_t bytes; off_t retval; off_t midpoint = (offset_end - offset) / 2 + offset; off_t stored_mid = midpoint; int eos = FALSE, terminate = FALSE; if (++depth >= 40) { fprintf(stderr, "maximum recursion depth %d reached on oggscan_eos\n", depth); return -1; } fseeko(self->fp, midpoint, SEEK_SET); ogg_sync_reset(&self->oy); while ((retval = ogg_sync_pageseek(&self->oy, &self->og)) <= 0) { if (retval < 0) { midpoint -= retval; if (midpoint >= offset_end) return oggscan_eos(self, offset, stored_mid, serial, depth); } else { buffer = ogg_sync_buffer(&self->oy, 8192); bytes = fread(buffer, 1, 8192, self->fp); ogg_sync_wrote(&self->oy, bytes); if (bytes == 0) { if (offset_end > midpoint) return oggscan_eos(self, offset, midpoint, serial, depth); fprintf(stderr, "oggscan_eos: unexpected file io error, the file is probably truncated\n"); terminate = TRUE; midpoint = offset_end; retval = 0; break; } } } if (terminate || ogg_page_serialno(&self->og) == serial) { if (terminate || (eos = ogg_page_eos(&self->og)) || offset + 1 >= offset_end) { /* we have found the last packet in the logical stream */ /* make space for data about this logical stream */ self->n_streams++; self->bos_offset = realloc(self->bos_offset, self->n_streams * sizeof (off_t)); self->initial_granulepos = realloc(self->initial_granulepos, self->n_streams * sizeof (unsigned)); self->final_granulepos = realloc(self->final_granulepos, self->n_streams * sizeof (unsigned)); self->samplerate = realloc(self->samplerate, self->n_streams * sizeof (int)); self->channels = realloc(self->channels, self->n_streams * sizeof (int)); self->serial = realloc(self->serial, self->n_streams * sizeof (int)); self->artist = realloc(self->artist, self->n_streams * sizeof (char *)); self->artist[self->n_streams - 1] = strdup(""); self->title = realloc(self->title, self->n_streams * sizeof (char *)); self->title[self->n_streams - 1] = strdup(""); self->album = realloc(self->album, self->n_streams * sizeof (char *)); self->album[self->n_streams - 1] = strdup(""); self->replaygain = realloc(self->replaygain, self->n_streams * sizeof (char *)); self->replaygain[self->n_streams - 1] = strdup(""); self->rgloudness = realloc(self->rgloudness, self->n_streams * sizeof (char *)); self->rgloudness[self->n_streams - 1] = strdup(""); self->streamtype = realloc(self->streamtype, self->n_streams * sizeof (enum streamtype_t)); self->start_time = realloc(self->start_time, self->n_streams * sizeof (double)); self->duration = realloc(self->duration, self->n_streams * sizeof (double)); if (!(self->bos_offset && self->initial_granulepos && self->final_granulepos && self->serial)) { fprintf(stderr, "oggscan_eos: malloc failure\n"); self->n_streams = 0; return -1; } self->initial_granulepos[self->n_streams - 1] = 0; self->final_granulepos[self->n_streams - 1] = ogg_page_granulepos(&self->og); self->serial[self->n_streams - 1] = serial; if (!eos) fprintf(stderr, "oggscan_eos: an unterminated stream was detected\n"); return midpoint + retval; } /* seek to the right next time */ return oggscan_eos(self, midpoint, offset_end, serial, depth); } else { if (midpoint >= offset_end) { fprintf(stderr, "oggscan_eos: warning, end of stream page appears to be missing for ogg serial %d\n", serial); return -1; } /* seek to the left next time */ return oggscan_eos(self, offset, midpoint, serial, depth); } } /* oggscan: linear search looking for beginnings of logical ogg bitstreams */ static off_t oggscan(struct oggdec_vars *self, off_t *offset, off_t offset_end) { char *buffer; size_t bytes; int serial; off_t retval; fseeko(self->fp, *offset, SEEK_SET); ogg_sync_reset(&self->oy); while ((retval = ogg_sync_pageseek(&self->oy, &self->og)) <= 0 || ogg_page_bos(&self->og) == 0) { if (retval < 0) *offset -= retval; else if (retval == 0) { buffer = ogg_sync_buffer(&self->oy, 8192); bytes = fread(buffer, 1, 8192, self->fp); ogg_sync_wrote(&self->oy, bytes); if (bytes == 0) return -1; /* was offset_end */ } else *offset += retval; } serial = ogg_page_serialno(&self->og); return oggscan_eos(self, *offset, offset_end, serial, 0); } static struct oggdec_vars *oggdecode_get_metadata(char *pathname) { struct oggdec_vars *self; long id3size = 0; off_t offset = 0, offset_end, offset_new; size_t bytes; char *buffer; int i; unsigned samplerate = 0; double start_time = 0.0; /* allocate storage space */ if (!(self = calloc(1, sizeof (struct oggdec_vars)))) { fprintf(stderr, "oggdecode_reg: malloc failure\n"); return NULL; } self->magic = 4747; /* open the media file */ if (!(self->fp = fopen(pathname, "r"))) { fprintf(stderr, "oggdecode_reg: unable to open media file %s\n", pathname); free(self); return NULL; } /* jump past the ID3 version 2 tag if one is found */ if (fgetc(self->fp) == 'I' && fgetc(self->fp) == 'D' && fgetc(self->fp) == '3' && fgetc(self->fp) != '\xFF' && fgetc(self->fp) != '\xFF') { fprintf(stderr, "ID3 tag detected\n"); fgetc(self->fp); id3size = fgetc(self->fp); id3size <<= 7; id3size |= fgetc(self->fp); id3size <<= 7; id3size |= fgetc(self->fp); id3size <<= 7; id3size |= fgetc(self->fp); offset += id3size; } if (ogg_sync_init(&self->oy)) { fprintf(stderr, "oggdecode_reg: call to ogg_sync_init_failed\n"); fclose(self->fp); free(self); return NULL; } if (ogg_stream_init(&self->os, 0)) { fprintf(stderr, "oggdecode_reg: call to ogg_stream_init failed\n"); ogg_sync_clear(&self->oy); fclose(self->fp); free(self); return NULL; } fseek(self->fp, 0, SEEK_END); offset_end = self->eos_offset = ftello(self->fp); while (offset < offset_end) { offset_new = oggscan(self, &offset, offset_end); if (offset_new == -1) break; self->bos_offset[self->n_streams -1] = offset; offset = offset_new; } for (self->ix = i = 0; i < self->n_streams; i++, self->ix++) { ogg_stream_reset_serialno(&self->os, self->serial[i]); fseeko(self->fp, self->bos_offset[i], SEEK_SET); ogg_sync_reset(&self->oy); while (ogg_sync_pageout(&self->oy, &self->og) != 1) { buffer = ogg_sync_buffer(&self->oy, 8192); bytes = fread(buffer, 1, 8192, self->fp); ogg_sync_wrote(&self->oy, bytes); } ogg_stream_pagein(&self->os, &self->og); ogg_stream_packetpeek(&self->os, &self->op); do { if (self->op.bytes >= 7 && !memcmp(self->op.packet, "\x01vorbis", 7)) { self->streamtype[i] = ST_VORBIS; samplerate = vorbis_get_samplerate(self); break; } #ifdef HAVE_OGGFLAC if (self->op.bytes >= 5 && !memcmp(self->op.packet, "\x7F""FLAC", 5)) { self->streamtype[i] = ST_FLAC; fseeko(self->fp, self->bos_offset[i], SEEK_SET); samplerate = flac_get_samplerate(self); break; } #endif /* HAVE_OGGFLAC */ #ifdef HAVE_SPEEX if (self->op.bytes >= 5 && !memcmp(self->op.packet, "Speex", 5)) { self->streamtype[i] = ST_SPEEX; samplerate = speex_get_samplerate(self); break; } #endif /* HAVE_SPEEX */ #ifdef HAVE_OPUS if (self->op.bytes >= 8 && !memcmp(self->op.packet, "OpusHead", 8)) { self->streamtype[i] = ST_OPUS; samplerate = opus_get_samplerate(self); break; } #endif /* HAVE_OPUS */ self->streamtype[i] = ST_UNHANDLED; fprintf(stderr, "??? unhandled ogg stream type ???\n"); } while (0); self->start_time[i] = start_time; if (samplerate == 0) { self->streamtype[i] = ST_UNHANDLED; self->duration[i] = 0; } else { start_time += self->duration[i] = (self->final_granulepos[i] - self->initial_granulepos[i]) / (double)samplerate; self->total_duration += self->duration[i]; } #if 0 fprintf(stderr, "#####################\n" "beginning offset %d\n" "initial_granulepos %d\n" "final_granulepos %d\n" "serial number %d\n" "artist %s\n" "title %s\n" "album %s\n" "samplerate %d\n" "channels %d\n" "start time (s) %lf\n" "duration (s) %lf\n", (int)self->bos_offset[i], self->initial_granulepos[i], self->final_granulepos[i], self->serial[i], self->artist[i], self->title[i], self->album[i], samplerate, self->channels[i], self->start_time[i], self->duration[i]); #endif } fprintf(stderr, "total_duration %lf\n", self->total_duration); return self; } static void oggdecode_free_metadata(struct oggdec_vars *self) { int i; ogg_stream_clear(&self->os); ogg_sync_clear(&self->oy); fclose(self->fp); if (self->n_streams) { for (i = 0; i < self->n_streams; i++) { if (self->artist[i]) free(self->artist[i]); if (self->title[i]) free(self->title[i]); if (self->album[i]) free(self->album[i]); } free(self->bos_offset); free(self->initial_granulepos); free(self->final_granulepos); free(self->serial); free(self->artist); free(self->title); free(self->album); free(self->streamtype); free(self->start_time); free(self->duration); } free(self); } void oggdecode_seek_to_packet(struct oggdec_vars *self) { off_t start, end, mid; long retval; int target; ogg_int64_t granulepos = 0; char *buffer; size_t bytes; start = self->bos_offset[self->ix]; if (self->ix == self->n_streams - 1) end = self->eos_offset; else end = self->bos_offset[self->ix + 1]; target = self->seek_s * self->samplerate[self->ix]; while (start + 1 < end) { mid = (end - start) / 2 + start; fseeko(self->fp, mid, SEEK_SET); ogg_sync_reset(&self->oy); for (;;) { while ((retval = ogg_sync_pageseek(&self->oy, &self->og)) <= 0) { if (retval < 0) { if (mid > end) { fprintf(stderr, "ogg_vorbisdec_seek: mid > end ???\n"); return; } } else { buffer = ogg_sync_buffer(&self->oy, 8192); bytes = fread(buffer, 1, 8192, self->fp); ogg_sync_wrote(&self->oy, bytes); if (bytes == 0) { fprintf(stderr, "ogg_vorbisdec_seek: unexpected file io error\n"); return; } } } if ((granulepos = ogg_page_granulepos(&self->og) - self->initial_granulepos[self->ix]) >= 0) break; } if (granulepos < target) start = mid + retval; else end = mid; } ogg_stream_reset(&self->os); } void oggdecode_dynamic_dispatcher(struct xlplayer *xlplayer) { struct oggdec_vars *s = xlplayer->dec_data; int success = 0, delay; if (xlplayer->write_deferred) { xlplayer_write_channel_data(xlplayer); return; } while (s->ix < s->n_streams) { /* skip over empty (read unplayable) streams */ while (s->duration[s->ix] == 0.0) if (++(s->ix) >= s->n_streams) goto bugout; /* choose our decoder */ switch (s->streamtype[s->ix]) { case ST_VORBIS: success = ogg_vorbisdec_init(xlplayer); break; case ST_FLAC: #ifdef HAVE_OGGFLAC success = ogg_flacdec_init(xlplayer); #endif break; case ST_SPEEX: #ifdef HAVE_SPEEX success = ogg_speexdec_init(xlplayer); #endif break; case ST_OPUS: #ifdef HAVE_OPUS success = ogg_opusdec_init(xlplayer); #endif break; case ST_UNHANDLED: default: break; } if (success) { if (xlplayer->usedelay) delay = xlplayer_calc_rbdelay(xlplayer); else delay = 0; if (s->artist[s->ix][0] || s->title[s->ix][0]) xlplayer_set_dynamic_metadata(xlplayer, DM_SPLIT_U8, s->artist[s->ix], s->title[s->ix], s->album[s->ix], delay); else { fprintf(stderr, "oggdecode_dynamic_dispatcher: insufficient metadata\n"); xlplayer_set_dynamic_metadata(xlplayer, DM_NOTAG, "", "", "", delay); } xlplayer->usedelay = TRUE; return; } else { xlplayer->play_progress_ms += 1000 * (int32_t)(s->duration[s->ix] - s->seek_s); s->seek_s = 0.0; s->ix++; } } bugout: xlplayer->playmode = PM_EJECTING; } static void oggdecode_eject(struct xlplayer *xlplayer) { struct oggdec_vars *self = xlplayer->dec_data; if (self->dec_cleanup) self->dec_cleanup(xlplayer); oggdecode_free_metadata(self); xlplayer->playmode = PM_STOPPED; } static void oggdecode_init(struct xlplayer *xlplayer) { struct oggdec_vars *self = xlplayer->dec_data; int i; /* calculate where we seek to */ for (i = 0; i < self->n_streams; i++) { if (self->start_time[i] <= xlplayer->seek_s && xlplayer->seek_s < self->start_time[i] + self->duration[i]) { /* note which stream to play first and the time offset within */ self->ix = i; self->seek_s = xlplayer->seek_s - self->start_time[i]; break; } if (i + 1 >= self->n_streams) xlplayer->playmode = PM_FLUSH; } } void oggdecode_set_new_oggpage_callback(struct oggdec_vars *self, void (*cb)(struct oggdec_vars *, void *), void *user_data) { self->new_oggpage_callback = cb; self->new_oggpage_cb_userdata = user_data; } void oggdecode_remove_new_oggpage_callback(struct oggdec_vars *self) { self->new_oggpage_callback = NULL; self->new_oggpage_cb_userdata = NULL; } void oggdecode_playnext(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; od->dec_cleanup(xlplayer); /* dispose of decoder */ /* proceed with decoding the next stream */ od->seek_s = 0.0; od->ix++; xlplayer->dec_play = oggdecode_dynamic_dispatcher; } int oggdecode_reg(struct xlplayer *xlplayer) { struct oggdec_vars *self; if (!(self = oggdecode_get_metadata(xlplayer->pathname))) return REJECTED; else { self->xlplayer = xlplayer; xlplayer->dec_data = self; xlplayer->dec_init = oggdecode_init; xlplayer->dec_play = oggdecode_dynamic_dispatcher; xlplayer->dec_eject = oggdecode_eject; return ACCEPTED; } } int oggdecode_get_metainfo(char *pathname, char **artist, char **title, char **album, double *length, char **replaygain, char **rgloudness) { struct oggdec_vars *self; int has_pbtime; if(!(self = oggdecode_get_metadata(pathname))) { fprintf(stderr, "call to oggdecode_get_metadata failed for %s\n", pathname); return REJECTED; } if ((has_pbtime = (*length = self->total_duration))) { if (self->n_streams > 1 && self->duration[0] > 0.1) { /* only read the initial tags of chained ogg streams when they * possess a metaheader */ *artist = realloc(*artist, 1); *title = realloc(*title, 1); *album = realloc(*album, 1); *replaygain = realloc(*replaygain, 1); *rgloudness = realloc(*rgloudness, 1); *artist[0] = *title[0] = *album[0] = *replaygain[0] = *rgloudness[0] = '\0'; } else { if (self->artist[0]) { if (*artist) free(*artist); *artist = strdup(self->artist[0]); } else { *artist = realloc(*artist, 1); *artist[0] = '\0'; } if (self->title[0]) { if (*title) free(*title); *title = strdup(self->title[0]); } else { *title = realloc(*title, 1); *title[0] = '\0'; } if (self->album[0]) { if (*album) free(*album); *album = strdup(self->album[0]); } else { *album = realloc(*album, 1); *album[0] = '\0'; } if (self->replaygain[0]) { if (*replaygain) free(*replaygain); *replaygain = strdup(self->replaygain[0]); } else { *replaygain = realloc(*replaygain, 1); *replaygain[0] = '\0'; } if (self->rgloudness[0]) { if (*rgloudness) free(*rgloudness); *rgloudness = strdup(self->rgloudness[0]); } else { *rgloudness = realloc(*rgloudness, 1); *rgloudness[0] = '\0'; } } } oggdecode_free_metadata(self); return has_pbtime ? ACCEPTED : REJECTED; } idjc-0.8.16/c/live_mp2_encoder.h0000644000175000017500000000241012630014502013235 00000000000000/* # live_mp2_encoder.h: encode mp2 files from a live source # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_TWOLAME #include "twolame.h" #include "sourceclient.h" struct lm2e_data { twolame_options *gfp; TWOLAME_MPEG_version mpeg_version; TWOLAME_MPEG_mode mpeg_mode; char *metadata; int twolame_samples; unsigned char *mp2buf; size_t mp2bufsize; enum packet_flags packetflags; }; int live_mp2_encoder_init(struct encoder *encoder, struct encoder_vars *ev); #endif /* HAVE_TWOLAME */ idjc-0.8.16/c/avcodec_encoder.h0000644000175000017500000000245112630014502013131 00000000000000/* # avcodec_encoder.h: encode using libavcodec # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_AVCODEC #include #include "sourceclient.h" struct avenc_data { AVCodec *codec; AVCodecContext *c; AVPacket avpkt; AVFrame *decoded_frame; size_t inbufsize; uint8_t *inbuf; unsigned long samples_written; enum packet_flags pkt_flags; char *metadata; }; int live_avcodec_encoder_init(struct encoder *encoder, struct encoder_vars *ev); #endif /* HAVE_AVCODEC */ int live_avcodec_encoder_aac_functionality(); idjc-0.8.16/c/ogg_speex_dec.c0000644000175000017500000003063212630014502012616 00000000000000/* # ogg_speex_dec.c: speex decoder for oggdec.c # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_SPEEX #include #include #include #include "oggdec.h" #include "ogg_speex_dec.h" #define ACCEPTED 1 #define REJECTED 0 #define TRUE 1 #define FALSE 0 static void ogg_speexdec_cleanup(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct speexdec_vars *self = od->dec_data; fprintf(stderr, "ogg_speexdec_cleanup was called\n"); oggdecode_remove_new_oggpage_callback(od); src_delete(xlplayer->src_state); free(self->frame); free(xlplayer->src_data.data_out); speex_bits_destroy(&self->bits); speex_decoder_destroy(self->dec_state); free(self); /* prevent this being called again */ od->dec_cleanup = NULL; od->dec_data = NULL; } /* ogg_speexdec_new_oggpage: a callback routine from oggdec_get_next_packet */ static void ogg_speexdec_new_oggpage(struct oggdec_vars *od, void *user_data) { struct speexdec_vars *self = user_data; self->page_granule = ogg_page_granulepos(&od->og); if (self->last_granule == -1) self->last_granule = self->page_granule; self->page_nb_packets = ogg_page_packets(&od->og); if (self->page_granule > 0 && self->frame_size) { self->skip_samples = self->page_nb_packets * self->frame_size * self->nframes - (self->page_granule - self->last_granule); if (ogg_page_eos(&od->og)) self->skip_samples = -self->skip_samples; } else self->skip_samples = 0; self->last_granule = self->page_granule; self->packet_no = 0; } static void ogg_speexdec_play(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct speexdec_vars *self = od->dec_data; int src_error, i, frame_offset, new_frame_size, packet_length; if (oggdec_get_next_packet(od)) { self->packet_no++; speex_bits_read_from(&self->bits, (char *)od->op.packet, od->op.bytes); for (i = 0; i < self->nframes; i++) { switch (speex_decode(self->dec_state, &self->bits, self->frame)) { case 0: if (speex_bits_remaining(&self->bits) < 0) { fprintf(stderr, "ogg_speexdec_play: decoding overflow\n"); oggdecode_playnext(xlplayer); return; } if (self->stereo) speex_decode_stereo(self->frame, self->frame_size, &self->stereo_state); frame_offset = 0; new_frame_size = self->frame_size; if (self->packet_no == 1 && i == 0 && self->skip_samples > 0) { fprintf(stderr, "chopping first packet\n"); new_frame_size -= self->skip_samples + self->lookahead; frame_offset = self->skip_samples + self->lookahead; } if (self->packet_no == self->page_nb_packets && self->skip_samples < 0) { packet_length = self->nframes * self->frame_size + self->skip_samples + self->lookahead; new_frame_size = packet_length - i * self->frame_size; if (new_frame_size < 0) new_frame_size = 0; if (new_frame_size > self->frame_size) new_frame_size = self->frame_size; xlplayer->src_data.end_of_input = 1; fprintf(stderr, "chopping end: %d %d %d\n", new_frame_size, packet_length, self->packet_no); } if (new_frame_size > 0) { if (self->seek_dump_samples > 0) self->seek_dump_samples -= self->frame_size; else { xlplayer->src_data.data_in = self->frame + frame_offset * self->channels; xlplayer->src_data.input_frames = new_frame_size; if ((src_error = src_process(xlplayer->src_state, &xlplayer->src_data))) { fprintf(stderr, "ogg_speexdec_play: %s src_process reports - %s\n", xlplayer->playername, src_strerror(src_error)); oggdecode_playnext(xlplayer); return; } xlplayer_demux_channel_data(xlplayer, xlplayer->src_data.data_out, xlplayer->src_data.output_frames_gen, self->header->nb_channels, 3.051757813e-05); do { xlplayer_write_channel_data(xlplayer); } while (xlplayer->write_deferred && i + 1 < self->nframes); } } if (xlplayer->src_data.end_of_input) { oggdecode_playnext(xlplayer); return; } break; case -2: fprintf(stderr, "ogg_speexdec_play: stream corruption detected\n"); oggdecode_playnext(xlplayer); return; case -1: /* end of stream */ fprintf(stderr, "ogg_speexdec_play: end of stream detected\n"); oggdecode_playnext(xlplayer); return; default: fprintf(stderr, "ogg_speexdec_play: unhandled return code\n"); oggdecode_playnext(xlplayer); return; } } } else { fprintf(stderr, "no more packets available\n"); oggdecode_playnext(xlplayer); return; } } int ogg_speexdec_init(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct speexdec_vars *self; SpeexMode const *mode; int src_error, i, s_granule, e_granule, p_granule, t_granule; SpeexCallback callback; fprintf(stderr, "ogg_speexdec_init was called\n"); if (!(self = calloc(1, sizeof (struct speexdec_vars)))) { fprintf(stderr, "ogg_speexdec_init: malloc failure\n"); goto cleanup3; } ogg_stream_reset_serialno(&od->os, od->serial[od->ix]); fseeko(od->fp, od->bos_offset[od->ix], SEEK_SET); ogg_sync_reset(&od->oy); if (!(oggdec_get_next_packet(od) && ogg_stream_packetout(&od->os, &od->op) == 0 && (self->header = speex_packet_to_header((char *)od->op.packet, od->op.bytes)))) { fprintf(stderr, "ogg_speexdec_init: failed to get speex header\n"); goto cleanup2; } mode = speex_lib_get_mode(self->header->mode); if (self->header->speex_version_id > 1) { fprintf (stderr, "This file was encoded with Speex bit-stream version %d, which I don't know how to decode\n", self->header->speex_version_id); goto cleanup1; } if (mode->bitstream_version < self->header->mode_bitstream_version) { fprintf (stderr, "The file was encoded with a newer version of Speex. You need to upgrade in order to play it.\n"); goto cleanup1; } if (mode->bitstream_version > self->header->mode_bitstream_version) { fprintf (stderr, "The file was encoded with an older version of Speex. You would need to downgrade the version in order to play it.\n"); goto cleanup1; } for (i = 0; i < self->header->extra_headers + 1; i++) { oggdec_get_next_packet(od); if (i != 0) fprintf(stderr, "extra header dumped\n"); } if (!(self->dec_state = speex_decoder_init(mode))) { fprintf(stderr, "ogg_speexdec_init: failed to initialise speex decoder\n"); goto cleanup1; } if (speex_decoder_ctl(self->dec_state, SPEEX_GET_FRAME_SIZE, &self->frame_size)) { fprintf(stderr, "ogg_speexdec_init: unable to obtain frame size\n"); goto cleanup0; } else fprintf(stderr, "frame size is %d samples\n", self->frame_size); speex_decoder_ctl(self->dec_state, SPEEX_GET_LOOKAHEAD, &self->lookahead); if ((self->nframes = self->header->frames_per_packet) < 1) { fprintf(stderr, "ogg_speexdec_init: header frames_per_packet must be greater than zero\n"); goto cleanup0; } if (!(self->frame = malloc(self->frame_size * self->header->nb_channels * sizeof (float)))) { fprintf(stderr, "ogg_speexdec_init: malloc failure\n"); goto cleanup0; } if ((self->channels = self->header->nb_channels) == 2) { self->stereo = TRUE; self->stereo_state = (SpeexStereoState)SPEEX_STEREO_STATE_INIT; callback.callback_id = SPEEX_INBAND_STEREO; callback.func = speex_std_stereo_request_handler; callback.data = &self->stereo_state; speex_decoder_ctl(self->dec_state, SPEEX_SET_HANDLER, &callback); } else if (self->channels != 1) { fprintf(stderr, "ogg_speexdec_init: unsupported number of audio channels\n"); goto cleanupA; } xlplayer->src_state = src_new(xlplayer->rsqual, self->header->nb_channels, &src_error); if (src_error) { fprintf(stderr, "ogg_speexdec_init: src_new reports %s\n", src_strerror(src_error)); goto cleanupA; } xlplayer->src_data.end_of_input = 0; xlplayer->src_data.input_frames = self->frame_size; xlplayer->src_data.data_in = self->frame; xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double)od->samplerate[od->ix]; xlplayer->src_data.output_frames = self->frame_size * self->header->nb_channels * xlplayer->src_data.src_ratio + 512; if (!(xlplayer->src_data.data_out = malloc(xlplayer->src_data.output_frames * sizeof (float)))) { fprintf(stderr, "ogg_speexdec_init: malloc failure\n"); goto cleanupB; } speex_bits_init(&self->bits); if (od->seek_s) { /* seeked streams with less than 0.1 seconds left to be skipped */ if (od->seek_s > (od->duration[od->ix] - 0.5)) { fprintf(stderr, "ogg_speexdec_init: seeked stream virtually over - skipping\n"); goto cleanupB; } oggdecode_seek_to_packet(od); /* calculate how many samples we need to drop for accurate seeking */ t_granule = od->seek_s * od->samplerate[od->ix]; e_granule = ogg_page_granulepos(&od->og); p_granule = self->frame_size * self->nframes; if ((s_granule = e_granule - (ogg_page_packets(&od->og) - ogg_page_continued(&od->og)) * p_granule) < 0) s_granule = 0; self->seek_dump_samples = t_granule - s_granule - self->frame_size * 26; self->last_granule = -1; } od->dec_data = self; od->dec_cleanup = ogg_speexdec_cleanup; xlplayer->dec_play = ogg_speexdec_play; oggdecode_set_new_oggpage_callback(od, ogg_speexdec_new_oggpage, self); return ACCEPTED; cleanupB: src_delete(xlplayer->src_state); cleanupA: free(self->frame); cleanup0: speex_decoder_destroy(self->dec_state); cleanup1: speex_header_free(self->header); cleanup2: free(self); cleanup3: return REJECTED; } #endif /* HAVE_SPEEX */ idjc-0.8.16/c/live_oggflac_encoder.c0000644000175000017500000002605512630014502014147 00000000000000/* # live_oggflac_encoder.c: encode oggflac from a live source # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_OGGFLAC #include #include #include #include #include "live_oggflac_encoder.h" #define TRUE 1 #define FALSE 0 #define SUCCEEDED 1 #define FAILED 0 static FLAC__int32 **live_oggflac_encoder_make_pcm(struct encoder_ip_data *id, struct lofe_data *s) { const float mul = (float)(1 << (s->bits_per_sample - 1)); const float scale = 1.0f / RAND_MAX; const FLAC__int32 ul = mul - 0.5; const FLAC__int32 ll = ~ul; FLAC__int32 val; FLAC__int32 **pcm; int i; unsigned j; if (!(pcm = malloc(sizeof (FLAC__int32 *) * id->channels))) { fprintf(stderr, "live_oggflac_encoder_make_pcm: malloc failure\n"); return NULL; } for (i = 0; i < id->channels; i++) { if (!(pcm[i] = malloc(sizeof (FLAC__int32) * id->qty_samples))) { fprintf(stderr, "live_oggflac_encoder_make_pcm: malloc failure\n"); free(pcm); return NULL; } for(j = 0; j < id->qty_samples; j++) { if (s->bits_per_sample <= 20) val = id->buffer[i][j] * mul + (float)rand_r(&s->seedp) * scale + (float)rand_r(&s->seedp) * scale - 1.0f; else val = id->buffer[i][j] * mul; if (val > ul) { pcm[i][j] = ul; s->uclip++; } else if (val < ll) { pcm[i][j] = ll; s->lclip++; } else pcm[i][j] = val; } } return pcm; } static void live_oggflac_encoder_free_pcm(FLAC__int32 *pcm[], int channels) { int i; for (i = 0; i < channels; i++) free(pcm[i]); free(pcm); } static FLAC__StreamEncoderWriteStatus live_oggflac_encoder_write_cb(const FLAC__StreamEncoder *enc, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) { struct encoder *encoder = client_data; struct lofe_data *s = encoder->encoder_private; struct encoder_op_packet packet; ogg_page og; int granulepos; if ((s->n_writes & 0x1) == 0) { /* writing ogg header */ s->pab_rqd = s->pab_head_size = bytes; if (s->pab_size < s->pab_rqd) if (!(s->pab = realloc(s->pab, s->pab_size = s->pab_rqd))) { fprintf(stderr, "live_oggflac_encoder_write_cb: malloc failure\n"); return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR; } memcpy(s->pab, buffer, bytes); s->flags = PF_OGG; if (s->n_writes == 0) s->flags |= PF_INITIAL; if (buffer[5] & 0x4) s->flags |= PF_FINAL; og.header = (unsigned char *)buffer; og.header_len = bytes; og.body = NULL; og.body_len = 0; switch ((granulepos = ogg_page_granulepos(&og))) { case -1: break; case 0: s->flags |= PF_HEADER; break; default: s->samples = granulepos; } } else { /* writing ogg body */ if (s->pab_size < (s->pab_rqd += bytes)) if (!(s->pab = realloc(s->pab, s->pab_size = s->pab_rqd))) { fprintf(stderr, "live_oggflac_encoder_write_cb: malloc failure\n"); return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR; } memcpy(s->pab + s->pab_head_size, buffer, bytes); packet.header.bit_rate = encoder->bitrate; packet.header.sample_rate = encoder->target_samplerate; packet.header.n_channels = encoder->n_channels; packet.header.flags = s->flags; packet.header.data_size = s->pab_rqd; packet.header.timestamp = encoder->timestamp = (double)s->samples / (double)encoder->samplerate; packet.data = s->pab; encoder_write_packet_all(encoder, &packet); } s->n_writes++; return FLAC__STREAM_ENCODER_WRITE_STATUS_OK; } static char *prepend(char *before, char *after) { char *new; if (!(new = malloc(strlen(before) + strlen(after) + 1))) { fprintf(stderr, "malloc failure\n"); return NULL; } strcpy(new, before); strcat(new, after); free(after); return new; } #define PREPEND(b, a) a = prepend(b, a); nmeta++; dlen += strlen(a); #define CPREPEND(b, a) if (a && a[0]) { PREPEND(b, a); } #define APPEND(a) if (a && a[0]) { vc->comments[i].length = strlen(a); vc->comments[i].entry = (FLAC__byte *)a; i++; } static void live_oggflac_encoder_main(struct encoder *encoder) { struct lofe_data * const s = encoder->encoder_private; struct ogg_tag_data *t = &s->tag_data; if (encoder->encoder_state == ES_STARTING) { if (!(s->enc = FLAC__stream_encoder_new())) { fprintf(stderr, "live_oggflac_encoder_main: failed to create new encoder\n"); goto bailout; } if (encoder->new_metadata) { int nmeta = 0, i = 0; size_t dlen = 0; FLAC__StreamMetadata_VorbisComment *vc; live_ogg_capture_metadata(encoder, t); if (t->custom && t->custom[0]) { PREPEND("title=", t->custom) CPREPEND("trk-artist=", t->artist) CPREPEND("trk-title=", t->title) CPREPEND("trk-album=", t->album) } else { CPREPEND("artist=", t->artist) CPREPEND("title=", t->title) CPREPEND("album=", t->album) } if (nmeta) { if (s->metadata[0] == NULL) if (!(s->metadata[0] = calloc(1, sizeof (FLAC__StreamMetadata)))) { fprintf(stderr, "live_oggflac_encoder_main: malloc failure\n"); goto bailout; } vc = &s->metadata[0]->data.vorbis_comment; vc->num_comments = nmeta; vc->vendor_string.entry = (FLAC__byte *)FLAC__VENDOR_STRING; dlen += vc->vendor_string.length = strlen(FLAC__VENDOR_STRING); s->metadata[0]->type = FLAC__METADATA_TYPE_VORBIS_COMMENT; s->metadata[0]->is_last = TRUE; s->metadata[0]->length = nmeta * 4 + dlen + 8; vc->comments = realloc(vc->comments, nmeta * sizeof (FLAC__StreamMetadata_VorbisComment_Entry)); APPEND(t->custom) APPEND(t->artist) APPEND(t->title) APPEND(t->album) } } encoder->bitrate = 0.00085034 * encoder->n_channels * s->bits_per_sample * encoder->target_samplerate; s->n_writes = 0; FLAC__stream_encoder_set_channels(s->enc, encoder->n_channels); FLAC__stream_encoder_set_bits_per_sample(s->enc, s->bits_per_sample); FLAC__stream_encoder_set_sample_rate(s->enc, encoder->target_samplerate); FLAC__stream_encoder_set_ogg_serial_number(s->enc, ++encoder->oggserial); if (encoder->use_metadata && s->metadata[0]) FLAC__stream_encoder_set_metadata(s->enc, s->metadata, 1); FLAC__stream_encoder_init_ogg_stream(s->enc, NULL, live_oggflac_encoder_write_cb, NULL, NULL, NULL, encoder); encoder->timestamp = 0.0; encoder->encoder_state = ES_RUNNING; return; } if (encoder->encoder_state == ES_RUNNING) { struct encoder_ip_data *id; if (encoder->new_metadata || !encoder->run_request_f || encoder->flush) { FLAC__stream_encoder_finish(s->enc); encoder->flush = FALSE; encoder->encoder_state = ES_STOPPING; } else { id = encoder_get_input_data(encoder, 1024, 8192, NULL); if (id) { FLAC__int32 **pcm; pcm = live_oggflac_encoder_make_pcm(id, s); FLAC__stream_encoder_process(s->enc, (const FLAC__int32 ** const)pcm, id->qty_samples); live_oggflac_encoder_free_pcm(pcm, id->channels); encoder_ip_data_free(id); } } return; } if (encoder->encoder_state == ES_STOPPING) { FLAC__stream_encoder_delete(s->enc); if (!encoder->run_request_f) goto bailout; else encoder->encoder_state = ES_STARTING; return; } fprintf(stderr, "live_oggflac_encoder_main: unhandled encoder state\n"); return; bailout: fprintf(stderr, "live_oggflac_encoder_main: performing cleanup\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->flush = FALSE; encoder->new_metadata = FALSE; encoder->encoder_private = NULL; if (s) { fprintf(stderr, "Clipping detected on upper %d times and lower %d times.\n", s->uclip, s->lclip); if (s->metadata[0]) { if (s->metadata[0]->data.vorbis_comment.comments) free(s->metadata[0]->data.vorbis_comment.comments); free(s->metadata[0]); } live_ogg_free_metadata(t); free(s); } fprintf(stderr, "live_oggflac_encoder_main: finished cleanup\n"); return; } int live_oggflac_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { struct lofe_data * const s = calloc(1, sizeof (struct lofe_data)); if (!s) { fprintf(stderr, "live_oggflac_encoder: malloc failure\n"); return FAILED; } s->bits_per_sample = atoi(ev->bitwidth); encoder->use_metadata = strcmp(ev->metadata_mode, "suppressed") ? 1 : 0; encoder->encoder_private = s; encoder->run_encoder = live_oggflac_encoder_main; return SUCCEEDED; } #endif /* HAVE_OGGFLAC */ idjc-0.8.16/c/live_oggopus_encoder.h0000644000175000017500000000173712630014502014235 00000000000000/* # live_oggopus_encoder.c: encode Ogg/Opus format streams # Copyright (C) 2013 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include "encoder.h" #ifdef HAVE_OPUS int live_oggopus_encoder_init(struct encoder *, struct encoder_vars *); #endif /* HAVE_OPUS */ idjc-0.8.16/c/kvpparse.h0000644000175000017500000000163612630014502011665 00000000000000/* # kvpparse.h: the mixer and server command parsing mechanism used by IDJC. # Copyright (C) 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "kvpdict.h" int kvp_parse(struct kvpdict *kvpdict, FILE *fp); idjc-0.8.16/c/id3.c0000644000175000017500000002623512630014502010506 00000000000000/* # id3.c: generater of id3 tags for the recorder - emphasis on chapter tags # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include "id3.h" #include "main.h" static void id3_frame_extra_cleanup(struct id3_frame *frame) { struct id3_text_frame_data *tdptr = frame->data; struct id3_chap_frame_data *cdptr = frame->data; if (!strcmp(frame->frame_header.frame_id, "TLEN")) return; if (frame->frame_header.frame_id[0] == 'T' && strcmp(frame->frame_header.frame_id, "TXXX")) { free(tdptr->text); return; } if (!strcmp(frame->frame_header.frame_id, "CHAP")) { free(cdptr->identifier); return; } } static void id3_frame_destroy_recursive(struct id3_frame *frame) { if (frame->first_embedded_frame) { id3_frame_destroy_recursive(frame->first_embedded_frame); if (frame->first_embedded_frame->data) { id3_frame_extra_cleanup(frame->first_embedded_frame); free(frame->first_embedded_frame->data); } free(frame->first_embedded_frame); } if (frame->next) { id3_frame_destroy_recursive(frame->next); if (frame->next->data) { id3_frame_extra_cleanup(frame->next); free(frame->next->data); } free(frame->next); } } void id3_tag_destroy(struct id3_tag *tag) { if (tag->first_frame) { id3_frame_destroy_recursive(tag->first_frame); if (tag->first_frame->data) free(tag->first_frame->data); free(tag->first_frame); } free(tag); } static int id3_syncsafe_int(uint32_t value, uint32_t *ssvalue) { unsigned char *ssint = (unsigned char *)ssvalue; ssint[0] = (value >> 21) & 0xFF; ssint[1] = (value >> 14) & 0xFF; ssint[2] = (value >> 7 ) & 0xFF; ssint[3] = (value >> 0 ) & 0xFF; return *ssvalue; } static void id3_make_be(unsigned char *byte, uint32_t value) { byte[3] = value & 0xFF; byte[2] = (value >> 8) & 0xFF; byte[1] = (value >> 16) & 0xFF; byte[0] = value >> 24; } static int id3_compile_text_frame(struct id3_frame *ptr, int embedded_size) { struct id3_text_frame_data *dptr; char *body; int body_size; uint32_t ssint; if (embedded_size != 0) { fprintf(stderr, "id3_compile_text_frame: WARNING: text frames do not support frame embedding\n"); } dptr = ptr->data; body = calloc(1, body_size = strlen(dptr->text) + 1 + dptr->null_terminator); body[0] = dptr->text_encoding; memcpy(body + 1, dptr->text, body_size - 1 - dptr->null_terminator); if (!(ptr->compiled_data = malloc(body_size + 10))) { fprintf(stderr, "id3_compile_text_frame: malloc failure\n"); return 0; } memcpy(ptr->compiled_data, ptr->frame_header.frame_id, 4); id3_syncsafe_int(body_size, &ssint); memcpy(ptr->compiled_data + 4, &ssint, 4); ptr->compiled_data[8] = ptr->frame_header.status_flags; ptr->compiled_data[9] = ptr->frame_header.format_flags; memcpy(ptr->compiled_data + 10, body, body_size); free(body); return ptr->compiled_data_size = ptr->compiled_non_embedded_data_size = body_size + 10; } static int id3_compile_numeric_frame(struct id3_frame *ptr, int embedded_size) { char *body; int body_size; uint32_t ssint; if (embedded_size != 0) { fprintf(stderr, "id3_compile_text_frame: WARNING: text frames do not support frame embedding\n"); } if (!(body = malloc(body_size = strlen(ptr->data)))) { fprintf(stderr, "id3_compile_text_frame: malloc failure\n"); return 0; } memcpy(body, ptr->data, body_size); if (!(ptr->compiled_data = malloc(body_size + 10))) { fprintf(stderr, "id3_compile_text_frame: malloc failure\n"); return 0; } memcpy(ptr->compiled_data, ptr->frame_header.frame_id, 4); id3_syncsafe_int(body_size, &ssint); memcpy(ptr->compiled_data + 4, &ssint, 4); ptr->compiled_data[8] = ptr->frame_header.status_flags; ptr->compiled_data[9] = ptr->frame_header.format_flags; memcpy(ptr->compiled_data + 10, body, body_size); free(body); return ptr->compiled_data_size = ptr->compiled_non_embedded_data_size = body_size + 10; } static int id3_compile_chap_frame(struct id3_frame *ptr, int embedded_size) { struct id3_chap_frame_data *dptr; char *body, *bptr; int body_size, text_size; uint32_t ssint; dptr = ptr->data; if (!(body = bptr = malloc(body_size = 17 + (text_size = strlen(dptr->identifier)) + embedded_size))) { fprintf(stderr, "id3_compile_chap_frame: malloc failure\n"); return 0; } strcpy(bptr, dptr->identifier); bptr += (text_size + 1); memcpy(bptr, dptr->start_ms, 16); if (!(ptr->compiled_data = malloc(body_size + 10))) { fprintf(stderr, "id3_compile_chap_frame: malloc failure\n"); return 0; } memcpy(ptr->compiled_data, ptr->frame_header.frame_id, 4); id3_syncsafe_int(body_size, &ssint); memcpy(ptr->compiled_data + 4, &ssint, 4); ptr->compiled_data[8] = ptr->frame_header.status_flags; ptr->compiled_data[9] = ptr->frame_header.format_flags; memcpy(ptr->compiled_data + 10, body, body_size); free(body); ptr->compiled_non_embedded_data_size = body_size + 10 - embedded_size; return ptr->compiled_data_size = body_size + 10; } static int id3_compile_frames(struct id3_frame *ptr) { int embedded_size = 0, chained_size = 0; if (ptr->first_embedded_frame) embedded_size = id3_compile_frames(ptr->first_embedded_frame); if (ptr->next) chained_size = id3_compile_frames(ptr->next); if (!strcmp(ptr->frame_header.frame_id, "TLEN")) return chained_size + id3_compile_numeric_frame(ptr, embedded_size); if (ptr->frame_header.frame_id[0] == 'T' && strcmp(ptr->frame_header.frame_id, "TXXX")) return chained_size + id3_compile_text_frame(ptr, embedded_size); if (!strcmp(ptr->frame_header.frame_id, "CHAP")) return chained_size + id3_compile_chap_frame(ptr, embedded_size); fprintf(stderr, "id3_compile_frames: this frame is unsupported: %s\n", ptr->frame_header.frame_id); return chained_size; } static void id3_collect_frame_data(struct id3_frame *frame, char **wp) { if (frame->next) id3_collect_frame_data(frame->next, wp); if (frame->compiled_data) { memcpy(*wp, frame->compiled_data, frame->compiled_data_size); *wp += frame->compiled_non_embedded_data_size; if (frame->first_embedded_frame) { id3_collect_frame_data(frame->first_embedded_frame, wp); } free(frame->compiled_data); } } void id3_compile(struct id3_tag *tag) { struct id3_frame *ptr; int chained_size; uint32_t ssint; char *wp; fflush(g.out); ptr = tag->first_frame; if (ptr) chained_size = id3_compile_frames(tag->first_frame); else return; if (!(tag->tag_data = calloc(1, tag->tag_data_size = chained_size + 10 + tag->padding))) { fprintf(stderr, "id3_compile: malloc failure\n"); tag->tag_data = NULL; tag->tag_data_size = 0; return; } memcpy(tag->tag_data, "ID3\x04\x00\x00", 6); id3_syncsafe_int(tag->tag_data_size - 10, &ssint); memcpy(tag->tag_data + 6, &ssint, 4); wp = tag->tag_data + 10; id3_collect_frame_data(tag->first_frame, &wp); } void id3_embed_frame(struct id3_frame *parent, struct id3_frame *child) { child->next = parent->first_embedded_frame; if (child->next) child->next->prev = parent; parent->first_embedded_frame = child; } void id3_add_frame(struct id3_tag *tag, struct id3_frame *frame) { frame->next = tag->first_frame; if (frame->next) frame->next->prev = frame; tag->first_frame = frame; } struct id3_frame *id3_numeric_string_frame_new(char *identifier, int value) { struct id3_frame *frame; char string[20]; if (!(frame = calloc(1, sizeof (struct id3_frame)))) { fprintf(stderr, "id3_text_frame_new: malloc failure\n"); return NULL; } strcpy(frame->frame_header.frame_id, identifier); snprintf(string, 20, "%d", value); frame->data = strdup(string); return frame; } struct id3_frame *id3_text_frame_new(char *identifier, char *text, unsigned char encoding, int null_terminator) { struct id3_frame *frame; struct id3_text_frame_data *tframe_data; if (!(frame = calloc(1, sizeof (struct id3_frame)))) { fprintf(stderr, "id3_text_frame_new: malloc failure\n"); return NULL; } strcpy(frame->frame_header.frame_id, identifier); if (!(tframe_data = calloc(1, sizeof (struct id3_text_frame_data)))) { fprintf(stderr, "id3_text_frame_new: malloc failure\n"); return NULL; } frame->data = tframe_data; tframe_data->text = strdup(text); tframe_data->text_encoding = encoding; tframe_data->null_terminator = null_terminator; return frame; } struct id3_frame *id3_chap_frame_new(char *unique_id, uint32_t start_ms, uint32_t end_ms, uint32_t start_byte, uint32_t end_byte) { struct id3_frame *frame; struct id3_chap_frame_data *cframe_data; if (!(frame = calloc(1, sizeof (struct id3_frame)))) { fprintf(stderr, "id3_chap_frame_new: malloc failure\n"); return NULL; } strcpy(frame->frame_header.frame_id, "CHAP"); if (!(cframe_data = calloc(1, sizeof (struct id3_chap_frame_data)))) { fprintf(stderr, "id3_chap_frame_new: malloc failure\n"); return NULL; } frame->data = cframe_data; cframe_data->identifier = strdup(unique_id); id3_make_be(cframe_data->start_ms, start_ms); id3_make_be(cframe_data->end_ms, end_ms); id3_make_be(cframe_data->start_byte, start_byte); id3_make_be(cframe_data->end_byte, end_byte); return frame; } struct id3_tag *id3_tag_new(int flags, int padding) { struct id3_tag *tag; if (!(tag = calloc(1, sizeof (struct id3_tag)))) { fprintf(stderr, "id3_tag_new: malloc failure\n"); return NULL; } tag->header.flags = flags; tag->padding = padding; return tag; } idjc-0.8.16/c/live_oggspeex_encoder.h0000644000175000017500000000176212630014502014371 00000000000000/* # live_oggspeex_encoder.h: encode speex from a live source into an ogg container # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_SPEEX #include "encoder.h" int live_oggspeex_encoder_init(struct encoder *encoder, struct encoder_vars *ev); #endif idjc-0.8.16/c/fade.c0000644000175000017500000000607312630014502010724 00000000000000/* # fade.c: fade in/out progressive gain adjustment # Copyright (C) 2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include "fade.h" struct fade *fade_init(int samplerate, float level) { struct fade *s; if (!(s = malloc(sizeof (struct fade)))) { fprintf(stderr, "fade_init: malloc failure\n"); exit(5); } s->samplerate = samplerate; s->baselevel = level; if (pthread_mutex_init(&s->mutex, NULL)) { fprintf(stderr, "fade_init: mutex creation failed\n"); exit(5); } fade_set(s, FADE_SET_HIGH, 0.0f, FADE_IN); return s; } void fade_destroy(struct fade *s) { pthread_mutex_destroy(&s->mutex); free(s); } void fade_set(struct fade *s, enum fade_startpos sp, float t, enum fade_direction d) { pthread_mutex_lock(&s->mutex); s->startpos = sp; if (t >= 0.0f) s->samples = floorf(s->samplerate * t); if (d != FADE_DIRECTION_UNCHANGED) s->newdirection = d; s->newdata = 1; pthread_mutex_unlock(&s->mutex); } float fade_get(struct fade *s) { if (s->newdata) { pthread_mutex_lock(&s->mutex); if (s->startpos == FADE_SET_HIGH) s->level = 1.0f; if (s->startpos == FADE_SET_LOW) s->level = 0.0f; if ((s->direction = s->newdirection) == FADE_IN) s->rate = powf(s->baselevel, -1.0f / s->samples); else s->rate = powf(s->baselevel, 1.0f / s->samples); s->moving = 1; s->newdata = 0; pthread_mutex_unlock(&s->mutex); } if (s->moving) { if (s->direction == FADE_IN) { if (s->level < s->baselevel) s->level = s->baselevel; else if ((s->level *= s->rate) >= 1.0f) { s->level = 1.0f; s->moving = 0; } } if (s->direction == FADE_OUT) { if (s->level > s->baselevel) s->level *= s->rate; else { s->level = 0.0f; s->moving = 0; } } } return s->level; } idjc-0.8.16/c/encoder.h0000644000175000017500000002160112635762165011467 00000000000000/* # encoder.h: the encoder for the streaming module of idjc # Copyright (C) 2007-2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef ENCODER_H #define ENCODER_H #include #include #include #include #include #include "sourceclient.h" enum jack_dataflow { JD_OFF, JD_ON, JD_FLUSH }; enum performance_warning { PW_OK, PW_AUDIO_DATA_DROPPED }; enum encoder_source {ENCODER_SOURCE_UNHANDLED, ENCODER_SOURCE_JACK, ENCODER_SOURCE_FILE}; enum encoder_family {ENCODER_FAMILY_UNHANDLED, ENCODER_FAMILY_MPEG, ENCODER_FAMILY_OGG, ENCODER_FAMILY_WEBM}; enum encoder_codec {ENCODER_CODEC_UNHANDLED, ENCODER_CODEC_MP3, ENCODER_CODEC_VORBIS, ENCODER_CODEC_FLAC, ENCODER_CODEC_SPEEX, ENCODER_CODEC_OPUS, ENCODER_CODEC_MP2, ENCODER_CODEC_AAC, ENCODER_CODEC_AACPLUSV2}; enum encoder_state { ES_STOPPED, ES_STARTING, ES_RUNNING, ES_STOPPING, ES_PAUSED }; enum packet_flags { PF_UNSET = 0x00, PF_INITIAL = 0x01, PF_FINAL = 0x02, PF_OGG = 0x04, PF_MP3 = 0x08, PF_METADATA = 0x10, PF_HEADER = 0x20, PF_MP2 = 0x40, PF_AAC = 0x80, PF_AACP2 = 0x100, PF_WEBM = 0x200 }; struct encoder_vars { char *encode_source; char *samplerate; char *resample_quality; char *family; char *codec; char *bitrate; char *variability; char *bitwidth; char *quality; char *complexity; char *framesize; char *mode; char *metadata_mode; char *standard; char *pregain; char *postgain; char *filename; /* for streaming a pre-recorded file */ char *offset; char *custom_meta; /* extra/replacement information to use for metadata */ char *artist; /* used for ogg metadata - always utf-8 */ char *title; char *album; }; struct encoder_data_format { enum encoder_source source; enum encoder_family family; enum encoder_codec codec; }; struct encoder_ip_data { int caller_supplied_buffer; /* indicator of self ownership of buffers */ int channels; size_t qty_samples; float *buffer[2]; }; struct encoder_op_packet_header { uint32_t magic; /* the magic number to check packet sync with */ struct encoder_data_format data_format; /* details of the format in use */ uint16_t bit_rate; /* bit rate in kb/s */ uint32_t sample_rate; /* sample rate - typically 44100 or 48000 */ uint16_t n_channels; /* number of audio channels 1 or 2 for mono/stereo */ enum packet_flags flags; /* first, last, metadata, mp3, ogg, etc */ int serial; /* the ogg serial number */ double timestamp; /* time in seconds for this serial */ size_t data_size; /* how much data follows in bytes */ }; struct encoder_op_packet { struct encoder_op_packet_header header; void *data; }; struct encoder_op /* encoder output object */ { struct encoder *encoder; /* parent encoder */ struct encoder_op *next; /* the next encoder output object */ jack_ringbuffer_t *packet_rb; /* ringbuffer containing ogg or mp3 packets */ enum performance_warning performance_warning_indicator; /* indicates ringbuffer overflow condition */ pthread_mutex_t mutex; /* this enables the encoder to expire old output packets safely */ }; struct encoder_header_buffer { char *data; size_t size; pthread_mutex_t mutex; }; struct encoder { struct threads_info *threads_info; /* link to the global data structure */ int numeric_id; /* identitity of this encoder from 0 */ pthread_t thread_h; /* this encoder's pthread handle */ int thread_terminate_f; /* signal the encoder thread to exit */ int run_request_f; /* to run or not to run... */ enum encoder_state encoder_state; /* indicate what the encoder should be doing */ enum jack_dataflow jack_dataflow_control; /* tells the jack callback routine what we want it to do */ jack_ringbuffer_t *input_rb[2]; /* circular buffer containing pcm audio data */ struct encoder_data_format data_format; int n_channels; /* stream parameters information... */ int bitrate; float pregain; /* gain value to apply to audio before encoding */ float fadegain; /* encoder fadeout value */ float fadescale; /* encoder fadeout rate */ long samplerate; long target_samplerate; double sr_conv_ratio; SRC_STATE *src_state[2]; /* resampler variables */ float *rs_input[2]; /* buffer used by resampler input callback */ int rs_channel; /* resampler callback channel control */ int resample_f; /* true or false to resampling required */ int client_count; /* number of streamers/recorders connected */ pthread_mutex_t flush_mutex; /* to block encoder so it's in a known state before flush */ pthread_mutex_t mutex;/* for blocking encoder_unregister_client while the encoder is writing out data */ pthread_mutex_t metadata_mutex; /* used when metadata is read or written */ pthread_mutex_t fade_mutex; /* for blocking fade initiate while fade being processed */ struct encoder_op *output_chain; /* one output buffer per client connection */ struct encoder_header_buffer *header_buffer; /* point to needed headers or NULL */ enum performance_warning performance_warning_indicator; /* indicates ringbuffer overflow condition */ char *custom_meta; /* when this is set it is used for stream metadata - in the title tag of ogg streams */ char *artist; /* used for recordings' metadata - always utf-8 */ char *title; char *album; int new_metadata; /* a trigger flag */ int use_metadata; /* false means encoder to compose a blank set of tags and ignore the new_metadata flag */ int flush; int oggserial; /* n.b. not restricted to ogg useage */ double timestamp; /* running counter in seconds for current serial */ void (*run_encoder)(struct encoder *); /* pointer to the encoder in use */ void *encoder_private; /* used by the specific encoder */ }; struct encoder *encoder_init(struct threads_info *ti, int numeric_id); int encoder_init_lame(struct threads_info *ti, struct universal_vars *uv, void *param); void encoder_destroy(struct encoder *self); struct encoder_op_packet *encoder_client_get_packet(struct encoder_op *op); void encoder_client_free_packet(struct encoder_op_packet *packet); int encoder_client_set_flush(struct encoder_op *op); size_t encoder_write_packet(struct encoder_op *op, struct encoder_op_packet *packet); void encoder_write_packet_all(struct encoder *enc, struct encoder_op_packet *packet); struct encoder_op *encoder_register_client(struct threads_info *ti, int numeric_id); void encoder_unregister_client(struct encoder_op *op); int encoder_start(struct threads_info *ti, struct universal_vars *uv, void *other); int encoder_stop(struct threads_info *ti, struct universal_vars *uv, void *other); int encoder_initiate_fade(struct threads_info *ti, struct universal_vars *uv, void *other); int encoder_update(struct threads_info *ti, struct universal_vars *uv, void *other); int encoder_new_song_metadata(struct threads_info *ti, struct universal_vars *uv, void *other); int encoder_new_custom_metadata(struct threads_info *ti, struct universal_vars *uv, void *other); void encoder_src_data_cleanup(struct encoder *self); struct encoder_ip_data *encoder_get_input_data(struct encoder *encoder, size_t min_samples_needed, size_t max_samples, float **caller_supplied_buffer); void encoder_ip_data_free(struct encoder_ip_data *id); #endif idjc-0.8.16/c/sndfiledecode.c0000644000175000017500000001160512630014502012612 00000000000000/* # sndfiledecode.c: decodes wav file format for xlplayer # Copyright (C) 2007, 2013 Stephen Fairchild (s-fairchild@users.sf.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include "xlplayer.h" #include "sndfiledecode.h" #define TRUE 1 #define FALSE 0 #define ACCEPTED 1 #define REJECTED 0 static const sf_count_t sndfile_frameqty = 4096; static void sndfiledecode_init(struct xlplayer *xlplayer) { struct sndfiledecode_vars *self = xlplayer->dec_data; int src_error; if (!(self->flbuf = malloc(sizeof (float) * sndfile_frameqty * self->sf_info.channels))) { fprintf(stderr, "sndfiledecode_init: unable to allocate sndfile frames buffer\n"); sf_close(self->sndfile); xlplayer->playmode = PM_STOPPED; xlplayer->command = CMD_COMPLETE; return; } if (self->sf_info.samplerate != (int)xlplayer->samplerate) { fprintf(stderr, "sndfiledecode_init: configuring resampler\n"); xlplayer->src_state = src_new(xlplayer->rsqual, self->sf_info.channels, &src_error); if (src_error) { fprintf(stderr, "sndfiledecode_init: %s src_new reports - %s\n", xlplayer->playername, src_strerror(src_error)); sf_close(self->sndfile); xlplayer->playmode = PM_STOPPED; xlplayer->command = CMD_COMPLETE; return; } xlplayer->src_data.output_frames = 0; xlplayer->src_data.data_in = self->flbuf; xlplayer->src_data.data_out = NULL; xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double)self->sf_info.samplerate; xlplayer->src_data.end_of_input = 0; self->resample = TRUE; } else self->resample = FALSE; sf_seek(self->sndfile, ((sf_count_t)xlplayer->seek_s) * ((sf_count_t)self->sf_info.samplerate), SEEK_SET); } static void sndfiledecode_play(struct xlplayer *xlplayer) { struct sndfiledecode_vars *self = xlplayer->dec_data; sf_count_t sf_count; int src_error; sf_count = sf_readf_float(self->sndfile, self->flbuf, sndfile_frameqty); if (self->resample) { xlplayer->src_data.end_of_input = (sf_count == 0); xlplayer->src_data.input_frames = sf_count; xlplayer->src_data.output_frames = (int)(xlplayer->src_data.input_frames * xlplayer->src_data.src_ratio) + 2 + (512 * xlplayer->src_data.end_of_input); xlplayer->src_data.data_out = realloc(xlplayer->src_data.data_out, xlplayer->src_data.output_frames * self->sf_info.channels * sizeof (float)); if ((src_error = src_process(xlplayer->src_state, &(xlplayer->src_data)))) { fprintf(stderr, "sndfiledecode_play: %s\n", src_strerror(src_error)); xlplayer->playmode = PM_EJECTING; return; } xlplayer_demux_channel_data(xlplayer, xlplayer->src_data.data_out, xlplayer->src_data.output_frames_gen, self->sf_info.channels, 1.f); } else xlplayer_demux_channel_data(xlplayer, self->flbuf, sf_count, self->sf_info.channels, 1.f); xlplayer_write_channel_data(xlplayer); if (sf_count == 0) { xlplayer->playmode = PM_FLUSH; return; } } static void sndfiledecode_eject(struct xlplayer *xlplayer) { struct sndfiledecode_vars *self = xlplayer->dec_data; sf_close(self->sndfile); if (self->resample) { if (xlplayer->src_data.data_out) free(xlplayer->src_data.data_out); xlplayer->src_state = src_delete(xlplayer->src_state); } free(self->flbuf); free(self); } int sndfiledecode_reg(struct xlplayer *xlplayer) { struct sndfiledecode_vars *self; if (!(self = xlplayer->dec_data = malloc(sizeof (struct sndfiledecode_vars)))) { fprintf(stderr, "sndfiledecode_reg: malloc failure\n"); return REJECTED; } self->sf_info.format = 0; if (!(self->sndfile = sf_open(xlplayer->pathname, SFM_READ, &(self->sf_info)))) { free(self); return REJECTED; } xlplayer->dec_init = sndfiledecode_init; xlplayer->dec_play = sndfiledecode_play; xlplayer->dec_eject = sndfiledecode_eject; return ACCEPTED; } idjc-0.8.16/c/ialloc.c0000644000175000017500000000272412630014502011267 00000000000000/* # ialloc.c: Heap memory allocation routines for IDJC. # Copyright (C) 2005-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include typedef jack_default_audio_sample_t sample_t; sample_t *ialloc(jack_nframes_t size) { sample_t *buf; if (!(buf = malloc(sizeof (sample_t) * size))) { fprintf(stderr, "ialloc: malloc failure\n"); exit(5); } return buf; } void ifree(sample_t *buf) { if (buf) free(buf); } sample_t *irealloc(sample_t *data, jack_nframes_t newsize) { if (!data) return ialloc(newsize); else { free(data); return ialloc(newsize); } } idjc-0.8.16/c/mic.h0000644000175000017500000001135512630014502010601 00000000000000/* # mic.h: wrapper for microphone agc that provides mixing/muting # Copyright (C) 2010 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include "agc.h" struct mic { /* outputs */ float unp; /* barely processed audio without muting */ float unpm; /* barely processed audio with channel muting */ float unpmdj; /* barely processed audio with channel and dj mix muting */ float lrc; /* both audio channels without muting */ float lc; /* audio left channel without muting */ float rc; /* audio right channel without muting */ float lcm; /* audio left channel with muting */ float rcm; /* audio right channel with muting */ /* mic specific output */ float munp; /* barely processed audio without muting */ float munpm; /* barely processed audio with muting */ float lmunpm; /* barely processed left audio with muting and panning */ float rmunpm; /* barely processed right audio with muting and panning */ float munpmdj; /* barely processed audio for the dj mix */ float lmunpmdj; /* munpmdj with left channel panning */ float rmunpmdj; /* munpmdj with right channel panning */ float mlrc; /* both audio channels without muting */ float mlc; /* audio left channel without muting */ float mrc; /* audio right channel without muting */ float mlcm; /* audio left channel with muting */ float mrcm; /* audio right channel with muting */ /* aux specific output */ float aunp; /* barely processed audio without muting */ float aunpm; /* barely processed audio with muting */ float aunpmdj; /* barely processed audio for the dj mix */ float alrc; /* both audio channels without muting */ float alc; /* audio left channel without muting */ float arc; /* audio right channel without muting */ float alcm; /* audio left channel with muting */ float arcm; /* audio right channel with muting */ /* control inputs */ int open; /* mic open/close */ int invert; /* mic signal is inverted */ float gain; /* amount of signal boost in db */ int mode; /* 0 = off, 1 = simple, 2 = complex, 3 = subordinate */ int pan; /* stereo panning on a scale 1-100 */ int pan_active; /* whether to pan at all */ int mode_request;/* request to change mode */ /* state variables and resources */ int id; /* numeric identifier */ struct mic *host;/* the dominant mic in a pairing */ struct mic *partner; /* the partnerable mic */ struct agc *agc; /* automatic gain control and much more */ float sample; /* storage for the audio sample undergoing processing */ float sample_rate; /* used for smoothed mute timing */ float mgain; /* mono gain value (absolute gain) */ float lgain; /* left gain value (pan relative) */ float rgain; /* right gain value (pan relative) */ float igain; /* inversion gain value (inversion relative) */ float mute; /* gain applied by soft mute control */ float djmute; /* gain applied for muting from the dj mix */ float peak; /* highest signal level since last call to mic_getpeak */ float mic_g; /* mic gain for muting */ float aux_g; /* aux gain for muting */ float rel_igain; /* invert for paired mic */ float rel_gain; /* signal level trim for paired mic */ jack_port_t *jack_port; /* jack port handle */ jack_default_audio_sample_t *jadp; /* jack audio data pointer */ jack_nframes_t nframes; /* jack buffer size */ char *default_mapped_port_name; /* the natural partner port or NULL*/ }; void mic_process_start_all(struct mic **mics, jack_nframes_t nframes); float mic_process_all(struct mic **mics); void mic_stats_all(struct mic **mics); struct mic **mic_init_all(int n_mics, jack_client_t *client); void mic_free_all(struct mic **self); void mic_valueparse(struct mic *s, char *param); void mic_set_role_all(struct mic **s, const char *role); idjc-0.8.16/c/mic.c0000644000175000017500000002574712630014502010606 00000000000000/* # mic.c: wrapper for AGC and provides mixing to stereo # Copyright (C) 2010 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include "mic.h" #include "dbconvert.h" #include "main.h" #define FALSE 0 #define TRUE (!FALSE) static const float peak_init = 4.46e-7f; /* -127dB */ static void calculate_gain_values(struct mic *self) { self->mgain = powf(10.0f, self->gain / 20.0f); if (self->pan_active) { self->lgain = cosf((float)self->pan / 63.66197724f); self->rgain = sinf((float)self->pan / 63.66197724f); } else self->lgain = self->rgain = 1.0f; } static void mic_process_start(struct mic *self, jack_nframes_t nframes) { int mode_request = self->mode_request; /* mic mode changes are handled here */ if (mode_request != self->mode) { if (self->mode == 0) fprintf(stderr, "activated ch %d\n", self->id); if (self->mode == 2) { fprintf(stderr, "leaving fully processed mode, ch %d\n", self->id); agc_reset(self->agc); } if (mode_request == 3) { fprintf(stderr, "entering stereo mode, ch %d\n", self->id); self->host = self->partner; agc_set_partnered_mode(self->agc, TRUE); } if (self->mode == 3) { fprintf(stderr, "leaving stereo mode, ch %d\n", self->id); self->host = self; agc_set_partnered_mode(self->agc, FALSE); } if (mode_request == 0) { fprintf(stderr, "deactivated ch %d\n", self->id); self->open = 0; self->mute = 0.0f; self->unp = self->unpm = self->unpmdj = 0.0f; self->lc = self->rc = self->lrc = self->lcm = self->rcm = 0.0f; self->peak = peak_init; } self->mode = mode_request; } if (self->mode) { /* initialisation for later mic stages */ self->nframes = nframes; self->jadp = jack_port_get_buffer(self->jack_port, nframes); } } void mic_process_start_all(struct mic **mics, jack_nframes_t nframes) { while (*mics) mic_process_start(*mics++, nframes); } static void mic_process_stage1(struct mic *self) { float sample = *self->jadp++; if (isunordered(sample, sample)) sample = 0.0f; if (self->mode == 3) sample *= self->rel_igain * self->rel_gain; self->sample = sample; } static void mic_process_stage2(struct mic *self) { struct mic *host = self->host; float sample = self->sample * host->igain; /* mic open/close perform fade */ if (self->open && self->mute < 0.999999f) self->mute += (1.0f - self->mute) * 26.46f / self->sample_rate; else if (!self->open && self->mute > 0.0000004f) self->mute -= self->mute * 12.348f / self->sample_rate; else self->mute = self->open ? 1.0f : 0.0f; /* unprocessed audio */ self->unp = sample * host->mgain; /* unprocessed audio + mute */ self->unpm = self->unp * self->mute; /* unprocessed audio + mute for the DJ mix */ self->unpmdj = self->unpm * host->djmute; if (host->mode == 2) agc_process_stage1(self->agc, sample); } static void mic_process_stage3(struct mic *self) { /* agc side-channel stuff */ if (self->host->mode == 2) agc_process_stage2(self->agc, self->mute < 0.75f); } static void mic_process_stage4(struct mic *self) { float m = self->mic_g; float a = self->aux_g; struct mic *host = self->host; if (host->mode == 2) self->lrc = agc_process_stage3(self->agc); else self->lrc = self->unp; /* left and right channel audio no mute - could be procesesed or not */ self->lc = self->lrc * self->lgain; self->rc = self->lrc * self->rgain; /* the same but with muting */ self->lcm = self->lc * self->mute; self->rcm = self->rc * self->mute; /* record peak levels */ float l = fabsf(self->lrc); if (l > self->peak) self->peak = l; self->munp = self->unp * m; self->munpm = self->unpm * m; self->munpmdj = self->unpmdj * m; self->mlrc = self->lrc * m; self->mlc = self->lc * m; self->mrc = self->rc * m; self->mlcm = self->lcm * m; self->mrcm = self->rcm * m; self->lmunpm = self->munpm * self->lgain; self->rmunpm = self->munpm * self->rgain; self->lmunpmdj = self->munpmdj * self->lgain; self->rmunpmdj = self->munpmdj * self->rgain; self->aunp = self->unp * a; self->aunpm = self->unpm * a; self->aunpmdj = self->unpmdj * a; self->alrc = self->lrc * a; self->alc = self->lc * a; self->arc = self->rc * a; self->alcm = self->lcm * a; self->arcm = self->rcm * a; } float mic_process_all(struct mic **mics) { static void (*mic_process[])(struct mic *) = {mic_process_stage1, mic_process_stage2, mic_process_stage3, mic_process_stage4, NULL }; void (**mpp)(struct mic *); struct mic **mp; float df, agcdf; /* processing broken up into stages to allow state sharing between * stereo pairs of microphones */ for (mpp = mic_process; *mpp; mpp++) for (mp = mics; *mp; mp++) if ((*mp)->mode) (*mpp)(*mp); /* ducking factor tally - lowest wins */ for (df = 1.0f, mp = mics; *mp; mp++) df = (df > (agcdf = agc_get_ducking_factor((*mp)->agc))) ? agcdf : df; return df; } static int mic_getpeak(struct mic *self) { int peakdb; peakdb = (int)level2db(self->peak); self->peak = peak_init; return (peakdb < 0) ? peakdb : 0; } static void mic_stats(struct mic *self) { int red, yellow, green; agc_get_meter_levels(self->host->agc, &red, &yellow, &green); fprintf(g.out, "mic_%d_levels=%d,%d,%d,%d\n", self->id, mic_getpeak(self), red, yellow, green); } void mic_stats_all(struct mic **mics) { while (*mics) mic_stats(*mics++); } static void mic_set_role(struct mic *self, int role) { if (role == 'm') { self->mic_g = 1.0f; self->aux_g = 0.0f; } else // if role == 'a' { self->mic_g = 0.0f; self->aux_g = 1.0f; } } void mic_set_role_all(struct mic **mics, const char *role) { while (*mics) mic_set_role(*mics++, *role++); } static struct mic *mic_init(jack_client_t *client, int sample_rate, int id) { struct mic *self; char port_name[10]; if (!(self = calloc(1, sizeof (struct mic)))) { fprintf(stderr, "mic_init: malloc failure\n"); return NULL; } self->host = self; self->id = id; self->sample_rate = (float)sample_rate; self->pan = 50; self->aux_g = 1.0f; self->peak = peak_init; if (!(self->agc = agc_init(sample_rate, 0.01161f, id))) { fprintf(stderr, "mic_init: agc_init failed\n"); free(self); return NULL; } snprintf(port_name, 10, "ch_in_%d", id); self->jack_port = jack_port_register(client, port_name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0); calculate_gain_values(self); return self; } struct mic **mic_init_all(int n_mics, jack_client_t *client) { struct mic **mics; int i, sr; /* used to map suitable port names from the audio back-end as default connection targets */ const char **defaults, **dp; if (!(mics = calloc(n_mics + 1, sizeof (struct mic *)))) { fprintf(stderr, "malloc failure\n"); exit(5); } sr = jack_get_sample_rate(client); defaults = dp = jack_get_ports(client, NULL, NULL, JackPortIsPhysical | JackPortIsOutput); for (i = 0; i < n_mics; i++) { mics[i] = mic_init(client, sr, i + 1); if (!mics[i]) { fprintf(stderr, "mic_init failed\n"); exit(5); } mics[i]->default_mapped_port_name = (dp && *dp) ? strdup(*dp++) : NULL; } for (i = 0; i < n_mics; i += 2) { mics[i]->partner = mics[i + 1]; mics[i + 1]->partner = mics[i]; agc_set_as_partners(mics[i]->agc, mics[i + 1]->agc); } if (defaults) jack_free(defaults); return mics; } static void mic_free(struct mic *self) { agc_free(self->agc); self->agc = NULL; if (self->default_mapped_port_name) { free(self->default_mapped_port_name); self->default_mapped_port_name = NULL; } free(self); } void mic_free_all(struct mic **mics) { struct mic **mp = mics; while (*mp) { mic_free(*mp); *mp++ = NULL; } free(mics); } void mic_valueparse(struct mic *self, char *param) { char *save = NULL, *key, *value; key = strtok_r(param, "=", &save); value = strtok_r(NULL, "=", &save); if (!strcmp(key, "mode")) { self->mode_request = value[0] - '0'; } else if (!strcmp(key, "pan")) { self->pan = atoi(value); calculate_gain_values(self); } else if (!strcmp(key, "pan_active")) { self->pan_active = (value[0] == '1') ? 1 : 0; calculate_gain_values(self); } else if(!strcmp(key, "open")) { self->open = (value[0] == '1') ? 1 : 0; } else if(!strcmp(key, "invert")) { self->invert = (value[0] == '1') ? 1 : 0; self->igain = self->invert ? -1.0f : 1.0f; } else if(!strcmp(key, "indjmix")) { self->djmute = (value[0] == '1') ? 1.0f : 0.0f; } else if(!strcmp(key, "pairedinvert")) { self->rel_igain = (value[0] == '1') ? -1.0f : 1.0f; } else if(!strcmp(key, "pairedgain")) { self->rel_gain = powf(10.0f, atof(value) * 0.05); } else { if (!strcmp(key, "gain")) { self->gain = atof(value); calculate_gain_values(self); } agc_control(self->agc, key, value); } } idjc-0.8.16/c/avcodec_encoder.c0000644000175000017500000003051012664321644013140 00000000000000/* # avcodec_encoder.c: encode using libavcodec # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #include #include "main.h" #include "sourceclient.h" #ifdef HAVE_AVCODEC #include "avcodec_encoder.h" #ifndef HAVE_AV_FRAME_ALLOC #define av_frame_alloc avcodec_alloc_frame #endif #ifndef HAVE_AV_FRAME_UNREF #define av_frame_unref avcodec_get_frame_defaults #endif #define BYTE_ALIGNMENT (8) static const struct timespec time_delay = { .tv_nsec = 10 }; static void packetize_metadata(struct encoder *e, struct avenc_data * const s) { size_t l = 4; pthread_mutex_lock(&e->metadata_mutex); l += strlen(e->custom_meta); l += strlen(e->artist); l += strlen(e->title); l += strlen(e->album); if ((s->metadata = realloc(s->metadata, l))) snprintf(s->metadata, l, "%s\n%s\n%s\n%s", e->custom_meta, e->artist, e->title, e->album); else fprintf(stderr, "malloc failure\n"); e->new_metadata = FALSE; pthread_mutex_unlock(&e->metadata_mutex); } static int write_packet(struct encoder *encoder, struct avenc_data *s, unsigned char *buffer, size_t buffersize, int flags) { struct encoder_op_packet packet; packet.header.bit_rate = encoder->bitrate; packet.header.sample_rate = encoder->target_samplerate; packet.header.n_channels = encoder->n_channels; packet.header.flags = flags; packet.header.data_size = buffersize; packet.header.serial = encoder->oggserial; packet.header.timestamp = encoder->timestamp = s->samples_written / (double)encoder->target_samplerate; packet.data = buffer; encoder_write_packet_all(encoder, &packet); return 1; } static void live_avcodec_encoder_main(struct encoder *encoder) { struct avenc_data * const s = encoder->encoder_private; AVCodecContext *c; int final; struct encoder_ip_data *id; if (encoder->encoder_state == ES_STARTING) { av_init_packet(&s->avpkt); if (!(s->c = c = avcodec_alloc_context3(s->codec))) { fprintf(stderr, "avcodec_encoder_main: call to avcodec_alloc_context3 failed\n"); goto bailout; } // assign codec parameters c->bit_rate = encoder->bitrate; c->sample_rate = encoder->target_samplerate; c->channels = encoder->n_channels; c->sample_fmt = AV_SAMPLE_FMT_FLT; if (s->pkt_flags & PF_AAC) c->profile = FF_PROFILE_AAC_LOW; if (s->pkt_flags & PF_AACP2) c->profile = FF_PROFILE_AAC_HE; // start the codec preferably with float inputs else signed 16 bit integer inputs while (pthread_mutex_trylock(&g.avc_mutex)) nanosleep(&time_delay, NULL); if (avcodec_open2(c, s->codec, NULL) < 0) { fprintf(stderr, "live_avcodec_encoder_main: will retry with signed 16 bit: %s\n", s->codec->name); c->sample_fmt = AV_SAMPLE_FMT_S16; if (avcodec_open2(c, s->codec, NULL) < 0) { fprintf(stderr, "live_avcodec_encoder_main: could not open codec: %s\n", s->codec->name); pthread_mutex_unlock(&g.avc_mutex); goto bailout; } } pthread_mutex_unlock(&g.avc_mutex); // allocate the input buffer s->inbufsize = c->frame_size * c->channels * av_get_bytes_per_sample(c->sample_fmt); if (posix_memalign((void *)&s->inbuf, BYTE_ALIGNMENT, s->inbufsize + FF_INPUT_BUFFER_PADDING_SIZE)) { fprintf(stderr, "live_avcodec_encoder_main: malloc failure\n"); goto bailout; } memset(s->inbuf + s->inbufsize, '\0', FF_INPUT_BUFFER_PADDING_SIZE); // allocate the output buffer if (posix_memalign((void *)&s->avpkt.data, BYTE_ALIGNMENT, FF_MIN_BUFFER_SIZE)) { fprintf(stderr, "live_avcodec_encoder_main: malloc failure\n"); goto bailout; } s->pkt_flags = (s->pkt_flags | PF_INITIAL) & ~PF_FINAL; ++encoder->oggserial; encoder->encoder_state = ES_RUNNING; return; bailout: encoder->encoder_state = ES_STOPPING; encoder->run_request_f = FALSE; return; } if (encoder->encoder_state == ES_RUNNING) { final = encoder->flush || !encoder->run_request_f; c = s->c; size_t out_samples = c->frame_size; size_t in_samples = final ? 0 : out_samples; int got_packet; while ((id = encoder_get_input_data(encoder, in_samples, in_samples, NULL)) || final) { // id now has exactly one frame's worth of input data or is NULL // prepare an AVFrame to put that data if (!s->decoded_frame) { if (!(s->decoded_frame = av_frame_alloc())) { fprintf(stderr, "avcodec_encoder_main: failed to allocate frame\n"); encoder->encoder_state = ES_STOPPING; } } else av_frame_unref(s->decoded_frame); s->decoded_frame->nb_samples = in_samples; if (id) { // audio data is interwoven switch (s->c->sample_fmt) { case AV_SAMPLE_FMT_S16: // todo: add dither { float *lp = id->buffer[0], *rp = id->buffer[1]; int16_t *op = (int16_t *)s->inbuf; for (int i = 0; i < in_samples; ++i) { *op++ = (int16_t)(*lp++ * 32767.0); if (id->channels == 2) *op++ = (int16_t)(*rp++ * 32767.0); } } break; case AV_SAMPLE_FMT_FLT: { float *lp = id->buffer[0], *rp = id->buffer[1]; float *op = (float *)s->inbuf; for (int i = 0; i < in_samples; ++i) { *op++ = (float)*lp++; if (id->channels == 2) *op++ = (float)*rp++; } } break; default: fprintf(stderr, "avcodec_encoder_main: unhandled sample format\n"); encoder->encoder_state = ES_STOPPING; return; } encoder_ip_data_free(id); } else { memset(s->inbuf, '\0', FF_INPUT_BUFFER_PADDING_SIZE); s->pkt_flags |= PF_FINAL; } if (final && (s->codec->capabilities | CODEC_CAP_DELAY)) { av_free(s->decoded_frame); s->decoded_frame = NULL; } else { // audio data is fed into an AVFrame if (avcodec_fill_audio_frame(s->decoded_frame, s->c->channels, s->c->sample_fmt, s->inbuf, s->inbufsize, BYTE_ALIGNMENT) < 0) { fprintf(stderr, "avcodec_encoder_main: encoding failed\n"); encoder->encoder_state = ES_STOPPING; return; } } if (!final || s->codec->capabilities & (CODEC_CAP_DELAY | CODEC_CAP_VARIABLE_FRAME_SIZE | CODEC_CAP_SMALL_LAST_FRAME)) { // decode as much data is this encoder wants to s->avpkt.size = FF_MIN_BUFFER_SIZE; if (avcodec_encode_audio2(c, &s->avpkt, s->decoded_frame, &got_packet) < 0) { fprintf(stderr, "avcodec_encoder_main: encoding failed\n"); encoder->encoder_state = ES_STOPPING; return; } if (got_packet) { s->samples_written += out_samples; write_packet(encoder, s, s->avpkt.data, s->avpkt.size, s->pkt_flags); av_free_packet(&s->avpkt); s->pkt_flags &= ~PF_INITIAL; } } else { // write out an empty last packet rather than flush the codec with digital silence write_packet(encoder, s, (unsigned char *)"", 0, s->pkt_flags); } if (encoder->new_metadata && encoder->use_metadata && !(s->pkt_flags & (PF_INITIAL | PF_FINAL))) { packetize_metadata(encoder, s); if (s->metadata) write_packet(encoder, s, (unsigned char *)s->metadata, strlen(s->metadata) + 1, PF_METADATA); } // perform flush action cleanup if (final) { encoder->encoder_state = ES_STOPPING; return; } } return; } if (encoder->encoder_state == ES_STOPPING) { if (s->c) { if (avcodec_is_open(s->c)) avcodec_close(s->c); av_free(s->c); s->c = NULL; } if (s->decoded_frame) { av_free(s->decoded_frame); s->decoded_frame = NULL; } if (s->avpkt.data) { free(s->avpkt.data); s->avpkt.data = NULL; } if (s->inbuf) { free(s->inbuf); s->inbuf = NULL; } encoder->flush = FALSE; s->samples_written = 0; if (encoder->run_request_f) encoder->encoder_state = ES_STARTING; else { if (s->metadata) free(s->metadata); encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->encoder_private = NULL; free(s); } } } static AVCodec *aac_codec() { AVCodec *codec; char *names[] = {"libfaac", "adts", NULL }; for (char **name = names; *name; ++name) if ((codec = avcodec_find_encoder_by_name(*name))) return codec; return avcodec_find_encoder(AV_CODEC_ID_AAC); } static AVCodec *aacplus_codec() { return avcodec_find_encoder_by_name("libfdk_aac"); } int live_avcodec_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { struct avenc_data * const s = calloc(1, sizeof (struct avenc_data)); if (!s) { fprintf(stderr, "avcodec_encoder: malloc failure\n"); return FAILED; } if (!strcmp(ev->codec, "aac")) { s->codec = aac_codec(); s->pkt_flags = PF_AAC; } else { if (!strcmp(ev->codec, "aacpv2")) { s->codec = aacplus_codec(); s->pkt_flags = PF_AACP2; } else { fprintf(stderr, "avcodec_encoder: unsupported codec\n"); goto clean1; } } if (!s->codec) { fprintf(stderr, "live_avcodec_encoder_init: codec not found\n"); goto clean1; } encoder->bitrate = atoi(ev->bitrate); encoder->target_samplerate = atoi(ev->samplerate); encoder->n_channels = strcmp(ev->mode, "mono") ? 2 : 1; encoder->encoder_private = s; encoder->run_encoder = live_avcodec_encoder_main; return SUCCEEDED; clean1: free(s); return FAILED; } int live_avcodec_encoder_aac_functionality() { int aac_f = aac_codec() ? 1 : 0; int aacpv2_f = aacplus_codec() ? 1 : 0; fprintf(g.out, "idjcsc: aac_functionality=%d:%d\n", aac_f, aacpv2_f); fflush(g.out); if (ferror(g.out)) return FAILED; return SUCCEEDED; } #else int live_avcodec_encoder_aac_functionality() { fprintf(g.out, "idjcsc: aac_functionality=0:0\n"); return SUCCEEDED; } #endif /* HAVE_AVCODEC */ idjc-0.8.16/c/peakfilter.c0000644000175000017500000000426312630014502012152 00000000000000/* # peakfilter.c: finds a peak level from a filtered signal source # Copyright (C) 2010 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #define _GNU_SOURCE #include #include #include #include #include "peakfilter.h" #include "dbconvert.h" struct peakfilter *peakfilter_create(float window, int sample_rate) { struct peakfilter *self; int n_stages; if (!(self = malloc(sizeof (struct peakfilter)))) { fprintf(stderr, "malloc failure\n"); exit(-5); } if ((n_stages = (int)(window * sample_rate)) < 1) n_stages = 1; if (!(self->ptr = self->start = calloc(n_stages, sizeof (float)))) { fprintf(stderr, "malloc failure\n"); exit(-5); } self->end = self->start + n_stages; self->peak = 0.0f; return self; } void peakfilter_destroy(struct peakfilter *self) { free(self->start); free(self); } void peakfilter_process(struct peakfilter *self, float sample) { float least; float *p; *self->ptr++ = fabsf(sample); if (self->ptr == self->end) self->ptr = self->start; for (p = self->start, least = HUGE_VALF; p < self->end; p++) if (*p < least) least = *p; if (least > self->peak) self->peak = least; } float peakfilter_read(struct peakfilter *self) { float ret; ret = self->peak; self->peak = 0.0f; return ret; } idjc-0.8.16/c/kvpdict.h0000644000175000017500000000265312630014502011476 00000000000000/* # kvpdict.h: key-value pair header file for kvpdict.c, part of the IDJC project # Copyright (C) 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef KVPDICT_H #define KVPDICT_H #include struct kvpdict { char *key; /* the key from a key value pair to match against */ char **target; /* the aim here is to set another pointer to the new value rather than to make the new value a member of the dictionary */ pthread_mutex_t *pm; /* if a lock is supplied here it will be used */ }; char *kvp_extract_value(char *keyvaluepair); int kvp_apply_to_dict(struct kvpdict *kvpdict, char *key, char *newtarget); void kvp_free_dict(struct kvpdict *dp); #endif idjc-0.8.16/c/smoothing.c0000644000175000017500000000446212630014502012034 00000000000000/* # smoothing.c: Volume smoothing routines for IDJC. # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include "smoothing.h" extern unsigned long sr; /* jack sample rate */ void smoothing_mute_init(struct smoothing_mute *self, int *control) { self->level = 0.0f; self->control = control; } void smoothing_mute_process(struct smoothing_mute *self) { if (!self->control || *self->control) { if (self->level < 0.99f) /* switching on */ { self->level += (1.0f - self->level) * 0.09f * 44100.0f / sr; if (self->level >= 0.99f) self->level = 1.0f; } } else { if (self->level > 0.0F) /* switching off */ { self->level -= self->level * 0.075f * (2.0f - self->level) * (2.0f - self->level) * 44100.0f / sr; if (self->level < 0.00002f) self->level = 0.0f; } } } void smoothing_volume_init(struct smoothing_volume *self, int *control, float scale) { static int nullcontrol = 0; /* default values */ self->control = control ? control : &nullcontrol; self->scale = scale ? scale : 0.01775f; /* initial state */ self->tracking = 127; self->level = 1.0f; } void smoothing_volume_process(struct smoothing_volume *self) { if (*self->control != self->tracking) { self->tracking += (*self->control > self->tracking) ? 1 : -1; self->level = powf(10.0f, (self->tracking - 127) * self->scale); } } idjc-0.8.16/c/kvpdict.c0000644000175000017500000001021312630014502011460 00000000000000/* # kvpdict.c: key-value pair functions to aid parsing and setting of values # Copyright (C) 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "gnusource.h" #include #include #include #include #include "kvpdict.h" #include "bsdcompat.h" /* kvp_extract_value: extract the value of a key value pair from a string. The value is a copy of the orignial and is allocated on the heap. The returned "value" should be destroyed with free() when no longer needed. The string supplied is truncated at the = sign */ char *kvp_extract_value(char *pair) { char *part2, *value; if (!(part2 = strchr(pair, '='))) /* calling program must supply a Key Value Pair */ { fprintf(stderr, "kvp_extract_value: not a key=value pair: %s\n", pair); return strdup(""); } *part2++ = '\0'; /* point to the second half of the KVP and terminate the 1st also removing the \n character */ *strchr(part2, '\n') = '\0'; if (!(value = strdup(part2))) /* make a separate copy of the value */ { fprintf(stderr, "kvp_extract_value: malloc failure\n"); exit(-5); } return value; } /* dict_apply_to_target: sets a pointers object listed in a kvpdict to point to target when its key matches the one supplied to the function. Target is not made a member of the dictionary, but rather one of the dictionary members, which is itself a pointer is set to point to target. The memory used by the old target is freed */ int kvp_apply_to_dict(struct kvpdict *dp, char *key, char *target) { int append; size_t origtext_siz, newtext_siz; if ((append = (key[0] == '+'))) /* If key starts with a plus we will not replace -- we will append */ ++key; for (; dp->target; dp++) /* Iterate over NULL terminated dictionary */ { if (!strcmp(key, dp->key)) /* If the key matches */ { if (dp->pm) /* If a pthread mutex is supplied then use it */ pthread_mutex_lock(dp->pm); if (!append) { if (*(dp->target)) /* Conditionally free the old target buffer */ free(*(dp->target)); *(dp->target) = target; /* Dictionary member's pointer gets a new target */ } else { /* append mode -- multiple appends separated by a newline character */ *(dp->target) = realloc(*(dp->target), (origtext_siz = strlen(*(dp->target))) + (newtext_siz = strlen(target)) + 2); if (!(*(dp->target))) { fprintf(stderr, "malloc failure\n"); exit(5); } memcpy(*(dp->target) + origtext_siz, target, newtext_siz); memcpy(*(dp->target) + origtext_siz + newtext_siz, "\n", 2); free(target); } if (dp->pm) /* Unlock the pthread mutex if one was specified */ pthread_mutex_unlock(dp->pm); return 1; /* We have a match so return 1 */ } } return 0; /* No matches */ } void kvp_free_dict(struct kvpdict *dp) { while (dp->key) { if (*(dp->target)) free(*(dp->target)); *dp->target = NULL; dp++; } } idjc-0.8.16/c/ogg_vorbis_dec.c0000644000175000017500000002117112630014502012774 00000000000000/* # ogg_vorbis_dec.c: vorbis decoder for oggdec.c # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include "oggdec.h" #include "ogg_vorbis_dec.h" #define ACCEPTED 1 #define REJECTED 0 #define TRUE 1 #define FALSE 0 static void ogg_vorbisdec_cleanup(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct vorbisdec_vars *self = od->dec_data; fprintf(stderr, "ogg_vorbisdec_cleanup was called\n"); if (self->resample) { if (xlplayer->src_data.data_in) free(xlplayer->src_data.data_in); if (xlplayer->src_data.data_out) free(xlplayer->src_data.data_out); xlplayer->src_state = src_delete(xlplayer->src_state); } vorbis_block_clear(&self->vb); vorbis_dsp_clear(&self->v); vorbis_comment_clear(&self->vc); vorbis_info_clear(&self->vi); free(self); /* prevent double free or continued codec use */ od->dec_cleanup = NULL; od->dec_data = NULL; } static void ogg_vorbisdec_play(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct vorbisdec_vars *self = od->dec_data; int samples, i, wi = 0; size_t bsiz = 8192, block = 4096, bytes = 0; float **pcm, *li, *lo, *ri, *ro, *out, gain; int vorbis_retcode, src_error; int channels = (od->channels[od->ix] > 1) ? 2 : 1; if (!(oggdec_get_next_packet(od))) { fprintf(stderr, "oggdec_get_next_packet says no more packets\n"); oggdecode_playnext(xlplayer); return; } if ((vorbis_retcode = vorbis_synthesis(&self->vb, &od->op))) { fprintf(stderr, "vorbis synthesis reports problem %d\n", vorbis_retcode); } vorbis_synthesis_blockin(&self->v, &self->vb); if ((self->resample)) { xlplayer->src_data.data_in = out = realloc(xlplayer->src_data.data_in, bsiz *= channels); while ((samples = vorbis_synthesis_pcmout(&self->v, &pcm)) > 0) { bytes += samples * sizeof (float) * channels; if (bytes > bsiz) { bsiz += ((bytes - bsiz) / (block * channels) + 1) * block * channels; xlplayer->src_data.data_in = realloc(xlplayer->src_data.data_in, bsiz); out = xlplayer->src_data.data_in + wi * channels; } li = pcm[0]; if (channels > 1) for (i = 0, ri = pcm[1]; i < samples; i++) { *out++ = *li++; *out++ = *ri++; } else for (i = 0; i < samples; i++) *out++ = *li++; wi += samples; vorbis_synthesis_read(&self->v, samples); } xlplayer->src_data.input_frames = wi; xlplayer->src_data.output_frames = wi * xlplayer->src_data.src_ratio + 512; xlplayer->src_data.data_out = realloc(xlplayer->src_data.data_out, xlplayer->src_data.output_frames * channels * sizeof (float)); xlplayer->src_data.end_of_input = od->op.e_o_s; if ((src_error = src_process(xlplayer->src_state, &xlplayer->src_data))) { fprintf(stderr, "ogg_vorbisdec_play: %s src_process reports - %s\n", xlplayer->playername, src_strerror(src_error)); oggdecode_playnext(xlplayer); return; } xlplayer_demux_channel_data(xlplayer, xlplayer->src_data.data_out, xlplayer->src_data.output_frames_gen, channels, 1.f); } else { xlplayer->leftbuffer = lo = realloc(xlplayer->leftbuffer, bsiz); xlplayer->rightbuffer = ro = realloc(xlplayer->rightbuffer, bsiz); while ((samples = vorbis_synthesis_pcmout(&self->v, &pcm)) > 0) { bytes += samples * sizeof (float); if (bytes > bsiz) { bsiz += ((bytes - bsiz) / block + 1) * block; xlplayer->leftbuffer = realloc(xlplayer->leftbuffer, bsiz); lo = xlplayer->leftbuffer + wi; xlplayer->rightbuffer = realloc(xlplayer->rightbuffer, bsiz); ro = xlplayer->rightbuffer + wi; } li = pcm[0]; if (od->channels[od->ix] > 1) ri = pcm[1]; else ri = pcm[0]; for (i = 0; i < samples; i++) { gain = xlplayer_get_next_gain(xlplayer); *lo++ = *li++ * gain; *ro++ = *ri++ * gain; } wi += samples; vorbis_synthesis_read(&self->v, samples); } xlplayer->op_buffersize = bytes; if (od->channels[od->ix] == 1) memcpy(xlplayer->rightbuffer, xlplayer->leftbuffer, bytes); } xlplayer_write_channel_data(xlplayer); if (od->op.e_o_s) { fprintf(stderr, "end of stream\n"); oggdecode_playnext(xlplayer); } } int ogg_vorbisdec_init(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct vorbisdec_vars *self; int src_error; fprintf(stderr, "ogg_vorbisdec_init was called\n"); if (!(self = calloc(1, sizeof (struct vorbisdec_vars)))) { fprintf(stderr, "ogg_vorbisdec_init: malloc failure\n"); return REJECTED; } ogg_stream_reset_serialno(&od->os, od->serial[od->ix]); fseeko(od->fp, od->bos_offset[od->ix], SEEK_SET); ogg_sync_reset(&od->oy); vorbis_info_init(&self->vi); vorbis_comment_init(&self->vc); if (!(oggdec_get_next_packet(od) && vorbis_synthesis_headerin(&self->vi, &self->vc, &od->op) >= 0 && oggdec_get_next_packet(od) && vorbis_synthesis_headerin(&self->vi, &self->vc, &od->op) >= 0 && oggdec_get_next_packet(od) && vorbis_synthesis_headerin(&self->vi, &self->vc, &od->op) >= 0 && ogg_stream_packetout(&od->os, &od->op) == 0)) { fprintf(stderr, "ogg_vorbisdec_init: failed vorbis header read\n"); goto cleanup2; } if (vorbis_synthesis_init(&self->v, &self->vi)) { fprintf(stderr, "ogg_vorbisdec_init: call to vorbis_synthesis_init failed\n"); goto cleanup2; } if (vorbis_block_init(&self->v, &self->vb)) { fprintf(stderr, "ogg_vorbisdec_init: call to vorbis_block_init failed\n"); goto cleanup1; } if (od->seek_s) { /* seeked streams with less than 0.1 seconds left to be skipped */ if (od->seek_s > (od->duration[od->ix] - 0.5)) { fprintf(stderr, "ogg_vorbisdec_init: seeked stream virtually over - skipping\n"); goto cleanup0; } oggdecode_seek_to_packet(od); } if (od->samplerate[od->ix] != xlplayer->samplerate) { fprintf(stderr, "ogg_vorbisdec_init: configuring resampler\n"); xlplayer->src_state = src_new(xlplayer->rsqual, (od->channels[od->ix] > 1) ? 2 : 1, &src_error); if (src_error) { fprintf(stderr, "ogg_vorbisdec_init: src_new reports %s\n", src_strerror(src_error)); goto cleanup0; } xlplayer->src_data.output_frames = 0; xlplayer->src_data.data_in = xlplayer->src_data.data_out = NULL; xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double)od->samplerate[od->ix]; xlplayer->src_data.end_of_input = 0; self->resample = TRUE; } od->dec_data = self; od->dec_cleanup = ogg_vorbisdec_cleanup; xlplayer->dec_play = ogg_vorbisdec_play; return ACCEPTED; cleanup0: vorbis_block_clear(&self->vb); cleanup1: vorbis_dsp_clear(&self->v); cleanup2: vorbis_comment_clear(&self->vc); vorbis_info_clear(&self->vi); free(self); return REJECTED; } idjc-0.8.16/c/smoothing.h0000644000175000017500000000247712630014502012045 00000000000000/* # smoothing.h: Volume smoothing routines for IDJC. # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef SMOOTHING_H #define SMOOTHING_H struct smoothing_mute { int *control; float level; }; void smoothing_mute_init(struct smoothing_mute *, int *control); void smoothing_mute_process(struct smoothing_mute *); struct smoothing_volume { int *control; int tracking; float scale; float level; }; void smoothing_volume_init(struct smoothing_volume *self, int *control, float scale); void smoothing_volume_process(struct smoothing_volume *self); #endif /* SMOOTHING_H */ idjc-0.8.16/c/sourceclient.h0000644000175000017500000000330512630014502012524 00000000000000/* # sourceclient.h: the streaming module of idjc # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef SOURCECLIENT_H #define SOURCECLIENT_H enum { FAILED, SUCCEEDED }; /* use for return values to commandmap(pped) functions */ enum { FALSE, TRUE }; struct encoder; struct streamer; struct recorder; struct audio_feed; struct threads_info { int n_encoders; int n_streamers; int n_recorders; struct encoder **encoder; struct streamer **streamer; struct recorder **recorder; struct audio_feed *audio_feed; }; struct universal_vars { char *command; char *dev_type; char *tab_id; int tab; }; struct commandmap { char *key; int (*function)(struct threads_info *ti, struct universal_vars *uv, void *other_parameter); void *other_parameter; }; #include "encoder.h" #include "streamer.h" #include "recorder.h" #include "audio_feed.h" void sourceclient_init(); int sourceclient_main(); void comms_send(char *message); #endif idjc-0.8.16/c/live_mp2_encoder.c0000644000175000017500000001525712630014502013245 00000000000000/* # live_mp2_encoder.c: encode mp2 files from a live source # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_TWOLAME #include #include #include #include #include #include "sourceclient.h" #include "live_mp2_encoder.h" #define READSIZE 1024 typedef jack_default_audio_sample_t sample_t; static void packetize_metadata(struct encoder *e, struct lm2e_data * const s) { size_t l = 4; pthread_mutex_lock(&e->metadata_mutex); l += strlen(e->custom_meta); l += strlen(e->artist); l += strlen(e->title); l += strlen(e->album); if ((s->metadata = realloc(s->metadata, l))) snprintf(s->metadata, l, "%s\n%s\n%s\n%s", e->custom_meta, e->artist, e->title, e->album); else fprintf(stderr, "malloc failure\n"); e->new_metadata = FALSE; pthread_mutex_unlock(&e->metadata_mutex); } static int write_packet(struct encoder *encoder, struct lm2e_data *s, unsigned char *buffer, size_t buffersize, int flags) { struct encoder_op_packet packet; packet.header.bit_rate = encoder->bitrate; packet.header.sample_rate = encoder->target_samplerate; packet.header.n_channels = encoder->n_channels; packet.header.flags = flags; packet.header.data_size = buffersize; packet.header.serial = encoder->oggserial; packet.header.timestamp = encoder->timestamp = s->twolame_samples / (double)encoder->target_samplerate; packet.data = buffer; encoder_write_packet_all(encoder, &packet); return 1; } static void encoder_main(struct encoder *encoder) { struct lm2e_data * const s = encoder->encoder_private; struct encoder_ip_data *id; int mp2bytes = 0; if (encoder->encoder_state == ES_STARTING) { if (!(s->mp2buf = malloc(s->mp2bufsize = (int)(1.25 * 8192.0 + 7200.0)))) { fprintf(stderr, "live_mp2_encoder_main: malloc failure\n"); goto bailout; } if (!(s->gfp = twolame_init())) { fprintf(stderr, "live_mp2_encoder_main: failed to initialise twolame\n"); free(s->mp2buf); goto bailout; } twolame_set_num_channels(s->gfp, encoder->n_channels); twolame_set_brate(s->gfp, encoder->bitrate); twolame_set_in_samplerate(s->gfp, encoder->target_samplerate); twolame_set_out_samplerate(s->gfp, encoder->target_samplerate); twolame_set_mode(s->gfp, s->mpeg_mode); twolame_set_version(s->gfp, s->mpeg_version); if (twolame_init_params(s->gfp)) { fprintf(stderr, "live_mp2_encoder_main: twolame rejected the parameters given\n"); twolame_close(&s->gfp); free(s->mp2buf); goto bailout; } ++encoder->oggserial; s->packetflags = PF_INITIAL; s->twolame_samples = 0; if (encoder->run_request_f) encoder->encoder_state = ES_RUNNING; else encoder->encoder_state = ES_STOPPING; return; } if (encoder->encoder_state == ES_RUNNING) { if (encoder->flush || !encoder->run_request_f) { encoder->flush = FALSE; mp2bytes = twolame_encode_flush(s->gfp, s->mp2buf, s->mp2bufsize); fprintf(stderr, "live_mp2_encoder_main: flushing %d bytes\n", mp2bytes); write_packet(encoder, s, s->mp2buf, mp2bytes, PF_MP2 | PF_FINAL); encoder->encoder_state = ES_STOPPING; } else { if ((id = encoder_get_input_data(encoder, 1024, 8192, NULL))) { mp2bytes = twolame_encode_buffer_float32(s->gfp, id->buffer[0], id->buffer[1], id->qty_samples, s->mp2buf, s->mp2bufsize); encoder_ip_data_free(id); s->twolame_samples += id->qty_samples; write_packet(encoder, s, s->mp2buf, mp2bytes, PF_MP2 | s->packetflags); s->packetflags = PF_UNSET; } if (encoder->new_metadata && encoder->use_metadata) { packetize_metadata(encoder, s); if (s->metadata) write_packet(encoder, s, (unsigned char *)s->metadata, strlen(s->metadata) + 1, PF_METADATA | s->packetflags); s->packetflags = PF_UNSET; } } return; } if (encoder->encoder_state == ES_STOPPING) { twolame_close(&s->gfp); free(s->mp2buf); if (encoder->run_request_f) { encoder->encoder_state = ES_STARTING; return; } } bailout: fprintf(stderr, "live_mp2_encoder_main: performing cleanup\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->flush = FALSE; encoder->encoder_private = NULL; if (s->metadata) free(s->metadata); free(s); fprintf(stderr, "live_mp2_encoder_main: finished cleanup\n"); } int live_mp2_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { struct lm2e_data * const s = calloc(1, sizeof (struct lm2e_data)); if (!s) { fprintf(stderr, "live_mp2_encoder: malloc failure\n"); return FAILED; } if (!(strcmp("stereo", ev->mode))) s->mpeg_mode = TWOLAME_STEREO; else if (!(strcmp("jointstereo", ev->mode))) s->mpeg_mode = TWOLAME_JOINT_STEREO; else if (!(strcmp("mono", ev->mode))) s->mpeg_mode = TWOLAME_MONO; switch (atoi(ev->standard)) { case 1: s->mpeg_version = TWOLAME_MPEG1; break; case 2: s->mpeg_version = TWOLAME_MPEG2; break; default: fprintf(stderr, "bad mpeg version\n"); return FAILED; } encoder->encoder_private = s; encoder->run_encoder = encoder_main; return SUCCEEDED; } #endif /* HAVE_TWOLAME */ idjc-0.8.16/c/oggdec.h0000644000175000017500000001006412630014502011255 00000000000000/* # oggdec.h: ogg file parser/decoder for xlplayer # Copyright (C) 2008-2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #include "xlplayer.h" enum streamtype_t { ST_UNHANDLED, ST_VORBIS, ST_FLAC, ST_SPEEX, ST_OPUS }; struct oggdec_vars { int magic; /* 4545 */ FILE *fp; /* file handle */ double seek_s; /* time offset for first stream to be played */ void *dec_data; /* decoder state variables live here */ void (*dec_cleanup)(struct xlplayer *xlplayer); /* decoder cleanup function */ struct xlplayer *xlplayer; ogg_sync_state oy; /* various ogg decoding variables */ ogg_page og; ogg_stream_state os; ogg_packet op; /* a callback routine for when a new ogg page is obtained */ void (*new_oggpage_callback)(struct oggdec_vars *self, void *cb_userdata); void *new_oggpage_cb_userdata; /* stream info */ off_t *bos_offset; /* file position where each stream starts */ unsigned *initial_granulepos; unsigned *final_granulepos; int *serial; /* the ogg serial numbers */ unsigned *samplerate; /* sample rate per channel */ int *channels; /* number of audio channels */ char **artist; /* artist and title metadata */ char **title; char **album; char **replaygain; /* specifically replaygain_track_gain */ char **rgloudness; /* specifically replaygain_reference_loudness */ enum streamtype_t *streamtype; /* indicate which type ie vorbis, flac */ double *start_time; /* the time when each stream starts */ double *duration; /* playback time */ int n_streams; /* number of logical streams found */ int ix; /* index of the stream of interest */ off_t eos_offset; /* offset to the end of file */ double total_duration; /* sum total playback time */ }; int oggdecode_reg(struct xlplayer *xlplayer); int oggdecode_get_metainfo(char *pathname, char **artist, char **title, char **album, double *length, char **replaygain, char **rgloudness); int oggdec_get_next_packet(struct oggdec_vars *self); void oggdecode_dynamic_dispatcher(struct xlplayer *xlplayer); void oggdecode_playnext(struct xlplayer *xlplayer); void oggdecode_seek_to_packet(struct oggdec_vars *self); void oggdecode_set_new_oggpage_callback(struct oggdec_vars *self, void (*cb)(struct oggdec_vars *, void *), void *user_data); void oggdecode_remove_new_oggpage_callback(struct oggdec_vars *self); #ifdef HAVE_OGGFLAC FLAC__StreamDecoderReadStatus oggflac_read_callback(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data); FLAC__StreamDecoderSeekStatus oggflac_seek_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data); FLAC__StreamDecoderTellStatus oggflac_tell_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data); FLAC__StreamDecoderLengthStatus oggflac_length_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data); FLAC__bool oggflac_eof_callback(const FLAC__StreamDecoder *decoder, void *client_data); void oggflac_error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus se, void *client_data); #endif /* HAVE_OGGFLAC */ idjc-0.8.16/c/dyn_lame.h0000644000175000017500000000160212630014502011613 00000000000000/* # dyn_lame.h: dynamic linking for LAME # Copyright (C) 2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef DYN_LAME int dyn_lame_init(); #endif /* DYN_LAME */ idjc-0.8.16/c/vorbistagparse.h0000644000175000017500000000674212630014502013070 00000000000000/* # vorbistagparse.h: parse vorbis tags # Copyright (C) 2013 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include struct vtag; struct vtag_block_private; struct vtag_block { char *data; size_t length; struct vtag_block_private *private; }; enum vtag_error {VE_OK, VE_ALLOCATION, VE_CROPPED, VE_TRAILING, VE_SHORT_COMMENT, VE_MISSING_SEPARATOR, VE_MISSING_VALUE, VE_INVALID_KEY}; enum vtag_lookup_mode {VLM_FIRST, /* the first tag of given key */ VLM_LAST, /* last tag of a given key */ VLM_MERGE /* combine like key data into one string */ }; /* vtag_new: a new empty vorbis tag * vendor_string: the vendor string of course * error: optional, can point to NULL */ struct vtag *vtag_new(const char *vendor_string, int *error); /* vtag_parse: parse a vorbis tag data chunk * the data chunk must be framed exactly to not be rejected * all tags within must be of key=value form and keys * must only contain legal characters * error: optional, can point to NULL */ struct vtag *vtag_parse(void *data, size_t bytes, int *error); /* vtag_comment_count: * return value: the number of comments attached to a given key, key */ int vtag_comment_count(struct vtag *s, char const *key); /* vtag_lookup: look up a tag by its key * key: this is case independent * mode: how to handle multiple keys * sep: separator string in VLM_MERGE mode or NULL * return value: the tag data requested or NULL -- the caller is * responsible for freeing the returned data */ char *vtag_lookup(struct vtag *s, char const *key, enum vtag_lookup_mode mode, char *sep); /* vtag_append: append a new key=value comment * key: must consist of the printable ASCII characters 0x20 to 0x7D inclusive * value: a string that must not have zero length */ int vtag_append(struct vtag *s, char const *key, char const *value); /* vtag_block_init: initialise output data structure for vtag_serialize * return value: 0 if failure, otherwise success */ int vtag_block_init(struct vtag_block *block); /* vtag_block_cleanup: frees memory */ void vtag_block_cleanup(struct vtag_block *block); /* vtag_serialize: constructs a new vorbis comment block * * block: the output data structure initialised with vtag_block_init * prefix: optional prefix string for the data block e.g. OpusTags or NULL * return value: VE_OK or VE_ALLOCATION */ int vtag_serialize(struct vtag *s, struct vtag_block *block, char const *prefix); /* vtag_encoder: returns the vendor string of the vorbis tag */ char const *vtag_vendor_string(struct vtag *); /* vtag_cleanup: dispose of data structure returned by vtag_parse */ void vtag_cleanup(struct vtag *); /* vtag_strerror: * return value: human readable form of the error code */ char const *vtag_strerror(int error); idjc-0.8.16/c/Makefile.in0000644000175000017500000022473112711167210011736 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = c ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__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)$(pkglibdir)" LTLIBRARIES = $(pkglib_LTLIBRARIES) am__DEPENDENCIES_1 = idjc_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) am_idjc_la_OBJECTS = idjc_la-agc.lo idjc_la-audio_feed.lo \ idjc_la-avcodecdecode.lo idjc_la-bsdcompat.lo \ idjc_la-compressor.lo idjc_la-dbconvert.lo idjc_la-dyn_lame.lo \ idjc_la-encoder.lo idjc_la-fade.lo idjc_la-flacdecode.lo \ idjc_la-ialloc.lo idjc_la-id3.lo idjc_la-kvpdict.lo \ idjc_la-kvpparse.lo idjc_la-live_mp3_encoder.lo \ idjc_la-live_ogg_encoder.lo idjc_la-live_oggflac_encoder.lo \ idjc_la-live_oggspeex_encoder.lo idjc_la-main.lo \ idjc_la-mic.lo idjc_la-mixer.lo idjc_la-mp3dec.lo \ idjc_la-mp3tagread.lo idjc_la-ogg_flac_dec.lo \ idjc_la-ogg_speex_dec.lo idjc_la-ogg_vorbis_dec.lo \ idjc_la-oggdec.lo idjc_la-peakfilter.lo idjc_la-recorder.lo \ idjc_la-sig.lo idjc_la-sndfiledecode.lo idjc_la-sndfileinfo.lo \ idjc_la-sourceclient.lo idjc_la-speextag.lo \ idjc_la-streamer.lo idjc_la-xlplayer.lo \ idjc_la-live_mp2_encoder.lo idjc_la-avcodec_encoder.lo \ idjc_la-smoothing.lo idjc_la-dyn_mpg123.lo \ idjc_la-ogg_opus_dec.lo idjc_la-vorbistagparse.lo \ idjc_la-live_oggopus_encoder.lo idjc_la-live_webm_encoder.lo idjc_la_OBJECTS = $(am_idjc_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 = idjc_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(idjc_la_CFLAGS) \ $(CFLAGS) $(idjc_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)/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 = $(idjc_la_SOURCES) DIST_SOURCES = $(idjc_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 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ pkglib_LTLIBRARIES = idjc.la idjc_la_SOURCES = agc.c agc.h audio_feed.c audio_feed.h avcodecdecode.c avcodecdecode.h bsdcompat.c bsdcompat.h \ \ compressor.c compressor.h dbconvert.c dbconvert.h dyn_lame.c dyn_lame.h encoder.c \ \ encoder.h fade.c fade.h flacdecode.c flacdecode.h gnusource.h ialloc.c ialloc.h id3.c id3.h kvpdict.c \ \ kvpdict.h kvpparse.c kvpparse.h lame.h live_mp3_encoder.c live_mp3_encoder.h live_ogg_encoder.c \ \ live_ogg_encoder.h live_oggflac_encoder.c live_oggflac_encoder.h live_oggspeex_encoder.c \ \ live_oggspeex_encoder.h main.c main.h mic.c mic.h mixer.c mixer.h mp3dec.c mp3dec.h mp3tagread.c \ \ mp3tagread.h ogg_flac_dec.c ogg_flac_dec.h ogg_speex_dec.c ogg_speex_dec.h ogg_vorbis_dec.c \ \ ogg_vorbis_dec.h oggdec.c oggdec.h peakfilter.c peakfilter.h recorder.c recorder.h sig.c sig.h \ \ sndfiledecode.c sndfiledecode.h sndfileinfo.c sndfileinfo.h sourceclient.c sourceclient.h speextag.c \ \ speextag.h streamer.c streamer.h xlplayer.c xlplayer.h live_mp2_encoder.c live_mp2_encoder.h \ \ avcodec_encoder.c avcodec_encoder.h smoothing.c smoothing.h dyn_mpg123.c dyn_mpg123.h mpg123.h \ \ ogg_opus_dec.c ogg_opus_dec.h vorbistagparse.c vorbistagparse.h live_oggopus_encoder.c \ \ live_oggopus_encoder.h live_webm_encoder.c live_webm_encoder.h idjc_la_CFLAGS = ${GLIB_CFLAGS} ${LIBAVCODEC_CFLAGS} ${LIBAVFORMAT_CFLAGS} ${LIBAVUTIL_CFLAGS} ${LIBFLAC_CFLAGS} \ \ ${LIBJACK_CFLAGS} ${MPG123_CFLAGS} ${LIBSAMPLERATE_CFLAGS} ${SHOUTIDJC_CFLAGS} ${LIBSNDFILE_CFLAGS} \ \ ${LIBSPEEX_CFLAGS} ${LIBVORBISENC_CFLAGS} ${LIBVORBIS_CFLAGS} ${TWOLAME_CFLAGS} ${OPUS_CFLAGS} \ \ ${LIBSWRESAMPLE_CFLAGS} -O2 -Wall -std=gnu99 idjc_la_LIBADD = ${DYN_LIBS} ${GLIB_LIBS} ${LIBAVCODEC_LIBS} ${LIBAVFORMAT_LIBS} ${LIBAVUTIL_LIBS} ${LIBFLAC_LIBS} \ \ ${LIBJACK_LIBS} ${MPG123_LIBS} ${LIBMP3LAME} ${LIBM} ${LIBSAMPLERATE_LIBS} ${SHOUTIDJC_LIBS} \ \ ${LIBSNDFILE_LIBS} ${LIBSPEEX_LIBS} ${LIBVORBISENC_LIBS} ${LIBVORBIS_LIBS} ${TWOLAME_LIBS} \ \ ${LIBSWRESAMPLE_LIBS} ${OPUS_LIBS} -lpthread idjc_la_LDFLAGS = ${DYN_LDFLAGS} -no-undefined -avoid-version -module all: 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) --gnu c/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu c/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-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ } uninstall-pkglibLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ done clean-pkglibLTLIBRARIES: -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) @list='$(pkglib_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}; \ } idjc.la: $(idjc_la_OBJECTS) $(idjc_la_DEPENDENCIES) $(EXTRA_idjc_la_DEPENDENCIES) $(AM_V_CCLD)$(idjc_la_LINK) -rpath $(pkglibdir) $(idjc_la_OBJECTS) $(idjc_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-agc.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-audio_feed.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-avcodec_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-avcodecdecode.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-bsdcompat.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-compressor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-dbconvert.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-dyn_lame.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-dyn_mpg123.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-fade.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-flacdecode.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-ialloc.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-id3.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-kvpdict.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-kvpparse.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-live_mp2_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-live_mp3_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-live_ogg_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-live_oggflac_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-live_oggopus_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-live_oggspeex_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-live_webm_encoder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-main.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-mic.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-mixer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-mp3dec.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-mp3tagread.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-ogg_flac_dec.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-ogg_opus_dec.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-ogg_speex_dec.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-ogg_vorbis_dec.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-oggdec.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-peakfilter.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-recorder.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-sig.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-smoothing.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-sndfiledecode.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-sndfileinfo.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-sourceclient.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-speextag.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-streamer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-vorbistagparse.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/idjc_la-xlplayer.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 $@ $< idjc_la-agc.lo: agc.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-agc.lo -MD -MP -MF $(DEPDIR)/idjc_la-agc.Tpo -c -o idjc_la-agc.lo `test -f 'agc.c' || echo '$(srcdir)/'`agc.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-agc.Tpo $(DEPDIR)/idjc_la-agc.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='agc.c' object='idjc_la-agc.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-agc.lo `test -f 'agc.c' || echo '$(srcdir)/'`agc.c idjc_la-audio_feed.lo: audio_feed.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-audio_feed.lo -MD -MP -MF $(DEPDIR)/idjc_la-audio_feed.Tpo -c -o idjc_la-audio_feed.lo `test -f 'audio_feed.c' || echo '$(srcdir)/'`audio_feed.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-audio_feed.Tpo $(DEPDIR)/idjc_la-audio_feed.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='audio_feed.c' object='idjc_la-audio_feed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-audio_feed.lo `test -f 'audio_feed.c' || echo '$(srcdir)/'`audio_feed.c idjc_la-avcodecdecode.lo: avcodecdecode.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-avcodecdecode.lo -MD -MP -MF $(DEPDIR)/idjc_la-avcodecdecode.Tpo -c -o idjc_la-avcodecdecode.lo `test -f 'avcodecdecode.c' || echo '$(srcdir)/'`avcodecdecode.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-avcodecdecode.Tpo $(DEPDIR)/idjc_la-avcodecdecode.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='avcodecdecode.c' object='idjc_la-avcodecdecode.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-avcodecdecode.lo `test -f 'avcodecdecode.c' || echo '$(srcdir)/'`avcodecdecode.c idjc_la-bsdcompat.lo: bsdcompat.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-bsdcompat.lo -MD -MP -MF $(DEPDIR)/idjc_la-bsdcompat.Tpo -c -o idjc_la-bsdcompat.lo `test -f 'bsdcompat.c' || echo '$(srcdir)/'`bsdcompat.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-bsdcompat.Tpo $(DEPDIR)/idjc_la-bsdcompat.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='bsdcompat.c' object='idjc_la-bsdcompat.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-bsdcompat.lo `test -f 'bsdcompat.c' || echo '$(srcdir)/'`bsdcompat.c idjc_la-compressor.lo: compressor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-compressor.lo -MD -MP -MF $(DEPDIR)/idjc_la-compressor.Tpo -c -o idjc_la-compressor.lo `test -f 'compressor.c' || echo '$(srcdir)/'`compressor.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-compressor.Tpo $(DEPDIR)/idjc_la-compressor.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='compressor.c' object='idjc_la-compressor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-compressor.lo `test -f 'compressor.c' || echo '$(srcdir)/'`compressor.c idjc_la-dbconvert.lo: dbconvert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-dbconvert.lo -MD -MP -MF $(DEPDIR)/idjc_la-dbconvert.Tpo -c -o idjc_la-dbconvert.lo `test -f 'dbconvert.c' || echo '$(srcdir)/'`dbconvert.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-dbconvert.Tpo $(DEPDIR)/idjc_la-dbconvert.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dbconvert.c' object='idjc_la-dbconvert.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-dbconvert.lo `test -f 'dbconvert.c' || echo '$(srcdir)/'`dbconvert.c idjc_la-dyn_lame.lo: dyn_lame.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-dyn_lame.lo -MD -MP -MF $(DEPDIR)/idjc_la-dyn_lame.Tpo -c -o idjc_la-dyn_lame.lo `test -f 'dyn_lame.c' || echo '$(srcdir)/'`dyn_lame.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-dyn_lame.Tpo $(DEPDIR)/idjc_la-dyn_lame.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dyn_lame.c' object='idjc_la-dyn_lame.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-dyn_lame.lo `test -f 'dyn_lame.c' || echo '$(srcdir)/'`dyn_lame.c idjc_la-encoder.lo: encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-encoder.Tpo -c -o idjc_la-encoder.lo `test -f 'encoder.c' || echo '$(srcdir)/'`encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-encoder.Tpo $(DEPDIR)/idjc_la-encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='encoder.c' object='idjc_la-encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-encoder.lo `test -f 'encoder.c' || echo '$(srcdir)/'`encoder.c idjc_la-fade.lo: fade.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-fade.lo -MD -MP -MF $(DEPDIR)/idjc_la-fade.Tpo -c -o idjc_la-fade.lo `test -f 'fade.c' || echo '$(srcdir)/'`fade.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-fade.Tpo $(DEPDIR)/idjc_la-fade.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fade.c' object='idjc_la-fade.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-fade.lo `test -f 'fade.c' || echo '$(srcdir)/'`fade.c idjc_la-flacdecode.lo: flacdecode.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-flacdecode.lo -MD -MP -MF $(DEPDIR)/idjc_la-flacdecode.Tpo -c -o idjc_la-flacdecode.lo `test -f 'flacdecode.c' || echo '$(srcdir)/'`flacdecode.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-flacdecode.Tpo $(DEPDIR)/idjc_la-flacdecode.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='flacdecode.c' object='idjc_la-flacdecode.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-flacdecode.lo `test -f 'flacdecode.c' || echo '$(srcdir)/'`flacdecode.c idjc_la-ialloc.lo: ialloc.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-ialloc.lo -MD -MP -MF $(DEPDIR)/idjc_la-ialloc.Tpo -c -o idjc_la-ialloc.lo `test -f 'ialloc.c' || echo '$(srcdir)/'`ialloc.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-ialloc.Tpo $(DEPDIR)/idjc_la-ialloc.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ialloc.c' object='idjc_la-ialloc.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-ialloc.lo `test -f 'ialloc.c' || echo '$(srcdir)/'`ialloc.c idjc_la-id3.lo: id3.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-id3.lo -MD -MP -MF $(DEPDIR)/idjc_la-id3.Tpo -c -o idjc_la-id3.lo `test -f 'id3.c' || echo '$(srcdir)/'`id3.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-id3.Tpo $(DEPDIR)/idjc_la-id3.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='id3.c' object='idjc_la-id3.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-id3.lo `test -f 'id3.c' || echo '$(srcdir)/'`id3.c idjc_la-kvpdict.lo: kvpdict.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-kvpdict.lo -MD -MP -MF $(DEPDIR)/idjc_la-kvpdict.Tpo -c -o idjc_la-kvpdict.lo `test -f 'kvpdict.c' || echo '$(srcdir)/'`kvpdict.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-kvpdict.Tpo $(DEPDIR)/idjc_la-kvpdict.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='kvpdict.c' object='idjc_la-kvpdict.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-kvpdict.lo `test -f 'kvpdict.c' || echo '$(srcdir)/'`kvpdict.c idjc_la-kvpparse.lo: kvpparse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-kvpparse.lo -MD -MP -MF $(DEPDIR)/idjc_la-kvpparse.Tpo -c -o idjc_la-kvpparse.lo `test -f 'kvpparse.c' || echo '$(srcdir)/'`kvpparse.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-kvpparse.Tpo $(DEPDIR)/idjc_la-kvpparse.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='kvpparse.c' object='idjc_la-kvpparse.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-kvpparse.lo `test -f 'kvpparse.c' || echo '$(srcdir)/'`kvpparse.c idjc_la-live_mp3_encoder.lo: live_mp3_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-live_mp3_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-live_mp3_encoder.Tpo -c -o idjc_la-live_mp3_encoder.lo `test -f 'live_mp3_encoder.c' || echo '$(srcdir)/'`live_mp3_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-live_mp3_encoder.Tpo $(DEPDIR)/idjc_la-live_mp3_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='live_mp3_encoder.c' object='idjc_la-live_mp3_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-live_mp3_encoder.lo `test -f 'live_mp3_encoder.c' || echo '$(srcdir)/'`live_mp3_encoder.c idjc_la-live_ogg_encoder.lo: live_ogg_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-live_ogg_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-live_ogg_encoder.Tpo -c -o idjc_la-live_ogg_encoder.lo `test -f 'live_ogg_encoder.c' || echo '$(srcdir)/'`live_ogg_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-live_ogg_encoder.Tpo $(DEPDIR)/idjc_la-live_ogg_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='live_ogg_encoder.c' object='idjc_la-live_ogg_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-live_ogg_encoder.lo `test -f 'live_ogg_encoder.c' || echo '$(srcdir)/'`live_ogg_encoder.c idjc_la-live_oggflac_encoder.lo: live_oggflac_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-live_oggflac_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-live_oggflac_encoder.Tpo -c -o idjc_la-live_oggflac_encoder.lo `test -f 'live_oggflac_encoder.c' || echo '$(srcdir)/'`live_oggflac_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-live_oggflac_encoder.Tpo $(DEPDIR)/idjc_la-live_oggflac_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='live_oggflac_encoder.c' object='idjc_la-live_oggflac_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-live_oggflac_encoder.lo `test -f 'live_oggflac_encoder.c' || echo '$(srcdir)/'`live_oggflac_encoder.c idjc_la-live_oggspeex_encoder.lo: live_oggspeex_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-live_oggspeex_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-live_oggspeex_encoder.Tpo -c -o idjc_la-live_oggspeex_encoder.lo `test -f 'live_oggspeex_encoder.c' || echo '$(srcdir)/'`live_oggspeex_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-live_oggspeex_encoder.Tpo $(DEPDIR)/idjc_la-live_oggspeex_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='live_oggspeex_encoder.c' object='idjc_la-live_oggspeex_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-live_oggspeex_encoder.lo `test -f 'live_oggspeex_encoder.c' || echo '$(srcdir)/'`live_oggspeex_encoder.c idjc_la-main.lo: main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-main.lo -MD -MP -MF $(DEPDIR)/idjc_la-main.Tpo -c -o idjc_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-main.Tpo $(DEPDIR)/idjc_la-main.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='idjc_la-main.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c idjc_la-mic.lo: mic.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-mic.lo -MD -MP -MF $(DEPDIR)/idjc_la-mic.Tpo -c -o idjc_la-mic.lo `test -f 'mic.c' || echo '$(srcdir)/'`mic.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-mic.Tpo $(DEPDIR)/idjc_la-mic.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mic.c' object='idjc_la-mic.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-mic.lo `test -f 'mic.c' || echo '$(srcdir)/'`mic.c idjc_la-mixer.lo: mixer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-mixer.lo -MD -MP -MF $(DEPDIR)/idjc_la-mixer.Tpo -c -o idjc_la-mixer.lo `test -f 'mixer.c' || echo '$(srcdir)/'`mixer.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-mixer.Tpo $(DEPDIR)/idjc_la-mixer.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mixer.c' object='idjc_la-mixer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-mixer.lo `test -f 'mixer.c' || echo '$(srcdir)/'`mixer.c idjc_la-mp3dec.lo: mp3dec.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-mp3dec.lo -MD -MP -MF $(DEPDIR)/idjc_la-mp3dec.Tpo -c -o idjc_la-mp3dec.lo `test -f 'mp3dec.c' || echo '$(srcdir)/'`mp3dec.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-mp3dec.Tpo $(DEPDIR)/idjc_la-mp3dec.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mp3dec.c' object='idjc_la-mp3dec.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-mp3dec.lo `test -f 'mp3dec.c' || echo '$(srcdir)/'`mp3dec.c idjc_la-mp3tagread.lo: mp3tagread.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-mp3tagread.lo -MD -MP -MF $(DEPDIR)/idjc_la-mp3tagread.Tpo -c -o idjc_la-mp3tagread.lo `test -f 'mp3tagread.c' || echo '$(srcdir)/'`mp3tagread.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-mp3tagread.Tpo $(DEPDIR)/idjc_la-mp3tagread.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mp3tagread.c' object='idjc_la-mp3tagread.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-mp3tagread.lo `test -f 'mp3tagread.c' || echo '$(srcdir)/'`mp3tagread.c idjc_la-ogg_flac_dec.lo: ogg_flac_dec.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-ogg_flac_dec.lo -MD -MP -MF $(DEPDIR)/idjc_la-ogg_flac_dec.Tpo -c -o idjc_la-ogg_flac_dec.lo `test -f 'ogg_flac_dec.c' || echo '$(srcdir)/'`ogg_flac_dec.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-ogg_flac_dec.Tpo $(DEPDIR)/idjc_la-ogg_flac_dec.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ogg_flac_dec.c' object='idjc_la-ogg_flac_dec.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-ogg_flac_dec.lo `test -f 'ogg_flac_dec.c' || echo '$(srcdir)/'`ogg_flac_dec.c idjc_la-ogg_speex_dec.lo: ogg_speex_dec.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-ogg_speex_dec.lo -MD -MP -MF $(DEPDIR)/idjc_la-ogg_speex_dec.Tpo -c -o idjc_la-ogg_speex_dec.lo `test -f 'ogg_speex_dec.c' || echo '$(srcdir)/'`ogg_speex_dec.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-ogg_speex_dec.Tpo $(DEPDIR)/idjc_la-ogg_speex_dec.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ogg_speex_dec.c' object='idjc_la-ogg_speex_dec.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-ogg_speex_dec.lo `test -f 'ogg_speex_dec.c' || echo '$(srcdir)/'`ogg_speex_dec.c idjc_la-ogg_vorbis_dec.lo: ogg_vorbis_dec.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-ogg_vorbis_dec.lo -MD -MP -MF $(DEPDIR)/idjc_la-ogg_vorbis_dec.Tpo -c -o idjc_la-ogg_vorbis_dec.lo `test -f 'ogg_vorbis_dec.c' || echo '$(srcdir)/'`ogg_vorbis_dec.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-ogg_vorbis_dec.Tpo $(DEPDIR)/idjc_la-ogg_vorbis_dec.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ogg_vorbis_dec.c' object='idjc_la-ogg_vorbis_dec.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-ogg_vorbis_dec.lo `test -f 'ogg_vorbis_dec.c' || echo '$(srcdir)/'`ogg_vorbis_dec.c idjc_la-oggdec.lo: oggdec.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-oggdec.lo -MD -MP -MF $(DEPDIR)/idjc_la-oggdec.Tpo -c -o idjc_la-oggdec.lo `test -f 'oggdec.c' || echo '$(srcdir)/'`oggdec.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-oggdec.Tpo $(DEPDIR)/idjc_la-oggdec.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='oggdec.c' object='idjc_la-oggdec.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-oggdec.lo `test -f 'oggdec.c' || echo '$(srcdir)/'`oggdec.c idjc_la-peakfilter.lo: peakfilter.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-peakfilter.lo -MD -MP -MF $(DEPDIR)/idjc_la-peakfilter.Tpo -c -o idjc_la-peakfilter.lo `test -f 'peakfilter.c' || echo '$(srcdir)/'`peakfilter.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-peakfilter.Tpo $(DEPDIR)/idjc_la-peakfilter.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='peakfilter.c' object='idjc_la-peakfilter.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-peakfilter.lo `test -f 'peakfilter.c' || echo '$(srcdir)/'`peakfilter.c idjc_la-recorder.lo: recorder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-recorder.lo -MD -MP -MF $(DEPDIR)/idjc_la-recorder.Tpo -c -o idjc_la-recorder.lo `test -f 'recorder.c' || echo '$(srcdir)/'`recorder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-recorder.Tpo $(DEPDIR)/idjc_la-recorder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='recorder.c' object='idjc_la-recorder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-recorder.lo `test -f 'recorder.c' || echo '$(srcdir)/'`recorder.c idjc_la-sig.lo: sig.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-sig.lo -MD -MP -MF $(DEPDIR)/idjc_la-sig.Tpo -c -o idjc_la-sig.lo `test -f 'sig.c' || echo '$(srcdir)/'`sig.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-sig.Tpo $(DEPDIR)/idjc_la-sig.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sig.c' object='idjc_la-sig.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-sig.lo `test -f 'sig.c' || echo '$(srcdir)/'`sig.c idjc_la-sndfiledecode.lo: sndfiledecode.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-sndfiledecode.lo -MD -MP -MF $(DEPDIR)/idjc_la-sndfiledecode.Tpo -c -o idjc_la-sndfiledecode.lo `test -f 'sndfiledecode.c' || echo '$(srcdir)/'`sndfiledecode.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-sndfiledecode.Tpo $(DEPDIR)/idjc_la-sndfiledecode.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sndfiledecode.c' object='idjc_la-sndfiledecode.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-sndfiledecode.lo `test -f 'sndfiledecode.c' || echo '$(srcdir)/'`sndfiledecode.c idjc_la-sndfileinfo.lo: sndfileinfo.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-sndfileinfo.lo -MD -MP -MF $(DEPDIR)/idjc_la-sndfileinfo.Tpo -c -o idjc_la-sndfileinfo.lo `test -f 'sndfileinfo.c' || echo '$(srcdir)/'`sndfileinfo.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-sndfileinfo.Tpo $(DEPDIR)/idjc_la-sndfileinfo.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sndfileinfo.c' object='idjc_la-sndfileinfo.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-sndfileinfo.lo `test -f 'sndfileinfo.c' || echo '$(srcdir)/'`sndfileinfo.c idjc_la-sourceclient.lo: sourceclient.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-sourceclient.lo -MD -MP -MF $(DEPDIR)/idjc_la-sourceclient.Tpo -c -o idjc_la-sourceclient.lo `test -f 'sourceclient.c' || echo '$(srcdir)/'`sourceclient.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-sourceclient.Tpo $(DEPDIR)/idjc_la-sourceclient.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sourceclient.c' object='idjc_la-sourceclient.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-sourceclient.lo `test -f 'sourceclient.c' || echo '$(srcdir)/'`sourceclient.c idjc_la-speextag.lo: speextag.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-speextag.lo -MD -MP -MF $(DEPDIR)/idjc_la-speextag.Tpo -c -o idjc_la-speextag.lo `test -f 'speextag.c' || echo '$(srcdir)/'`speextag.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-speextag.Tpo $(DEPDIR)/idjc_la-speextag.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='speextag.c' object='idjc_la-speextag.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-speextag.lo `test -f 'speextag.c' || echo '$(srcdir)/'`speextag.c idjc_la-streamer.lo: streamer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-streamer.lo -MD -MP -MF $(DEPDIR)/idjc_la-streamer.Tpo -c -o idjc_la-streamer.lo `test -f 'streamer.c' || echo '$(srcdir)/'`streamer.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-streamer.Tpo $(DEPDIR)/idjc_la-streamer.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='streamer.c' object='idjc_la-streamer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-streamer.lo `test -f 'streamer.c' || echo '$(srcdir)/'`streamer.c idjc_la-xlplayer.lo: xlplayer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-xlplayer.lo -MD -MP -MF $(DEPDIR)/idjc_la-xlplayer.Tpo -c -o idjc_la-xlplayer.lo `test -f 'xlplayer.c' || echo '$(srcdir)/'`xlplayer.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-xlplayer.Tpo $(DEPDIR)/idjc_la-xlplayer.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xlplayer.c' object='idjc_la-xlplayer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-xlplayer.lo `test -f 'xlplayer.c' || echo '$(srcdir)/'`xlplayer.c idjc_la-live_mp2_encoder.lo: live_mp2_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-live_mp2_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-live_mp2_encoder.Tpo -c -o idjc_la-live_mp2_encoder.lo `test -f 'live_mp2_encoder.c' || echo '$(srcdir)/'`live_mp2_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-live_mp2_encoder.Tpo $(DEPDIR)/idjc_la-live_mp2_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='live_mp2_encoder.c' object='idjc_la-live_mp2_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-live_mp2_encoder.lo `test -f 'live_mp2_encoder.c' || echo '$(srcdir)/'`live_mp2_encoder.c idjc_la-avcodec_encoder.lo: avcodec_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-avcodec_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-avcodec_encoder.Tpo -c -o idjc_la-avcodec_encoder.lo `test -f 'avcodec_encoder.c' || echo '$(srcdir)/'`avcodec_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-avcodec_encoder.Tpo $(DEPDIR)/idjc_la-avcodec_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='avcodec_encoder.c' object='idjc_la-avcodec_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-avcodec_encoder.lo `test -f 'avcodec_encoder.c' || echo '$(srcdir)/'`avcodec_encoder.c idjc_la-smoothing.lo: smoothing.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-smoothing.lo -MD -MP -MF $(DEPDIR)/idjc_la-smoothing.Tpo -c -o idjc_la-smoothing.lo `test -f 'smoothing.c' || echo '$(srcdir)/'`smoothing.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-smoothing.Tpo $(DEPDIR)/idjc_la-smoothing.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='smoothing.c' object='idjc_la-smoothing.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-smoothing.lo `test -f 'smoothing.c' || echo '$(srcdir)/'`smoothing.c idjc_la-dyn_mpg123.lo: dyn_mpg123.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-dyn_mpg123.lo -MD -MP -MF $(DEPDIR)/idjc_la-dyn_mpg123.Tpo -c -o idjc_la-dyn_mpg123.lo `test -f 'dyn_mpg123.c' || echo '$(srcdir)/'`dyn_mpg123.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-dyn_mpg123.Tpo $(DEPDIR)/idjc_la-dyn_mpg123.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dyn_mpg123.c' object='idjc_la-dyn_mpg123.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-dyn_mpg123.lo `test -f 'dyn_mpg123.c' || echo '$(srcdir)/'`dyn_mpg123.c idjc_la-ogg_opus_dec.lo: ogg_opus_dec.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-ogg_opus_dec.lo -MD -MP -MF $(DEPDIR)/idjc_la-ogg_opus_dec.Tpo -c -o idjc_la-ogg_opus_dec.lo `test -f 'ogg_opus_dec.c' || echo '$(srcdir)/'`ogg_opus_dec.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-ogg_opus_dec.Tpo $(DEPDIR)/idjc_la-ogg_opus_dec.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ogg_opus_dec.c' object='idjc_la-ogg_opus_dec.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-ogg_opus_dec.lo `test -f 'ogg_opus_dec.c' || echo '$(srcdir)/'`ogg_opus_dec.c idjc_la-vorbistagparse.lo: vorbistagparse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-vorbistagparse.lo -MD -MP -MF $(DEPDIR)/idjc_la-vorbistagparse.Tpo -c -o idjc_la-vorbistagparse.lo `test -f 'vorbistagparse.c' || echo '$(srcdir)/'`vorbistagparse.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-vorbistagparse.Tpo $(DEPDIR)/idjc_la-vorbistagparse.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vorbistagparse.c' object='idjc_la-vorbistagparse.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-vorbistagparse.lo `test -f 'vorbistagparse.c' || echo '$(srcdir)/'`vorbistagparse.c idjc_la-live_oggopus_encoder.lo: live_oggopus_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-live_oggopus_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-live_oggopus_encoder.Tpo -c -o idjc_la-live_oggopus_encoder.lo `test -f 'live_oggopus_encoder.c' || echo '$(srcdir)/'`live_oggopus_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-live_oggopus_encoder.Tpo $(DEPDIR)/idjc_la-live_oggopus_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='live_oggopus_encoder.c' object='idjc_la-live_oggopus_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-live_oggopus_encoder.lo `test -f 'live_oggopus_encoder.c' || echo '$(srcdir)/'`live_oggopus_encoder.c idjc_la-live_webm_encoder.lo: live_webm_encoder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -MT idjc_la-live_webm_encoder.lo -MD -MP -MF $(DEPDIR)/idjc_la-live_webm_encoder.Tpo -c -o idjc_la-live_webm_encoder.lo `test -f 'live_webm_encoder.c' || echo '$(srcdir)/'`live_webm_encoder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/idjc_la-live_webm_encoder.Tpo $(DEPDIR)/idjc_la-live_webm_encoder.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='live_webm_encoder.c' object='idjc_la-live_webm_encoder.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(idjc_la_CFLAGS) $(CFLAGS) -c -o idjc_la-live_webm_encoder.lo `test -f 'live_webm_encoder.c' || echo '$(srcdir)/'`live_webm_encoder.c 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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(pkglibdir)"; 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 clean-pkglibLTLIBRARIES \ 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-pkglibLTLIBRARIES 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: uninstall-pkglibLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-pkglibLTLIBRARIES 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-pkglibLTLIBRARIES 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 \ uninstall-pkglibLTLIBRARIES .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: idjc-0.8.16/c/sndfileinfo.h0000644000175000017500000000153112630014502012324 00000000000000/* # sndfileinfo.h: Provide information on wav files # Copyright (C) 2006 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ int sndfileinfo(char *pathname); idjc-0.8.16/c/live_ogg_encoder.c0000644000175000017500000002441012630014502013312 00000000000000/* # live_ogg_encoder.c: encode ogg files from a live source # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include #include #include #include "sourceclient.h" #include "live_ogg_encoder.h" #define READSIZE 1024 typedef jack_default_audio_sample_t sample_t; struct loe_data { struct ogg_tag_data tag_data; long max_bitrate; /* ogg upper and lower bitrate settings */ long min_bitrate; vorbis_info vi; vorbis_block vb; vorbis_dsp_state vd; vorbis_comment vc; ogg_stream_state os; ogg_page og; ogg_packet op; int pagesamples; int (*owf)(ogg_stream_state *os, ogg_page *og); }; void live_ogg_capture_metadata(struct encoder *e, struct ogg_tag_data *t) { live_ogg_free_metadata(t); pthread_mutex_lock(&e->metadata_mutex); t->custom = strdup(e->custom_meta); t->artist = strdup(e->artist); t->title = strdup(e->title); t->album = strdup(e->album); e->new_metadata = FALSE; pthread_mutex_unlock(&e->metadata_mutex); } void live_ogg_free_metadata(struct ogg_tag_data *t) { if (t->custom) free(t->custom); if (t->artist) free(t->artist); if (t->title) free(t->title); if (t->album) free(t->album); memset(t, '\0', sizeof (struct ogg_tag_data)); } int live_ogg_write_packet(struct encoder *encoder, ogg_page *op, int flags) { struct encoder_op_packet packet; char *buffer; if (!(buffer = malloc(op->header_len + op->body_len))) { fprintf(stderr, "live_ogg_write_packet: malloc failure\n"); return 0; } memcpy(buffer, op->header, op->header_len); memcpy(buffer + op->header_len, op->body, op->body_len); packet.header.bit_rate = encoder->bitrate; packet.header.sample_rate = encoder->target_samplerate; packet.header.n_channels = encoder->n_channels; packet.header.flags = flags; packet.header.data_size = op->header_len + op->body_len; packet.header.timestamp = encoder->timestamp = (double)ogg_page_granulepos(op) / (double)encoder->samplerate; packet.data = buffer; encoder_write_packet_all(encoder, &packet); free(buffer); return 1; } static void live_ogg_encoder_main(struct encoder *encoder) { struct loe_data * const s = encoder->encoder_private; struct ovectl_ratemanage2_arg ai; struct encoder_ip_data *input_data; ogg_packet header_main; ogg_packet header_comments; ogg_packet header_codebooks; int cycle_restart = FALSE, cycle_restart2 = FALSE, packet_flags = PF_INITIAL | PF_OGG | PF_HEADER; float **buffer; ogg_int64_t oldgranulepos; struct ogg_tag_data *t = &s->tag_data; if (encoder->encoder_state == ES_STARTING) { fprintf(stderr, "live_ogg_encoder_main: first pass of the encoder\n"); vorbis_info_init(&s->vi); if (vorbis_encode_setup_managed(&s->vi, encoder->n_channels, encoder->target_samplerate, s->max_bitrate, encoder->bitrate, s->min_bitrate)) { fprintf(stderr, "live_ogg_encoder_main: mode initialisation failed\n"); vorbis_info_clear(&s->vi); goto bailout; } vorbis_encode_ctl(&s->vi, OV_ECTL_RATEMANAGE2_GET, &ai); ai.bitrate_limit_min_kbps = s->min_bitrate / 1000; if (vorbis_encode_ctl(&s->vi, OV_ECTL_RATEMANAGE2_SET, &ai)) fprintf(stderr, "live_ogg_encoder_main: failed to set hard bitrate floor\n"); vorbis_encode_setup_init(&s->vi); vorbis_analysis_init(&s->vd, &s->vi); vorbis_block_init(&s->vd, &s->vb); ogg_stream_init(&s->os, ++encoder->oggserial); encoder->timestamp = 0.0; vorbis_comment_init(&s->vc); /* this function takes raw metadata and does something type specific with it */ if (encoder->new_metadata) live_ogg_capture_metadata(encoder, t); if (t->custom && t->custom[0]) { vorbis_comment_add_tag(&s->vc, "TITLE", t->custom); if (t->artist && t->artist[0]) vorbis_comment_add_tag(&s->vc, "TRK-ARTIST", t->artist); if (t->title && t->title[0]) vorbis_comment_add_tag(&s->vc, "TRK-TITLE", t->title); if (t->album && t->album[0]) vorbis_comment_add_tag(&s->vc, "TRK-ALBUM", t->album); } else { if (t->artist && t->artist[0]) vorbis_comment_add_tag(&s->vc, "ARTIST", t->artist); if (t->title && t->title[0]) vorbis_comment_add_tag(&s->vc, "TITLE", t->title); if (t->album && t->album[0]) vorbis_comment_add_tag(&s->vc, "ALBUM", t->album); } vorbis_analysis_headerout(&s->vd, &s->vc, &header_main, &header_comments, &header_codebooks); ogg_stream_packetin(&s->os, &header_main); ogg_stream_packetin(&s->os, &header_comments); ogg_stream_packetin(&s->os, &header_codebooks); while (ogg_stream_flush(&s->os, &s->og)) { if (!(live_ogg_write_packet(encoder, &s->og, packet_flags))) { fprintf(stderr, "live_ogg_encoder_main: failed writing header to stream\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPING; return; } packet_flags = PF_OGG | PF_HEADER; } s->pagesamples = 0; s->owf = ogg_stream_pageout; encoder->encoder_state = ES_RUNNING; return; } if (encoder->encoder_state == ES_RUNNING) { if (encoder->flush) { cycle_restart = TRUE; encoder->flush = FALSE; } cycle_restart |= encoder->new_metadata | !encoder->run_request_f; if (cycle_restart) { fprintf(stderr, "live_ogg_encoder_main: cycle restart\n"); buffer = vorbis_analysis_buffer(&s->vd, 0); vorbis_analysis_wrote(&s->vd, 0); } else { buffer = vorbis_analysis_buffer(&s->vd, 8192); input_data = encoder_get_input_data(encoder, 1024, 8192, buffer); if (input_data) { vorbis_analysis_wrote(&s->vd, input_data->qty_samples); encoder_ip_data_free(input_data); } else return; } while (vorbis_analysis_blockout(&s->vd, &s->vb) == 1) { vorbis_analysis(&s->vb, NULL); vorbis_bitrate_addblock(&s->vb); while (vorbis_bitrate_flushpacket(&s->vd, &s->op)) { oldgranulepos = s->os.granulepos; ogg_stream_packetin(&s->os, &s->op); s->pagesamples += s->os.granulepos - oldgranulepos; /* write out a new ogg page at least 10 times a second */ if (s->pagesamples > encoder->samplerate / 10) s->owf = ogg_stream_flush; while (s->owf(&s->os, &s->og)) { s->owf = ogg_stream_pageout; s->pagesamples = 0; if (ogg_page_eos(&s->og)) { fprintf(stderr, "live_ogg_encoder_main: writing final packet\n"); live_ogg_write_packet(encoder, &s->og, PF_OGG | PF_FINAL); cycle_restart2 = TRUE; break; } else live_ogg_write_packet(encoder, &s->og, PF_OGG); } } } if (cycle_restart2) encoder->encoder_state = ES_STOPPING; return; } if (encoder->encoder_state == ES_STOPPING) { fprintf(stderr, "live_ogg_encoder_main: last pass of the encoder, freeing libvorbis structures\n"); ogg_stream_clear(&s->os); vorbis_block_clear(&s->vb); vorbis_dsp_clear(&s->vd); vorbis_comment_clear(&s->vc); vorbis_info_clear(&s->vi); fprintf(stderr, "live_ogg_encoder_main: libvorbis structures freed\n"); if (!encoder->run_request_f) goto bailout; else encoder->encoder_state = ES_STARTING; return; } fprintf(stderr, "live_ogg_encoder_main: unhandled encoder state\n"); return; bailout: fprintf(stderr, "live_ogg_encoder_main: performing cleanup\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->flush = FALSE; encoder->encoder_private = NULL; live_ogg_free_metadata(&s->tag_data); free(s); fprintf(stderr, "live_ogg_encoder_main: finished cleanup\n"); return; } int live_ogg_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { struct loe_data * const s = calloc(1, sizeof (struct loe_data)); if (!s) { fprintf(stderr, "live_ogg_encoder: malloc failure\n"); return FAILED; } if (!strcmp(ev->variability, "constant")) s->max_bitrate = s->min_bitrate = encoder->bitrate; else { long var = encoder->bitrate * atol(ev->variability) / 100; s->max_bitrate = encoder->bitrate + var; s->min_bitrate = encoder->bitrate - var; } encoder->encoder_private = s; encoder->run_encoder = live_ogg_encoder_main; return SUCCEEDED; } idjc-0.8.16/c/mixer.h0000644000175000017500000000206412630014502011152 00000000000000/* # mixer.h: the audio mix happens in here. # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include void mixer_init(); int mixer_main(); int mixer_control(char *command); int mixer_healthcheck(); int mixer_process_audio(jack_nframes_t n_frames, void *arg); void mixer_stop_players(); int mixer_new_buffer_size(jack_nframes_t n_frames); idjc-0.8.16/c/speextag.c0000644000175000017500000003636712630014502011656 00000000000000/* # speextag.c: reads/writes speex metadata tags # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_SPEEX #include "gnusource.h" #include #include #include #include #include #include #include #include "speextag.h" #include "bsdcompat.h" #include "main.h" #define TRUE 1 #define FALSE 0 #define readint(buf, base) (((buf[base+3]<<24)&0xff000000)| \ ((buf[base+2]<<16)&0xff0000)| \ ((buf[base+1]<<8)&0xff00)| \ (buf[base]&0xff)) #define writeint(buf, base, val) buf[base+3] = ((val) >> 24) & 0xff; \ buf[base+2] = ((val) >> 16) & 0xff; \ buf[base+1] = ((val) >> 8 ) & 0xff; \ buf[base] = (val) & 0xff #define INIT_PATHLENGTH 256 enum packet_t { INITIAL_PACKET, TAG_PACKET, SUBSEQUENT_PACKETS }; /* nlcount: return a count of the number of new lines in a string */ static int nlcount(char *s) { int n; for (n = 0; *s; s++) if (*s == '\n') n++; return n; } static int build_tag_packet(ogg_packet *op, char *createdby, char *taglist) { size_t cb_len, tl_len; int newlines; char *s, *t = taglist, *e; int o = 0; cb_len = strlen(createdby); tl_len = strlen(taglist); newlines = nlcount(taglist); op->bytes = cb_len + 3 * newlines + tl_len + 8; if (!(s = (char *)(op->packet = malloc(op->bytes)))) { fprintf(stderr, "build_tag_packet: malloc failure\n"); return FALSE; } writeint(s, o, cb_len); o += 4; memcpy(s + o, createdby, cb_len); o += cb_len; writeint(s, o, newlines); o += 4; while (newlines--) { e = strchr(t, '\n'); writeint(s, o, (int)(e - t)); o += 4; memcpy(s + o, t, e - t); o += e - t; t = e + 1; } if (o != op->bytes) { fprintf(stderr, "build_tag_packet: warning, offset is %d and available buffer is size %d\n", o, (int)op->bytes); } return TRUE; } /* get_id3_size: returns the size of the id3v2 tag if present */ static int get_id3_size(FILE *fp) { int id3size = 0; if (fgetc(fp) == 'I' && fgetc(fp) == 'D' && fgetc(fp) == '3' && fgetc(fp) != '\xFF' && fgetc(fp) != '\xFF') { fprintf(stderr, "ID3 tag detected\n"); fgetc(fp); id3size = fgetc(fp); id3size <<= 7; id3size |= fgetc(fp); id3size <<= 7; id3size |= fgetc(fp); id3size <<= 7; id3size |= fgetc(fp); id3size += 10; } rewind(fp); return id3size; } void speex_tag_read(char *pathname) { FILE *fp; char *buffer, *s, *e; int bytes; int first = TRUE; int packet_no = 0; int id3size; int offset = 0; int size; int tags; ogg_sync_state oy; ogg_page og; ogg_stream_state os; ogg_packet op; //memset(&og, 0, sizeof (ogg_page)); //memset(&op, 0, sizeof (ogg_packet)); if (!(fp = fopen(pathname, "r"))) { fprintf(stderr, "speex_tag_read: could not open media file for tag reading\n"); goto fail0; } if ((id3size = get_id3_size(fp))) fseek(fp, id3size, SEEK_CUR); ogg_sync_init(&oy); for (;;) { while (ogg_sync_pageout(&oy, &og) != 1) { buffer = ogg_sync_buffer(&oy, 4096); bytes = fread(buffer, 1, 4096, fp); ogg_sync_wrote(&oy, bytes); if (bytes == 0) { fprintf(stderr, "speex_tag_read: file came to an unexpected end\n"); if (!first) goto fail3; goto fail2; } } fprintf(stderr, "got an ogg page\n"); if (first && ogg_page_pageno(&og) == 0) { if (ogg_stream_init(&os, ogg_page_serialno(&og))) { fprintf(stderr, "speex_tag_read: call to ogg_stream_init failed\n"); goto fail2; } fprintf(stderr, "initialised stream\n"); first = FALSE; } if (first || ogg_stream_pagein(&os, &og) == -1) continue; while (ogg_stream_packetout(&os, &op) != 0) { ++packet_no; if (packet_no == 1) { fprintf(stderr, "packet 1\n"); if (ogg_page_pageno(&og) != 0) { fprintf(stderr, "speex_tag_read: first packet has incorrect ogg page number\n"); goto fail3; } if (op.granulepos != 0 || op.bytes < 8 || memcmp("Speex ", op.packet, 5)) { fprintf(stderr, "speex_tag_read: header mismatch - does not appear to be a speex file\n"); goto fail3; } else fprintf(stderr, "found speex header\n"); } if (packet_no == 2) { fprintf(stderr, "packet 2\n"); if (ogg_page_pageno(&og) <= 0) { fprintf(stderr, "speex_tag_read: second packet has incorrect ogg page number\n"); goto fail3; } if (op.granulepos != 0) { fprintf(stderr, "speex_tag_read: second packet has incorrect granule pos\n"); goto fail3; } if (op.bytes < 8) { fprintf(stderr, "speex_tag_read: second packet is too small to be a valid metadata packet\n"); goto fail3; } s = (char *)op.packet; e = s + op.bytes; offset = 0; size = readint(s, offset); offset += 4; if (s + offset + size + 4 > e) { fprintf(stderr, "speex_tag_read: corrupt tag\n"); goto fail3; } else { fprintf(g.out, "idjcmixer: speexcreatedread "); if (!(fwrite(s + offset, size, 1, stdout))) goto fail3; fputc('\n', g.out); offset += size; } tags = readint(s, offset); offset += 4; fprintf(stderr, "there are %d tags on this file\n", tags); if (s + offset + tags * sizeof (int) > e) { fprintf(stderr, "speex_tag_read: corrupt tag\n"); goto fail3; } while (tags--) { size = readint(s, offset); offset += 4; if (s + offset + size > e) { fprintf(stderr, "speex_tag_read: corrupt tag\n"); goto fail3; } else { fprintf(g.out, "idjcmixer: speextagread "); if (!(fwrite(s + offset, size, 1, stdout))) goto fail3; fputc('\n', g.out); offset += size; } } if (s + offset != e) { fprintf(stderr, "did not finish at end of packet!\n"); goto fail3; } fprintf(stderr, "packet appears to be totally correct\n"); fprintf(g.out, "idjcmixer: speextagread end\n"); fflush(g.out); ogg_stream_clear(&os); ogg_sync_clear(&oy); return; } } fprintf(stderr, "going around for another packet\n"); } fail3: ogg_stream_clear(&os); fail2: ogg_sync_clear(&oy); //fail1: fclose(fp); fail0: fprintf(g.out, "idjcmixer: speexfileinfo Not Valid\n"); fflush(g.out); } void speex_tag_write(char *suppliedpathname, char *createdby, char *taglist) { char *pathname; char *tmpname; char *buffer; FILE *fpr, *fpw; int id3size; char *copybuf; int first = TRUE; size_t bytes; enum packet_t packet_type = INITIAL_PACKET; ogg_sync_state oy; ogg_page ogr; ogg_page ogw; ogg_stream_state osr; ogg_stream_state osw; ogg_packet op; void flush_and_write() { while (ogg_stream_flush(&osw, &ogw)) { if (fwrite(ogw.header, ogw.header_len, 1, fpw) == 0 || fwrite(ogw.body, ogw.body_len, 1, fpw) == 0) break; } } if (!(pathname = canonicalize_file_name(suppliedpathname))) { fprintf(stderr, "speex_tag_write: supplied pathname did not resolve\n"); goto failA; } fprintf(stderr, "%s\n%s\n", suppliedpathname, pathname); if (!(tmpname = malloc(strlen(pathname) + 5))) { fprintf(stderr, "speex_tag_write: malloc failure\n"); goto failB; } sprintf(tmpname, "%s%s", pathname, ".TMP"); fpr = fopen(pathname, "r"); fpw = fopen(tmpname, "w"); if (!fpr || !fpw) { fprintf(stderr, "speex_tag_write: file io error\n"); goto fail0; } if (!(copybuf = malloc(id3size = get_id3_size(fpr)))) { fprintf(stderr, "speex_tag_write: malloc failure\n"); goto fail0; } if (id3size) { if (!fread(copybuf, id3size, 1, fpr)) { fprintf(stderr, "speex_tag_write: file io error\n"); goto fail1; } if (!fwrite(copybuf, id3size, 1, fpw)) { fprintf(stderr, "speex_tag_write: file io error\n"); goto fail1; } } ogg_sync_init(&oy); for (;;) { while (ogg_sync_pageout(&oy, &ogr) != 1) { buffer = ogg_sync_buffer(&oy, 4); bytes = fread(buffer, 1, 1, fpr); ogg_sync_wrote(&oy, bytes); if (bytes == 0) { fprintf(stderr, "speex_tag_read: file came to an unexpected end\n"); if (!first) goto fail4; goto fail2; } } fprintf(stderr, "got an ogg page\n"); if (first) { if (ogg_page_bos(&ogr)) { if (ogg_stream_init(&osr, ogg_page_serialno(&ogr))) { fprintf(stderr, "speex_tag_write: call to ogg_stream_init failed\n"); goto fail2; } if (ogg_stream_init(&osw, ogg_page_serialno(&ogr))) { fprintf(stderr, "speex_tag_write: call to ogg_stream_init failed\n"); goto fail3; } fprintf(stderr, "initialised stream\n"); first = FALSE; } else { fprintf(stderr, "speex_tag_write: unexpected non bos packet\n"); goto fail2; } } if (ogg_stream_pagein(&osr, &ogr) == -1) { fprintf(stderr, "speex_tag_write: got bad ogg page\n"); goto fail4; } while (ogg_stream_packetout(&osr, &op) != 0) { switch (packet_type) { case INITIAL_PACKET: //fprintf(stderr, "header packet\n"); if (ogg_page_pageno(&ogr) != 0) { fprintf(stderr, "speex_tag_read: first packet has incorrect ogg page number\n"); goto fail4; } ogg_stream_packetin(&osw, &op); flush_and_write(); packet_type = TAG_PACKET; break; case TAG_PACKET: //fprintf(stderr, "metadata packet\n"); if (!build_tag_packet(&op, createdby, taglist)) { fprintf(stderr, "speex_tag_read: failed to build tagging metadata packet\n"); goto fail4; } ogg_stream_packetin(&osw, &op); flush_and_write(); ogg_packet_clear(&op); packet_type = SUBSEQUENT_PACKETS; break; case SUBSEQUENT_PACKETS: //fprintf(stderr, "subsequent packet\n"); ogg_stream_packetin(&osw, &op); if (op.granulepos != -1) flush_and_write(); break; } } if (op.e_o_s) { fprintf(stderr, "last packet processed\n"); ogg_stream_clear(&osw); ogg_stream_clear(&osr); ogg_sync_clear(&oy); /* copy all remaining bytes in the file, e.g. an id3 version 1 tag */ if (!(copybuf = realloc(copybuf, 4096))) { fprintf(stderr, "speex_tag_read: malloc failure\n"); goto fail4; } do { bytes = fread(copybuf, 1, 4096, fpr); if (fwrite(copybuf, 1, bytes, fpw) != bytes) break; } while (bytes == 4096); free(copybuf); fclose(fpw); fclose(fpr); rename(tmpname, pathname); free(tmpname); free(pathname); return; } } fail4: ogg_stream_clear(&osw); fail3: ogg_stream_clear(&osr); fail2: ogg_sync_clear(&oy); fail1: if (copybuf) free(copybuf); fail0: if (fpr) fclose(fpr); if (fpw) fclose(fpw); free(tmpname); failB: free(pathname); failA: fprintf(stderr, "speex_tag_write failed\n"); } #endif /* HAVE_SPEEX */ idjc-0.8.16/c/sig.c0000644000175000017500000000404112630014502010600 00000000000000/* # sig.c: signal masking for pthreads + general handling # Copyright (C) 2011-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include static sigset_t mask; static int working; static volatile sig_atomic_t sigusr1count, sigusr1oldcount; static void do_exit(int sig) { exit(5); } static void usr1_handler(int sig) { ++sigusr1count; signal(sig, usr1_handler); } #define A(s) && sigaddset(&mask, s) void sig_init() { if (sigemptyset(&mask) A(SIGINT) A(SIGTERM) A(SIGHUP) A(SIGALRM) A(SIGSEGV) A(SIGUSR1) A(SIGUSR2)) fprintf(stderr, "sigmask_init: mask creation failed\n"); else { working = 1; signal(SIGINT, do_exit); signal(SIGTERM, do_exit); signal(SIGHUP, do_exit); if (!strcmp(getenv("session_type"), "L1")) signal(SIGUSR1, usr1_handler); else signal(SIGUSR1, SIG_IGN); signal(SIGUSR2, SIG_IGN); } } #undef A void sig_mask_thread() { if (working && pthread_sigmask(SIG_BLOCK, &mask, NULL)) fprintf(stderr, "sig_mask_thread: pthread_sigmask() failed\n"); } int sig_recent_usr1() { if (sigusr1count != sigusr1oldcount) { sigusr1oldcount = sigusr1count; return 1; } return 0; } idjc-0.8.16/c/peakfilter.h0000644000175000017500000000222112630014502012147 00000000000000/* # peakfilter.h: finds a peak level from a filtered signal source # Copyright (C) 2010 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ struct peakfilter { float *start; float *end; float *ptr; float peak; }; struct peakfilter *peakfilter_create(float window, int sample_rate); void peakfilter_destroy(struct peakfilter *self); void peakfilter_process(struct peakfilter *self, float sample); float peakfilter_read(struct peakfilter *self); idjc-0.8.16/c/streamer.h0000644000175000017500000000472012631622233011660 00000000000000/* # streamer.h: the streaming module of idjc # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef STREAMER_H #define STREAMER_H #include "sourceclient.h" struct streamer_vars { char *stream_source; char *server_type; char *host; char *port; char *mount; char *login; char *password; char *useragent; char *dj_name; char *listen_url; char *description; char *genre; char *irc; char *aim; char *icq; char *tls; char *ca_dir; char *ca_file; char *client_cert; char *make_public; }; enum stream_mode { SM_DISCONNECTED, SM_CONNECTING, SM_CONNECTED, SM_DISCONNECTING }; struct shout; struct _util_dict; struct streamer { struct threads_info *threads_info; int numeric_id; pthread_t thread_h; int thread_terminate_f; int disconnect_request; int disconnect_pending; struct encoder_op *encoder_op; struct shout *shout; struct _util_dict *shout_meta; enum stream_mode stream_mode; int brand_new_connection; /* used for triggering actions in the gui */ long shout_status; int initial_serial; /* the enocoder serial number we commence streaming from */ int final_serial; /* the serial number to cease streaming at the end of */ ssize_t max_shout_queue; /* how much audio data we are willing to stockpile */ pthread_mutex_t mode_mutex; pthread_cond_t mode_cv; }; struct streamer *streamer_init(struct threads_info *ti, int numeric_id); void streamer_destroy(struct streamer *self); int streamer_connect(struct threads_info *ti, struct universal_vars *uv, void *other); int streamer_disconnect(struct threads_info *ti, struct universal_vars *uv, void *other); int streamer_make_report(struct streamer *self); #endif idjc-0.8.16/c/speextag.h0000644000175000017500000000163312630014502011647 00000000000000/* # speextag.h: reads/writes speex metadata # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ void speex_tag_read(char *pathname); void speex_tag_write(char *pathname, char *createdby, char *taglist); idjc-0.8.16/c/dbconvert.c0000644000175000017500000000723212630014502012011 00000000000000/* # dbconvert.c: fast table based conversion for db to sig level and vice-versa from IDJC. # Copyright (C) 2005-2006 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include "dbconvert.h" #define TRUE 1 #define FALSE 0 /* Comment this out to avoid using the lookup table */ #define USING_LOOKUP #ifdef USING_LOOKUP static float *dblookup; static float *signallookup; int init_dblookup_table() { int i; /* build a decibel lookup table to save on cpu usage */ if (!(dblookup = malloc(sizeof (float) * 131072))) { fprintf(stderr, "Failed to allocate space for signal to db lookup table\n"); return FALSE; } else { for (i = 0 ; i < 131072 ; i++) dblookup[i] = log10f((i+1) / 131072.0F) * 20.0F; } return TRUE; } int init_signallookup_table() { int i; /* the opposite of the decibel lookup table */ if (!(signallookup = malloc(sizeof (float) * 65536))) { fprintf(stderr, "Failed to allocate space for db to signal table\n"); return FALSE; } else { for (i=0; i < 65536; i++) signallookup[i] = 1.0F / powf(10.0F, (float)i / 10240.0F); } return TRUE; } void free_dblookup_table() { free(dblookup); } void free_signallookup_table() { free(signallookup); } /* a table based db lookup function - considerably faster than using the maths co-processor */ inline float level2db(float signal) { int index; float adjustment = 0.0F; if (signal > 1.0F) return ((index = (int)(131072.0005F / signal) - 1) >= 0) ? -dblookup[index] : 102.3501985F; else { if (signal < 3.16227766e-3F) /* use a more accurate part of the lookup table for low values */ { signal *= 316.227766; adjustment = -50.0F; /* compensate for the 50dB boost in signal level */ } return (((index = (int)(signal * 131072.0005F) - 1) >= 0) ? dblookup[index] : -102.3501985F) + adjustment; } } /* table based level lookup function taking a db level as input */ inline float db2level(float signal) { int index; if (signal < 0.0F) return ((index = signal * (-512.0F)) < 65536) ? signallookup[index] : signallookup[65535]; else return ((index = signal * 512.0F) < 65536) ? 1.0F / signallookup[index] : 1.0F / signallookup[65535]; } #else /* These cause the maths co-processor to be used */ int init_dblookup_table() { return TRUE; } int init_signallookup_table() { return TRUE; } void free_dblookup_table() {}; void free_signallookup_table() {}; /* the more accurate but more cpu intensive method */ float level2db(float signal) { return log10f(signal) * 20.0f; } float db2level(float signal) { return powf(10.0f, signal * 0.05f); } #endif idjc-0.8.16/c/live_oggopus_encoder.c0000644000175000017500000003537312630014502014233 00000000000000/* # live_oggopus_encoder.c: encode Ogg/Opus format streams # Copyright (C) 2013 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_OPUS #include #include #include #include #include #include #include "sourceclient.h" #include "live_ogg_encoder.h" #include "live_oggopus_encoder.h" #include "vorbistagparse.h" struct local_data { OpusEncoder *enc_st; int complexity; int postgain; int framesamples; int lookahead; int vbr; int vbr_constraint; opus_int32 pagepackets; opus_int32 pagepackets_max; ogg_int64_t granulepos; ogg_int64_t packetno; ogg_stream_state os; int pflags; float *inbuf; size_t outbuf_siz; unsigned char *outbuf; struct vtag_block metadata_block; int fillbytes; }; /* create a multiplexed pcm stream */ static void stereomix(float *l, float *r, float *m, size_t n) { while (n--) { *m++ = *l++; *m++ = *r++; } } static void live_oggopus_encoder_main(struct encoder *encoder) { struct local_data * const s = encoder->encoder_private; ogg_page og, og2; ogg_packet op; if (encoder->encoder_state == ES_STARTING) { const opus_int32 la_fallback = 196; int error; fprintf(stderr, "live_ogg_encoder_main: info: writing headers\n"); encoder->timestamp = 0.0; ogg_stream_init(&s->os, ++encoder->oggserial); if (!(s->enc_st = opus_encoder_create(48000, encoder->n_channels, OPUS_APPLICATION_AUDIO, &error))) { fprintf(stderr, "live_oggopus_encoder_main: failure: encoder_create: %s\n", opus_strerror(error)); goto bailout; } if (opus_encoder_ctl(s->enc_st, OPUS_SET_BITRATE(encoder->bitrate * 1000)) != OPUS_OK) { fprintf(stderr, "live_oggopus_encoder_main: failure: failed to set bitrate\n"); goto bailout; } if (opus_encoder_ctl(s->enc_st, OPUS_SET_VBR(s->vbr)) != OPUS_OK) { fprintf(stderr, "live_oggopus_encoder_main: failure: failed to set cbr/vbr\n"); goto bailout; } if (opus_encoder_ctl(s->enc_st, OPUS_SET_VBR_CONSTRAINT(s->vbr_constraint)) != OPUS_OK) { fprintf(stderr, "live_oggopus_encoder_main: failure: failed to set vbr constraint\n"); goto bailout; } if (opus_encoder_ctl(s->enc_st, OPUS_SET_COMPLEXITY(s->complexity)) != OPUS_OK) fprintf(stderr, "live_oggopus_encoder_main: warning: failed to set complexity\n"); if (opus_encoder_ctl(s->enc_st, OPUS_GET_LOOKAHEAD(&s->lookahead)) != OPUS_OK) { fprintf(stderr, "live_oggopus_encoder_main: warning: failed to get lookahead value -- using %d\n", la_fallback); s->lookahead = la_fallback; } char header_packet_data[20]; size_t header_packet_size = snprintf(header_packet_data, sizeof header_packet_data, "OpusHead\x1%c%c%c\x80\xbb%c%c%c%c%c", encoder->n_channels, s->lookahead & 0xFF, (s->lookahead >> 8) & 0xFF, '\0', '\0', s->postgain & 0xFF, (s->postgain >> 8) & 0xFF, '\0'); op.packet = (unsigned char *)header_packet_data; op.bytes = header_packet_size; op.b_o_s = 1; op.e_o_s = 0; op.granulepos = 0; op.packetno = s->packetno++; ogg_stream_packetin(&s->os, &op); s->pflags = PF_INITIAL | PF_OGG | PF_HEADER; if (ogg_stream_flush(&s->os, &og)) { if (ogg_stream_flush(&s->os, &og2)) { fprintf(stderr, "live_oggopus_encoder_main: error: initial header spans page boundary\n"); goto bailout; } if (!(live_ogg_write_packet(encoder, &og, s->pflags))) { fprintf(stderr, "live_oggopus_encoder_main: error: failed to write header\n"); goto bailout; } s->pflags = PF_OGG | PF_HEADER; } if (encoder->new_metadata || !s->metadata_block.data) { struct vtag *tag; if (!(tag = vtag_new(opus_get_version_string(), &error))) { fprintf(stderr, "live_oggopus_encoder_main: error: failed to initialise empty vtag: %s\n", vtag_strerror(error)); goto bailout; } vtag_append(tag, "encoder", getenv("app_name")); if (encoder->use_metadata) { struct ogg_tag_data t = {}; fprintf(stderr, "live_oggopus_encoder_main: info: making metadata\n"); live_ogg_capture_metadata(encoder, &t); if (t.custom && t.custom[0]) { vtag_append(tag, "title", t.custom); vtag_append(tag, "trk-artist", t.artist); vtag_append(tag, "trk-title", t.title); vtag_append(tag, "trk-album", t.album); } else { vtag_append(tag, "artist", t.artist); vtag_append(tag, "title", t.title); vtag_append(tag, "album", t.album); } live_ogg_free_metadata(&t); } else fprintf(stderr, "live_oggopus_encoder_main: info: making bare-bones metadata\n"); if ((error = vtag_serialize(tag, &s->metadata_block, "OpusTags"))) { fprintf(stderr, "live_oggopus_encoder_main: vtag_serialize failed: %s\n", vtag_strerror(error)); goto bailout; } vtag_cleanup(tag); encoder->new_metadata = FALSE; } else fprintf(stderr, "live_oggopus_encoder_main: info: using previous metadata\n"); op.packet = (unsigned char *)s->metadata_block.data; op.bytes = s->metadata_block.length; op.b_o_s = 0; op.e_o_s = 0; op.granulepos = 0; op.packetno = s->packetno++; ogg_stream_packetin(&s->os, &op); while (ogg_stream_flush(&s->os, &og)) { if (!(live_ogg_write_packet(encoder, &og, s->pflags))) { fprintf(stderr, "live_oggopus_encoder_main: error: failed to write header\n"); goto bailout; } s->pflags = PF_OGG; } encoder->encoder_state = ES_RUNNING; fprintf(stderr, "live_ogg_encoder_main: info: encoding\n"); return; } if (encoder->encoder_state == ES_RUNNING) { struct encoder_ip_data *id; opus_int32 enc_bytes; float *inbuf; if (encoder->new_metadata || !encoder->run_request_f || encoder->flush) { encoder->flush = FALSE; encoder->encoder_state = ES_STOPPING; return; } if((id = encoder_get_input_data(encoder, s->framesamples, s->framesamples, NULL))) { if (encoder->n_channels == 2) stereomix(id->buffer[0], id->buffer[1], inbuf = s->inbuf, s->framesamples); else inbuf = id->buffer[0]; enc_bytes = opus_encode_float(s->enc_st, inbuf, s->framesamples, s->outbuf, s->outbuf_siz); encoder_ip_data_free(id); if (enc_bytes > 0) { op.packet = s->outbuf; op.bytes = enc_bytes; op.b_o_s = 0; op.e_o_s = 0; op.granulepos = (s->granulepos += s->framesamples); op.packetno = s->packetno++; ogg_stream_packetin(&s->os, &op); s->fillbytes += enc_bytes; if (++s->pagepackets == s->pagepackets_max) { s->pagepackets = 0; if (ogg_stream_flush_fill(&s->os, &og, s->fillbytes)) { if (!live_ogg_write_packet(encoder, &og, s->pflags)) { fprintf(stderr, "live_oggopus_encoder_main: failed to write packet\n"); goto bailout; } if ((s->fillbytes -= og.body_len)) fprintf(stderr, "!!! packet size limit exceeded\n"); } else fprintf(stderr, "live_oggopus_encoder_main: failed to flush page\n"); } } else { fprintf(stderr, "live_oggopus_encoder_main: failed to encode packet: %s\n", opus_strerror(enc_bytes)); goto bailout; } } return; } if (encoder->encoder_state == ES_STOPPING) { opus_int32 enc_bytes; fprintf(stderr, "live_oggopus_encoder_main: flushing\n"); /* fill input buffer with silence */ memset(s->inbuf, '\0', sizeof (float) * s->framesamples * encoder->n_channels); do { enc_bytes = opus_encode_float(s->enc_st, s->inbuf, s->framesamples, s->outbuf, s->outbuf_siz); if (enc_bytes > 0) { if (s->framesamples < s->lookahead) { op.granulepos += s->framesamples; op.e_o_s = 0; s->lookahead -= s->framesamples; } else { op.granulepos += s->lookahead; op.e_o_s = 1; s->lookahead = 0; s->pflags |= PF_FINAL; } op.packet = s->outbuf; op.bytes = enc_bytes; op.b_o_s = 0; op.packetno = s->packetno++; ogg_stream_packetin(&s->os, &op); s->fillbytes += enc_bytes; if (++s->pagepackets == s->pagepackets_max || op.e_o_s) { s->pagepackets = 0; if (ogg_stream_flush_fill(&s->os, &og, s->fillbytes)) { if (!live_ogg_write_packet(encoder, &og, s->pflags)) { fprintf(stderr, "live_oggopus_encoder_main: failed to write packet\n"); goto bailout; } if ((s->fillbytes -= og.body_len)) fprintf(stderr, "!!! packet size limit exceeded\n"); } else fprintf(stderr, "live_oggopus_encoder_main: failed to flush page\n"); } } else { fprintf(stderr, "live_oggopus_encoder_main: failed to encode packet: %s\n", opus_strerror(enc_bytes)); goto bailout; } } while (!op.e_o_s); if (!encoder->run_request_f) goto bailout; else { opus_encoder_destroy(s->enc_st); ogg_stream_clear(&s->os); s->granulepos = s->packetno = s->pagepackets = s->fillbytes = 0; fprintf(stderr, "live_oggopus_encoder_main: minimal clean up\n"); encoder->encoder_state = ES_STARTING; } return; } fprintf(stderr, "live_oggopus_encoder_main: unhandled encoder state\n"); return; bailout: fprintf(stderr, "live_oggopus_encoder_main: cleanup\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->flush = FALSE; encoder->encoder_private = NULL; vtag_block_cleanup(&s->metadata_block); if (s->enc_st) opus_encoder_destroy(s->enc_st); ogg_stream_clear(&s->os); free(s->inbuf); free(s->outbuf); free(s); fprintf(stderr, "live_oggopus_encoder_main: finished cleanup\n"); return; } int live_oggopus_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { struct local_data * const s = calloc(1, sizeof (struct local_data)); if (!s) { fprintf(stderr, "live_oggopus_encoder: malloc failure\n"); return FAILED; } s->complexity = atoi(ev->complexity); s->postgain = atoi(ev->postgain); s->framesamples = atoi(ev->framesize) * 48; s->pagepackets_max = 48000 / s->framesamples / 5; if (!strcmp(ev->variability, "cbr")) s->vbr = 0; else { s->vbr = 1; if (!strcmp(ev->variability, "cvbr")) s->vbr_constraint = 1; else { s->vbr_constraint = 0; if (strcmp(ev->variability, "vbr")) { fprintf(stderr, "live_gggopus_encoder: bad variability setting\n"); free(s); return FAILED; } } } if (!(s->inbuf = malloc(sizeof (float) * encoder->n_channels * s->framesamples))) { fprintf(stderr, "live_oggopus_encoder: malloc failure\n"); free(s); return FAILED; } s->outbuf_siz = encoder->bitrate * s->framesamples / 174; if (!(s->outbuf = malloc(s->outbuf_siz))) { fprintf(stderr, "live_oggopus_encoder: malloc failure\n"); free(s->inbuf); free(s); return FAILED; } if (!vtag_block_init(&s->metadata_block)) { fprintf(stderr, "live_oggopus_encoder: malloc failure\n"); free(s->outbuf); free(s->inbuf); free(s); return FAILED; } encoder->encoder_private = s; encoder->run_encoder = live_oggopus_encoder_main; return SUCCEEDED; } #endif /* HAVE_OPUS */ idjc-0.8.16/c/flacdecode.h0000644000175000017500000000252612630014502012102 00000000000000/* # flacdecode.h: decodes flac file format for xlplayer # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_FLAC #include "xlplayer.h" struct flacdecode_vars { FLAC__StreamDecoder *decoder; FLAC__StreamMetadata metainfo; int decoderstate; int resample_f; int suppress_audio_output; FLAC__uint64 totalsamples; float *flbuf; }; int flacdecode_reg(struct xlplayer *xlplayer); void make_flac_audio_to_float(struct xlplayer *self, float *flbuf, const FLAC__int32 * const inputbuffer[], unsigned int numsamples, unsigned int bits_per_sample, unsigned int numchannels); #endif idjc-0.8.16/c/agc.h0000644000175000017500000000371612630014502010565 00000000000000/* # agc.h: a fast lookahead microphone AGC # Copyright (C) 2008 Stefan Fendt (stefan@sfendt.de) # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ /* opaque pointer */ struct agc; /* initialisation */ struct agc *agc_init(int sample_rate, float lookahead, int id); /* declare another agc to be pairable for stereo */ void agc_set_as_partners(struct agc *agc1, struct agc *agc2); /* initiate or cancel stereo mode - called on subordinate */ void agc_set_partnered_mode(struct agc *self, int boolean); /* run each of these in turn, intersperse paired mics * parameter mic_is_mute toggles ducker operation */ void agc_process_stage1(struct agc *self, float input); void agc_process_stage2(struct agc *self, int mic_is_mute); float agc_process_stage3(struct agc *self); /* the amount of attenuation broken down into three parts */ void agc_get_meter_levels(struct agc *self, int *signal_cap, int *de_ess, int *noise_gate); /* the amount of ducking to apply */ float agc_get_ducking_factor(struct agc *self); /* call this when going idle for a while - accumulated data is flushed */ void agc_reset(struct agc *self); /* take down */ void agc_free(struct agc *self); /* configuration from control strings */ void agc_control(struct agc *s, char *key, char *value); idjc-0.8.16/c/dbconvert.h0000644000175000017500000000204112630014502012007 00000000000000/* # dbconvert.h: table based conversion for db to sig level and vice-versa from IDJC. # Copyright (C) 2005-2006 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ int init_dblookup_table(void); int init_signallookup_table(void); void free_dblookup_table(void); void free_signallookup_table(void); float level2db(float signal); float db2level(float signal); idjc-0.8.16/c/mp3tagread.c0000644000175000017500000004512212630014502012052 00000000000000/* # mp3tagread.c: reads id3 tag including any chapter info + Xing header # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include "gnusource.h" #include #include #include #include "mp3tagread.h" #include "bsdcompat.h" #define TRUE 1 #define FALSE 0 #if 0 static void unsynchronise(struct mp3decode_id3data *us) { unsigned char *ptr, *end, *op; int count = 0; struct mp3decode_id3data out; for (ptr = us->data, end = ptr + us->size - 1; ptr < end; ptr++) if (ptr[0] == 0xFF && (ptr[1] == 0x00 || (ptr[1] & 0xE0) == 0xE0)) count++; out.size = us->size + count; if (!(out.data = malloc(out.size))) { fprintf(stderr, "unsync: malloc failure\n"); return; } for (ptr = us->data, op = out.data; ptr < end; ptr++) { *op++ = *ptr; if (ptr[0] == 0xFF && (ptr[1] == 0x00 || (ptr[1] & 0xE0) == 0xE0)) *op++ = 0x00; } free(us->data); *us = out; } #endif static void resynchronise(struct id3data *us) { unsigned char *ptr, *end, *op; int count = 0; struct id3data out; for (ptr = us->data, end = ptr + us->size -1; ptr < end; ptr++) if (ptr[0] == 0xFF && ptr[1] == 0x00) count++; out.size = us->size - count; if (!(out.data = malloc(out.size))) { fprintf(stderr, "resynchronise: malloc failure\n"); return; } for (ptr = us->data, op = out.data; ptr <= end; ptr++) { *op++ = *ptr; if (ptr[0] == 0xFF) ptr++; } free(us->data); *us = out; fprintf(stderr, "resynchronise: finished\n"); } static int get_frame_size(unsigned char *start, int id3version) { int size; switch (id3version) { case 3: size = start[4]; size <<= 8; size |= start[5]; size <<= 8; size |= start[6]; size <<= 8; size |= start[7]; break; case 4: size = start[4] & 0x7F; size <<= 7; size |= start[5] & 0x7F; size <<= 7; size |= start[6] & 0x7F; size <<= 7; size |= start[7] & 0x7F; break; default: fprintf(stderr, "get_frame_size: unhandled id3v2 version %d\n", id3version); size = 0x7FFFFFFF; } return size; } static void set_id3_data(struct id3data *us, unsigned char *start, int id3version) { us->size = get_frame_size(start, id3version); if (!(us->data = malloc(us->size))) { fprintf(stderr, "set_id3_data: malloc failure\n"); return; } memcpy(us->data, start + 10, us->size); } static unsigned int bigendianint(unsigned char *ptr) { unsigned int a; a = *ptr++; a = (a << 8) | *ptr++; a = (a << 8) | *ptr++; return (a << 8) | *ptr; } #if 0 static int decode_tit2(struct mp3taginfo *ti, unsigned char *start, struct chapter *chap) { struct id3data us; set_id3_data(&us, start, ti->version); if (ti->version == 4 && (start[9] & 0x2)) resynchronise(&us); if (((chap->encoding = us.data[0]) > 1 && ti->version == 3) || chap->encoding > 3) { fprintf(stderr, "decode_tit2: unsupported character encoding\n"); goto bailout; } if (us.data[us.size - 1]) /* handle potential null termination */ { chap->length = us.size - 1; fprintf(stderr, "not null terminated\n"); } else { chap->length = us.size - 2; fprintf(stderr, "null terminated\n"); } if (!(chap->text = calloc(1, chap->length + 1))) goto bailout; memcpy(chap->text, us.data + 1, chap->length); free(us.data); return 1; bailout: free(us.data); return 0; } #endif static int decode_text_tag(struct mp3taginfo *ti, unsigned char *start, struct chapter_text *ct) { struct id3data us; size_t l; char *src, *dest; if (ct->text) /* start over if there is a duplicate tag */ { free(ct->text); memset(ct, '\0', sizeof (struct chapter_text)); } set_id3_data(&us, start, ti->version); if (ti->version == 4 && (start[9] & 0x2)) resynchronise(&us); if (((ct->encoding = us.data[0]) > 1 && ti->version == 3) || ct->encoding > 3) { fprintf(stderr, "decode_tit2: unsupported character encoding\n"); goto bailout; } if (us.data[us.size - 1]) /* handle potential null termination */ { ct->length = us.size - 1; fprintf(stderr, "not null terminated\n"); } else { ct->length = us.size - 2; fprintf(stderr, "null terminated\n"); } if (!(ct->text = malloc(ct->length + 1))) { fprintf(stderr, "malloc failure\n"); goto bailout; } /* copy, substituting separating nulls with / characters */ for (src = (char *)us.data + 1, dest = ct->text, l = ct->length; l; --l, ++src, ++dest) if (*src != '\0') *dest = *src; else *dest = '/'; *dest = '\0'; free(us.data); return 1; bailout: free(us.data); return 0; } static void decode_chap(struct mp3taginfo *ti, unsigned char *start) { struct id3data us; unsigned char *ptr, *end; struct chapter *chapdata; struct chapter_text *chaptext; int adv; if (!(chapdata = calloc(1, sizeof (struct chapter)))) { fprintf(stderr, "decode_chap: malloc failure\n"); return; } set_id3_data(&us, start, ti->version); if (ti->version == 4 && ((ti->flags & 0x80) || (start[9] & 0x2))) resynchronise(&us); for (ptr = us.data, end = us.data + us.size; ptr < end && *ptr++;); if (ptr + 16 > end) { fprintf(stderr, "decode_chap: chapter tag is too small\n"); free(us.data); return; } chapdata->time_begin = bigendianint(ptr); chapdata->time_end = bigendianint(ptr += 4); chapdata->byte_begin = bigendianint(ptr += 4); chapdata->byte_end = bigendianint(ptr += 4); ptr += 4; for (; (ptr + 10 < end) && (ptr + (adv = 10 + get_frame_size(ptr, ti->version)) <= end); ptr += adv) { if (!memcmp(ptr, "TPE1", 4)) chaptext = &chapdata->artist; else if (!memcmp(ptr, "TIT2", 4)) chaptext = &chapdata->title; else if (!memcmp(ptr, "TALB", 4)) chaptext = &chapdata->album; else continue; if (!(decode_text_tag(ti, ptr, chaptext))) { free(us.data); return; } } if (!chapdata->artist.text) chapdata->artist.text = strdup(""); if (!chapdata->title.text) chapdata->title.text = strdup(""); if (!chapdata->album.text) chapdata->album.text = strdup(""); if (!(ti->first_chapter)) ti->first_chapter = ti->last_chapter = chapdata; else { ti->last_chapter->next = chapdata; ti->last_chapter = chapdata; } fprintf(stderr, "Chapter info\ntime begin %d\ntime end %d\nbyte begin %d\nbyte end %d\n", chapdata->time_begin, chapdata->time_end, chapdata->byte_begin, chapdata->byte_end); fprintf(stderr, "Artist: %s\nTitle : %s\nAlbum : %s\n", chapdata->artist.text, chapdata->title.text, chapdata->album.text); free(us.data); } static void decode_tlen(struct mp3taginfo *ti, unsigned char *start) { struct id3data us; char *buffer; set_id3_data(&us, start, ti->version); if (ti->version == 4 && ((ti->flags & 0x80) || (start[9] & 0x2))) resynchronise(&us); if (us.size == 0) ti->tlen = 0; else { if (!(buffer = strndup((char *)us.data, us.size + 1))) { fprintf(stderr, "decode_tlen: malloc failure\n"); ti->tlen = 0; return; } ti->tlen = atoi(buffer); free(buffer); } free(us.data); fprintf(stderr, "Track length according to TLEN: %dms\n\n", ti->tlen); } static void decode_id3_frames(struct mp3taginfo *ti, struct id3data *d) { unsigned char *start, *end; unsigned int adv; struct tag_lookup *lup; static struct tag_lookup lu[] = {{ "TLEN", decode_tlen }, { "CHAP", decode_chap }, { NULL, NULL }}; for (start = d->data, end = d->data + d->size; start < end && *start; start += adv) { if (start + 10 > end || start + (adv = 10 + get_frame_size(start, ti->version)) > end) { fprintf(stderr, "decode_id3_frames: defective frame size discovered in tag\n"); mp3_tag_cleanup(ti); return; } for (lup = lu; lup->id; lup++) if (!(memcmp(lup->id, start, 4))) lup->fn(ti, start); } } static int id3_tag_read(struct mp3taginfo *ti, FILE *fp, int skip) { long start = ftell(fp); long tagsize, ehsize, frames_end; int minor, flags; struct id3data id; if (fgetc(fp) == 'I' && fgetc(fp) == 'D' && fgetc(fp) == '3') /* check for ID3 signature */ { ti->version = fgetc(fp); minor = fgetc(fp); ti->flags = flags = fgetc(fp); tagsize = fgetc(fp) & 0x7F; /* 28 bits of tag size info packed into 4 bytes - big endian */ tagsize <<= 7; /* most significant bit discarded - should be zero */ tagsize |= fgetc(fp) & 0x7F; tagsize <<= 7; tagsize |= fgetc(fp) & 0x7F; tagsize <<= 7; tagsize |= fgetc(fp) & 0x7F; switch (minor != 0xFF ? ti->version : -1) { case 4: if (flags & 0x40) { ehsize = fgetc(fp) & 0x7F; /* skip over the extended header */ ehsize <<= 7; ehsize |= fgetc(fp) & 0x7F; ehsize <<= 7; ehsize |= fgetc(fp) & 0x7F; ehsize <<= 7; ehsize |= fgetc(fp) & 0x7F; if (ehsize < tagsize) fseek(fp, ehsize - 4, SEEK_CUR); else { fprintf(stderr, "read_id3v2_tag: error, tag size not large enough for extended header\n"); fseek(fp, start + 10 + tagsize, SEEK_SET); return TRUE; } } case 3: frames_end = start + 10 + tagsize; if (!skip) break; default: fseek(fp, tagsize, SEEK_CUR); /* skip over the tag */ return TRUE; } if ((id.data = malloc(id.size = frames_end - ftell(fp))) == NULL || (!fread(id.data, id.size, 1, fp))) { fprintf(stderr, "read_id3_v2_tag: failed to read tag data\n"); fseek(fp, start + 10 + tagsize, SEEK_SET); return TRUE; } if (ti->version == 3) { if (flags & 0x80) resynchronise(&id); if (flags & 0x40) /* lose the extended header */ { ehsize = bigendianint(id.data); if (ehsize <= id.size) memcpy(id.data, id.data + ehsize, id.size -= ehsize); else { fprintf(stderr, "read_id3_tag: error, tag size not large enough for extended header\n"); fseek(fp, start + 10 + tagsize, SEEK_SET); return TRUE; } } } decode_id3_frames(ti, &id); free(id.data); if (flags & 0x10) /* skip over the footer if present */ fseek(fp, 10, SEEK_CUR); return TRUE; } fseek(fp, start, SEEK_SET); /* not ID3 so restore the file pointer */ return FALSE; } /********************************************************************************/ static int be32bitread(FILE *fp) { int rv; rv = fgetc(fp); rv <<= 8; rv |= fgetc(fp); rv <<= 8; rv |= fgetc(fp); rv <<= 8; rv |= fgetc(fp); return rv; } static void xing_tag_read(struct mp3taginfo *ti, FILE *fp) { unsigned char a, b, c; int mpeg1_f, mpeg_ix, mono_f, br_ix, sr_ix; int xing_offset, initial_offset, save_point = 0; int i, samples_per_frame, frame_length, padding; int bit_rate, sample_rate; int flags, b1, b2, b3; char xing_intro[4]; char lame_intro[4]; static int side_info_table[2][2] = { { 17, 9 } , { 32, 17 } }; static int bitrate_table[2][15] = { { 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160 }, { 0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320 } }; static int samplerate_table[4][4] = { { 11025, 12000, 8000, 0 }, { 0, 0, 0, 0 }, { 22050, 24000, 16000, 0 }, { 44100, 48000, 32000, 0 } }; initial_offset = ftell(fp); for (i = 0; i < 1024; i++) { while ((a = fgetc(fp)) != 0xFF) { if (feof(fp) || ferror(fp)) goto no_tag; } if (((b = fgetc(fp)) & 0xE0) == 0xE0) { c = fgetc(fp); fgetc(fp); if ((br_ix = (c >> 4)) == 0xF || (b & 0x18) == 0x08 || (b & 0x6) != 0x2) goto no_tag; if ((mpeg_ix = (b & 0x18) >> 3) == 1) goto no_tag; mpeg1_f = mpeg_ix == 0x3; br_ix = c >> 4; sr_ix = (c >> 2) & 0x3; padding = (c & 0x2) ? 1 : 0; mono_f = ((c & 0xC0) == 0xC0) ? 1 : 0; samples_per_frame = mpeg1_f ? 1152 : 576; xing_offset = side_info_table[mpeg1_f][mono_f]; bit_rate = bitrate_table[mpeg1_f][br_ix]; sample_rate = samplerate_table[mpeg_ix][sr_ix]; if (bit_rate == 0 || sample_rate == 0) frame_length = 0; else frame_length = samples_per_frame / 8 * bit_rate * 1000 / sample_rate + padding; while (xing_offset--) /* check side info is 100% blank */ if (fgetc(fp) || feof(fp) || ferror(fp)) goto no_tag; if (!fread(xing_intro, 4, 1, fp)) goto no_tag; if (memcmp(xing_intro, "Info", 4) && memcmp(xing_intro, "Xing", 4)) goto no_tag; fgetc(fp); fgetc(fp); fgetc(fp); flags = fgetc(fp); if (flags & 0x1) { ti->have_frames = 1; ti->frames = be32bitread(fp); if (!(ti->tlen) && sample_rate) ti->tlen = ti->frames / sample_rate; fprintf(stderr, "frames %d\n", ti->frames); } if (flags & 0x2) { ti->have_bytes = 1; ti->bytes = be32bitread(fp); fprintf(stderr, "bytes %d\n", ti->bytes); } if (flags & 0x4) { ti->have_toc = fread(ti->toc, 100, 1, fp); fprintf(stderr, "toc has been read\n"); } if (flags & 0x8) be32bitread(fp); if (!fread(lame_intro, 4, 1, fp)) goto no_tag; if (!memcmp(lame_intro, "LAME", 4)) { fprintf(stderr, "lame tag found\n"); fseek(fp, 17, SEEK_CUR); b1 = fgetc(fp); b2 = fgetc(fp); b3 = fgetc(fp); ti->start_frames_drop = ((b1 << 4) | (b2 >> 4)) + 528; ti->end_frames_drop = (((b2 & 0xF) << 8) | b3); fprintf(stderr, "frames to drop %d and %d\n", ti->start_frames_drop, ti->end_frames_drop); fseek(fp, 12, SEEK_CUR); } else fseek(fp, -4, SEEK_CUR); if (!frame_length) save_point = ftell(fp); if (!(ti->have_bytes)) { fprintf(stderr, "deriving number of bytes manually\n"); fseek(fp, 0, SEEK_END); ti->bytes = ftell(fp) - initial_offset + frame_length; ti->have_bytes = 1; } if (frame_length) fseek(fp, initial_offset + frame_length, SEEK_SET); else { fprintf(stderr, "manually skipping to the next frame\n"); fseek(fp, initial_offset + save_point, SEEK_SET); while (fgetc(fp) == '\0'); fseek(fp, -1, SEEK_CUR); } ti->first_byte = ftell(fp); return; } } no_tag: fseek(fp, initial_offset, SEEK_SET); } /********************************************************************************/ void mp3_tag_read(struct mp3taginfo *ti, FILE *fp) { if (id3_tag_read(ti, fp, FALSE)) while(id3_tag_read(ti, fp, TRUE)) fprintf(stderr, "Surplus ID3 tag skipped\n"); xing_tag_read(ti, fp); } void mp3_tag_cleanup(struct mp3taginfo *ti) { struct chapter *c = ti->first_chapter, *oldc; while ((oldc = c)) { free(c->artist.text); free(c->title.text); free(c->album.text); c = c->next; free(oldc); } memset(ti, 0, sizeof (struct mp3taginfo)); } struct chapter *mp3_tag_chapter_scan(struct mp3taginfo *ti, unsigned time_ms) { struct chapter *c; for (c = ti->first_chapter; c; c = c->next) if (time_ms >= c->time_begin && (time_ms < c->time_end || c->next == NULL)) return c; return NULL; } idjc-0.8.16/c/compressor.c0000644000175000017500000000512312630014502012214 00000000000000/* # compressor.c: Audio dynamic range compression code from IDJC. # Copyright (C) 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "gnusource.h" #include #include #include #include "dbconvert.h" #include "compressor.h" #include "bsdcompat.h" /* limiter: a basic hard knee compressor - called limiter because that is the mode */ /* in which IDJC uses it */ compaudio_t limiter(struct compressor *self, compaudio_t left, compaudio_t right) { compaudio_t gots, gain_target_db, diff; gots = level2db(fabs((fabs(left) > fabs(right)) ? left : right)); if (!isfinite(gots)) gots = -100.0; if (gots <= self->k1) gain_target_db = 0.0F; else gain_target_db = (gots - self->k1) / self->ratio + self->k1 - gots; if (fabs(diff = gain_target_db - self->gain_db) > 0.0000004) { if (self->gain_db > gain_target_db) self->gain_db += diff * self->attack; else self->gain_db += diff * self->release; } return self->gain_db; } /* the variable maxlevel dictates the amount by which the volume can be turned up */ /* when the ceiling level is breached the volume level is reduced */ compaudio_t normalizer(struct normalizer *self, compaudio_t left, compaudio_t right) { compaudio_t gots; gots = level2db(fabs((fabs(left) > fabs(right)) ? left : right)); if (!isfinite(gots)) gots = -90.3089987F; if (gots + self->level > self->ceiling && self->active != 0) { self->level -= (self->level - self->ceiling) * self->fall; } else { if (self->active) self->level += (self->maxlevel - self->level) * self->rise; else self->level += (0.0F - self->level) * self->rise; if (self->level > self->maxlevel) self->level = self->maxlevel; } return self->level; } idjc-0.8.16/c/live_oggflac_encoder.h0000644000175000017500000000263412630014502014151 00000000000000/* # live_oggflac_encoder.h: encode oggflac from a live source # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_OGGFLAC #include "sourceclient.h" #include #include "live_ogg_encoder.h" struct lofe_data { struct ogg_tag_data tag_data; FLAC__StreamEncoder *enc; int bits_per_sample; FLAC__StreamMetadata *metadata[1]; FLAC__byte *pab; size_t pab_rqd; size_t pab_size; size_t pab_head_size; int n_writes; unsigned samples; enum packet_flags flags; unsigned int seedp; int uclip; int lclip; }; int live_oggflac_encoder_init(struct encoder *encoder, struct encoder_vars *ev); #endif /* HAVE_OGGFLAC */ idjc-0.8.16/c/recorder.h0000644000175000017500000001134212630014502011632 00000000000000/* # recorder.h: the recording part of the streaming module of idjc # Copyright (C) 2007-2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef RECORDER_H #define RECORDER_H #include #include #include "sourceclient.h" enum record_mode { RM_STOPPED, RM_RECORDING, RM_PAUSED, RM_STOPPING }; struct recorder_vars { char *record_source; char *record_folder; char *record_filename; char *pause_button; char *auto_pause_button; }; /* metadata logging (mp3 only): while the first structure logs title changes for * creating a table of contents in the id3 tag, the second logs changes to the * compression ratio to provide for the creation of a seek table in the Xing tag */ struct metadata_item { char *artist; char *title; char *album; int time_offset; int byte_offset; int time_offset_end; int byte_offset_end; struct metadata_item *next; }; struct metadata_item2 { int start_offset_ms; int byte_offset; int finish_offset_ms; int size_bytes; int bit_rate; int sample_rate; struct metadata_item2 *next; }; struct recorder { struct threads_info *threads_info; int numeric_id; /* the identity of this recorder */ pthread_t thread_h; /* pthread handle for the recorder */ int thread_terminate_f; /* set this to cause the thread to exit */ int stop_request; /* control variables for various obvious things */ int stop_pending; int pause_request; int pause_pending; int unpause_request; int unpause_pending; int initial_serial; /* for syncing with the encoder */ int final_serial; int recording_length_s; /* time in whole seconds that are recorded */ int recording_length_ms; double accumulated_time; /* prior stream lengths are accumulated here */ int bytes_written; /* logs the current file size */ struct encoder_op *encoder_op; /* handle for getting input data */ FILE *fp; char *pathname; /* /path/to/filebeingsaved.[ogg/mp3] */ char *cuepathname; /* pathname of cue file */ char *timestamp; /* just the timestamp from the filename */ enum record_mode record_mode; struct metadata_item *mi_first; /* log mp3 song title changes */ struct metadata_item *mi_last; struct metadata_item2 *mi2_first; /* log mp3 block sizes and durations */ struct metadata_item2 *mi2_last; int id3_mode; /* when set applies an id3 tag */ int include_xing_tag; /* if true a xing/info tag is to be written */ int is_vbr; /* frame length changed */ unsigned oldbitrate; unsigned oldsamplerate; char first_mp3_header[4]; SNDFILE *sf; /* support for recording with libsndfile */ SF_INFO sfinfo; enum jack_dataflow jack_dataflow_control; /* tells the jack callback routine what we want it to do */ jack_ringbuffer_t *input_rb[2]; /* circular buffer containing pcm audio data */ enum performance_warning performance_warning_indicator; /* indicates ringbuffer overflow condition */ char *left; char *right; char *combined; size_t sf_samples; FILE *fpcue; char *artist; char *title; char *album; int artist_title_writes; pthread_mutex_t artist_title_mutex; int new_artist_title; pthread_mutex_t mode_mutex; pthread_cond_t mode_cv; }; struct recorder *recorder_init(struct threads_info *ti, int numeric_id); void recorder_destroy(struct recorder *self); int recorder_start(struct threads_info *ti, struct universal_vars *uv, void *other); int recorder_stop(struct threads_info *ti, struct universal_vars *uv, void *other); int recorder_pause(struct threads_info *ti, struct universal_vars *uv, void *other); int recorder_unpause(struct threads_info *ti, struct universal_vars *uv, void *other); int recorder_make_report(struct recorder *self); int recorder_new_metadata(struct recorder *self, char *artist, char *title, char *album); #endif idjc-0.8.16/c/ialloc.h0000644000175000017500000000203312630014502011265 00000000000000/* # ialloc.h: Heap memory allocation routines for IDJC # Copyright (C) 2005-2006 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include jack_default_audio_sample_t *ialloc(jack_nframes_t size); void ifree(jack_default_audio_sample_t *memblock); jack_default_audio_sample_t *irealloc(jack_default_audio_sample_t *, jack_nframes_t); idjc-0.8.16/c/main.h0000644000175000017500000000474212630014502010757 00000000000000/* # main.h: backend unification module # Copyright (C) 2011-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include struct jack_ports { /* mixer ports */ jack_port_t *dj_out_l; jack_port_t *dj_out_r; jack_port_t *dsp_out_l; jack_port_t *dsp_out_r; jack_port_t *dsp_in_l; jack_port_t *dsp_in_r; jack_port_t *str_out_l; jack_port_t *str_out_r; jack_port_t *voip_out_l; jack_port_t *voip_out_r; jack_port_t *voip_in_l; jack_port_t *voip_in_r; jack_port_t *alarm_out; /* player breakout ports */ jack_port_t *pl_out_l; jack_port_t *pl_out_r; jack_port_t *pr_out_l; jack_port_t *pr_out_r; jack_port_t *pi_out_l; jack_port_t *pi_out_r; jack_port_t *pe1_out_l; jack_port_t *pe1_out_r; jack_port_t *pe2_out_l; jack_port_t *pe2_out_r; jack_port_t *pl_in_l; jack_port_t *pl_in_r; jack_port_t *pr_in_l; jack_port_t *pr_in_r; jack_port_t *pi_in_l; jack_port_t *pi_in_r; jack_port_t *pe_in_l; jack_port_t *pe_in_r; jack_port_t *midi_port; /* streamer/recorder capture ports */ jack_port_t *output_in_l; jack_port_t *output_in_r; }; struct globs { sig_atomic_t app_shutdown; int main_timeout; /* Inactive when negative. */ int jack_timeout; int has_head; int mixer_up; jack_client_t *client; /* Client handle to JACK. */ struct jack_ports port; /* JACK port handles. */ jack_ringbuffer_t *session_event_rb; /* Session event buffer */ pthread_mutex_t avc_mutex; /* lock for avcodec */ FILE *in; /* comms stream with user interface */ FILE *out; int freewheel; }; extern struct globs g; idjc-0.8.16/c/live_oggspeex_encoder.c0000644000175000017500000003021512630014502014357 00000000000000/* # live_oggspeex_encoder.c: encode speex from a live source into an ogg container # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_SPEEX #include #include #include #include #include #include #include "sourceclient.h" #include "live_ogg_encoder.h" #include "live_oggspeex_encoder.h" #include "vorbistagparse.h" #define SUCCEEDED 1 #define FAILED 0 #define MAX_FRAME_BYTES 2000 enum speex_mode { SM_UWB, SM_WB, SM_NB }; struct lose_data { struct ogg_tag_data tag_data; void *enc_state; SpeexBits bits; int fsamples; /* number of samples in a frame */ float *inbuf; ogg_stream_state os; int pflags; int packetno; int frame; int frames_encoded; int total_samples; int samples_encoded; int lookahead; int eos; char vendor_string[64]; size_t vs_len; struct SpeexMode const *mode; int quality; int complexity; struct vtag_block metadata_block; enum packet_flags flags; }; static void live_oggspeex_encoder_monomix(float *in, float *out, size_t n) { while (n--) *out++ = *in++ * 32768; } static void live_oggspeex_encoder_stereomix(float *l, float *r, float *m, size_t n) { while (n--) { *m++ = *l++ * 32768; *m++ = *r++ * 32768; } } static void live_oggspeex_encoder_main(struct encoder *encoder) { struct lose_data * const s = encoder->encoder_private; ogg_page og; ogg_packet op; if (encoder->encoder_state == ES_STARTING) { SpeexHeader header; char *packet; int packet_size; int error; speex_bits_init(&s->bits); if (!(s->enc_state = speex_encoder_init(s->mode))) { fprintf(stderr, "live_oggspeex_encoder_main: failed to initialise speex encoder\n"); goto bailout; } speex_encoder_ctl(s->enc_state, SPEEX_GET_FRAME_SIZE, &s->fsamples); speex_encoder_ctl(s->enc_state, SPEEX_SET_QUALITY, &s->quality); speex_encoder_ctl(s->enc_state, SPEEX_SET_COMPLEXITY, &s->complexity); speex_encoder_ctl(s->enc_state, SPEEX_GET_LOOKAHEAD, &s->lookahead); if (!(s->inbuf = realloc(s->inbuf, s->fsamples * encoder->n_channels * sizeof (float)))) { fprintf(stderr, "live_oggspeex_encoder_main: malloc failure\n"); goto bailout; } speex_init_header(&header, encoder->target_samplerate, encoder->n_channels, s->mode); header.frames_per_packet = 1; if (!(packet = speex_header_to_packet(&header, &packet_size))) { fprintf(stderr, "live_oggspeex_encoder_main: failed to make header packet\n"); goto bailout; } ogg_stream_init(&s->os, ++encoder->oggserial); op.packet = (unsigned char *)packet; op.bytes = packet_size; op.b_o_s = 1; op.e_o_s = 0; op.granulepos = 0; op.packetno = 0; ogg_stream_packetin(&s->os, &op); speex_header_free(packet); s->pflags = PF_INITIAL | PF_OGG | PF_HEADER; while (ogg_stream_flush(&s->os, &og)) { if (!(live_ogg_write_packet(encoder, &og, s->pflags))) { fprintf(stderr, "live_ogg_write_packet: failed to write header\n"); goto bailout; } s->pflags = PF_OGG | PF_HEADER; } if (encoder->new_metadata || !s->metadata_block.data) { struct vtag *tag; if (!(tag = vtag_new(s->vendor_string, &error))) { fprintf(stderr, "live_oggspeex_encoder_main: error: failed to initialise empty vtag: %s\n", vtag_strerror(error)); goto bailout; } vtag_append(tag, "encoder", getenv("app_name")); if (encoder->use_metadata) { struct ogg_tag_data t = {}; fprintf(stderr, "live_oggspeex_encoder_main: info: making metadata\n"); live_ogg_capture_metadata(encoder, &t); if (t.custom && t.custom[0]) { vtag_append(tag, "title", t.custom); vtag_append(tag, "trk-author", t.artist); vtag_append(tag, "trk-title", t.title); vtag_append(tag, "trk-album", t.album); } else { vtag_append(tag, "author", t.artist); vtag_append(tag, "title", t.title); vtag_append(tag, "album", t.album); } live_ogg_free_metadata(&t); } else fprintf(stderr, "live_oggspeex_encoder_main: info: making bare-bones metadata\n"); if ((error = vtag_serialize(tag, &s->metadata_block, NULL))) { fprintf(stderr, "live_oggspeex_encoder_main: vtag_serialize failed: %s\n", vtag_strerror(error)); goto bailout; } vtag_cleanup(tag); encoder->new_metadata = FALSE; } else fprintf(stderr, "live_oggspeex_encoder_main: info: using previous metadata\n"); op.packet = (unsigned char *)s->metadata_block.data; op.bytes = s->metadata_block.length; op.b_o_s = 0; op.e_o_s = 0; op.granulepos = 0; op.packetno = 1; ogg_stream_packetin(&s->os, &op); while (ogg_stream_flush(&s->os, &og)) { if (!(live_ogg_write_packet(encoder, &og, s->pflags))) { fprintf(stderr, "live_ogg_write_packet: failed to write header\n"); goto bailout; } } s->pflags = PF_OGG; s->packetno = 2; s->frame = 0; s->total_samples = 0; s->samples_encoded = -s->lookahead; s->eos = FALSE; encoder->timestamp = 0.0; encoder->encoder_state = ES_RUNNING; return; } if (encoder->encoder_state == ES_RUNNING) { struct encoder_ip_data *id; char wb[MAX_FRAME_BYTES]; int ws; int (*ogg_paging_function)(ogg_stream_state *, ogg_page *); if (s->eos == FALSE) { if (encoder->new_metadata || !encoder->run_request_f || encoder->flush) { s->eos = TRUE; memset(s->inbuf, '\0', s->fsamples * encoder->n_channels * sizeof (float)); return; } else { if((id = encoder_get_input_data(encoder, s->fsamples, s->fsamples, NULL))) { if (encoder->n_channels == 2) { live_oggspeex_encoder_stereomix(id->buffer[0], id->buffer[1], s->inbuf, s->fsamples); speex_encode_stereo(s->inbuf, s->fsamples, &s->bits); } else live_oggspeex_encoder_monomix(id->buffer[0], s->inbuf, s->fsamples); encoder_ip_data_free(id); s->total_samples += s->fsamples; } else return; /* no new audio data available */ } } else if (encoder->n_channels == 2) speex_encode_stereo(s->inbuf, s->fsamples, &s->bits); speex_encode(s->enc_state, s->inbuf, &s->bits); speex_bits_insert_terminator(&s->bits); ws = speex_bits_write(&s->bits, wb, MAX_FRAME_BYTES); speex_bits_reset(&s->bits); s->samples_encoded += s->fsamples; op.packet = (unsigned char *)wb; op.bytes = ws; op.b_o_s = 0; op.packetno = s->packetno++; if (s->samples_encoded >= s->total_samples) { op.e_o_s = 1; op.granulepos = s->total_samples; } else { op.e_o_s = 0; op.granulepos = s->samples_encoded; } if (op.e_o_s || ++s->frame == 10) ogg_paging_function = ogg_stream_flush; else ogg_paging_function = ogg_stream_pageout; ogg_stream_packetin(&s->os, &op); while (ogg_paging_function(&s->os, &og)) { s->frame = 0; if (ogg_page_eos(&og)) { s->pflags |= PF_FINAL; encoder->flush = FALSE; encoder->encoder_state = ES_STOPPING; } if (!live_ogg_write_packet(encoder, &og, s->pflags)) { fprintf(stderr, "live_oggspeex_encoder_main: failed to write packet\n"); goto bailout; } } return; } if (encoder->encoder_state == ES_STOPPING) { speex_bits_destroy(&s->bits); speex_encoder_destroy(s->enc_state); s->enc_state = NULL; ogg_stream_clear(&s->os); if (!encoder->run_request_f) goto bailout; else encoder->encoder_state = ES_STARTING; return; } fprintf(stderr, "live_oggspeex_encoder_main: unhandled encoder state\n"); return; bailout: fprintf(stderr, "live_oggspeex_encoder_main: performing cleanup\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->flush = FALSE; encoder->new_metadata = FALSE; encoder->encoder_private = NULL; if (s->enc_state) { speex_bits_destroy(&s->bits); speex_encoder_destroy(s->enc_state); } if (s->inbuf) free(s->inbuf); vtag_block_cleanup(&s->metadata_block); free(s); fprintf(stderr, "live_oggspeex_encoder_main: finished cleanup\n"); return; } int live_oggspeex_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { struct lose_data * const s = calloc(1, sizeof (struct lose_data)); char *speex_version; if (!s) { fprintf(stderr, "live_oggspeex_encoder: malloc failure\n"); return FAILED; } if (!vtag_block_init(&s->metadata_block)) { fprintf(stderr, "live_oggspeex_encoder: malloc failure\n"); free(s); return FAILED; } speex_lib_ctl(SPEEX_LIB_GET_VERSION_STRING, (void *)&speex_version); snprintf(s->vendor_string, sizeof(s->vendor_string), "Encoded with Speex %s", speex_version); s->vs_len = strlen(s->vendor_string); s->quality = atoi(ev->quality); s->complexity = atoi(ev->complexity); switch (encoder->target_samplerate) { case 32000: s->mode = &speex_uwb_mode; break; case 16000: s->mode = &speex_wb_mode; break; case 8000: s->mode = &speex_nb_mode; break; default: fprintf(stderr, "unsupported sample rate\n"); vtag_block_cleanup(&s->metadata_block); free(s); return FAILED; } encoder->encoder_private = s; encoder->run_encoder = live_oggspeex_encoder_main; return SUCCEEDED; } #endif idjc-0.8.16/c/main.c0000644000175000017500000002362712642454133010770 00000000000000/* # main.c: backend unificaction module. # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #include #include #include #include #include #include #include #include #ifdef HAVE_LIBAV #include #include #endif /* HAVE_LIBAV */ #include "sig.h" #include "mixer.h" #include "sourceclient.h" #include "main.h" #define FALSE 0 #define TRUE (!FALSE) struct globs g; static void alarm_handler(int sig) { if (g.app_shutdown) exit(5); if (g.mixer_up && !mixer_healthcheck()) g.app_shutdown = TRUE; if (g.jack_timeout++ > 9) g.app_shutdown = TRUE; if (g.has_head && g.main_timeout++ > 9) g.app_shutdown = TRUE; /* One second grace to shut down naturally. */ alarm(1); } static void custom_jack_error_callback(const char *message) { fprintf(stderr, "jack error: %s\n", message); } static void custom_jack_info_callback(const char *message) { fprintf(stderr, "jack info: %s\n", message); } static void custom_jack_on_shutdown_callback() { g.app_shutdown = TRUE; } static void session_callback(jack_session_event_t *event, void *arg) { /* Store the address of the event so the data can be retrieved later by * user interface polling. This is done in mixer.c. */ if (jack_ringbuffer_write(g.session_event_rb, (char *)&event, sizeof event) < sizeof event) { /* The ringbuffer is good for 512 writes in 1/20th second. (32 bit) */ fprintf(stderr, "main.c: session event ringbuffer is stuffed -- exiting\n"); exit(5); } } static int buffer_size_callback(jack_nframes_t n_frames, void *arg) { return mixer_new_buffer_size(n_frames); } static void freewheel_callback(int starting, void *arg) { g.freewheel = starting; } static void cleanup_jack() { if (g.client) { jack_deactivate(g.client); jack_client_close(g.client); } } static int main_process_audio(jack_nframes_t n_frames, void *arg) { int rv; rv = mixer_process_audio(n_frames, arg) || audio_feed_process_audio(n_frames, arg); if (rv == 0) g.jack_timeout = 0; return rv; } static int backend_main() { char *buffer = NULL; size_t n = 10; int keep_running = TRUE; jack_options_t options = 0; /* Without these being set the backend will segfault. */ { int o = FALSE; /* Overwrite flag */ if (setenv("session_type", "L0", o) || setenv("client_id", "idjc_nofrontend", o) || setenv("mic_qty", "4", o) || setenv("num_streamers", "6", o) || setenv("num_encoders", "6", o) || setenv("num_recorders", "2", o) || setenv("num_effects", "24", o) || setenv("jack_parameter", "default", o) || setenv("has_head", "0", o) || /* C locale required for . as radix character. */ setenv("LC_ALL", "C", 1)) { perror("main: failed to set environment variable"); exit(5); } } setlocale(LC_ALL, getenv("LC_ALL")); g.has_head = atoi(getenv("has_head")); signal(SIGALRM, alarm_handler); /* Signal handling. */ sig_init(); if (!(strcmp(getenv("session_type"), "JACK"))) { options = JackSessionID; g.session_event_rb = jack_ringbuffer_create(2048); } else options = JackUseExactName | JackServerName; if ((g.client = jack_client_open(getenv("client_id"), options, NULL, getenv("jack_parameter"))) == 0) { fprintf(stderr, "main.c: jack_client_open failed"); exit(5); } #ifdef HAVE_LIBAV if (pthread_mutex_init(&g.avc_mutex, NULL)) { fprintf(stderr, "pthread_mutex_init failed\n"); exit(5); } avcodec_register_all(); av_register_all(); #endif /* HAVE_LIBAV */ alarm(3); jack_set_error_function(custom_jack_error_callback); jack_set_info_function(custom_jack_info_callback); jack_on_shutdown(g.client, custom_jack_on_shutdown_callback, NULL); jack_set_freewheel_callback(g.client, freewheel_callback, NULL); jack_set_session_callback(g.client, session_callback, NULL); jack_set_process_callback(g.client, main_process_audio, NULL); jack_set_buffer_size_callback(g.client, buffer_size_callback, NULL); /* Registration of JACK ports. */ #define MK_AUDIO_INPUT(var, name) var = jack_port_register(g.client, name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0); #define MK_AUDIO_OUTPUT(var, name) var = jack_port_register(g.client, name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0); { struct jack_ports *p = &g.port; /* Mixer ports. */ MK_AUDIO_OUTPUT(p->dj_out_l, "dj_out_l"); MK_AUDIO_OUTPUT(p->dj_out_r, "dj_out_r"); MK_AUDIO_OUTPUT(p->dsp_out_l, "dsp_out_l"); MK_AUDIO_OUTPUT(p->dsp_out_r, "dsp_out_r"); MK_AUDIO_INPUT(p->dsp_in_l, "dsp_in_l"); MK_AUDIO_INPUT(p->dsp_in_r, "dsp_in_r"); MK_AUDIO_OUTPUT(p->str_out_l, "str_out_l"); MK_AUDIO_OUTPUT(p->str_out_r, "str_out_r"); MK_AUDIO_OUTPUT(p->voip_out_l, "voip_out_l"); MK_AUDIO_OUTPUT(p->voip_out_r, "voip_out_r"); MK_AUDIO_INPUT(p->voip_in_l, "voip_in_l"); MK_AUDIO_INPUT(p->voip_in_r, "voip_in_r"); MK_AUDIO_OUTPUT(p->alarm_out, "alarm_out"); /* Player related ports. */ MK_AUDIO_OUTPUT(p->pl_out_l, "pl_out_l"); MK_AUDIO_OUTPUT(p->pl_out_r, "pl_out_r"); MK_AUDIO_OUTPUT(p->pr_out_l, "pr_out_l"); MK_AUDIO_OUTPUT(p->pr_out_r, "pr_out_r"); MK_AUDIO_OUTPUT(p->pi_out_l, "pi_out_l"); MK_AUDIO_OUTPUT(p->pi_out_r, "pi_out_r"); MK_AUDIO_OUTPUT(p->pe1_out_l, "pe01-12_out_l"); MK_AUDIO_OUTPUT(p->pe1_out_r, "pe01-12_out_r"); MK_AUDIO_OUTPUT(p->pe2_out_l, "pe13-24_out_l"); MK_AUDIO_OUTPUT(p->pe2_out_r, "pe13-24_out_r"); MK_AUDIO_INPUT(p->pl_in_l, "pl_in_l"); MK_AUDIO_INPUT(p->pl_in_r, "pl_in_r"); MK_AUDIO_INPUT(p->pr_in_l, "pr_in_l"); MK_AUDIO_INPUT(p->pr_in_r, "pr_in_r"); MK_AUDIO_INPUT(p->pi_in_l, "pi_in_l"); MK_AUDIO_INPUT(p->pi_in_r, "pi_in_r"); MK_AUDIO_INPUT(p->pe_in_l, "pe_in_l"); MK_AUDIO_INPUT(p->pe_in_r, "pe_in_r"); /* Not really a mixer port but handled in the mixer code. */ p->midi_port = jack_port_register(g.client, "midi_control", JACK_DEFAULT_MIDI_TYPE, JackPortIsInput, 0); /* Sourceclient ports. */ MK_AUDIO_INPUT(p->output_in_l, "output_in_l"); MK_AUDIO_INPUT(p->output_in_r, "output_in_r"); } #undef MK_AUDIO_INPUT #undef MK_AUDIO_OUTPUT /* Submodule initialization. */ mixer_init(); sourceclient_init(); if (jack_activate(g.client)) { fprintf(stderr, "main.c: failed to activate JACK client.\n"); jack_client_close(g.client); g.client = NULL; exit(5); } atexit(cleanup_jack); fprintf(g.out, "idjc backend ready\n"); fflush(g.out); alarm(1); while (keep_running && getline(&buffer, &n, g.in) > 0 && !g.app_shutdown) { /* Filter commands to submodules. */ if (!strcmp(buffer, "mx\n")) keep_running = mixer_main(); else { if (!strcmp(buffer, "sc\n")) keep_running = sourceclient_main(); else { fprintf(stderr, "main.c: expected module name, got: %s", buffer); exit(5); } } g.main_timeout = 0; } jack_deactivate(g.client); jack_client_close(g.client); g.client = NULL; alarm(0); if (buffer) free(buffer); if (g.session_event_rb) jack_ringbuffer_free(g.session_event_rb); return 0; } int init_backend(int *read_pipe, int *write_pipe) { char *ui2be = getenv("ui2be"); char *be2ui = getenv("be2ui"); pid_t pid; unlink(ui2be); unlink(be2ui); if (mkfifo(ui2be, S_IWUSR | S_IRUSR) || mkfifo(be2ui, S_IWUSR | S_IRUSR)) { fprintf(stderr, "init_backend: failed to make fifo\n"); return -1; } if (!(pid = fork())) { int maxfd = sysconf(_SC_OPEN_MAX); for (int fd = 3; fd < maxfd; ++fd) close(fd); if ((g.in = fopen(ui2be, "r")) && (g.out = fopen(be2ui, "w"))) { fputc('#', g.out); int ret = backend_main(); fclose(g.in); fclose(g.out); exit(ret); } else fprintf(stderr, "init_backend: in fork: failed to open fifo\n"); } *write_pipe = open(ui2be, O_WRONLY); *read_pipe = open(be2ui, O_RDONLY); char buffer; if (read(*read_pipe, &buffer, 1) != 1) { fprintf(stderr, "init_backend: pipe failed\n"); return -1; } return (int)pid; } idjc-0.8.16/c/dyn_mpg123.h0000644000175000017500000000161712630014502011714 00000000000000/* # dyn_mpg123.h: dynamic linking for libmpg123 # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef DYN_MPG123 int dyn_mpg123_init(); #endif /* DYN_MPG123 */ idjc-0.8.16/c/compressor.h0000644000175000017500000000322112630014502012216 00000000000000/* # compressor.h: Audio dynamic range compression code from IDJC. # Copyright (C) 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include typedef jack_default_audio_sample_t compaudio_t; struct compressor { compaudio_t gain_db; compaudio_t k1; compaudio_t k2; compaudio_t ratio; compaudio_t attack; compaudio_t release; compaudio_t opgain; compaudio_t ducking; compaudio_t curve; int ducking_hold; int ducking_hold_count; compaudio_t ducking_db; compaudio_t de_ess_db; }; struct normalizer { int active; compaudio_t level; compaudio_t ceiling; compaudio_t rise; compaudio_t fall; compaudio_t maxlevel; }; compaudio_t compressor(struct compressor *self, compaudio_t signal, int skip_rms); compaudio_t limiter(struct compressor *self, compaudio_t left, compaudio_t right); compaudio_t normalizer(struct normalizer *self, compaudio_t left, compaudio_t right); idjc-0.8.16/c/streamer.c0000644000175000017500000004770412635350160011665 00000000000000/* # streamer.c: the streaming part of the streaming module of idjc # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #define _POSIX_C_SOURCE 200112L #include #include #include #include #include #include "sourceclient.h" #include "sig.h" #include "main.h" /* other versions of libshout define SHOUT_FORMAT_VORBIS instead */ #ifndef SHOUT_FORMAT_OGG #define SHOUT_FORMAT_OGG SHOUT_FORMAT_VORBIS #endif /*SHOUT_FORMAT_OGG*/ /* the number of seconds of audio to stockpile before packet dumping takes place */ static const int shout_buffer_seconds = 9; static void *streamer_main(void *args) { struct streamer *self = args; struct timespec ms10 = { 0, 10000000 }; struct encoder_op_packet *packet; char buffer[10]; size_t data_size; unsigned connect_time = 0; char *s_conv(unsigned long value) { snprintf(buffer, 10, "%lu", value); return buffer; } sig_mask_thread(); while (!self->thread_terminate_f) { nanosleep(&ms10, NULL); switch (self->stream_mode) { case SM_DISCONNECTED: pthread_mutex_lock(&self->mode_mutex); while (self->stream_mode == SM_DISCONNECTED && !self->thread_terminate_f) pthread_cond_wait(&self->mode_cv, &self->mode_mutex); pthread_mutex_unlock(&self->mode_mutex); continue; case SM_CONNECTING: switch(self->shout_status) { case SHOUTERR_BUSY: self->shout_status = shout_get_connected(self->shout); if (self->disconnect_request || ++connect_time > 120) self->stream_mode = SM_DISCONNECTING; break; case SHOUTERR_CONNECTED: /* lock the encoder, grab the serial number and issue encoder flush */ /* this makes the encoder contemporaneous with the stream */ self->initial_serial = encoder_client_set_flush(self->encoder_op) + 1; fprintf(stderr, "streamer_main: connected to server - awaiting serial %d\n", self->initial_serial); self->brand_new_connection = TRUE; self->stream_mode = SM_CONNECTED; break; default: fprintf(stderr, "streamer_main: connection failed, shout_get_error reports %ld %s\n", self->shout_status, shout_get_error(self->shout)); self->stream_mode = SM_DISCONNECTING; } break; case SM_CONNECTED: /* check the connection is still on */ if ((self->shout_status = shout_get_connected(self->shout)) != SHOUTERR_CONNECTED) { fprintf(stderr, "streamer_main: shout_get_error reports %ld %s\n", self->shout_status, shout_get_error(self->shout)); self->stream_mode = SM_DISCONNECTING; } if (self->disconnect_request && (!self->disconnect_pending)) { self->disconnect_pending = TRUE; fprintf(stderr, "streamer_main: disconnect_pending is set\n"); self->final_serial = encoder_client_set_flush(self->encoder_op); fprintf(stderr, "streamer_main: issued flush to mixer, disconnecting from server when final packet of serial=%d arrives\n", self->final_serial); } if ((packet = encoder_client_get_packet(self->encoder_op))) { if (packet->header.serial >= self->initial_serial) { if (packet->header.flags & PF_INITIAL) { int br = packet->header.bit_rate; /* determine how much audio to hold in the send buffer */ self->max_shout_queue = (shout_buffer_seconds * ((br > 1000) ? br / 1000 : br)) << 7; } if (packet->header.flags & (PF_WEBM | PF_OGG | PF_MP3 | PF_MP2 | PF_AAC | PF_AACP2)) { if ((packet->header.flags & (PF_HEADER | PF_FINAL)) || shout_queuelen(self->shout) < self->max_shout_queue) data_size = packet->header.data_size; else { data_size = 0; fprintf(stderr, "streamer_main: **** packet dumped due to buffer being full ****\n"); } #if 1 switch(shout_send(self->shout, packet->data, data_size)) { case SHOUTERR_SUCCESS: case SHOUTERR_BUSY: break; default: fprintf(stderr, "streamer_main: failed writing to stream, shout_get_error reports: %s\n", shout_get_error(self->shout)); self->stream_mode = SM_DISCONNECTING; } #else if (shout_send_raw(self->shout, packet->data, data_size) != data_size) { fprintf(stderr, "streamer_main: failed writing to stream, shout_get_error reports: %s\n", shout_get_error(self->shout)); self->stream_mode = SM_DISCONNECTING; } #endif } if (packet->header.flags & PF_FINAL) fprintf(stderr, "streamer_main: final packet with serial %d\n", packet->header.serial); if (self->disconnect_pending && (packet->header.serial > self->final_serial || ((packet->header.flags & PF_FINAL) && self->final_serial == packet->header.serial))) { fprintf(stderr, "streamer_main: last packet wrote, disconnecting\n"); self->stream_mode = SM_DISCONNECTING; } } if (packet->header.flags & PF_METADATA) /* tell server about new metadata */ { *strpbrk(packet->data, "\n") = '\0'; fprintf(stderr, "streamer_main: packet is metadata: %s\n", (char *)packet->data); shout_metadata_add(self->shout_meta, "song", packet->data); switch (shout_set_metadata(self->shout, self->shout_meta)) { case SHOUTERR_SUCCESS: case SHOUTERR_BUSY: break; default: fprintf(stderr, "streamer_main: failed writing metadata to stream, shout_get_error reports: %s\n", shout_get_error(self->shout)); self->stream_mode = SM_DISCONNECTING; } } encoder_client_free_packet(packet); } break; case SM_DISCONNECTING: fprintf(stderr, "streamer_main: disconencting from server\n"); shout_close(self->shout); shout_free(self->shout); shout_metadata_free(self->shout_meta); encoder_unregister_client(self->encoder_op); self->shout = NULL; self->shout_meta = NULL; self->encoder_op = NULL; self->max_shout_queue = 0; self->disconnect_request = FALSE; self->disconnect_pending = FALSE; self->stream_mode = SM_DISCONNECTED; connect_time = 0; fprintf(stderr, "streamer_main: disconnection complete\n"); break; } } return NULL; } int streamer_make_report(struct streamer *self) { int buffer_fill_pc = 0; int new_connection = self->brand_new_connection; /* for thread safety */ int max_shout_queue = self->max_shout_queue; if (self->stream_mode == SM_CONNECTED && max_shout_queue) buffer_fill_pc = (int)(shout_queuelen(self->shout) * 100 / max_shout_queue); fprintf(g.out, "idjcsc: streamer%dreport=%d:%d:%d\n", self->numeric_id, (int)self->stream_mode, buffer_fill_pc, new_connection); if (new_connection) self->brand_new_connection = FALSE; fflush(g.out); return SUCCEEDED; } int streamer_connect(struct threads_info *ti, struct universal_vars *uv, void *other) { struct streamer_vars *sv = other; struct streamer *self = ti->streamer[uv->tab]; int protocol, data_format = -1, tls; char channels[2]; char bitrate[4]; char samplerate[6]; void sce(char *parameter) /* stream connect error */ { fprintf(stderr, "streamer_connect: failed to set parameter %s\n", parameter); } if (!(self->encoder_op = encoder_register_client(ti, atoi(sv->stream_source)))) { fprintf(stderr, "streamer_start: failed to register with encoder\n"); return FAILED; } if (!self->encoder_op->encoder->run_request_f) { fprintf(stderr, "streamer_start: encoder is not running\n"); encoder_unregister_client(self->encoder_op); return FAILED; } else { const struct encoder_data_format *df = &self->encoder_op->encoder->data_format; int failed = FALSE; switch (df->family) { case ENCODER_FAMILY_OGG: data_format = SHOUT_FORMAT_OGG; break; case ENCODER_FAMILY_MPEG: switch (df->codec) { case ENCODER_CODEC_MP3: case ENCODER_CODEC_MP2: data_format = SHOUT_FORMAT_MP3; break; case ENCODER_CODEC_AAC: data_format = SHOUT_FORMAT_AAC; break; case ENCODER_CODEC_AACPLUSV2: data_format = SHOUT_FORMAT_AACPLUS; break; case ENCODER_CODEC_UNHANDLED: default: failed = TRUE; } break; case ENCODER_FAMILY_WEBM: switch (df->codec) { case ENCODER_CODEC_VORBIS: case ENCODER_CODEC_OPUS: data_format = SHOUT_FORMAT_WEBMAUDIO; break; default: failed = TRUE; } break; case ENCODER_FAMILY_UNHANDLED: failed = TRUE; } if (failed) { fprintf(stderr, "streamer_start: unhandled encoder data format\n"); encoder_unregister_client(self->encoder_op); return FAILED; } } if (!strcmp(sv->server_type, "Shoutcast")) protocol = SHOUT_PROTOCOL_ICY; else if (!strcmp(sv->server_type, "Icecast 2")) protocol = SHOUT_PROTOCOL_HTTP; else if (!strcmp(sv->server_type, "Icecast")) protocol = SHOUT_PROTOCOL_XAUDIOCAST; else { fprintf(stderr, "streamer_connect: server_type unhandled value %s\n", sv->server_type); encoder_unregister_client(self->encoder_op); return FAILED; } if (!(self->shout_meta = shout_metadata_new())) { fprintf(stderr, "streamer_connect: failed to allocate a shout metadata object\n"); encoder_unregister_client(self->encoder_op); } if (!(self->shout = shout_new())) { fprintf(stderr, "streamer_connect: call to shout_new failed\n"); encoder_unregister_client(self->encoder_op); return FAILED; } if (shout_set_protocol(self->shout, protocol) != SHOUTERR_SUCCESS) { sce("protocol"); goto error; } if (shout_set_format(self->shout, data_format) != SHOUTERR_SUCCESS) { sce("format"); goto error; } if (shout_set_host(self->shout, sv->host) != SHOUTERR_SUCCESS) { sce("host"); goto error; } if (shout_set_port(self->shout, atoi(sv->port)) != SHOUTERR_SUCCESS) { sce("port"); goto error; } if (shout_set_mount(self->shout, sv->mount) != SHOUTERR_SUCCESS) { sce("mount"); goto error; } if (shout_set_user(self->shout, sv->login) != SHOUTERR_SUCCESS) { sce("login"); goto error; } if (shout_set_password(self->shout, sv->password) != SHOUTERR_SUCCESS) { sce("password"); goto error; } if (sv->useragent[0]) { if (shout_set_agent(self->shout, sv->useragent) != SHOUTERR_SUCCESS) { sce("useragent"); goto error; } else fprintf(stderr, "user agent is set\n"); } if (shout_set_meta(self->shout, SHOUT_META_NAME, sv->dj_name) != SHOUTERR_SUCCESS) { sce("stream/dj name"); goto error; } if (shout_set_meta(self->shout, SHOUT_META_URL, sv->listen_url) != SHOUTERR_SUCCESS) { sce("url"); goto error; } if (shout_set_meta(self->shout, SHOUT_META_DESCRIPTION, sv->description) != SHOUTERR_SUCCESS) { sce("description"); goto error; } if (shout_set_meta(self->shout, SHOUT_META_GENRE, sv->genre) != SHOUTERR_SUCCESS) { sce("genre"); goto error; } if (shout_set_meta(self->shout, SHOUT_META_IRC, sv->irc) != SHOUTERR_SUCCESS) { sce("irc"); goto error; } if (shout_set_meta(self->shout, SHOUT_META_AIM, sv->aim) != SHOUTERR_SUCCESS) { sce("aim"); goto error; } if (shout_set_meta(self->shout, SHOUT_META_ICQ, sv->icq) != SHOUTERR_SUCCESS) { sce("icq"); goto error; } if (shout_set_public(self->shout, !strcmp(sv->make_public, "True")) != SHOUTERR_SUCCESS) { sce("make public"); goto error; } #if SHOUT_TLS if (!strcmp("Disabled", sv->tls)) tls = SHOUT_TLS_DISABLED; else if (!strcmp("Auto", sv->tls)) tls = SHOUT_TLS_AUTO; else if (!strcmp("Auto, no plaintext", sv->tls)) tls = SHOUT_TLS_AUTO_NO_PLAIN; else if (!strcmp("RFC2818", sv->tls)) tls = SHOUT_TLS_RFC2818; else if (!strcmp("RFC2817", sv->tls)) tls = SHOUT_TLS_RFC2817; else { sce("tls option"); goto error; } if (shout_set_tls(self->shout, tls) != SHOUTERR_SUCCESS) { sce("tls"); goto error; } if (sv->ca_dir[0] && shout_set_ca_directory(self->shout, sv->ca_dir) != SHOUTERR_SUCCESS) { sce("ca directory"); goto error; } if (sv->ca_file[0] && shout_set_ca_file(self->shout, sv->ca_file) != SHOUTERR_SUCCESS) { sce("ca file"); goto error; } if (sv->client_cert[0] && shout_set_client_certificate(self->shout, sv->client_cert) != SHOUTERR_SUCCESS) { sce("client certificate"); goto error; } #endif snprintf(channels, sizeof channels , "%d", self->encoder_op->encoder->n_channels); { int br = self->encoder_op->encoder->bitrate; snprintf(bitrate, sizeof bitrate , "%d", ((br < 1000) ? br : br/1000)); } snprintf(samplerate, sizeof samplerate, "%ld", self->encoder_op->encoder->target_samplerate); if (shout_set_audio_info(self->shout, SHOUT_AI_BITRATE, bitrate) != SHOUTERR_SUCCESS) { sce("set_audio_info bitrate"); goto error; } if (shout_set_audio_info(self->shout, SHOUT_AI_SAMPLERATE, samplerate) != SHOUTERR_SUCCESS) { sce("set_audio_info samplerate"); goto error; } if (shout_set_audio_info(self->shout, SHOUT_AI_CHANNELS, channels) != SHOUTERR_SUCCESS) { sce("set_audio_info channels"); goto error; } if (shout_set_nonblocking(self->shout, 1) != SHOUTERR_SUCCESS) { sce("non-blocking"); goto error; } switch(self->shout_status = shout_open(self->shout)) { case SHOUTERR_SUCCESS: self->shout_status = SHOUTERR_CONNECTED; case SHOUTERR_BUSY: case SHOUTERR_CONNECTED: pthread_mutex_lock(&self->mode_mutex); self->stream_mode = SM_CONNECTING; pthread_cond_signal(&self->mode_cv); pthread_mutex_unlock(&self->mode_mutex); fprintf(stderr, "streamer_connect: established connection to the server\n"); return SUCCEEDED; } error: fprintf(stderr, "streamer_connect: shout_get_error reports: %s\n", shout_get_error(self->shout)); shout_free(self->shout); shout_metadata_free(self->shout_meta); encoder_unregister_client(self->encoder_op); return FAILED; } int streamer_disconnect(struct threads_info *ti, struct universal_vars *uv, void *other) { struct streamer *self = ti->streamer[uv->tab]; struct timespec ms10 = { 0, 10000000 }; if (!self->shout) { fprintf(stderr, "streamer_disconnect: function called while not streaming\n"); return FAILED; } self->disconnect_request = TRUE; fprintf(stderr, "streamer_disconnect: disconnection_request is set\n"); while(self->stream_mode != SM_DISCONNECTED) nanosleep(&ms10, NULL); fprintf(stderr, "streamer_disconnect: disconnection complete\n"); return SUCCEEDED; } void shout_initialiser() { shout_init(); } struct streamer *streamer_init(struct threads_info *ti, int numeric_id) { struct streamer *self; static pthread_once_t once_control = PTHREAD_ONCE_INIT; pthread_once(&once_control, shout_initialiser); if (!(self = calloc(1, sizeof (struct streamer)))) { fprintf(stderr, "streamer_init: malloc failure\n"); exit(-5); } self->threads_info = ti; self->numeric_id = numeric_id; pthread_mutex_init(&self->mode_mutex, NULL); pthread_cond_init(&self->mode_cv, NULL); pthread_create(&self->thread_h, NULL, streamer_main, self); return self; } void streamer_destroy(struct streamer *self) { static pthread_once_t once_control = PTHREAD_ONCE_INIT; void *thread_ret; pthread_once(&once_control, shout_shutdown); pthread_mutex_lock(&self->mode_mutex); self->thread_terminate_f = TRUE; pthread_cond_signal(&self->mode_cv); pthread_mutex_unlock(&self->mode_mutex); pthread_join(self->thread_h, &thread_ret); pthread_cond_destroy(&self->mode_cv); pthread_mutex_destroy(&self->mode_mutex); free(self); } idjc-0.8.16/c/xlplayer.h0000644000175000017500000003145412630014502011673 00000000000000/* # xlplayer.h: player decoder module for idjc # Copyright (C) 2006-2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef XLPLAYER_H #define XLPLAYER_H #include "../config.h" #include #include #include #include #include #include #include #ifdef HAVE_FLAC #include #endif #include "fade.h" #include "smoothing.h" enum command_t {CMD_COMPLETE, CMD_PLAY, CMD_EJECT, CMD_CLEANUP, CMD_THREADEXIT, CMD_PLAYMANY}; enum playmode_t {PM_STOPPED, PM_INITIATE, PM_PLAYING, PM_FLUSH, PM_EJECTING }; enum metadata_t {DM_NONE_NEW, DM_SPLIT_U8, DM_JOINED_U8, DM_SPLIT_L1, DM_JOINED_L1, DM_JOINED_UC, DM_JOINED_UCBE, DM_NOTAG}; struct xlp_dynamic_metadata /* song titles can change mid-file */ { /* this structure facilitates transmission */ pthread_mutex_t meta_mutex; /* back to the user interface */ char *artist; char *title; char *album; int current_audio_context; int rbdelay; enum metadata_t data_type; }; struct xlplayer { struct fade *fadein; /* fade level computation */ struct fade *fadeout; jack_ringbuffer_t *left_ch; /* main playback buffer */ jack_ringbuffer_t *right_ch; jack_ringbuffer_t *left_fade; /* buffers used for fade - swapped with above when needed */ jack_ringbuffer_t *right_fade; size_t rbsize; /* the size of the jack ringbuffers in bytes */ int rbdelay; /* rough time lag of the ringbuffers in ms */ size_t op_buffersize; /* the current size of the player output buffers */ char *pathname; /* the pathname of the music file being played */ char **playlist; /* the playlist as an array of pointers */ float gain; /* amount of gain to apply to the playback */ int loop; /* flag indicating if we loop or come to a stop */ int seek_s; /* the initial seek time of the song in seconds */ int size; /* size of the file in seconds */ int playlistmode; /* set when we are using a local playlist */ int playlistindex; /* current track number we are playing */ int playlistsize; /* the number of tracks in the playlist */ jack_default_audio_sample_t *leftbuffer; /* the output buffers */ jack_default_audio_sample_t *rightbuffer; int fade_mode; /* deferred fade mode */ int fadeout_f; /* flag indicated if fade is applied upon stopping */ int jack_flush; /* tells the jack callback to flush the ringbuffers */ int jack_is_flushed; /* indicates true when jack callback has done the flush */ unsigned samplerate; /* the audio sample rate in use by jack */ int pause; /* flag controlling the player paused state */ int write_deferred; /* suppress further generation of audio data */ u_int64_t samples_written; /* number of samples written to the ringbuffer */ int32_t play_progress_ms; /* the playback progress in milliseconds */ char *playername; /* the name of this player e.g. "left", "right" etc. */ enum playmode_t playmode; /* indicates the player mode or state */ enum command_t command; /* the command mode */ size_t avail; /* the number of samples available in the ringbuffer */ int have_data_f; /* indicates the presence of audio data */ int current_audio_context; /* bumps when started, bumps when stopped. Odd=playing */ int initial_audio_context; /* return code placeholder variable for above */ int dither; /* whether to add dither to player output FLAC, MP4, WAV only */ unsigned int seed; /* used for dither */ pthread_t thread; /* thread pointer for the player main loop */ u_int32_t sleep_samples; /* used to count off when it is appropriate to call sleep */ SRC_STATE *src_state; /* used by resampler */ SRC_DATA src_data; int rsqual; /* resample quality */ int noflush; /* suppresses ringbuffer flushes for gapless playback */ int *jack_shutdown_f; /* inidcator that jack has shut down */ volatile sig_atomic_t watchdog_timer; int up; /* set to true when the player is fully initialised */ double pbspeed; /* the playback speed as a factor */ float newpbspeed; /* the value the above is updated with */ SRC_STATE *pbspeed_conv_l; /* libsamplerate handle for playback speed control - left channel */ SRC_STATE *pbspeed_conv_r; SRC_STATE *pbspeed_conv_lf; /* as above but for fade buffer */ SRC_STATE *pbspeed_conv_rf; float *pbsrb_l; /* input buffers for the playback speed converter */ float *pbsrb_r; float *pbsrb_lf; float *pbsrb_rf; long pbs_norm_read_qty; /* the number of normal samples which will be read from left and right channels */ long pbs_fade_read_qty; /* the number of fadeout samples which will be read */ int pbs_exchange; /* keeps correct association for input buffers after a buffer swap occurs */ void *dec_data; /* points to audio decoder data */ void (*dec_init)(struct xlplayer *);/* audio decoder init function */ void (*dec_play)(struct xlplayer *);/* function that decodes one frame of audio data */ void (*dec_eject)(struct xlplayer *);/* function that cleans up after the decoder */ struct xlp_dynamic_metadata dynamic_metadata; int usedelay; /* client to delay dynamic metadata display */ float silence; /* the number of seconds of silence */ int samples_cutoff; /* audio cutoff imminent when fewer than this value samples remain */ int use_sv; /* speed variance version of read function will be used */ float *lcb; /* left channel buffer */ float *rcb; /* right channel buffer */ float *lcfb; /* left channel fade buffer */ float *rcfb; /* right channel fade buffer */ float *lcp, *rcp, *lcfp, *rcfp; /* pointers into the above buffers */ float ls, rs; /* the current audio sample stereo pair -- prior to gain adjustment */ float peak; /* peak = MAX(peak, MAX(ABS(ls), ABS(rs))) */ struct smoothing_mute mute_aud; struct smoothing_mute mute_str; struct smoothing_volume volume; float cf_l_gain, cf_r_gain; /* per channel gain adjustment -- e.g. for apply crossfade */ int cf_aud; /* apply crossfade on dj audio */ float ls_aud, ls_str; /* the gain adjusted audio samples */ float rs_aud, rs_str; uint32_t id; /* player identity e.g. player 3 = 1 << 3 */ pthread_mutex_t command_mutex; /* lock for command varaible change */ pthread_cond_t command_cv; /* used to wake up idle worker thread */ }; /* xlplayer_create: create an instance of the player */ struct xlplayer *xlplayer_create(int samplerate, double duration, char *playername, sig_atomic_t *shutdown_f, int *vol_c, float vol_scale, int *strmute_c, int *audmute_c, float cutoff_s); /* xlplayer_destroy: the opposite of xlplayer_create */ void xlplayer_destroy(struct xlplayer *); /* xlplayer_play: starts the player on a particular track immediately * if a track is currently playing eject is called * return value: a context-id for this track */ int xlplayer_play(struct xlplayer *self, char *pathname, int seek_s, int size, float gain_db, int id); /* xlplayer_playmany: starts the player on a playlist * if a track is currently playing eject is called, also can set looping with this function * return value: a context-id for this playlist */ int xlplayer_playmany(struct xlplayer *self, char *playlist, int loop_f); /* xlplayer_play_noflush: starts the player without flushing out old data from the ringbuffer */ int xlplayer_play_noflush(struct xlplayer *self, char *pathname, int seek_s, int size, float gain_db, int id); /* xlplayer_cancelplaynext: cancels the automatic playing of the next track * the current track is allowed to continue playing */ void xlplayer_cancelplaynext(struct xlplayer *self); /* xlplayer_pause: pauses the current track */ void xlplayer_pause(struct xlplayer *self); /* xlplayer_unpause: unpause the current track */ void xlplayer_unpause(struct xlplayer *self); /* xlplayer_dither: turns on/off dither on players */ void xlplayer_dither(struct xlplayer *self, int dither_f); /* xlplayer_eject: stops the current track with a fadeout unless the track is paused */ /* this call will also cancel any track cued with playnext command */ /* to suppress fadeout call pause beforehand */ void xlplayer_eject(struct xlplayer *self); /* read_from_player: reads out the audio data from the buffers */ /* this is meant to be run inside the jack callback */ size_t read_from_player(struct xlplayer *self, jack_default_audio_sample_t *left_buf, jack_default_audio_sample_t *right_buf, jack_default_audio_sample_t *left_fbuf, jack_default_audio_sample_t *right_fbuf, jack_nframes_t nframes); /* read_from_player_sv: reads out the audio data from the buffers but provides speed variance (pitch control) */ /* this is meant to be run inside the jack callback */ size_t read_from_player_sv(struct xlplayer *self, jack_default_audio_sample_t *left_buf, jack_default_audio_sample_t *right_buf, jack_default_audio_sample_t *left_fbuf, jack_default_audio_sample_t *right_fbuf, jack_nframes_t nframes); /* calculate the gain for fading in - used when seeking to prevent clicks */ jack_default_audio_sample_t xlplayer_get_next_gain(struct xlplayer *self); /* put audio data in format recognised by jack and libsamplerate */ float *xlplayer_make_audio_to_float(struct xlplayer *self, float *buffer, uint8_t *data, int num_samples, int bits_per_sample, int num_channels); /* splits audio data into separate audio streams, ready for writing */ void xlplayer_demux_channel_data(struct xlplayer *self, jack_default_audio_sample_t *buffer, int num_samples, int num_channels, float scale); /* cause the cached pcm data to be written out to the jack ringbuffer */ void xlplayer_write_channel_data(struct xlplayer *self); /* provide data for sending back to the user interface */ void xlplayer_set_dynamic_metadata(struct xlplayer *xlplayer, enum metadata_t type, char *artist, char *title, char *album, int delay); /* return the delay caused by the ringbuffer */ int xlplayer_calc_rbdelay(struct xlplayer *xlplayer); /* this sets the speed of fading for a particular mode */ void xlplayer_set_fadesteps(struct xlplayer *self, int fade_step); /* pull player audio from the ringbuffer into the readout buffers */ size_t xlplayer_read_start(struct xlplayer *self, jack_nframes_t nframes); /* compute the next sample */ void xlplayer_read_next(struct xlplayer *self); /* volume control and mute toggle smoothing single iteration */ void xlplayer_smoothing_process(struct xlplayer *self); void xlplayer_stats(struct xlplayer *self); /* group process all players from the list */ void xlplayer_read_start_all(struct xlplayer **list, jack_nframes_t nframes, struct xlplayer **roster); void xlplayer_read_next_all(struct xlplayer **list); void xlplayer_levels_all(struct xlplayer **list); void xlplayer_buffer_alloc_all(struct xlplayer **list, jack_nframes_t nframes); void xlplayer_smoothing_process_all(struct xlplayer **list); void xlplayer_stats_all(struct xlplayer **list); /* initialise mpg123 runtime linking (if falling back to runtime linking) and report the operational status */ void xlplayer_mpg123_status(); #endif /* XLPLAYER_H */ idjc-0.8.16/c/flacdecode.c0000644000175000017500000002271112630014502012073 00000000000000/* # flacdecode.c: decodes flac file format for xlplayer # Copyright (C) 2007, 2013 Stephen Fairchild (s-fairchild@users.sf.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_FLAC #include #include #include #include #include "flacdecode.h" #include "xlplayer.h" #define TRUE 1 #define FALSE 0 #define ACCEPTED 1 #define REJECTED 0 void make_flac_audio_to_float(struct xlplayer *self, float *flbuf, const FLAC__int32 * const inputbuffer[], unsigned int numsamples, unsigned int bits_per_sample, unsigned int numchannels) { int shiftvalue = 32 - bits_per_sample; unsigned sample, channel; const float half_randmax = (float)(RAND_MAX >> 1); float dither; float dscale; if (!self->dither || bits_per_sample >= 20) { for (sample = 0; sample < numsamples; sample++) for (channel = 0; channel < numchannels; channel++) *flbuf++ = ((float)(inputbuffer[channel][sample] << shiftvalue)) / 2147483648.0F; } else { dscale = 0.25F / (half_randmax * powf(2.0F, (float)bits_per_sample)); for (sample = 0; sample < numsamples; sample++) for (channel = 0; channel < numchannels; channel++) { dither = ((((float)rand_r(&self->seed)) - half_randmax) + (((float)rand_r(&self->seed)) - half_randmax)) * dscale; *flbuf++ = ((float)(inputbuffer[channel][sample] << shiftvalue)) / 2147483648.0F + dither; } } } static FLAC__StreamDecoderWriteStatus flac_writer_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const inputbuffer[], void *client_data) { struct xlplayer *xlplayer = client_data; struct flacdecode_vars *self = xlplayer->dec_data; SRC_DATA *src_data = &(xlplayer->src_data); int src_error; if (self->suppress_audio_output == FALSE) { if (xlplayer->src_state) { if (frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER && frame->header.number.frame_number == 0) { fprintf(stderr, "flac_writer_callback: performance warning -- can't determine if a block is the last one or not for this file\n"); } else { if (frame->header.number.sample_number + frame->header.blocksize == self->totalsamples) src_data->end_of_input = TRUE; } src_data->input_frames = frame->header.blocksize; src_data->data_in = realloc(src_data->data_in, src_data->input_frames * frame->header.channels * sizeof (float)); src_data->output_frames = (int)(src_data->input_frames * src_data->src_ratio) + 2 + (512 * src_data->end_of_input); src_data->data_out = realloc(src_data->data_out, src_data->output_frames * frame->header.channels * sizeof (float)); make_flac_audio_to_float(xlplayer, src_data->data_in, inputbuffer, frame->header.blocksize, frame->header.bits_per_sample, frame->header.channels); if ((src_error = src_process(xlplayer->src_state, src_data))) { fprintf(stderr, "flac_writer_callback: src_process reports %s\n", src_strerror(src_error)); xlplayer->playmode = PM_EJECTING; return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT; } xlplayer_demux_channel_data(xlplayer, src_data->data_out, src_data->output_frames_gen, frame->header.channels, 1.f); } else { if ((self->flbuf = realloc(self->flbuf, sizeof (float) * frame->header.blocksize * frame->header.channels)) == NULL) { fprintf(stderr, "flac_writer_callback: malloc failure\n"); xlplayer->playmode = PM_EJECTING; return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT; } make_flac_audio_to_float(xlplayer, self->flbuf, inputbuffer, frame->header.blocksize, frame->header.bits_per_sample, frame->header.channels); xlplayer_demux_channel_data(xlplayer, self->flbuf, frame->header.blocksize, frame->header.channels, 1.f); } xlplayer_write_channel_data(xlplayer); } return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; } static void flac_error_callback(const FLAC__StreamDecoder *decoder,FLAC__StreamDecoderErrorStatus se, void *client_data) { struct xlplayer *xlplayer = client_data; switch (se) { case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC: fprintf(stderr, "xlplayer: %s: flac decoder error: lost sync\n%s\n", xlplayer->playername, xlplayer->pathname); break; case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER: fprintf(stderr, "xlplayer: %s: flac decoder error: bad header\n%s\n", xlplayer->playername, xlplayer->pathname); break; case FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH: fprintf(stderr, "xlplayer: %s: flac decoder error: frame crc mismatch\n%s\n", xlplayer->playername, xlplayer->pathname); break; default: fprintf(stderr, "xlplayer: %s: flac decoder error: unknown error\n%s\n", xlplayer->playername, xlplayer->pathname); } } static void flacdecode_init(struct xlplayer *xlplayer) { struct flacdecode_vars *self = xlplayer->dec_data; int src_error; if (!(self->decoder = FLAC__stream_decoder_new())) { fprintf(stderr, "flacdecode_init: %s could not initialise flac decoder\n", xlplayer->playername); goto cleanup; } if (FLAC__stream_decoder_init_file(self->decoder, xlplayer->pathname, flac_writer_callback, NULL, flac_error_callback, xlplayer) != FLAC__STREAM_DECODER_INIT_STATUS_OK) { fprintf(stderr, "flacdecode_init: %s error during flac player initialisation\n", xlplayer->playername); FLAC__stream_decoder_delete(self->decoder); goto cleanup; } if (xlplayer->seek_s) { self->suppress_audio_output = TRUE; /* prevent seek noise */ FLAC__stream_decoder_seek_absolute(self->decoder, ((FLAC__uint64)xlplayer->seek_s) * ((FLAC__uint64)self->metainfo.data.stream_info.sample_rate)); self->suppress_audio_output = FALSE; } if ((self->resample_f = (self->metainfo.data.stream_info.sample_rate != xlplayer->samplerate))) { fprintf(stderr, "flacdecode_init: %s configuring resampler\n", xlplayer->playername); xlplayer->src_state = src_new(xlplayer->rsqual, self->metainfo.data.stream_info.channels, &src_error); if (src_error) { fprintf(stderr, "flacdecode_init: %s src_new reports - %s\n", xlplayer->playername, src_strerror(src_error)); FLAC__stream_decoder_delete(self->decoder); goto cleanup; } xlplayer->src_data.output_frames = 0; xlplayer->src_data.data_in = xlplayer->src_data.data_out = NULL; xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double)self->metainfo.data.stream_info.sample_rate; xlplayer->src_data.end_of_input = 0; self->totalsamples = self->metainfo.data.stream_info.total_samples; } else xlplayer->src_state = NULL; self->suppress_audio_output = FALSE; self->flbuf = NULL; return; cleanup: free(self); xlplayer->playmode = PM_STOPPED; xlplayer->command = CMD_COMPLETE; } static void flacdecode_play(struct xlplayer *xlplayer) { struct flacdecode_vars *self = xlplayer->dec_data; FLAC__stream_decoder_process_single(self->decoder); if (FLAC__stream_decoder_get_state(self->decoder) == FLAC__STREAM_DECODER_END_OF_STREAM) xlplayer->playmode = PM_FLUSH; } static void flacdecode_eject(struct xlplayer *xlplayer) { struct flacdecode_vars *self = xlplayer->dec_data; FLAC__stream_decoder_finish(self->decoder); FLAC__stream_decoder_delete(self->decoder); if (self->flbuf) free(self->flbuf); if (self->resample_f) { free(xlplayer->src_data.data_in); free(xlplayer->src_data.data_out); xlplayer->src_state = src_delete(xlplayer->src_state); } free(self); } int flacdecode_reg(struct xlplayer *xlplayer) { struct flacdecode_vars *self; if (!(self = xlplayer->dec_data = malloc(sizeof (struct flacdecode_vars)))) { fprintf(stderr, "flacdecode_reg: malloc failure\n"); return REJECTED; } if (FLAC__metadata_get_streaminfo(xlplayer->pathname, &(self->metainfo))) { xlplayer->dec_init = flacdecode_init; xlplayer->dec_play = flacdecode_play; xlplayer->dec_eject = flacdecode_eject; return ACCEPTED; } return REJECTED; } #endif idjc-0.8.16/c/audio_feed.h0000644000175000017500000000255012630014502012112 00000000000000/* # audiofeed.h: jack connectivity for the streaming module of idjc # Copyright (C) 2007-2010 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef AUDIO_FEED_H #define AUDIO_FEED_H #include #include "sourceclient.h" struct audio_feed { struct threads_info *threads_info; jack_nframes_t sample_rate; }; struct audio_feed *audio_feed_init(struct threads_info *ti); void audio_feed_deactivate(struct audio_feed *self); void audio_feed_destroy(struct audio_feed *self); int audio_feed_jack_samplerate_request(struct threads_info *ti, struct universal_vars *uv, void *param); int audio_feed_process_audio(jack_nframes_t n_frames, void *arg); #endif idjc-0.8.16/c/dyn_lame.c0000644000175000017500000001237212630014502011614 00000000000000/* # dyn_lame.c: dynamic linking for LAME # Copyright (C) 2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef DYN_LAME #include #include #include #ifdef HAVE_LAME_LAME_H #include #else #include "lame.h" #endif #include "dyn_lame.h" static void *handle; static lame_global_flags *(*init)(); static int (*encode_flush_nogap)(lame_global_flags *, unsigned char *, int); static int (*set_num_channels)(lame_global_flags *, int); static int (*set_brate)(lame_global_flags *, int); static int (*set_scale)(lame_global_flags *, float); static int (*set_in_samplerate)(lame_global_flags *, int); static int (*set_out_samplerate)(lame_global_flags *, int); static int (*set_mode)(lame_global_flags *, MPEG_mode); static int (*set_quality)(lame_global_flags *, int); static int (*set_bWriteVbrTag)(lame_global_flags *, int); static int (*init_params)(lame_global_flags *); static int (*close)(lame_global_flags *); static int (*encode_buffer_float)(lame_global_flags *, const float [], const float [], const int, unsigned char *, const int); static void dyn_lame_close() { dlclose(handle); } int dyn_lame_init() { char *libname = getenv("libmp3lame_filename"); fprintf(stderr, "dyn_lame_init: using library '%s'\n", libname); if (libname == NULL || libname[0] == '\0' || !(handle = dlopen(libname, RTLD_LAZY))) { fprintf(stderr, "dyn_lame_init: failed to open library\n"); return 0; } if (!( (init = dlsym(handle, "lame_init")) && (encode_flush_nogap = dlsym(handle, "lame_encode_flush_nogap")) && (set_num_channels = dlsym(handle, "lame_set_num_channels")) && (set_brate = dlsym(handle, "lame_set_brate")) && (set_scale = dlsym(handle, "lame_set_scale")) && (set_in_samplerate = dlsym(handle, "lame_set_in_samplerate")) && (set_out_samplerate = dlsym(handle, "lame_set_out_samplerate")) && (set_mode = dlsym(handle, "lame_set_mode")) && (set_quality = dlsym(handle, "lame_set_quality")) && (set_bWriteVbrTag = dlsym(handle, "lame_set_bWriteVbrTag")) && (init_params = dlsym(handle, "lame_init_params")) && (close = dlsym(handle, "lame_close")) && (encode_buffer_float = dlsym(handle, "lame_encode_buffer_float")))) { fprintf(stderr, "dyn_lame_init: missing symbol in %s: %s\n", libname, dlerror()); return 0; } atexit(dyn_lame_close); return 1; } lame_global_flags *lame_init() { if (init) return init(); return NULL; } int lame_encode_flush_nogap(lame_global_flags *gfp, unsigned char *mp3buf, int size) { return encode_flush_nogap(gfp, mp3buf, size); } int lame_set_num_channels(lame_global_flags *gfp, int channels) { return set_num_channels(gfp, channels); } int lame_set_brate(lame_global_flags *lgf, int brate) { return set_brate(lgf, brate); } int lame_set_scale(lame_global_flags *lgf, float scale) { return set_scale(lgf, scale); } int lame_set_in_samplerate(lame_global_flags *lgf, int inrate) { return set_in_samplerate(lgf, inrate); } int lame_set_out_samplerate(lame_global_flags *lgf, int outrate) { return set_out_samplerate(lgf, outrate); } int lame_set_mode(lame_global_flags *lgf, MPEG_mode mode) { return set_mode(lgf, mode); } int lame_set_quality(lame_global_flags *lgf, int quality) { return set_quality(lgf, quality); } int lame_set_bWriteVbrTag(lame_global_flags *lgf, int tag) { return set_bWriteVbrTag(lgf, tag); } int lame_init_params(lame_global_flags *lgf) { return init_params(lgf); } int lame_close(lame_global_flags *lgf) { return close(lgf); } int lame_encode_buffer_float(lame_global_flags *lgf, const float buffer_l[], const float buffer_r[], const int nsamples, unsigned char *mp3buf, const int mp3buf_size) { return encode_buffer_float(lgf, buffer_l, buffer_r, nsamples, mp3buf, mp3buf_size); } #endif /* DYN_LAME */ idjc-0.8.16/c/live_mp3_encoder.h0000644000175000017500000000244212630014502013243 00000000000000/* # live_mp3_encoder.h: encode mp3 files from a live source # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_LAME_LAME_H #include #else #include "lame.h" #endif /* HAVE_LAME_LAME_H */ #include "sourceclient.h" struct lm3e_data { lame_global_flags *gfp; int lame_mode; int lame_channels; int lame_quality; char *metadata; int lame_samples; unsigned char *mp3buf; size_t mp3bufsize; enum packet_flags packetflags; }; int live_mp3_encoder_init(struct encoder *encoder, struct encoder_vars *ev); idjc-0.8.16/c/mixer.c0000644000175000017500000017511012642452055011164 00000000000000/* # mixer.c: the audio mix happens in here. # Copyright (C) 2005-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "gnusource.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "kvpparse.h" #include "dbconvert.h" #include "compressor.h" #include "xlplayer.h" #include "mp3dec.h" #include "speextag.h" #include "sndfileinfo.h" #include "avcodecdecode.h" #include "oggdec.h" #include "mic.h" #include "bsdcompat.h" #include "peakfilter.h" #include "sig.h" #include "main.h" #define TRUE 1 #define FALSE 0 /* playlength of ring buffer contents in seconds */ #define MAIN_RB_SIZE 10.0 /* number of bytes in the MIDI queue buffer */ #define MIDI_QUEUE_SIZE 1024 /* the different VOIP modes */ #define NO_PHONE 0 #define PHONE_PUBLIC 1 #define PHONE_PRIVATE 2 typedef jack_default_audio_sample_t sample_t; /* the sample rate reported by JACK -- initial value to prevent divide by 0 */ unsigned long sr = 44100; /* values of the volume sliders in the GUI */ static int volume, volume2, crossfade, jinglesvolume1, jinglesheadroom1; static int jinglesvolume2, jinglesheadroom2, interludevol, mixbackvol, voipvol, crosspattern; /* back and forth status indicators re. jingles */ static int jingles_playing; /* the player audio feed buttons */ static int left_stream = 1, left_audio = 1, right_stream = 1, right_audio = 1; static int inter_stream = 1, inter_audio = 0, inter_force = 1; /* status variables for the button cluster in lower right of main window */ static int mic_on, mixermode = NO_PHONE; /* simple mixer mode: uses less space on the screen and less cpu as well */ static int simple_mixer; /* currentvolumes are used to implement volume smoothing */ static int current_crossfade, currentmixbackvol, currentvoipvol, current_crosspattern; /* value of the stream mon. button */ static int stream_monitor = 0; /* when this is set the end of track alarm is started */ static int eot_alarm_set = 0; /* set when end of track alarm is active */ static int eot_alarm_f = 0; /* threshold values for a premature indicator that a player is about to finish */ static unsigned jingles_samples_cutoff; static unsigned player_samples_cutoff; /* used to implement interlude player fade in/out: true when playing a track */ static int main_play; /* flag to indicate whether to use the player reading function which supports speed variance */ static int speed_variance; /* flags indicating play status of effects players lsb = first effect player */ static int effects_active; /* flag to indicate if audio is routed via dsp interface */ static int using_dsp; /* handles for microphone */ static struct mic **mics; /* peakfilter handles for stream peak */ static struct peakfilter *str_pf_l, *str_pf_r; /* counts the number of times port connections have changed */ static unsigned int port_connection_count; /* counts the number of times port connection counts have been reported */ static unsigned int port_reports; /* voip pan/downmix related */ static int voip_pan_f; static float voip_pan_l, voip_pan_r; static jack_nframes_t alarm_size; static float headroom_db; /* player muting level when mic is open */ static float str_l_tally, str_r_tally; /* used to calculate rms value */ static int rms_tally_count; static float str_l_meansqrd, str_r_meansqrd; static int reset_vu_stats_f; /* when set the mixer will reset the above */ static float dfmod; /* used to reduce the ducking factor */ static float dj_audio_level; /* used to reduce the level of dj audio */ static float dj_audio_gain = 1.0; /* same as above but not in dB */ static float alarm_audio_level; /* used to reduce the level of alarm audio */ static float alarm_audio_gain = 1.0; /* same as above but not in dB */ static float current_dj_audio_level = 0.0; static float current_alarm_audio_level = 0.0; static struct compressor stream_limiter = { 0.0, -0.05, -0.2, INFINITY, 1, 1.0F/4000.0F, 0.0, 0.0, 1, 1, 0.0, 0.0, 0.0 }, audio_limiter = { 0.0, -0.05, -0.2, INFINITY, 1, 1.0F/4000.0F, 0.0, 0.0, 1, 1, 0.0, 0.0, 0.0 }, phone_limiter = { 0.0, -0.05, -0.2, INFINITY, 1, 1.0F/4000.0F, 0.0, 0.0, 1, 1, 0.0, 0.0, 0.0 }, incoming_phone_limiter = { 0.0, -0.05, -0.2, INFINITY, 1, 1.0F/4000.0F, 0.0, 0.0, 1, 1, 0.0, 0.0, 0.0 }; /* media player mixback level for when in RedPhone mode */ static sample_t mb_lc_aud = 1.0, mb_rc_aud = 1.0; static sample_t voip_lc_aud = 1.0, voip_rc_aud = 1.0; static sample_t current_headroom; /* the amount of mic headroom being applied */ static sample_t *eot_alarm_table; /* the wave table for the DJ alarm */ static char midi_queue[MIDI_QUEUE_SIZE]; static size_t midi_nqueued= 0; static pthread_mutex_t midi_mutex; static struct xlplayer *plr_l, *plr_r, *plr_i; /* player instance stuctures */ static struct xlplayer **plr_j; static struct xlplayer **plr_j_roster; static struct xlplayer *players[4]; static struct xlplayer *players_roster[4]; /* these are set in the parse routine - the contents coming from the GUI */ static char *mixer_string, *compressor_string, *gate_string, *microphone_string, *item_index; static char *new_mic_string; static char *midi, *audl, *audr, *strl, *strr, *action; static char *target_port_name; static char *dol, *dor, *dil, *dir; static char *oggpathname, *sndfilepathname, *avformatpathname, *speexpathname, *speextaglist, *speexcreatedby; static char *playerpathname, *seek_s, *size, *playerplaylist, *loop, *resamplequality; static char *mic_param, *fade_mode; static char *rg_db, *headroom; static char *flag; static char *channel_mode_string; static char *use_jingles_vol_2; static char *jackport, *jackport2, *jackfilter; static char *effect_ix, *voip_pan; static char *session_event_string, *session_commandline; static struct smoothing_volume jingles_headroom_smoothing; static int jingles_headroom_control; /* dictionary look-up type thing used by the parse routine */ static struct kvpdict kvpdict[] = { { "PLRP", &playerpathname, NULL }, /* The media-file pathname for playback */ { "RGDB", &rg_db, NULL }, /* ReplayGain volume level controlled at the player end */ { "SEEK", &seek_s, NULL }, /* Playback initial seek time in seconds */ { "SIZE", &size, NULL }, /* Size of the file in seconds */ { "PLPL", &playerplaylist, NULL }, /* A playlist for the media players */ { "LOOP", &loop, NULL }, /* play in a loop */ { "MIXR", &mixer_string, NULL }, /* Control strings */ { "COMP", &compressor_string, NULL },/* packed full of data */ { "GATE", &gate_string, NULL }, { "MICS", µphone_string, NULL }, { "INDX", &item_index, NULL }, { "NMIC", &new_mic_string, NULL }, { "MIC", &target_port_name, NULL }, { "MIDI", &midi, NULL }, { "AUDL", &audl, NULL }, { "AUDR", &audr, NULL }, { "STRL", &strl, NULL }, { "STRR", &strr, NULL }, { "DOL", &dol, NULL }, { "DOR", &dor, NULL }, { "DIL", &dil, NULL }, { "DIR", &dir, NULL }, { "VOL2", &use_jingles_vol_2, NULL }, { "FADE", &fade_mode, NULL }, { "OGGP", &oggpathname, NULL }, { "SPXP", &speexpathname, NULL }, { "SNDP", &sndfilepathname, NULL }, { "AVFP", &avformatpathname, NULL }, { "SPXT", &speextaglist, NULL }, { "SPXC", &speexcreatedby, NULL }, { "RSQT", &resamplequality, NULL }, { "AGCP", &mic_param, NULL }, { "HEAD", &headroom, NULL }, { "FLAG", &flag, NULL }, { "CMOD", &channel_mode_string, NULL }, { "JFIL", &jackfilter, NULL }, { "JPRT", &jackport, NULL }, { "JPT2", &jackport2, NULL }, { "EFCT", &effect_ix, NULL }, { "VPAN", &voip_pan, NULL }, { "ACTN", &action, NULL }, /* Action to take */ { "session_event", &session_event_string, NULL }, { "session_command", &session_commandline, NULL }, { "", NULL, NULL }}; static void custom_jack_port_connect_callback(jack_port_id_t a, jack_port_id_t b, int connect, void *arg) { ++port_connection_count; } void mixer_stop_players() { plr_l->command = CMD_COMPLETE; plr_r->command = CMD_COMPLETE; for (struct xlplayer **p = plr_j; *p; ++p) (*p)->command = CMD_COMPLETE; plr_i->command = CMD_COMPLETE; } /* update_smoothed_volumes: stuff that gets run once every 32 samples */ static void update_smoothed_volumes() { static sample_t cross_left = 1.0F, cross_right = 0.0F; sample_t mic_target, diff; static float interlude_autovol = -128.0F; float xprop, yprop; const float bias = 0.35386f; const float pat3 = 0.9504953575f; int hr[2] = {127, 127}; xlplayer_smoothing_process_all(players); xlplayer_smoothing_process_all(plr_j); for (struct xlplayer **p = plr_j; *p; ++p) { if ((*p)->have_data_f) { int i = (p - plr_j) / 12; hr[i] = i ? jinglesheadroom2 : jinglesheadroom1; } } jingles_headroom_control = (hr[0] < hr[1]) ? hr[0] : hr[1]; smoothing_volume_process(&jingles_headroom_smoothing); if (dj_audio_level != current_dj_audio_level) { current_dj_audio_level = dj_audio_level; dj_audio_gain = db2level(dj_audio_level); } if (alarm_audio_level != current_alarm_audio_level) { current_alarm_audio_level = alarm_audio_level; alarm_audio_gain = db2level(alarm_audio_level); } if (crossfade != current_crossfade || crosspattern != current_crosspattern) { current_crosspattern = crosspattern; if (crossfade > current_crossfade) current_crossfade++; else current_crossfade--; if (current_crosspattern == 0) { xprop = current_crossfade * 0.01F; yprop = -xprop + 1.0F; cross_left = yprop / ((xprop * bias) / (xprop + bias) + yprop); cross_right = xprop / ((yprop * bias) / (yprop + bias) + xprop); /* Okay, but now for stage 2 to add a steep slope. */ if (xprop >= 0.5F) cross_left /= 1 + (xprop - 0.5) * 8.0F; else cross_right /= 1 + (yprop - 0.5) * 8.0F; } else if (current_crosspattern == 1) { if (current_crossfade > 55) { if (current_crossfade < 100) { yprop = -current_crossfade + 55; cross_left = db2level(0.8f * yprop); } else cross_left = 0.0f; cross_right = 1.0; } else if (current_crossfade < 45) { if (current_crossfade > 0) { yprop = current_crossfade - 45; cross_right = db2level(0.8f * yprop); } else cross_right = 0.0f; cross_left = 1.0; } else cross_left = cross_right = 1.0; } else if (current_crosspattern == 2) { if (current_crossfade == 100) cross_left = 0.0f; else cross_left = powf(pat3, current_crossfade); if (current_crossfade == 0) cross_right = 0.0f; else cross_right = powf(pat3, 100 - current_crossfade); } } plr_l->cf_l_gain = cross_left; plr_l->cf_r_gain = cross_left; plr_r->cf_l_gain = cross_right; plr_r->cf_r_gain = cross_right; /* interlude_autovol rises and falls as and when no media players are playing */ /* it indicates the playback volume in dB in addition to the one specified by the user */ if (main_play && !inter_force) { if (interlude_autovol > -128.0F) interlude_autovol -= 0.05F; } else { if (interlude_autovol < -20.0F) interlude_autovol = -20.0F; if (interludevol > -20.0F && interlude_autovol < -10.0F) interlude_autovol += 0.5F; if (interlude_autovol < 0.0F) interlude_autovol += 0.3F; if (interlude_autovol > 0.0f) interlude_autovol = 0.0f; } plr_i->cf_l_gain = plr_i->cf_r_gain = powf(10.0f, interlude_autovol * 0.05f); if (mixbackvol != currentmixbackvol) { if (mixbackvol > currentmixbackvol) currentmixbackvol++; else currentmixbackvol--; mb_lc_aud = mb_rc_aud = powf(10.0F, (currentmixbackvol - 127) * 0.0141F); } if (voipvol != currentvoipvol) { if (voipvol > currentvoipvol) currentvoipvol++; else currentvoipvol--; voip_lc_aud = voip_rc_aud = powf(10.0F, (currentvoipvol - 64) * 0.05F); } /* mic headroom application */ mic_target = -headroom_db; if ((diff = mic_target - current_headroom)) { current_headroom += diff * 1600.0f / (sr * powf(headroom_db + 10.0f, 0.93f)); if (fabsf(diff) < 0.000001F) current_headroom = mic_target; } /* ducking effect reduces as the player volume is backed off */ { float lev = 1.0f; float lev1 = 0.0, lev2 = 0.0, lev3 = 0.0; if (effects_active) { if (effects_active & ((0x1 << 12) - 1)) lev1 = plr_j[0]->volume.level; if (effects_active & (((0x1 << 12) - 1) << 12)) lev2 = plr_j[12]->volume.level; lev = (lev2 > lev1) ? lev2 : lev1; } else { if (plr_l->current_audio_context & 0x1) lev1 = plr_l->volume.level; if (plr_r->current_audio_context & 0x1) lev2 = plr_r->volume.level; if ((plr_i->current_audio_context & 0x1) && inter_force) lev3 = plr_i->volume.level; lev = (lev2 > lev1) ? lev2 : lev1; lev = (lev > lev3) ? lev : lev3; } if (dfmod < lev) dfmod += 0.01; else dfmod -= 0.01; } } /* process_audio: the JACK callback routine */ int mixer_process_audio(jack_nframes_t nframes, void *arg) { int samples_todo; /* The samples remaining counter in the main loop */ float df; /* main player ducking factor */ float idf; /* interlude player ducking factor */ /* the following are used to calculate the microphone mix */ sample_t lc_s_micmix, rc_s_micmix, dl_micmix, dr_micmix; sample_t lc_s_auxmix, rc_s_auxmix; /* the following are used to apply the output of the compressor code to the audio levels */ sample_t compressor_gain = 1.0; /* a counter variable used to trigger the volume smoothing on a regular basis */ static unsigned vol_smooth_count = 0; /* index values for reading from a table of fade gain values */ static jack_nframes_t alarm_index = 0; /* pointers to buffers provided by JACK */ sample_t *aap, *lap, *rap, *lsp, *rsp, *lpsp, *rpsp, *lprp, *rprp; sample_t *al_buffer, *la_buffer, *ra_buffer, *ls_buffer, *rs_buffer, *lps_buffer, *rps_buffer; sample_t *dolp, *dorp, *dilp, *dirp; sample_t *plolp, *plorp, *prolp, *prorp, *piolp, *piorp, *pe1olp, *pe1orp, *pe2olp, *pe2orp; sample_t *plilp, *plirp, *prilp, *prirp, *piilp, *piirp, *peilp, *peirp; /* midi_control */ void *midi_buffer; jack_midi_event_t midi_event; jack_nframes_t midi_nevents, midi_eventi; int midi_command_type, midi_channel_id; int pitch_wheel; struct mic **micp; float * const jh = &jingles_headroom_smoothing.level; float * const jhi = inter_force ? jh : &((struct {float a;}){1.0f}).a; float e_ls, e_rs, e1_ls, e1_rs, e2_ls, e2_rs; /* midi_control. read incoming commands forward to gui */ midi_buffer = jack_port_get_buffer(g.port.midi_port, nframes); midi_nevents = jack_midi_get_event_count(midi_buffer); if (midi_nevents!=0) { pthread_mutex_lock(&midi_mutex); for (midi_eventi = 0; midi_eventi < midi_nevents; midi_eventi++) { if (jack_midi_event_get(&midi_event, midi_buffer, midi_eventi) != 0) { fprintf(stderr, "Error reading MIDI event from JACK\n"); continue; } if (midi_nqueued+12 > MIDI_QUEUE_SIZE) /* max length of command */ { fprintf(stderr, "MIDI queue overflow, event lost\n"); continue; } midi_command_type= midi_event.buffer[0] & 0xF0; midi_channel_id= midi_event.buffer[0] & 0x0F; switch (midi_command_type) { case 0xB0: /* MIDI_COMMAND_CHANGE */ midi_nqueued+= snprintf( midi_queue+midi_nqueued, MIDI_QUEUE_SIZE-midi_nqueued, ",c%x.%x:%x", midi_channel_id, midi_event.buffer[1], midi_event.buffer[2] ); break; case 0x80: /* MIDI_NOTE_OFF */ midi_nqueued+= snprintf( midi_queue+midi_nqueued, MIDI_QUEUE_SIZE-midi_nqueued, ",n%x.%x:0", midi_channel_id, midi_event.buffer[1] ); break; case 0x90: /* MIDI_NOTE_ON */ midi_nqueued+= snprintf( midi_queue+midi_nqueued, MIDI_QUEUE_SIZE-midi_nqueued, ",n%x.%x:7F", midi_channel_id, midi_event.buffer[1] ); break; case 0xFE: /* MIDI_PITCH_WHEEL_CHANGE */ pitch_wheel= 0x2040 - midi_event.buffer[2] - midi_event.buffer[1]*128; if (pitch_wheel < 0) pitch_wheel = 0; if (pitch_wheel > 0x7F) pitch_wheel = 0x7F; midi_nqueued+= snprintf( midi_queue+midi_nqueued, MIDI_QUEUE_SIZE-midi_nqueued, ",p%x.0:%x", midi_channel_id, pitch_wheel ); break; } } pthread_mutex_unlock(&midi_mutex); } /* get the data pointers for the jack ports */ { struct jack_ports *p = &g.port; al_buffer = aap = (sample_t *) jack_port_get_buffer(p->alarm_out, nframes); la_buffer = lap = (sample_t *) jack_port_get_buffer(p->dj_out_l, nframes); ra_buffer = rap = (sample_t *) jack_port_get_buffer(p->dj_out_r, nframes); ls_buffer = lsp = (sample_t *) jack_port_get_buffer(p->str_out_l, nframes); rs_buffer = rsp = (sample_t *) jack_port_get_buffer(p->str_out_r, nframes); lps_buffer = lpsp = (sample_t *) jack_port_get_buffer(p->voip_out_l, nframes); rps_buffer = rpsp = (sample_t *) jack_port_get_buffer(p->voip_out_r, nframes); lprp = (sample_t *) jack_port_get_buffer(p->voip_in_l, nframes); rprp = (sample_t *) jack_port_get_buffer(p->voip_in_r, nframes); dolp = (sample_t *) jack_port_get_buffer(p->dsp_out_l, nframes); dorp = (sample_t *) jack_port_get_buffer(p->dsp_out_r, nframes); dilp = (sample_t *) jack_port_get_buffer(p->dsp_in_l, nframes); dirp = (sample_t *) jack_port_get_buffer(p->dsp_in_r, nframes); plolp = (sample_t *) jack_port_get_buffer(p->pl_out_l, nframes); plorp = (sample_t *) jack_port_get_buffer(p->pl_out_r, nframes); prolp = (sample_t *) jack_port_get_buffer(p->pr_out_l, nframes); prorp = (sample_t *) jack_port_get_buffer(p->pr_out_r, nframes); piolp = (sample_t *) jack_port_get_buffer(p->pi_out_l, nframes); piorp = (sample_t *) jack_port_get_buffer(p->pi_out_r, nframes); pe1olp = (sample_t *) jack_port_get_buffer(p->pe1_out_l, nframes); pe1orp = (sample_t *) jack_port_get_buffer(p->pe1_out_r, nframes); pe2olp = (sample_t *) jack_port_get_buffer(p->pe2_out_l, nframes); pe2orp = (sample_t *) jack_port_get_buffer(p->pe2_out_r, nframes); plilp = (sample_t *) jack_port_get_buffer(p->pl_in_l, nframes); plirp = (sample_t *) jack_port_get_buffer(p->pl_in_r, nframes); prilp = (sample_t *) jack_port_get_buffer(p->pr_in_l, nframes); prirp = (sample_t *) jack_port_get_buffer(p->pr_in_r, nframes); piilp = (sample_t *) jack_port_get_buffer(p->pi_in_l, nframes); piirp = (sample_t *) jack_port_get_buffer(p->pi_in_r, nframes); peilp = (sample_t *) jack_port_get_buffer(p->pe_in_l, nframes); peirp = (sample_t *) jack_port_get_buffer(p->pe_in_r, nframes); } /* resets the running totals for the vu meter stats */ if (reset_vu_stats_f) { str_l_tally = str_r_tally = 0.0; rms_tally_count = 0; reset_vu_stats_f = FALSE; } mic_process_start_all(mics, nframes); xlplayer_read_start_all(players, nframes, players_roster); xlplayer_read_start_all(plr_j, nframes, plr_j_roster); /* there are four mixer modes with a lot of shared code */ /* to keep things smaller and more maintainable macros have been used */ if (simple_mixer == FALSE && mixermode == NO_PHONE) /* Fully featured mixer code */ { memset(lps_buffer, 0, nframes * sizeof (sample_t)); /* send silence to VOIP */ memset(rps_buffer, 0, nframes * sizeof (sample_t)); for(samples_todo = nframes; samples_todo--; lap++, rap++, lsp++, rsp++, dilp++, dirp++, dolp++, dorp++, aap++, plolp++, plorp++, prolp++, prorp++, piolp++, piorp++, pe1olp++, pe1orp++, pe2olp++, pe2orp++, plilp++, plirp++, prilp++, prirp++, piilp++, piirp++, peilp++, peirp++) { if (vol_smooth_count++ % 100 == 0) /* Can change volume level every so many samples */ update_smoothed_volumes(); df = powf(mic_process_all(mics), dfmod); for (micp = mics, lc_s_micmix = rc_s_micmix = lc_s_auxmix = rc_s_auxmix = dl_micmix = dr_micmix = 0.0f; *micp; micp++) { lc_s_micmix += (*micp)->mlcm; rc_s_micmix += (*micp)->mrcm; lc_s_auxmix += (*micp)->alcm; rc_s_auxmix += (*micp)->arcm; dl_micmix += (*micp)->lmunpmdj; dr_micmix += (*micp)->rmunpmdj; } /* ducking calculation */ { float hr = db2level(current_headroom); df = (df < hr) ? df : hr; } idf = inter_force ? df : 1.0; #define COMMON_MIX() \ do { \ xlplayer_read_next_all(players); \ xlplayer_read_next_all(plr_j_roster); \ \ /* player audio routing through jack ports */ \ *plolp = plr_l->ls; \ *plorp = plr_l->rs; \ *prolp = plr_r->ls; \ *prorp = plr_r->rs; \ *piolp = plr_i->ls; \ *piorp = plr_i->rs; \ plr_l->ls = *plilp; \ plr_l->rs = *plirp; \ plr_r->ls = *prilp; \ plr_r->rs = *prirp; \ plr_i->ls = *piilp; \ plr_i->rs = *piirp; \ xlplayer_levels_all(players); \ xlplayer_levels_all(plr_j); \ e1_ls = e1_rs = e2_ls = e2_rs = 0.0f; \ for (struct xlplayer **p = plr_j_roster; *p; ++p) { \ if ((*p)->id < (1 << 12)) \ { \ e1_ls += (*p)->ls_str; \ e1_rs += (*p)->rs_str; \ } \ else \ { \ e2_ls += (*p)->ls_str; \ e2_rs += (*p)->rs_str; \ } \ } \ /* effects audio from multiple players goes out on one port */ \ /* a stream-audio-only effect */ \ *pe1olp = e1_ls; \ *pe1orp = e1_rs; \ *pe2olp = e2_ls; \ *pe2orp = e2_rs; \ e_ls = *peilp; \ e_rs = *peirp; \ } while(0) COMMON_MIX(); /* the stream mix */ *dolp = ((plr_l->ls_str + plr_r->ls_str) * *jh + e_ls) * df + lc_s_micmix + lc_s_auxmix + plr_i->ls_str * idf * *jhi; *dorp = ((plr_l->rs_str + plr_r->rs_str) * *jh + e_rs) * df + rc_s_micmix + rc_s_auxmix + plr_i->rs_str * idf * *jhi; /* hard limit the levels if they go outside permitted limits */ /* note this is not the same as clipping */ compressor_gain = db2level(limiter(&stream_limiter, *dolp, *dorp)); *dolp *= compressor_gain; *dorp *= compressor_gain; #define COMMON_MIX2() \ do { \ if (using_dsp) \ { \ *lsp = *dilp; \ *rsp = *dirp; \ } \ else \ { \ *lsp = *dolp; \ *rsp = *dorp; \ } \ } while(0) COMMON_MIX2(); if (stream_monitor == FALSE) { *lap = ((plr_l->ls_aud + plr_r->ls_aud) * *jh + e_ls) * df + dl_micmix + lc_s_auxmix + plr_i->ls_aud * idf * *jhi; *rap = ((plr_l->rs_aud + plr_r->rs_aud) * *jh + e_rs) * df + dr_micmix + rc_s_auxmix + plr_i->rs_aud * idf * *jhi; compressor_gain = db2level(limiter(&audio_limiter, *lap, *rap)); *lap *= compressor_gain; *rap *= compressor_gain; } else { *lap = *lsp; /* allow the DJ to hear the mix that the listeners are hearing */ *rap = *rsp; } #define COMMON_MIX3() \ do { \ /* apply dj audio sound level */ \ *lap *= dj_audio_gain; \ *rap *= dj_audio_gain; \ \ /* make note of the peak volume levels */ \ peakfilter_process(str_pf_l, *lsp); \ peakfilter_process(str_pf_r, *rsp); \ \ /* used for rms calculation */ \ str_l_tally += *lsp * *lsp; \ str_r_tally += *rsp * *rsp; \ rms_tally_count++; \ \ if (eot_alarm_f) /* end-of-track alarm tone */ \ { \ if (alarm_index >= alarm_size) \ { \ alarm_index = 0; \ eot_alarm_f = 0; \ } \ else \ { \ *aap = eot_alarm_table[alarm_index] * alarm_audio_gain; \ alarm_index++; \ } \ } \ else \ *aap = 0.0f; \ \ } while(0) COMMON_MIX3(); } str_l_meansqrd = str_l_tally/rms_tally_count; str_r_meansqrd = str_r_tally/rms_tally_count; } else if (simple_mixer == FALSE && mixermode == PHONE_PUBLIC) { for(samples_todo = nframes; samples_todo--; lap++, rap++, lsp++, rsp++, aap++, lpsp++, rpsp++, lprp++, rprp++, dilp++, dirp++, dolp++, dorp++, plolp++, plorp++, prolp++, prorp++, piolp++, piorp++, pe1olp++, pe1orp++, pe2olp++, pe2orp++, plilp++, plirp++, prilp++, prirp++, piilp++, piirp++, peilp++, peirp++) { if (vol_smooth_count++ % 100 == 0) /* Can change volume level every so many samples */ update_smoothed_volumes(); mic_process_all(mics); for (micp = mics, lc_s_micmix = rc_s_micmix = lc_s_auxmix = rc_s_auxmix = dl_micmix = dr_micmix = 0.0f; *micp; micp++) { lc_s_micmix += (*micp)->mlcm; rc_s_micmix += (*micp)->mrcm; lc_s_auxmix += (*micp)->alcm; rc_s_auxmix += (*micp)->arcm; dl_micmix += (*micp)->lmunpmdj; dr_micmix += (*micp)->rmunpmdj; } /* No ducking but headroom still must apply */ df = db2level(current_headroom); idf = inter_force ? df : 1.0; COMMON_MIX(); /* do the phone mix */ *lpsp = lc_s_micmix + e_ls; *rpsp = rc_s_micmix + e_rs; compressor_gain = db2level(limiter(&phone_limiter, *lpsp, *rpsp)); *lpsp *= compressor_gain; *rpsp *= compressor_gain; compressor_gain = db2level(limiter(&incoming_phone_limiter, *lprp *= voip_lc_aud, *rprp *= voip_rc_aud)); *lprp *= compressor_gain; *rprp *= compressor_gain; if (voip_pan_f) { float dnmix = (*lprp + *rprp) / 2.0f; *lprp = dnmix * voip_pan_l; *rprp = dnmix * voip_pan_r; } /* The main mix */ *dolp = (plr_l->ls_str + plr_r->ls_str) * *jh * df + *lprp + *lpsp + lc_s_auxmix + plr_i->ls_str * idf * *jhi; *dorp = (plr_l->rs_str + plr_r->rs_str) * *jh * df + *rprp + *rpsp + rc_s_auxmix + plr_i->rs_str * idf * *jhi; /* hard limit the levels if they go outside permitted limits */ /* note this is not the same as clipping */ compressor_gain = db2level(limiter(&stream_limiter, *dolp, *dorp)); *dolp *= compressor_gain; *dorp *= compressor_gain; COMMON_MIX2(); if (stream_monitor == FALSE) { *lap = (plr_l->ls_aud + plr_r->ls_aud) * *jh * df + *lprp + lc_s_auxmix + plr_i->ls_aud * idf * *jhi + dl_micmix + e_ls; *rap = (plr_l->rs_aud + plr_r->rs_aud) * *jh * df + *rprp + rc_s_auxmix + plr_i->rs_aud * idf * *jhi + dr_micmix + e_rs; compressor_gain = db2level(limiter(&audio_limiter, *lap, *rap)); *lap *= compressor_gain; *rap *= compressor_gain; } else { *lap = *lsp; /* allow the DJ to hear the mix that the listeners are hearing */ *rap = *rsp; } COMMON_MIX3(); } str_l_meansqrd = str_l_tally/rms_tally_count; str_r_meansqrd = str_r_tally/rms_tally_count; } else if (simple_mixer == FALSE && mixermode == PHONE_PRIVATE && mic_on == 0) { for(samples_todo = nframes; samples_todo--; lap++, rap++, lsp++, rsp++, lpsp++, rpsp++, lprp++, rprp++, dilp++, dirp++, dolp++, dorp++, aap++, plolp++, plorp++, prolp++, prorp++, piolp++, piorp++, pe1olp++, pe1orp++, pe2olp++, pe2orp++, plilp++, plirp++, prilp++, prirp++, piilp++, piirp++, peilp++, peirp++) { if (vol_smooth_count++ % 100 == 0) /* Can change volume level every so many samples */ update_smoothed_volumes(); mic_process_all(mics); for (micp = mics, lc_s_micmix = rc_s_micmix = lc_s_auxmix = rc_s_auxmix = dl_micmix = dr_micmix = 0.0f; *micp; micp++) { lc_s_micmix += (*micp)->mlc; rc_s_micmix += (*micp)->mrc; lc_s_auxmix += (*micp)->alcm; rc_s_auxmix += (*micp)->arcm; dl_micmix += (*micp)->lmunpm; dr_micmix += (*micp)->rmunpm; } /* No ducking */ COMMON_MIX(); /* the main mix */ *dolp = plr_l->ls_str + plr_r->ls_str + lc_s_auxmix + plr_i->ls_str; *dorp = plr_l->rs_str + plr_r->rs_str + rc_s_auxmix + plr_i->rs_str; /* hard limit the levels if they go outside permitted limits */ /* note this is not the same as clipping */ compressor_gain = db2level(limiter(&stream_limiter, *dolp, *dorp)); *dolp *= compressor_gain; *dorp *= compressor_gain; /* the mix the voip listeners receive */ *lpsp = (*dolp * mb_lc_aud) + e_ls + lc_s_micmix; *rpsp = (*dorp * mb_lc_aud) + e_rs + rc_s_micmix; compressor_gain = db2level(limiter(&phone_limiter, *lpsp, *rpsp)); *lpsp *= compressor_gain; *rpsp *= compressor_gain; compressor_gain = db2level(limiter(&incoming_phone_limiter, *lprp *= voip_lc_aud, *rprp *= voip_rc_aud)); *lprp *= compressor_gain; *rprp *= compressor_gain; if (voip_pan_f) { float dnmix = (*lprp + *rprp) / 2.0f; *lprp = dnmix * voip_pan_l; *rprp = dnmix * voip_pan_r; } COMMON_MIX2(); if (stream_monitor == FALSE) /* the DJ can hear the VOIP phone call */ { *lap = (*lsp * mb_lc_aud) + e_ls + dl_micmix + (lc_s_auxmix *mb_lc_aud) + *lprp; *rap = (*rsp * mb_lc_aud) + e_rs + dr_micmix + (rc_s_auxmix *mb_rc_aud) + *rprp; compressor_gain = db2level(limiter(&audio_limiter, *lap, *rap)); *lap *= compressor_gain; *rap *= compressor_gain; } else { *lap = *lsp; /* allow the DJ to hear the mix that the listeners are hearing */ *rap = *rsp; } COMMON_MIX3(); } str_l_meansqrd = str_l_tally/rms_tally_count; str_r_meansqrd = str_r_tally/rms_tally_count; } else if (simple_mixer == FALSE && mixermode == PHONE_PRIVATE) /* note: mic is on */ { for(samples_todo = nframes; samples_todo--; lap++, rap++, lsp++, rsp++, lpsp++, rpsp++, dilp++, dirp++, dolp++, dorp++, aap++, plolp++, plorp++, prolp++, prorp++, piolp++, piorp++, pe1olp++, pe1orp++, pe2olp++, pe2orp++, plilp++, plirp++, prilp++, prirp++, piilp++, piirp++, peilp++, peirp++) { if (vol_smooth_count++ % 100 == 0) /* Can change volume level every so many samples */ update_smoothed_volumes(); df = powf(mic_process_all(mics), dfmod); for (micp = mics, lc_s_micmix = rc_s_micmix = lc_s_auxmix = rc_s_auxmix = dl_micmix = dr_micmix = 0.0f; *micp; micp++) { lc_s_micmix += (*micp)->mlcm; rc_s_micmix += (*micp)->mrcm; lc_s_auxmix += (*micp)->alcm; rc_s_auxmix += (*micp)->arcm; dl_micmix += (*micp)->lmunpmdj; dr_micmix += (*micp)->rmunpmdj; } /* ducking calculation */ { float hr = db2level(current_headroom); df = (df < hr) ? df : hr; } idf = inter_force ? df : 1.0; COMMON_MIX(); /* the main mix */ *dolp = ((plr_l->ls_str + plr_r->ls_str) * *jh + e_ls) * df + lc_s_micmix + lc_s_auxmix + plr_i->ls_str * idf * *jhi; *dorp = ((plr_l->rs_str + plr_r->rs_str) * *jh + e_rs) * df + rc_s_micmix + rc_s_auxmix + plr_i->rs_str * idf * *jhi; /* hard limit the levels if they go outside permitted limits */ /* note this is not the same as clipping */ compressor_gain = db2level(limiter(&stream_limiter, *dolp, *dorp)); *dolp *= compressor_gain; *dorp *= compressor_gain; *lpsp = *dolp * mb_lc_aud; /* voip callers get stream mix at a certain volume */ *rpsp = *dorp * mb_rc_aud; COMMON_MIX2(); if (stream_monitor == FALSE) { *lap = ((plr_l->ls_aud + plr_r->ls_aud) * *jh + e_ls) * df + dl_micmix + lc_s_auxmix + plr_i->ls_aud * idf * *jhi; *rap = ((plr_l->rs_aud + plr_r->rs_aud) * *jh + e_ls) * df + dr_micmix + rc_s_auxmix + plr_i->rs_aud * idf * *jhi; compressor_gain = db2level(limiter(&audio_limiter, *lap, *rap)); *lap *= compressor_gain; *rap *= compressor_gain; } else { *lap = *lsp; /* allow the DJ to hear the mix that the listeners are hearing */ *rap = *rsp; } COMMON_MIX3(); } str_l_meansqrd = str_l_tally/rms_tally_count; str_r_meansqrd = str_r_tally/rms_tally_count; } else if (simple_mixer == TRUE) { int la = left_audio; int ls = left_stream; if (dj_audio_level != current_dj_audio_level) { current_dj_audio_level = dj_audio_level; dj_audio_gain = db2level(dj_audio_level); } if (la || ls) { samples_todo = nframes; while (samples_todo--) { xlplayer_read_next(plr_l); if (la) { *lap++ = plr_l->ls * dj_audio_gain; *rap++ = plr_l->rs * dj_audio_gain; } if (ls) { *lsp++ = plr_l->ls; *rsp++ = plr_l->rs; } } } memset(al_buffer, 0, nframes * sizeof (sample_t)); if (!la) { memset(la_buffer, 0, nframes * sizeof (sample_t)); memset(ra_buffer, 0, nframes * sizeof (sample_t)); } if (!ls) { memset(ls_buffer, 0, nframes * sizeof (sample_t)); memset(rs_buffer, 0, nframes * sizeof (sample_t)); } } else fprintf(stderr,"Error: no mixer mode was chosen\n"); return 0; } static int peak_to_log(float peak) { if (peak <= 0.0) return -127; if (peak >= 1.0) return 0; return (int)level2db(peak); } int mixer_healthcheck() { const int limit = 15; for (struct xlplayer **p = plr_j_roster; *p; ++p) { if (++(*p)->watchdog_timer >= limit) return FALSE; } for (struct xlplayer **p = players_roster; *p; ++p) { if (++(*p)->watchdog_timer >= limit) return FALSE; } return TRUE; } static int fputshex(const char *in, FILE *fp) { static const char * const table = "0123456789abcdef"; for(; *in; ++in) { fputc(table[*in >> 4 & 0xF], fp); fputc(table[*in & 0xF], fp); } if (ferror(fp)) return EOF; return 0; } static void jackportread(const char *portname, const char *filter) { unsigned long flags = 0; const char *type = JACK_DEFAULT_AUDIO_TYPE; const char **ports, **cons; const jack_port_t *port = jack_port_by_name(g.client, portname); int i, j, conn; if (!strcmp(filter, "inputs")) flags = JackPortIsInput; else { if (!strcmp(filter, "outputs")) flags = JackPortIsOutput; else if (!strcmp(filter, "midioutputs")) { flags = JackPortIsOutput; type = JACK_DEFAULT_MIDI_TYPE; } } cons = jack_port_get_all_connections(g.client, port); ports = jack_get_ports(g.client, NULL, type, flags); fputs("jackports=", g.out); if (ports) for (i = 0; ports[i]; ++i) { if (i) fputc(' ', g.out); /* connected ports are prefaced with an @ character else - */ conn = FALSE; if (cons) for (j = 0; cons[j]; ++j) if (!(strcmp(cons[j], ports[i]))) { conn = TRUE; break; } fputc(conn ? '@' : '-', g.out); /* hex encode to prevent clash with formatting characters. * if jack port names contain spaces "@,\n" it won't break here */ fputshex(ports[i], g.out); } fputc('\n', g.out); fflush(g.out); if (cons) jack_free(cons); if (ports) jack_free(ports); } static struct mixer { const char **outport; int str_l_peak_db, str_r_peak_db; int str_l_rms_db, str_r_rms_db; float normrise, normfall; int fadeout_f; int flush_left, flush_right, flush_jingles, flush_interlude; int new_left_pause, new_right_pause, new_inter_pause; char *artist, *title, *album, *replaygain, *rgloudness; double length; int use_dsp; char midi_output[MIDI_QUEUE_SIZE]; char *our_sc_str_in_l; char *our_sc_str_in_r; int l; char *session_command; char *sc_client_name; } s; static void mixer_cleanup() { free(eot_alarm_table); free_signallookup_table(); free_dblookup_table(); if (s.outport) jack_free(s.outport); free(s.our_sc_str_in_l); free(s.our_sc_str_in_r); mic_free_all(mics); peakfilter_destroy(str_pf_l); peakfilter_destroy(str_pf_r); xlplayer_destroy(plr_l); xlplayer_destroy(plr_r); xlplayer_destroy(plr_i); for (struct xlplayer **p = plr_j; *p; ++p) xlplayer_destroy(*p); free(plr_j); free(plr_j_roster); } int mixer_new_buffer_size(jack_nframes_t n_frames) { fprintf(stderr, "player read buffer allocated for %ld frames\n", (long)n_frames); xlplayer_buffer_alloc_all(players, n_frames); xlplayer_buffer_alloc_all(plr_j, n_frames); return 0; } void mixer_init(void) { sr = jack_get_sample_rate(g.client); jingles_samples_cutoff = sr / 12; /* A twelfth of a second early */ player_samples_cutoff = sr * 0.25; /* for gapless playback */ int n = 0; int ne = atoi(getenv("num_effects")); if(! ((players[n++] = plr_l = xlplayer_create(sr, MAIN_RB_SIZE, "left", &g.app_shutdown, &volume, 0, &left_stream, &left_audio, 0.3f)) && (players[n++] = plr_r = xlplayer_create(sr, MAIN_RB_SIZE, "right", &g.app_shutdown, &volume2, 0, &right_stream, &right_audio, 0.3f)))) { fprintf(stderr, "failed to create main player modules\n"); exit(5); } if (!(plr_j = (struct xlplayer **)calloc(ne + 1, sizeof (struct xlplayer *)))) { fprintf(stderr, "malloc failure\n"); exit(5); } if (!(plr_j_roster = (struct xlplayer **)calloc(ne + 1, sizeof (struct xlplayer *)))) { fprintf(stderr, "malloc failure\n"); exit(5); } for (int i = 0; i < ne; ++i) { int *volct = (i < 12) ? &jinglesvolume1 : &jinglesvolume2; if (!(plr_j[i] = xlplayer_create(sr, 0.15f, "jingles", &g.app_shutdown, volct, 0, NULL, NULL, 0.0f))) { fprintf(stderr, "failed to create jingles player module\n"); exit(5); } plr_j[i]->fade_mode = 3; } if (!(players[n++] = plr_i = xlplayer_create(sr, MAIN_RB_SIZE, "interlude", &g.app_shutdown, &interludevol, 0, &inter_stream, &inter_audio, 0.3f))) { fprintf(stderr, "failed to create interlude player module\n"); exit(5); } plr_i->cf_aud = 1; /* crossfader values to apply in dj audio -- the crossfader interface is used to implement the soft fade in/out */ players[n++] = NULL; if (n != sizeof players / sizeof players[0]) { fprintf(stderr, "players array is the wrong size\n"); exit(5); } smoothing_volume_init(&jingles_headroom_smoothing, &jingles_headroom_control, 0.0f); if (!init_dblookup_table()) { fprintf(stderr, "failed to allocate space for signal to db lookup table\n"); exit(5); } if (!init_signallookup_table()) { fprintf(stderr, "failed to allocate space for db to signal lookup table\n"); exit(5); } /* generate the wave table for the DJ alarm */ if (!(eot_alarm_table = calloc(sizeof (sample_t), sr))) { fprintf(stderr, "failed to allocate space for end of track alarm wave table\n"); exit(5); } else { alarm_size = (sr / 900) * 900; /* builds the alarm tone wave table */ for (unsigned i = 0; i < alarm_size ; i++) { eot_alarm_table[i] = 0.83F * sinf((i % (sr/900)) * 6.283185307F / (sr/900)); eot_alarm_table[i] += 0.024F * sinf((i % (sr/900)) * 12.56637061F / (sr/900) + 3.141592654F / 4.0F); } } str_pf_l = peakfilter_create(115e-6f, sr); str_pf_r = peakfilter_create(115e-6f, sr); /* allocate microphone resources */ mics = mic_init_all(atoi(getenv("mic_qty")), g.client); jack_set_port_connect_callback(g.client, custom_jack_port_connect_callback, NULL); atexit(mixer_cleanup); g.mixer_up = TRUE; } int mixer_main() { unsigned int lead, ports_diff; jack_session_event_t *session_event; if (!(kvp_parse(kvpdict, g.in))) { fprintf(stderr, "kvp_parse returned false\n"); return FALSE; } if (!strcmp(action, "ping")) { fprintf(g.out, "pong\n"); fflush(g.out); } if (!strcmp(action, "mp3_getstatus")) xlplayer_mpg123_status(); if (!strcmp(action, "jackportread")) jackportread(jackport, jackfilter); if (!strcmp(action, "freewheel_toggle")) jack_set_freewheel(g.client, !g.freewheel); if (!strcmp(action, "freewheel_on")) jack_set_freewheel(g.client, 1); if (!strcmp(action, "freewheel_off")) jack_set_freewheel(g.client, 0); void dis_connect(char *str, int (*fn)(jack_client_t *, const char *, const char *)) { const char **jackports, **jp; jack_port_t *port; if (!strcmp(action, str)) { if (strlen(jackport2)) { if ((port = jack_port_by_name(g.client, jackport))) { if (jack_port_flags(port) & JackPortIsOutput) fn(g.client, jackport, jackport2); else fn(g.client, jackport2, jackport); } else fprintf(stderr, "port %s does not exist\n", jackport); } else { /* do regular expression lookup of ports then disconnect them */ if (!strcmp(str, "jackdisconnect")) { if ((jackports = jack_get_ports(g.client, jackport, NULL, 0L))) { for (jp = jackports; *jp; ++jp) { if ((port = jack_port_by_name(g.client, *jp))) jack_port_disconnect(g.client, port); else fprintf(stderr, "port %s does not exist\n", jackport); } jack_free(jackports); } } } } } dis_connect("jackconnect", jack_connect); dis_connect("jackdisconnect", jack_disconnect); if (!strcmp(action, "session_reply")) { sscanf(session_event_string, "%p", &session_event); session_event->command_line = session_commandline; /* Transfer of ownership of heap allocated string. */ session_commandline = NULL; jack_session_reply(g.client, session_event); jack_session_event_free(session_event); /* Unblock the user interface which is waiting on a reply. */ fprintf(g.out, "session event handled\n"); fflush(g.out); } if (!strcmp(action, "playeffect")) { int i = atoi(effect_ix); xlplayer_play(plr_j[i], playerpathname, 0, 0, atoi(rg_db), i); } if (!strcmp(action, "stopeffect")) { int i = atoi(effect_ix); if (1 << i == plr_j[i]->id) xlplayer_eject(plr_j[i]); } if (!strcmp(action, "mic_control")) { mic_valueparse(mics[atoi(item_index)], mic_param); } if (!strcmp(action, "new_channel_mode_string")) { mic_set_role_all(mics, channel_mode_string); } if (!strcmp(action, "headroom")) { headroom_db = strtof(headroom, NULL); } if (!strcmp(action, "anymic")) { mic_on = (flag[0] == '1') ? 1 : 0; } if (!strcmp(action, "fademode_left")) plr_l->fade_mode = atoi(fade_mode); if (!strcmp(action, "fademode_right")) plr_r->fade_mode = atoi(fade_mode); if (!strcmp(action, "fademode_interlude")) plr_i->fade_mode = atoi(fade_mode); if (!strcmp(action, "playleft")) { fprintf(g.out, "context_id=%d\n", xlplayer_play(plr_l, playerpathname, atoi(seek_s), atoi(size), atof(rg_db), 0)); fflush(g.out); } if (!strcmp(action, "playright")) { fprintf(g.out, "context_id=%d\n", xlplayer_play(plr_r, playerpathname, atoi(seek_s), atoi(size), atof(rg_db), 0)); fflush(g.out); } if (!strcmp(action, "playinterlude")) { fprintf(g.out, "context_id=%d\n", xlplayer_play(plr_i, playerpathname, atoi(seek_s), atoi(size), atof(rg_db), 0)); fflush(g.out); } if (!strcmp(action, "playnoflushleft")) { fprintf(g.out, "context_id=%d\n", xlplayer_play_noflush(plr_l, playerpathname, atoi(seek_s), atoi(size), atof(rg_db), 0)); fflush(g.out); } if (!strcmp(action, "playnoflushright")) { fprintf(g.out, "context_id=%d\n", xlplayer_play_noflush(plr_r, playerpathname, atoi(seek_s), atoi(size), atof(rg_db), 0)); fflush(g.out); } if (!strcmp(action, "playnoflushinterlude")) { fprintf(g.out, "context_id=%d\n", xlplayer_play_noflush(plr_i, playerpathname, atoi(seek_s), atoi(size), atof(rg_db), 0)); fflush(g.out); } #if 0 if (!strcmp(action, "playmanyjingles")) { fprintf(g.out, "context_id=%d\n", xlplayer_playmany(plr_j, playerplaylist, loop[0]=='1')); fflush(g.out); } #endif if (!strcmp(action, "stopleft")) xlplayer_eject(plr_l); if (!strcmp(action, "stopright")) xlplayer_eject(plr_r); if (!strcmp(action, "stopjingles")) xlplayer_eject(plr_j[atoi(effect_ix)]); if (!strcmp(action, "stopinterlude")) xlplayer_eject(plr_i); if (!strcmp(action, "dither")) { xlplayer_dither(plr_l, TRUE); xlplayer_dither(plr_r, TRUE); for (struct xlplayer **p = plr_j; *p; ++p) xlplayer_dither(*p, TRUE); xlplayer_dither(plr_i, TRUE); } if (!strcmp(action, "dontdither")) { xlplayer_dither(plr_l, FALSE); xlplayer_dither(plr_r, FALSE); for (struct xlplayer **p = plr_j; *p; ++p) xlplayer_dither(*p, FALSE); xlplayer_dither(plr_i, FALSE); } if (!strcmp(action, "resamplequality")) { for (struct xlplayer **p = players; *p; ++p) (*p)->rsqual = resamplequality[0] - '0'; for (struct xlplayer **p = plr_j; *p; ++p) (*p)->rsqual = resamplequality[0] - '0'; } if (!strcmp(action, "ogginforequest")) { if (oggdecode_get_metainfo(oggpathname, &s.artist, &s.title, &s.album, &s.length, &s.replaygain, &s.rgloudness)) { fprintf(g.out, "OIR:ARTIST=%s\nOIR:TITLE=%s\nOIR:ALBUM=%s\nOIR:LENGTH=%f\nOIR:REPLAYGAIN_TRACK_GAIN=%s\nOIR:REPLAYGAIN_REFERENCE_LOUDNESS=%s\nOIR:end\n", s.artist, s.title, s.album, s.length, s.replaygain, s.rgloudness); fflush(g.out); } else { fprintf(g.out, "OIR:NOT VALID\n"); fflush(g.out); } } if (!strcmp(action, "sndfileinforequest")) sndfileinfo(sndfilepathname); #ifdef HAVE_SPEEX if (!(strcmp(action, "speexreadtagrequest"))) speex_tag_read(speexpathname); if (!(strcmp(action, "speexwritetagrequest"))) speex_tag_write(speexpathname, speexcreatedby, speextaglist); #endif if (!strcmp(action, "voippan")) { int voippanval = atoi(voip_pan); if (voippanval == -1) voip_pan_f = 0; else { double x = voippanval * M_PI_2 / 100.0; voip_pan_l = (float)cos(x); voip_pan_r = (float)sin(x); voip_pan_f = 1; } } if (!strcmp(action, "mixstats")) { if(sscanf(mixer_string, ":%03d:%03d:%03d:%03d:%03d:%03d:%03d:%03d:%03d:%d:%1d%1d%1d" "%1d%1d:%1d%1d:%1d%1d%1d%1d:%1d:%1d:%1d:%1d:%1d:%f:%f:%1d:%f" ":%d:%d:%d:%1d:%1d:%1d:%f:%03d:%f:", &volume, &volume2, &crossfade, &jinglesvolume1, &jinglesheadroom1, &jinglesvolume2, &jinglesheadroom2 ,&interludevol, &mixbackvol, &jingles_playing, &left_stream, &left_audio, &right_stream, &right_audio, &stream_monitor, &s.new_left_pause, &s.new_right_pause, &s.flush_left, &s.flush_right, &s.flush_jingles, &s.flush_interlude, &simple_mixer, &eot_alarm_set, &mixermode, &s.fadeout_f, &main_play, &(plr_l->newpbspeed), &(plr_r->newpbspeed), &speed_variance, &dj_audio_level, &crosspattern, &s.use_dsp, &s.new_inter_pause, &inter_stream, &inter_audio, &inter_force, &alarm_audio_level, &voipvol, &(plr_i->newpbspeed)) !=39) { fprintf(stderr, "mixer got bad mixer string\n"); return TRUE; } eot_alarm_f |= eot_alarm_set; plr_l->fadeout_f = plr_r->fadeout_f = plr_i->fadeout_f = s.fadeout_f; for (struct xlplayer **p = plr_j; *p; ++p) (*p)->fadeout_f = s.fadeout_f; plr_l->use_sv = plr_r->use_sv = plr_i->use_sv = speed_variance; if (s.use_dsp != using_dsp) using_dsp = s.use_dsp; if (s.new_left_pause != plr_l->pause) { if (s.new_left_pause) xlplayer_pause(plr_l); else xlplayer_unpause(plr_l); } if (s.new_right_pause != plr_r->pause) { if (s.new_right_pause) xlplayer_pause(plr_r); else xlplayer_unpause(plr_r); } if (s.new_inter_pause != plr_i->pause) { if (s.new_inter_pause) xlplayer_pause(plr_i); else xlplayer_unpause(plr_i); } } if (!strcmp(action, "requestlevels")) { /* make logarithmic values for the peak levels */ s.str_l_peak_db = peak_to_log(peakfilter_read(str_pf_l)); s.str_r_peak_db = peak_to_log(peakfilter_read(str_pf_r)); /* set reply values for a totally blank signal */ s.str_l_rms_db = s.str_r_rms_db = 120; /* compute the rms values */ if (str_l_meansqrd) s.str_l_rms_db = (int) fabs(level2db(sqrt(str_l_meansqrd))); if (str_r_meansqrd) s.str_r_rms_db = (int) fabs(level2db(sqrt(str_r_meansqrd))); /* send the meter and other stats to the main app */ mic_stats_all(mics); /* forward any MIDI commands that have been queued since last time */ pthread_mutex_lock(&midi_mutex); s.midi_output[0]= '\0'; if (midi_nqueued>0) /* exclude leading `,`, include trailing `\0` */ memcpy(s.midi_output, midi_queue+1, midi_nqueued*sizeof(char)); midi_queue[0]= '\0'; midi_nqueued= 0; pthread_mutex_unlock(&midi_mutex); if (sig_recent_usr1()) s.session_command = "save_L1"; else { if (g.session_event_rb && jack_ringbuffer_read_space(g.session_event_rb) >= sizeof session_event) { jack_ringbuffer_read(g.session_event_rb, (char *)&session_event, sizeof session_event); switch (session_event->type) { case JackSessionSave: s.session_command = "save_JACK"; break; case JackSessionSaveAndQuit: s.session_command = "saveandquit_JACK"; break; case JackSessionSaveTemplate: s.session_command = "savetemplate_JACK"; } fprintf(g.out, "session_event=%p\n" "session_directory=%s\n" "session_uuid=%s\n", session_event, session_event->session_dir, session_event->client_uuid); } else s.session_command = ""; } lead = port_connection_count; if (lead - port_reports > UINT_MAX << 1) ports_diff = UINT_MAX - lead + port_reports + 1; /* handle wrap */ else ports_diff = lead - port_reports; xlplayer_stats_all(players); xlplayer_stats_all(plr_j); int effects = 0; for (struct xlplayer **p = plr_j_roster; *p; ++p) effects |= (*p)->id; if (effects == effects_active) effects = -1; // -1 for no change, UI can skip updating indicators else effects_active = effects; fprintf(g.out, "str_l_peak=%d\nstr_r_peak=%d\n" "str_l_rms=%d\nstr_r_rms=%d\n" "midi=%s\n" "session_command=%s\n" "ports_connections_changed=%d\n" "effects_playing=%d\n" "freewheel_mode=%d\n" "end\n", s.str_l_peak_db, s.str_r_peak_db, s.str_l_rms_db, s.str_r_rms_db, s.midi_output, s.session_command, ports_diff, effects, g.freewheel ); if (ports_diff) { port_reports += ports_diff; fprintf(stderr, "%d JACK port connection(s) changed\n", ports_diff); } /* tell the jack mixer it can reset its vu stats now */ reset_vu_stats_f = TRUE; fflush(g.out); } return TRUE; } idjc-0.8.16/c/xlplayer.c0000644000175000017500000011410712630014502011663 00000000000000/* # xlplayer.c: player decoder module for idjc # Copyright (C) 2006-2013 Stephen Fairchild (s-fairchild@users.sf.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include "gnusource.h" #include #include #include #include #include #include #include #include "ialloc.h" #include "xlplayer.h" #include "mp3dec.h" #include "dyn_mpg123.h" #include "oggdec.h" #include "flacdecode.h" #include "sndfiledecode.h" #include "avcodecdecode.h" #include "bsdcompat.h" #include "sig.h" #include "main.h" #define TRUE 1 #define FALSE 0 #define PBSPEED_INPUT_SAMPLE_SIZE 256 #define PBSPEED_INPUT_BUFFER_SIZE (PBSPEED_INPUT_SAMPLE_SIZE * sizeof (float)) typedef jack_default_audio_sample_t sample_t; int mpg123ok = FALSE; void xlplayer_mpg123_status() { #ifdef DYN_MPG123 mpg123ok = dyn_mpg123_init(); #else mpg123ok = TRUE; #endif fprintf(g.out, "%d\n", mpg123ok); fflush(g.out); } /* make_audio_to_float: convert the audio to the format used by jack and libsamplerate */ float *xlplayer_make_audio_to_float(struct xlplayer *self, float *buffer, uint8_t *data, int num_samples, int bits_per_sample, int num_channels) { int num_bytes; int i; uint32_t msb_mask; uint32_t neg_mask; uint32_t holder; uint32_t mult; float *fptr = buffer; float fscale; const float half_randmax = (float)(RAND_MAX >> 1); float dscale; msb_mask = 1UL << (bits_per_sample - 1); /* negative number detector */ neg_mask = (uint32_t)((~0UL) << (bits_per_sample)); /* negative number maker */ fscale = 1.0F/(float)msb_mask; /* multiplier to make the floating point range -1 to +1 */ dscale = 0.25F / half_randmax * fscale; if (bits_per_sample > 32) { memset(buffer, 0, sizeof (sample_t) * num_samples * num_channels); } else { while (num_samples--) { for (i = 0; i < num_channels; i++) { for (num_bytes = (bits_per_sample + 7) >> 3, mult = 1, holder = 0; num_bytes--; mult <<=8) { holder |= ((uint32_t)*data++) * mult; } if (holder & msb_mask) holder |= neg_mask; if (self->dither && bits_per_sample < 20) /* adds triangular dither */ *fptr++ = (((float)(int32_t)holder) * fscale) + (((((float)rand_r(&self->seed)) - half_randmax) + (((float)rand_r(&self->seed)) - half_randmax)) * dscale); else *fptr++ = ((float)((int32_t)holder)) * fscale; } } } return buffer; } /* get_next_gain: compute the gain of the next sample */ /* used to fade in the audio when not starting from the beginning */ sample_t xlplayer_get_next_gain(struct xlplayer *self) { return fade_get(self->fadein) * self->gain; } /* xlplayer_demux_channel_data: this is where down/upmixing is performed - audio split to 2 channels */ void xlplayer_demux_channel_data(struct xlplayer *self, sample_t *buffer, int num_samples, int num_channels, float scale) { int i; sample_t *lc, *rc, *src, gain; self->op_buffersize = num_samples * sizeof (sample_t); if ((!(self->leftbuffer = realloc(self->leftbuffer, self->op_buffersize))) && num_samples) { fprintf(stderr, "xlplayer: malloc failure"); exit(5); } if ((!(self->rightbuffer = realloc(self->rightbuffer, self->op_buffersize))) && num_samples) { fprintf(stderr, "xlplayer: malloc failure"); exit(5); } switch (num_channels) { case 0: break; /* this is a wtf case */ case 1: for (lc = self->leftbuffer, src = buffer, i = 0; i < num_samples; i++) { gain = xlplayer_get_next_gain(self); /* used for fade-in */ *lc++ = *src++ * gain * scale; } memcpy(self->rightbuffer, self->leftbuffer, self->op_buffersize); break; case 2: for (lc = self->leftbuffer, rc = self->rightbuffer, src = buffer, i = 0; i < num_samples; i++) { gain = xlplayer_get_next_gain(self); *lc++ = *src++ * gain * scale; /* stereo mix is a simple demultiplex job */ *rc++ = *src++ * gain * scale; } break; case 3: for (lc = self->leftbuffer, rc = self->rightbuffer, src = buffer, i = 0; i < num_samples; i++) { gain = xlplayer_get_next_gain(self) * 0.5F; *lc = (*src++) * gain * scale; /* do the left and right channels */ *rc = (*src++) * gain * scale; *(lc++) += (*src) *gain * scale; /* downmix the middle channel to the left and right one */ *(rc++) += (*src++) *gain * scale; } break; case 4: for (lc = self->leftbuffer, rc = self->rightbuffer, src = buffer, i = 0; i < num_samples; i++, src += 4) { gain = xlplayer_get_next_gain(self) * 0.5F; *lc++ = (src[0] + src[3]) * gain * scale; *rc++ = (src[2] + src[4]) * gain * scale; } break; case 5: for (lc = self->leftbuffer, rc = self->rightbuffer, src = buffer, i = 0; i < num_samples; i++, src += 5) { gain = xlplayer_get_next_gain(self) * 0.5F; *lc++ = (src[0] + src[3]) * gain * scale; /* this is for 4.1 channels with sub discarded */ *rc++ = (src[2] + src[4]) * gain * scale; } break; case 6: for (lc = self->leftbuffer, rc = self->rightbuffer, src = buffer, i = 0; i < num_samples; i++, src += 6) { gain = xlplayer_get_next_gain(self) * 0.33333333F; *lc++ = (src[0] + src[3] + src[4]) * gain * scale; /* this is for 5.1 channels */ *rc++ = (src[2] + src[4] + src[5]) * gain * scale; /* sub discarded */ } break; } } void xlplayer_write_channel_data(struct xlplayer *self) { u_int32_t samplecount; const float threshold = 0.003; float *lp, *rp; int sc; if (self->op_buffersize > jack_ringbuffer_write_space(self->right_ch)) { self->write_deferred = TRUE; /* prevent further accumulation of data that would clobber */ usleep(20000); } else { if (self->op_buffersize) { jack_ringbuffer_write(self->left_ch, (char *)self->leftbuffer, self->op_buffersize); jack_ringbuffer_write(self->right_ch, (char *)self->rightbuffer, self->op_buffersize); samplecount = self->op_buffersize / sizeof (sample_t); self->samples_written += samplecount; self->sleep_samples += samplecount; /* count cumulative silent samples */ for (sc = 0, lp = self->leftbuffer, rp = self->rightbuffer; samplecount--; ++lp, ++rp) { if (*lp > threshold || *rp > threshold) { sc = 0; self->silence = 0.0f; } else ++sc; } self->silence += (float)sc / self->samplerate; } self->write_deferred = FALSE; if (self->sleep_samples > 6000) { if (self->sleep_samples > 12000) usleep(20000); else usleep(10000); self->sleep_samples = 0; } } } /* xlplayer_update_progress_time_ms: a rather ugly calculator of where the play progress is up to */ static u_int32_t xlplayer_update_progress_time_ms(struct xlplayer *self) { int32_t rb_time_ms; /* the amount of time it would take to play all the samples in the buffer */ int32_t progress; rb_time_ms = (float)jack_ringbuffer_read_space(self->right_ch) / sizeof (sample_t) * 1000.0f / self->samplerate; progress = self->samples_written * 1000.0f / self->samplerate - rb_time_ms + self->seek_s * 1000.0f; if (progress >= 0) return self->play_progress_ms = progress; else return self->play_progress_ms = 0; } static char *get_extension(char *pathname) { char *p, *extension; if (!(p = strrchr(pathname, '.'))) { fprintf(stderr, "get_extension: failed to find a file extension delineator '.'\n"); return strdup(""); } extension = p = strdup(p + 1); while (*p) { char c = tolower(*p); *p++ = c; } return extension; } static void xlplayer_command(struct xlplayer *self, enum command_t new_command) { pthread_mutex_lock(&self->command_mutex); self->command = new_command; pthread_cond_signal(&self->command_cv); pthread_mutex_unlock(&self->command_mutex); while (self->command) usleep(10000); } static void *xlplayer_main(struct xlplayer *self) { char *extension; sig_mask_thread(); for(self->up = TRUE; self->command != CMD_THREADEXIT; self->watchdog_timer = 0) { switch (self->command) { case CMD_COMPLETE: break; case CMD_PLAY: self->playmode = PM_INITIATE; break; case CMD_PLAYMANY: self->pathname = self->playlist[self->playlistindex = 0]; self->playmode = PM_INITIATE; break; case CMD_EJECT: if (self->playmode != PM_STOPPED) self->playmode = PM_EJECTING; else { xlplayer_set_fadesteps(self, self->fade_mode); self->jack_flush = TRUE; while (self->jack_is_flushed == 0 && *(self->jack_shutdown_f) == FALSE) usleep(10000); self->jack_is_flushed = 0; self->command = CMD_COMPLETE; } break; case CMD_CLEANUP: if (self->playlist) free(self->playlist); self->command = CMD_THREADEXIT; case CMD_THREADEXIT: continue; } switch (self->playmode) { case PM_STOPPED: pthread_mutex_lock(&self->command_mutex); while (self->command == CMD_COMPLETE) pthread_cond_wait(&self->command_cv, &self->command_mutex); pthread_mutex_unlock(&self->command_mutex); continue; case PM_INITIATE: self->initial_audio_context = -1; /* pre-select failure return code */ xlplayer_set_fadesteps(self, self->fade_mode); extension = get_extension(self->pathname); if ( ((!strcmp(extension, "ogg") || !strcmp(extension, "oga")) && oggdecode_reg(self)) #ifdef HAVE_SPEEX || (!strcmp(extension, "spx") && oggdecode_reg(self)) #endif #ifdef HAVE_OPUS || (!strcmp(extension, "opus") && oggdecode_reg(self)) #endif #ifdef HAVE_FLAC || (!strcmp(extension, "flac") && flacdecode_reg(self)) #endif || ((!strcmp(extension, "wav") || !strcmp(extension, "au") || !strcmp(extension, "aiff")) && sndfiledecode_reg(self)) #ifdef HAVE_LIBAV || ((!strcmp(extension, "aac") || !strcmp(extension, "m4a") || !strcmp(extension, "mp4") || !strcmp(extension, "m4b") || !strcmp(extension, "m4p") || !strcmp(extension, "wma") || !strcmp(extension, "avi") || !strcmp(extension, "mpc") || !strcmp(extension, "ape")) && avcodecdecode_reg(self)) #endif /* HAVE_LIBAV */ || ((!strcmp(extension, "mp3") || (!strcmp(extension, "mp2"))) && mpg123ok && mp3decode_reg(self)) ) { self->playmode = PM_PLAYING; self->play_progress_ms = 0; self->write_deferred = 0; self->pause = 0; self->samples_written = 0; self->sleep_samples = 0; fade_set(self->fadein, (self->seek_s || self->fade_mode) ? FADE_SET_LOW : FADE_SET_HIGH, -1.0f, FADE_IN); self->silence = 0.0f; self->dec_init(self); if (self->command != CMD_COMPLETE) ++self->current_audio_context; self->initial_audio_context = self->current_audio_context; } else self->playmode = PM_STOPPED; self->command = CMD_COMPLETE; free(extension); break; case PM_PLAYING: if (self->write_deferred) xlplayer_write_channel_data(self); else self->dec_play(self); break; case PM_FLUSH: if (self->write_deferred) xlplayer_write_channel_data(self); else self->playmode = PM_EJECTING; break; case PM_EJECTING: xlplayer_set_fadesteps(self, self->fade_mode); self->dec_eject(self); if (self->playlistmode) { if (self->command != CMD_EJECT) { /* implements the internal playlist here */ if (++self->playlistindex == self->playlistsize && self->loop) self->playlistindex = 0; /* perform looparound if relevant */ if (self->playlistindex < self->playlistsize) /* check for non end of playlist */ { self->pathname = self->playlist[self->playlistindex]; self->playmode = PM_INITIATE; continue; } } else while (self->playlistsize--) free(self->playlist[self->playlistsize]); } ++self->current_audio_context; self->playmode = PM_STOPPED; break; } } self->command = CMD_COMPLETE; return 0; } /* callback functions for feeding the playback speed resampler */ static long conv_l_read(void *cb_data, float **audiodata) { struct xlplayer *self = (struct xlplayer *)cb_data; if (self->pbs_exchange == 0) /* used to maintain mapping of input buffers after a swap */ { /* try and get at least PBSPEED_INPUT_SAMPLE_SIZE samples */ self->pbs_norm_read_qty = jack_ringbuffer_read_space(self->right_ch) / sizeof (sample_t); if (self->pbs_norm_read_qty > PBSPEED_INPUT_SAMPLE_SIZE) self->pbs_norm_read_qty = PBSPEED_INPUT_SAMPLE_SIZE; jack_ringbuffer_read(self->left_ch, (char *)self->pbsrb_l, self->pbs_norm_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_l; return self->pbs_norm_read_qty; } else { self->pbs_fade_read_qty = jack_ringbuffer_read_space(self->left_fade) / sizeof (sample_t); if (self->pbs_fade_read_qty > PBSPEED_INPUT_SAMPLE_SIZE) self->pbs_fade_read_qty = PBSPEED_INPUT_SAMPLE_SIZE; jack_ringbuffer_read(self->left_fade, (char *)self->pbsrb_lf, self->pbs_fade_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_lf; return self->pbs_fade_read_qty; } } static long conv_r_read(void *cb_data, float **audiodata) { struct xlplayer *self = (struct xlplayer *)cb_data; if (self->pbs_exchange == 0) { jack_ringbuffer_read(self->right_ch, (char *)self->pbsrb_r, self->pbs_norm_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_r; return self->pbs_norm_read_qty; } else { jack_ringbuffer_read(self->right_fade, (char *)self->pbsrb_rf, self->pbs_fade_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_rf; return self->pbs_fade_read_qty; } } static long conv_lf_read(void *cb_data, float **audiodata) { struct xlplayer *self = (struct xlplayer *)cb_data; if (self->pbs_exchange == 0) { self->pbs_fade_read_qty = jack_ringbuffer_read_space(self->left_fade) / sizeof (sample_t); if (self->pbs_fade_read_qty > PBSPEED_INPUT_SAMPLE_SIZE) self->pbs_fade_read_qty = PBSPEED_INPUT_SAMPLE_SIZE; jack_ringbuffer_read(self->left_fade, (char *)self->pbsrb_lf, self->pbs_fade_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_lf; return self->pbs_fade_read_qty; } else { self->pbs_norm_read_qty = jack_ringbuffer_read_space(self->right_ch) / sizeof (sample_t); if (self->pbs_norm_read_qty > PBSPEED_INPUT_SAMPLE_SIZE) self->pbs_norm_read_qty = PBSPEED_INPUT_SAMPLE_SIZE; jack_ringbuffer_read(self->left_ch, (char *)self->pbsrb_l, self->pbs_norm_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_l; return self->pbs_norm_read_qty; } } static long conv_rf_read(void *cb_data, float **audiodata) { struct xlplayer *self = (struct xlplayer *)cb_data; if (self->pbs_exchange == 0) { jack_ringbuffer_read(self->right_fade, (char *)self->pbsrb_rf, self->pbs_fade_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_rf; return self->pbs_fade_read_qty; } else { jack_ringbuffer_read(self->right_ch, (char *)self->pbsrb_r, self->pbs_norm_read_qty * sizeof (sample_t)); *audiodata = self->pbsrb_r; return self->pbs_norm_read_qty; } } struct xlplayer *xlplayer_create(int samplerate, double duration, char *playername, sig_atomic_t *shutdown_f, int *vol_c, float vol_scale, int *strmute_c, int *audmute_c, float cutoff_s) { struct xlplayer *self; int error; const float minlevel = 1.0f/10000.0f; if (!(self = calloc(1, sizeof (struct xlplayer)))) { fprintf(stderr, "xlplayer: malloc failure"); exit(5); } self->rbsize = (int)(duration * samplerate) << 2; self->rbdelay = (int)(duration * 1000); self->samples_cutoff = samplerate * cutoff_s; if (!(self->left_ch = jack_ringbuffer_create(self->rbsize))) { fprintf(stderr, "xlplayer: ringbuffer creation failure"); exit(5); } if (!(self->right_ch = jack_ringbuffer_create(self->rbsize))) { fprintf(stderr, "xlplayer: ringbuffer creation failure"); exit(5); } if (!(self->left_fade = jack_ringbuffer_create(self->rbsize))) { fprintf(stderr, "xlplayer: ringbuffer creation failure"); exit(5); } if (!(self->right_fade = jack_ringbuffer_create(self->rbsize))) { fprintf(stderr, "xlplayer: ringbuffer creation failure"); exit(5); } if (!(self->pbspeed_conv_l = src_callback_new(conv_l_read, SRC_LINEAR, 1, &error, self))) { fprintf(stderr, "xlplayer: playback speed converter initialisation failure"); exit(5); } if (!(self->pbspeed_conv_r = src_callback_new(conv_r_read, SRC_LINEAR, 1, &error, self))) { fprintf(stderr, "xlplayer: playback speed converter initialisation failure"); exit(5); } if (!(self->pbspeed_conv_lf = src_callback_new(conv_lf_read, SRC_LINEAR, 1, &error, self))) { fprintf(stderr, "xlplayer: playback speed converter initialisation failure"); exit(5); } if (!(self->pbspeed_conv_rf = src_callback_new(conv_rf_read, SRC_LINEAR, 1, &error, self))) { fprintf(stderr, "xlplayer: playback speed converter initialisation failure"); exit(5); } if (pthread_mutex_init(&(self->dynamic_metadata.meta_mutex), NULL)) { fprintf(stderr, "xlplayer: failed initialising metadata_mutex\n"); exit(5); } self->fadein = fade_init(samplerate, minlevel); self->fadeout = fade_init(samplerate, minlevel); self->pbsrb_l = malloc(PBSPEED_INPUT_BUFFER_SIZE); self->pbsrb_r = malloc(PBSPEED_INPUT_BUFFER_SIZE); self->pbsrb_lf = malloc(PBSPEED_INPUT_BUFFER_SIZE); self->pbsrb_rf = malloc(PBSPEED_INPUT_BUFFER_SIZE); if (!(self->pbsrb_l && self->pbsrb_r && self->pbsrb_lf && self->pbsrb_rf)) { fprintf(stderr, "xlplayer: playback speed converter input buffer initialisation failure\n"); exit(5); } self->playername = playername; self->cf_l_gain = self->cf_r_gain = 1.0f; self->seed = 17234; self->samplerate = samplerate; self->jack_shutdown_f = shutdown_f; self->command = CMD_COMPLETE; self->playmode = PM_STOPPED; self->dynamic_metadata.data_type = DM_NONE_NEW; smoothing_volume_init(&self->volume, vol_c, vol_scale); smoothing_mute_init(&self->mute_str, strmute_c); smoothing_mute_init(&self->mute_aud, audmute_c); pthread_mutex_init(&self->command_mutex, NULL); pthread_cond_init(&self->command_cv, NULL); pthread_create(&self->thread, NULL, (void *(*)(void *)) xlplayer_main, self); while (self->up == FALSE) usleep(10000); return self; } void xlplayer_destroy(struct xlplayer *self) { if (self) { xlplayer_command(self, CMD_CLEANUP); pthread_join(self->thread, NULL); pthread_cond_destroy(&self->command_cv); pthread_mutex_destroy(&self->command_mutex); pthread_mutex_destroy(&(self->dynamic_metadata.meta_mutex)); ifree(self->lcb); ifree(self->rcb); ifree(self->lcfb); ifree(self->rcfb); free(self->pbsrb_l); free(self->pbsrb_r); free(self->pbsrb_lf); free(self->pbsrb_rf); fade_destroy(self->fadein); fade_destroy(self->fadeout); src_delete(self->pbspeed_conv_l); src_delete(self->pbspeed_conv_r); src_delete(self->pbspeed_conv_lf); src_delete(self->pbspeed_conv_rf); jack_ringbuffer_free(self->left_ch); jack_ringbuffer_free(self->right_ch); jack_ringbuffer_free(self->left_fade); jack_ringbuffer_free(self->right_fade); free(self); } } int xlplayer_play(struct xlplayer *self, char *pathname, int seek_s, int size, float gain_db, int id) { xlplayer_eject(self); self->pathname = pathname; self->gain = pow(10.0, gain_db / 20.0); self->seek_s = seek_s; self->size = size; self->id = 1 << id; self->loop = FALSE; self->usedelay = FALSE; self->playlistmode = FALSE; xlplayer_command(self, CMD_PLAY); return self->initial_audio_context; } int xlplayer_playmany(struct xlplayer *self, char *playlist, int loop_f) { char *start = playlist, *end; int payloadlen, i; xlplayer_eject(self); /* this is where we parse the playlist starting with getting the number of entries */ while (*start++ != '#'); start[-1] = '\0'; self->playlistsize = atoi(playlist); /* generate an array of pointers to point to the playlist entries which must be a copy */ if (!(self->playlist = realloc(self->playlist, self->playlistsize * sizeof (char *)))) { fprintf(stderr, "xlplayer: malloc failure\n"); exit(5); } /* now we parse the playlist entries */ for (i = 0; *start++ == 'd'; i++) { for (end = start; *end != ':'; end++); *end = '\0'; payloadlen = atoi(start); start = end + 1; end = start + payloadlen; if ((self->playlist[i] = malloc(payloadlen + 1))) { memcpy(self->playlist[i], start, payloadlen); self->playlist[i][payloadlen] = '\0'; } else { fprintf(stderr, "xlplayer: malloc failure\n"); exit(5); } start = end; } self->gain = 1.0; self->seek_s = 0; self->loop = loop_f; self->playlistmode = TRUE; xlplayer_command(self, CMD_PLAYMANY); return self->initial_audio_context; } int xlplayer_play_noflush(struct xlplayer *self, char *pathname, int seek_s, int size, float gain_db, int id) { self->noflush = TRUE; xlplayer_eject(self); self->pathname = pathname; self->gain = pow(10.0, gain_db / 20.0); self->seek_s = seek_s; self->size = size; self->id = 1 << id; self->loop = FALSE; self->playlistmode = FALSE; xlplayer_command(self, CMD_PLAY); self->noflush = FALSE; return self->initial_audio_context; } void xlplayer_pause(struct xlplayer *self) { self->pause = TRUE; } void xlplayer_unpause(struct xlplayer *self) { self->pause = FALSE; } void xlplayer_dither(struct xlplayer *self, int dither_f) { self->dither = dither_f; } void xlplayer_eject(struct xlplayer *self) { if (!self->fadeout_f) xlplayer_pause(self); xlplayer_command(self, CMD_EJECT); } void xlplayer_set_fadesteps(struct xlplayer *self, int fade_mode) { static float a[] = {1.0f, 5.0f, 10.0f, 0.1f, 0.05f}; static float b[] = {0.05f, 5.0f, 10.0f, 0.0f, 0.05f}; fade_set(self->fadeout, FADE_SET_SAME, a[fade_mode], FADE_DIRECTION_UNCHANGED); fade_set(self->fadein, FADE_SET_SAME, b[fade_mode], FADE_DIRECTION_UNCHANGED); } /* version supporting playback speed variance */ size_t read_from_player_sv(struct xlplayer *self, sample_t *left_buf, sample_t *right_buf, sample_t *left_fbuf, sample_t *right_fbuf, jack_nframes_t nframes) { jack_ringbuffer_t *swap; SRC_STATE *pbs_swap; float *pbsrb_swap; size_t todo = 0, ftodo = 0; if (self->jack_flush) { if (self->noflush == FALSE) { if (self->pause == 0) { /* perform the exchange of handles for the purpose of fading out the remaining buffer contents */ /* exchange speed converter handles */ pbs_swap = self->pbspeed_conv_l; self->pbspeed_conv_l = self->pbspeed_conv_lf; self->pbspeed_conv_lf = pbs_swap; pbs_swap = self->pbspeed_conv_r; self->pbspeed_conv_r = self->pbspeed_conv_rf; self->pbspeed_conv_rf = pbs_swap; /* exchange speed converter input buffers */ pbsrb_swap = self->pbsrb_l; self->pbsrb_l = self->pbsrb_lf; self->pbsrb_lf = pbsrb_swap; pbsrb_swap = self->pbsrb_r; self->pbsrb_r = self->pbsrb_rf; self->pbsrb_rf = pbsrb_swap; self->pbs_exchange = !self->pbs_exchange; /* exchange ring buffers */ swap = self->left_ch; self->left_ch = self->left_fade; self->left_fade = swap; swap = self->right_ch; self->right_ch = self->right_fade; self->right_fade = swap; /* initialisations for fade */ fade_set(self->fadeout, FADE_SET_HIGH, -1.0f, FADE_OUT); } /* buffer flushing */ src_reset(self->pbspeed_conv_l); src_reset(self->pbspeed_conv_r); jack_ringbuffer_reset(self->left_ch); jack_ringbuffer_reset(self->right_ch); } self->jack_is_flushed = 1; self->jack_flush = 0; self->pause = 0; } if (self->pause == 0) { if (self->pbspeed != self->newpbspeed) { self->pbspeed = self->newpbspeed; src_set_ratio(self->pbspeed_conv_l, self->pbspeed); /* bug workaround for libsamplerate 0.1.2 */ src_set_ratio(self->pbspeed_conv_r, self->pbspeed); src_set_ratio(self->pbspeed_conv_lf, self->pbspeed); src_set_ratio(self->pbspeed_conv_rf, self->pbspeed); } /* the number of samples in the ring buffer used when calculating play progress */ /* samples stored in the resampler are not worth the bother of accounting for */ self->avail = jack_ringbuffer_read_space(self->right_ch) / sizeof (sample_t); /* read data from playback speed resampler */ todo = src_callback_read(self->pbspeed_conv_l, self->pbspeed, nframes, left_buf); src_callback_read(self->pbspeed_conv_r, self->pbspeed, todo, right_buf); memset(left_buf + self->avail, 0, (nframes - todo) * sizeof (sample_t)); memset(right_buf + self->avail, 0, (nframes - todo) * sizeof (sample_t)); /* read fade data from playback speed resampler */ if (left_fbuf && right_fbuf) { ftodo = src_callback_read(self->pbspeed_conv_lf, self->pbspeed, nframes, left_fbuf); src_callback_read(self->pbspeed_conv_rf, self->pbspeed, ftodo, right_fbuf); memset(left_fbuf + ftodo, 0, (nframes - ftodo) * sizeof (sample_t)); memset(right_fbuf + ftodo, 0, (nframes - ftodo) * sizeof (sample_t)); } self->have_data_f = todo > 0; } else { memset(left_buf, 0, nframes * sizeof (sample_t)); memset(right_buf, 0, nframes * sizeof (sample_t)); if (left_fbuf && right_fbuf) { memset(left_fbuf, 0, nframes * sizeof (sample_t)); memset(right_fbuf, 0, nframes * sizeof (sample_t)); } } xlplayer_update_progress_time_ms(self); return todo; } /* version not supporting playback speed variance but uses less CPU */ size_t read_from_player(struct xlplayer *self, sample_t *left_buf, sample_t *right_buf, sample_t *left_fbuf, sample_t *right_fbuf, jack_nframes_t nframes) { jack_ringbuffer_t *swap; size_t todo, favail, ftodo; if (self->jack_flush) { if (self->noflush == FALSE) { if (self->pause == 0) { swap = self->left_ch; self->left_ch = self->left_fade; self->left_fade = swap; swap = self->right_ch; self->right_ch = self->right_fade; self->right_fade = swap; fade_set(self->fadeout, FADE_SET_HIGH, -1.0f, FADE_OUT); } jack_ringbuffer_reset(self->left_ch); jack_ringbuffer_reset(self->right_ch); } self->jack_is_flushed = 1; self->jack_flush = 0; self->pause = 0; } self->avail = jack_ringbuffer_read_space(self->right_ch) / sizeof (sample_t); todo = (self->avail > nframes ? nframes : self->avail); favail = jack_ringbuffer_read_space(self->right_fade) / sizeof (sample_t); ftodo = (favail > nframes ? nframes : favail); if (self->pause == 0) { /* fill the frame with whatever data is available, then pad as needed with zeroes */ jack_ringbuffer_read(self->left_ch, (char *)left_buf, todo * sizeof (sample_t)); memset(left_buf + todo, 0, (nframes - todo) * sizeof (sample_t)); jack_ringbuffer_read(self->right_ch, (char *)right_buf, todo * sizeof (sample_t)); memset(right_buf + todo, 0, (nframes - todo) * sizeof (sample_t)); if (left_fbuf && right_fbuf) { jack_ringbuffer_read(self->left_fade, (char *)left_fbuf, ftodo * sizeof (sample_t)); memset(left_fbuf + ftodo, 0, (nframes - ftodo) * sizeof (sample_t)); jack_ringbuffer_read(self->right_fade, (char *)right_fbuf, ftodo * sizeof (sample_t)); memset(right_fbuf + ftodo, 0, (nframes - ftodo) * sizeof (sample_t)); } if (!(self->have_data_f = todo > 0) && self->command == CMD_COMPLETE && self->playmode == PM_STOPPED) self->id = 0; } else { memset(left_buf, 0, nframes * sizeof (sample_t)); memset(right_buf, 0, nframes * sizeof (sample_t)); if (left_fbuf && right_fbuf) { memset(left_fbuf, 0, nframes * sizeof (sample_t)); memset(right_fbuf, 0, nframes * sizeof (sample_t)); } } xlplayer_update_progress_time_ms(self); return (todo > ftodo) ? todo : ftodo; } int xlplayer_calc_rbdelay(struct xlplayer *xlplayer) { return jack_ringbuffer_read_space(xlplayer->left_ch) * 1000 / (sizeof (sample_t) * xlplayer->samplerate); } void xlplayer_set_dynamic_metadata(struct xlplayer *xlplayer, enum metadata_t type, char *artist, char *title, char *album, int delay) { struct xlp_dynamic_metadata *dm = &(xlplayer->dynamic_metadata); pthread_mutex_lock(&(dm->meta_mutex)); dm->data_type = type; if (dm->artist) free(dm->artist); if (dm->title) free(dm->title); if (dm->album) free(dm->album); dm->artist = strdup(artist); dm->title = strdup(title); dm->album = strdup(album); dm->current_audio_context = xlplayer->current_audio_context; dm->rbdelay = delay; pthread_mutex_unlock(&(dm->meta_mutex)); } void xlplayer_buffer_alloc(struct xlplayer *self, jack_nframes_t nframes) { self->lcb = irealloc(self->lcb, nframes); self->rcb = irealloc(self->rcb, nframes); self->lcfb = irealloc(self->lcfb, nframes); self->rcfb = irealloc(self->rcfb, nframes); } void xlplayer_buffer_alloc_all(struct xlplayer **list, jack_nframes_t nframes) { while (*list) xlplayer_buffer_alloc(*list++, nframes); } size_t xlplayer_read_start(struct xlplayer *self, jack_nframes_t nframes) { size_t samples_read; self->lcp = self->lcb; self->rcp = self->rcb; self->lcfp = self->lcfb; self->rcfp = self->rcfb; if (self->use_sv) samples_read = read_from_player_sv(self, self->lcb, self->rcb, self->lcfb, self->rcfb, nframes); else samples_read = read_from_player(self, self->lcb, self->rcb, self->lcfb, self->rcfb, nframes); return samples_read; } void xlplayer_read_start_all(struct xlplayer **list, jack_nframes_t nframes, struct xlplayer **roster) { while (*list) if (xlplayer_read_start(*list++, nframes)) *roster++ = list[-1]; *roster = NULL; } void xlplayer_read_next(struct xlplayer *self) { float fade_level = fade_get(self->fadeout); float abs; if ((abs = fabsf(*self->lcp)) > self->peak) self->peak = abs; if ((abs = fabsf(*self->rcp)) > self->peak) self->peak = abs; self->ls = *self->lcp++ + *self->lcfp++ * fade_level; self->rs = *self->rcp++ + *self->rcfp++ * fade_level; } void xlplayer_read_next_all(struct xlplayer **list) { while (*list) xlplayer_read_next(*list++); } void xlplayer_levels(struct xlplayer *self) { self->ls_aud = self->ls * self->volume.level * self->mute_aud.level * (self->cf_aud ? self->cf_l_gain : 1.0f); self->rs_aud = self->rs * self->volume.level * self->mute_aud.level * (self->cf_aud ? self->cf_r_gain : 1.0f); self->ls_str = self->ls * self->volume.level * self->mute_str.level * self->cf_l_gain; self->rs_str = self->rs * self->volume.level * self->mute_str.level * self->cf_r_gain; } void xlplayer_levels_all(struct xlplayer **list) { while (*list) xlplayer_levels(*list++); } void xlplayer_smoothing_process(struct xlplayer *self) { smoothing_volume_process(&self->volume); smoothing_mute_process(&self->mute_str); smoothing_mute_process(&self->mute_aud); } void xlplayer_smoothing_process_all(struct xlplayer **list) { while (*list) xlplayer_smoothing_process(*list++); } void xlplayer_stats(struct xlplayer *self) { char prefix[20]; struct xlp_dynamic_metadata *dm = &self->dynamic_metadata; snprintf(prefix, 20, "%s_", self->playername); #define PREFIX() fputs(prefix, g.out) PREFIX(); fprintf(g.out, "elapsed=%d\n", self->play_progress_ms / 1000); PREFIX(); fprintf(g.out, "playing=%d\n", self->have_data_f | (self->current_audio_context & 0x1)); PREFIX(); fprintf(g.out, "signal=%d\n", self->peak > 0.001F || self->peak < 0.0F || self->pause); PREFIX(); fprintf(g.out, "cid=%d\n", self->current_audio_context); PREFIX(); fprintf(g.out, "audio_runout=%d\n", self->avail < self->samples_cutoff && (!(self->current_audio_context & 0x1))); PREFIX(); fprintf(g.out, "silence=%f\n", self->silence); self->peak = 0.0f; if (dm->data_type) { pthread_mutex_lock(&(dm->meta_mutex)); fprintf(stderr, "new dynamic metadata\n"); if (dm->data_type != DM_JOINED_UC) { PREFIX(); fprintf(g.out, "new_metadata=d%d:%dd%d:%sd%d:%sd%d:%sd9:%09dd9:%09dx\n", (int)log10(dm->data_type) + 1, dm->data_type, (int)strlen(dm->artist), dm->artist, (int)strlen(dm->title), dm->title, (int)strlen(dm->album), dm->album, dm->current_audio_context, dm->rbdelay); } else { fprintf(stderr, "send_metadata_update: utf16 chapter info not supported\n"); } dm->data_type = DM_NONE_NEW; pthread_mutex_unlock(&(dm->meta_mutex)); } #undef PREFIX } void xlplayer_stats_all(struct xlplayer **list) { while (*list) xlplayer_stats(*list++); } idjc-0.8.16/c/sndfileinfo.c0000644000175000017500000000345512630014502012326 00000000000000/* # sndfileinfo.c: Provide information on wav files # Copyright (C) 2006 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include "sndfileinfo.h" #include "main.h" int sndfileinfo(char *pathname) { SF_INFO sfinfo; SNDFILE *handle; const char *artist, *title, *album; if (!(handle = sf_open(pathname, SFM_READ, &sfinfo))) { fprintf(stderr, "sndfileinfo failed to open file %s\n", pathname); return 0; } artist = sf_get_string(handle, SF_STR_ARTIST); title = sf_get_string(handle, SF_STR_TITLE); album = sf_get_string(handle, SF_STR_ALBUM); fprintf(g.out, "idjcmixer: sndfileinfo length=%f\n", (float)sfinfo.frames / sfinfo.samplerate); if (artist && title) { fprintf(g.out, "idjcmixer: sndfileinfo artist=%s\n", artist); fprintf(g.out, "idjcmixer: sndfileinfo title=%s\n", title); if (album) fprintf(g.out, "idjcmixer: sndfileinfo album=%s\n", album); } fprintf(g.out, "idjcmixer: sndfileinfo end\n"); sf_close(handle); fflush(g.out); return 1; } idjc-0.8.16/c/sndfiledecode.h0000644000175000017500000000177712630014502012630 00000000000000/* # sndfiledecode.h: decodes wav file format for xlplayer # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "xlplayer.h" struct sndfiledecode_vars { float *flbuf; int resample; SNDFILE *sndfile; SF_INFO sf_info; }; int sndfiledecode_reg(struct xlplayer *xlplayer); idjc-0.8.16/c/sourceclient.c0000644000175000017500000002141312631627551012536 00000000000000/* # sourceclient.c: the streaming module of idjc # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #include #include #include #include #include #include #include "sourceclient.h" #include "kvpparse.h" #include "live_ogg_encoder.h" #include "avcodec_encoder.h" #include "sig.h" #include "main.h" static int threads_up; static void threads_init(struct threads_info *ti) { int i; ti->n_encoders = atoi(getenv("num_encoders")); ti->n_streamers = atoi(getenv("num_streamers")); ti->n_recorders = atoi(getenv("num_recorders")); ti->encoder = calloc(ti->n_encoders, sizeof (struct encoder *)); ti->streamer = calloc(ti->n_streamers, sizeof (struct streamer *)); ti->recorder = calloc(ti->n_recorders, sizeof (struct recorder *)); if (!(ti->encoder && ti->streamer && ti->recorder)) { fprintf(stderr, "threads_init: malloc failure\n"); exit(5); } for (i = 0; i < ti->n_encoders; i++) if (!(ti->encoder[i] = encoder_init(ti, i))) { fprintf(stderr, "threads_init: encoder initialisation failed\n"); exit(5); } for (i = 0; i < ti->n_streamers; i++) if (!(ti->streamer[i] = streamer_init(ti, i))) { fprintf(stderr, "threads_init: streamer initialisation failed\n"); exit(5); } for (i = 0; i < ti->n_recorders; i++) if (!(ti->recorder[i] = recorder_init(ti, i))) { fprintf(stderr, "threads_init: recorder initialisation failed\n"); exit(5); } if (!(ti->audio_feed = audio_feed_init(ti))) { fprintf(stderr, "threads_init: audio feed initialisation failed\n"); exit(5); } fprintf(stderr, "started %d encoders, %d streamers, %d recorders\n", ti->n_encoders, ti->n_streamers, ti->n_recorders); threads_up = TRUE; } static void threads_shutdown(struct threads_info *ti) { int i; if (threads_up) { for (i = 0; i < ti->n_recorders; i++) recorder_destroy(ti->recorder[i]); for (i = 0; i < ti->n_streamers; i++) streamer_destroy(ti->streamer[i]); for (i = 0; i < ti->n_encoders; i++) encoder_destroy(ti->encoder[i]); free(ti->recorder); free(ti->streamer); free(ti->encoder); audio_feed_destroy(ti->audio_feed); } } static int get_report(struct threads_info *ti, struct universal_vars *uv, void *other) { if (!strcmp(uv->dev_type, "streamer")) { if (uv->tab >= 0 && uv->tab < ti->n_streamers) return streamer_make_report(ti->streamer[uv->tab]); fprintf(stderr, "get_report: streamer %s does not exist\n", uv->tab_id); return FAILED; } if (!strcmp(uv->dev_type, "recorder")) { if (uv->tab >= 0 && uv->tab < ti->n_recorders) return recorder_make_report(ti->recorder[uv->tab]); fprintf(stderr, "get_report: recorder %s does not exist\n", uv->tab_id); return FAILED; } if (!strcmp(uv->dev_type, "encoder")) return FAILED; fprintf(stderr, "get_report: unhandled dev_type %s\n", uv->dev_type); return FAILED; } static int command_parse(struct commandmap *map, struct threads_info *ti, struct universal_vars *uv) { for (; map->key; map++) if (!(strcmp(uv->command, map->key))) { if (uv->tab_id) uv->tab = atoi(uv->tab_id); return map->function(ti, uv, map->other_parameter); } fprintf(stderr, "command_parse: unhandled command %s\n", uv->command); return FAILED; } void comms_send(char *message) { fprintf(g.out, "idjcsc: %s\n", message); fflush(g.out); } static struct threads_info ti; static struct encoder_vars ev; static struct streamer_vars sv; static struct recorder_vars rv; static struct universal_vars uv; static struct kvpdict kvpdict[] = { { "encode_source", &ev.encode_source, NULL }, /* encoder_vars */ { "samplerate", &ev.samplerate, NULL }, { "resample_quality", &ev.resample_quality, NULL }, { "family", &ev.family, NULL }, { "codec", &ev.codec, NULL }, { "bitrate", &ev.bitrate, NULL }, { "variability", &ev.variability, NULL }, { "bitwidth", &ev.bitwidth, NULL }, { "mode", &ev.mode, NULL }, { "metadata_mode", &ev.metadata_mode, NULL }, { "standard", &ev.standard, NULL }, { "pregain", &ev.pregain, NULL }, { "postgain", &ev.postgain, NULL }, { "quality", &ev.quality, NULL }, { "complexity", &ev.complexity, NULL }, { "framesize", &ev.framesize, NULL }, { "filename", &ev.filename, NULL }, { "offset", &ev.offset, NULL }, { "custom_meta", &ev.custom_meta, NULL }, { "artist", &ev.artist, NULL }, { "title", &ev.title, NULL }, { "album", &ev.album, NULL }, { "stream_source", &sv.stream_source, NULL }, /* streamer_vars */ { "server_type", &sv.server_type, NULL }, { "host", &sv.host, NULL }, { "port", &sv.port, NULL }, { "mount", &sv.mount, NULL }, { "login", &sv.login, NULL }, { "password", &sv.password, NULL }, { "useragent", &sv.useragent, NULL }, { "dj_name", &sv.dj_name, NULL }, { "listen_url", &sv.listen_url, NULL }, { "description", &sv.description, NULL }, { "genre", &sv.genre, NULL }, { "irc", &sv.irc, NULL }, { "aim", &sv.aim, NULL }, { "icq", &sv.icq, NULL }, { "tls", &sv.tls, NULL }, { "ca_directory", &sv.ca_dir, NULL }, { "ca_file", &sv.ca_file, NULL }, { "client_cert", &sv.client_cert, NULL }, { "make_public", &sv.make_public, NULL }, { "record_source", &rv.record_source, NULL }, /* recorder_vars */ { "record_filename", &rv.record_filename, NULL }, { "record_folder", &rv.record_folder, NULL }, { "pause_button", &rv.pause_button, NULL }, { "command", &uv.command, NULL}, { "dev_type", &uv.dev_type, NULL}, { "tab_id", &uv.tab_id, NULL}, { NULL, NULL, NULL } }; static struct commandmap commandmap[] = { { "jack_samplerate_request", audio_feed_jack_samplerate_request, NULL }, { "encoder_lame_availability", encoder_init_lame, NULL}, { "encoder_aac_availability", live_avcodec_encoder_aac_functionality, NULL}, { "get_report", get_report, NULL }, { "encoder_start", encoder_start, &ev }, { "encoder_stop", encoder_stop, NULL }, { "encoder_update", encoder_update, &ev }, { "new_song_metadata", encoder_new_song_metadata, &ev }, { "new_custom_metadata", encoder_new_custom_metadata, &ev }, { "recorder_start", recorder_start, &rv }, { "recorder_stop", recorder_stop, NULL }, { "recorder_pause", recorder_pause, &rv }, { "recorder_unpause", recorder_unpause, &rv }, { "server_connect", streamer_connect, &sv }, { "server_disconnect", streamer_disconnect, NULL }, { "initiate_fade", encoder_initiate_fade, NULL }, { NULL, NULL, NULL } }; static void sourceclient_cleanup() { threads_shutdown(&ti); kvp_free_dict(kvpdict); } void sourceclient_init() { sig_init(); setenv("LC_ALL", "C", 1); setlocale(LC_ALL, "C"); srand(time(NULL)); threads_init(&ti); atexit(sourceclient_cleanup); } int sourceclient_main() { if (!kvp_parse(kvpdict, g.in)) return FALSE; if (uv.command && command_parse(commandmap, &ti, &uv)) comms_send("succeeded"); else { fprintf(stderr, "command failed for command: %s\n", uv.command); comms_send("failed"); } if (uv.command) { free(uv.command); uv.command = NULL; } return TRUE; } idjc-0.8.16/c/avcodecdecode.h0000644000175000017500000000312312630014502012573 00000000000000/* # avcodecdecode.h: decodes wma file format for xlplayer # Copyright (C) 2007, 2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_LIBAV #include #include #ifdef HAVE_SWRESAMPLE #include #endif #include "xlplayer.h" #include "mp3tagread.h" struct avcodecdecode_vars { AVCodec *codec; AVPacket pkt; AVPacket pktcopy; AVCodecContext *c; AVFormatContext *ic; int size; int resample; unsigned int stream; AVFrame *frame; float drop; struct mp3taginfo taginfo; struct chapter *current_chapter; int channels; /* number of downmixed channels 1 or 2 */ #ifdef HAVE_SWRESAMPLE SwrContext *swr; uint8_t *floatsamples; #else float *floatsamples; #endif }; int avcodecdecode_reg(struct xlplayer *xlplayer); #endif /* HAVE_LIBAV */ idjc-0.8.16/c/live_webm_encoder.h0000644000175000017500000000174012635350160013506 00000000000000/* # avcodec_encoder.h: encode using libavformat # Copyright (C) 2015 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_AVCODEC #include "encoder.h" int live_webm_encoder_init(struct encoder *encoder, struct encoder_vars *ev); #endif /* HAVE_AVCODEC */ idjc-0.8.16/c/avcodecdecode.c0000644000175000017500000004306112630014502012573 00000000000000/* # avcodecdecode.c: decodes wma file format for xlplayer # Copyright (C) 2007-2013 Stephen Fairchild (s-fairchild@users.sf.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_LIBAV #include #include #include #include #ifdef HAVE_LIBAVUTIL_CHANNEL_LAYOUT_H #include #endif #include #include "main.h" #include "xlplayer.h" #include "avcodecdecode.h" #define TRUE 1 #define FALSE 0 #define ACCEPTED 1 #define REJECTED 0 #ifndef AVCODEC_MAX_AUDIO_FRAME_SIZE #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 #endif #ifndef HAVE_AV_FRAME_ALLOC #define av_frame_alloc avcodec_alloc_frame #endif #ifndef HAVE_AV_FRAME_UNREF #define av_frame_unref avcodec_get_frame_defaults #endif extern int dynamic_metadata_form[]; static const struct timespec time_delay = { .tv_nsec = 10 }; static void avcodecdecode_eject(struct xlplayer *xlplayer) { struct avcodecdecode_vars *self = xlplayer->dec_data; if (self->pkt.data) av_free_packet(&self->pkt); if (self->resample) { xlplayer->src_state = src_delete(xlplayer->src_state); free(xlplayer->src_data.data_out); } if (self->floatsamples) free(self->floatsamples); #ifdef HAVE_SWRESAMPLE if (self->swr) swr_free(&self->swr); #endif while (pthread_mutex_trylock(&g.avc_mutex)) nanosleep(&time_delay, NULL); avcodec_close(self->c); pthread_mutex_unlock(&g.avc_mutex); avformat_close_input(&self->ic); if (self->frame) av_freep(&self->frame); free(self); fprintf(stderr, "finished eject\n"); } static void avcodecdecode_init(struct xlplayer *xlplayer) { struct avcodecdecode_vars *self = xlplayer->dec_data; int src_error; if (xlplayer->seek_s) { av_seek_frame(self->ic, -1, (int64_t)xlplayer->seek_s * AV_TIME_BASE, 0); switch (self->c->codec_id) { case AV_CODEC_ID_MUSEPACK7: /* add formats here that glitch when seeked */ case AV_CODEC_ID_MUSEPACK8: self->drop = 1.6; fprintf(stderr, "dropping %0.2f seconds of audio\n", self->drop); default: break; } } self->channels = (self->c->channels == 1) ? 1 : 2; if ((self->resample = (self->c->sample_rate != (int)xlplayer->samplerate))) { fprintf(stderr, "configuring resampler\n"); xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double)self->c->sample_rate; xlplayer->src_data.end_of_input = 0; const size_t dsiz = AVCODEC_MAX_AUDIO_FRAME_SIZE * self->channels * xlplayer->src_data.src_ratio + 512; xlplayer->src_data.output_frames = dsiz / (sizeof (float) * self->channels); if (!(xlplayer->src_data.data_out = malloc(dsiz))) { fprintf(stderr, "avcodecdecode_init: malloc failure\n"); self->resample = FALSE; avcodecdecode_eject(xlplayer); xlplayer->playmode = PM_STOPPED; xlplayer->command = CMD_COMPLETE; return; } if ((xlplayer->src_state = src_new(xlplayer->rsqual, self->channels, &src_error)), src_error) { fprintf(stderr, "avcodecdecode_init: src_new reports %s\n", src_strerror(src_error)); free(xlplayer->src_data.data_out); self->resample = FALSE; avcodecdecode_eject(xlplayer); xlplayer->playmode = PM_STOPPED; xlplayer->command = CMD_COMPLETE; return; } } fprintf(stderr, "avcodecdecode_init: completed\n"); } static void avcodecdecode_play(struct xlplayer *xlplayer) { struct avcodecdecode_vars *self = xlplayer->dec_data; int channels = self->c->channels; SRC_DATA *src_data = &xlplayer->src_data; if (self->size <= 0) { if (av_read_frame(self->ic, &self->pkt) < 0 || (self->size = self->pkt.size) == 0) { if (self->pkt.data) av_free_packet(&self->pkt); if (self->resample) /* flush the resampler */ { src_data->end_of_input = TRUE; src_data->input_frames = 0; if (src_process(xlplayer->src_state, src_data)) { fprintf(stderr, "avcodecdecode_play: error occured during resampling\n"); xlplayer->playmode = PM_EJECTING; return; } xlplayer_demux_channel_data(xlplayer, src_data->data_out, src_data->output_frames_gen, channels, 1.f); xlplayer_write_channel_data(xlplayer); } xlplayer->playmode = PM_FLUSH; return; } self->pktcopy = self->pkt; } if (self->pkt.stream_index != (int)self->stream) { if (self->pkt.data) av_free_packet(&self->pkt); self->size = 0; return; } do { int len, frames, got_frame = 0; if (!self->frame) { if (!(self->frame = av_frame_alloc())) { fprintf(stderr, "avcodecdecode_play: malloc failure\n"); exit(1); } else av_frame_unref(self->frame); } while (pthread_mutex_trylock(&g.avc_mutex)) nanosleep(&time_delay, NULL); len = avcodec_decode_audio4(self->c, self->frame, &got_frame, &self->pktcopy); pthread_mutex_unlock(&g.avc_mutex); if (len < 0) { fprintf(stderr, "avcodecdecode_play: error during decode\n"); break; } self->pktcopy.data += len; self->pktcopy.size -= len; self->size -= len; if (!got_frame) { continue; } #if defined (HAVE_SWRESAMPLE) && defined(USE_SWRESAMPLE) if (!self->swr) { int64_t layout; if (!(self->swr = swr_alloc())) { fprintf(stderr, "avcodecdecode_play: call to swr_alloc failed\n"); xlplayer->playmode = PM_EJECTING; return; } layout = self->frame->channel_layout; if (!layout) layout = self->c->channel_layout; if (!layout) { if (!channels) { fprintf(stderr, "avcodecdecode_play: number of channels is zero\n"); xlplayer->playmode = PM_EJECTING; return; } layout = av_get_default_channel_layout(channels); } av_opt_set_int(self->swr, "in_channel_layout", layout, 0); av_opt_set_int(self->swr, "out_channel_layout", (self->channels == 2) ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO, 0); av_opt_set_sample_fmt(self->swr, "in_sample_fmt", self->c->sample_fmt, 0); av_opt_set_sample_fmt(self->swr, "out_sample_fmt", AV_SAMPLE_FMT_FLT, 0); if (swr_init(self->swr)) { fprintf(stderr, "avcodecdecode_init: swr_init failed\n"); xlplayer->playmode = PM_EJECTING; return; } } if (self->floatsamples) av_freep(&self->floatsamples); if (av_samples_alloc(&self->floatsamples, NULL, 2, self->frame->nb_samples, AV_SAMPLE_FMT_FLT, 0) < 0) { fprintf(stderr, "avcodecdecode_play: av_samples_alloc failed\n"); xlplayer->playmode = PM_EJECTING; return; } swr_convert(self->swr, &self->floatsamples, self->frame->nb_samples, (const uint8_t **)self->frame->data, self->frame->nb_samples); #else if (!(self->floatsamples)) { if (channels > 2 || channels < 1) { fprintf(stderr, "avcodecdecode_init: unhandled number of channels: %d\n", channels); xlplayer->playmode = PM_EJECTING; return; } if (!(self->floatsamples = malloc(sizeof (float) * self->channels * AVCODEC_MAX_AUDIO_FRAME_SIZE))) { fprintf(stderr, "avcodecdecode_init: malloc failure\n"); xlplayer->playmode = PM_EJECTING; return; } } int buffer_size = av_samples_get_buffer_size(NULL, channels, self->frame->nb_samples, self->c->sample_fmt, 1); switch (self->c->sample_fmt) { case AV_SAMPLE_FMT_FLT: frames = (buffer_size >> 2) / channels; memcpy(self->floatsamples, self->frame->data[0], buffer_size); break; case AV_SAMPLE_FMT_FLTP: frames = (buffer_size >> 2) / channels; { float *l = (float *)self->frame->data[0]; float *r = NULL; if (channels == 2) r = (float *)self->frame->data[1]; float *d = self->floatsamples; float *endp = self->floatsamples + (channels * frames); while (d < endp) { *d++ = *l++; if (channels == 2) *d++ = *r++; } } break; case AV_SAMPLE_FMT_DBL: frames = (buffer_size >> 3) / channels; { double *s = (double *)self->frame->data[0]; float *d = self->floatsamples; float *endp = self->floatsamples + (channels * frames); while (d < endp) *d++ = (float)*s++; } break; case AV_SAMPLE_FMT_DBLP: frames = (buffer_size >> 3) / channels; { double *l = (double *)self->frame->data[0]; double *r = NULL; if (channels == 2) r = (double *)self->frame->data[1]; float *d = self->floatsamples; float *endp = self->floatsamples + (channels * frames); while (d < endp) { *d++ = (float)*l++; if (channels == 2) *d++ = (float)*r++; } } break; case AV_SAMPLE_FMT_S16: frames = (buffer_size >> 1) / channels; xlplayer_make_audio_to_float(xlplayer, self->floatsamples, self->frame->data[0], frames, 16, channels); break; case AV_SAMPLE_FMT_S16P: frames = (buffer_size >> 1) / channels; { int16_t *l = (int16_t *)self->frame->data[0]; int16_t *r = NULL; if (channels == 2) r = (int16_t *)self->frame->data[1]; float *d = self->floatsamples; float *endp = self->floatsamples + (channels * frames); while (d < endp) { *d++ = *l++ / 32768.0f; if (channels == 2) *d++ = *r++ / 32768.0f; } } break; case AV_SAMPLE_FMT_S32: frames = (buffer_size >> 2) / channels; xlplayer_make_audio_to_float(xlplayer, self->floatsamples, self->frame->data[0], frames, 32, channels); break; case AV_SAMPLE_FMT_S32P: frames = (buffer_size >> 2) / channels; { int32_t *l = (int32_t *)self->frame->data[0]; int32_t *r = NULL; if (channels == 2) r = (int32_t *)self->frame->data[1]; float *d = self->floatsamples; float *endp = self->floatsamples + (channels * frames); while (d < endp) { *d++ = *l++ / 1073741824.0f; if (channels == 2) *d++ = *r++ / 1073741824.0f; } } break; case AV_SAMPLE_FMT_NONE: fprintf(stderr, "avcodecdecode_play: sample format is none\n"); xlplayer->playmode = PM_EJECTING; return; default: fprintf(stderr, "avcodecdecode_play: unexpected data format %d\n", (int)self->c->sample_fmt); xlplayer->playmode = PM_EJECTING; return; } #endif /* defined (HAVE_SWRESAMPLE) && defined(USE_SWRESAMPLE) */ if (self->resample) { src_data->input_frames = self->frame->nb_samples; src_data->data_in = (float *)self->floatsamples; if (src_process(xlplayer->src_state, src_data)) { fprintf(stderr, "avcodecdecode_play: error occured during resampling\n"); xlplayer->playmode = PM_EJECTING; return; } xlplayer_demux_channel_data(xlplayer, src_data->data_out, frames = src_data->output_frames_gen, self->channels, 1.f); } else xlplayer_demux_channel_data(xlplayer, (float *)self->floatsamples, frames = self->frame->nb_samples, self->channels, 1.f); if (self->drop > 0) self->drop -= frames / (float)xlplayer->samplerate; else xlplayer_write_channel_data(xlplayer); } while (!xlplayer->write_deferred && self->size > 0); if (self->size <= 0) { if (self->pkt.data) av_free_packet(&self->pkt); int delay = xlplayer_calc_rbdelay(xlplayer); struct chapter *chapter = mp3_tag_chapter_scan(&self->taginfo, xlplayer->play_progress_ms + delay); if (chapter && chapter != self->current_chapter) { self->current_chapter = chapter; xlplayer_set_dynamic_metadata(xlplayer, dynamic_metadata_form[chapter->title.encoding], chapter->artist.text, chapter->title.text, chapter->album.text, delay); } } } int avcodecdecode_reg(struct xlplayer *xlplayer) { struct avcodecdecode_vars *self; FILE *fp; struct chapter *chapter; if (!(xlplayer->dec_data = self = calloc(1, sizeof (struct avcodecdecode_vars)))) { fprintf(stderr, "avcodecdecode_reg: malloc failure\n"); return REJECTED; } else xlplayer->dec_data = self; if ((fp = fopen(xlplayer->pathname, "r"))) { mp3_tag_read(&self->taginfo, fp); if ((chapter = mp3_tag_chapter_scan(&self->taginfo, xlplayer->play_progress_ms + 70))) { self->current_chapter = chapter; xlplayer_set_dynamic_metadata(xlplayer, dynamic_metadata_form[chapter->title.encoding], chapter->artist.text, chapter->title.text, chapter->album.text, 70); } fclose(fp); } if (avformat_open_input(&self->ic, xlplayer->pathname, NULL, NULL) < 0) { fprintf(stderr, "avcodecdecode_reg: failed to open input file %s\n", xlplayer->pathname); free(self); return REJECTED; } if (avformat_find_stream_info(self->ic, NULL) < 0) { fprintf(stderr, "avcodecdecode_reg: call to avformat_find_stream_info failed\n"); avformat_close_input(&self->ic); free(self); return REJECTED; } while (pthread_mutex_trylock(&g.avc_mutex)) nanosleep(&time_delay, NULL); if ((self->stream = av_find_best_stream(self->ic, AVMEDIA_TYPE_AUDIO, -1, -1, &self->codec, 0)) < 0) { fprintf(stderr, "Cannot find an audio stream in the input file\n"); avformat_close_input(&self->ic); free(self); return REJECTED; } pthread_mutex_unlock(&g.avc_mutex); self->c = self->ic->streams[self->stream]->codec; #ifndef USE_SWRESAMPLE self->c->request_sample_fmt = AV_SAMPLE_FMT_FLT; self->c->request_channel_layout = AV_CH_LAYOUT_STEREO_DOWNMIX; #endif while (pthread_mutex_trylock(&g.avc_mutex)) nanosleep(&time_delay, NULL); if (avcodec_open2(self->c, self->codec, NULL) < 0) { pthread_mutex_unlock(&g.avc_mutex); fprintf(stderr, "avcodecdecode_reg: could not open codec\n"); avformat_close_input(&self->ic); free(self); return REJECTED; } pthread_mutex_unlock(&g.avc_mutex); xlplayer->dec_init = avcodecdecode_init; xlplayer->dec_play = avcodecdecode_play; xlplayer->dec_eject = avcodecdecode_eject; return ACCEPTED; } #endif /* HAVE_LIBAV */ idjc-0.8.16/c/audio_feed.c0000644000175000017500000001053712630014502012111 00000000000000/* # audiofeed.c: jack connectivity for the streaming module of idjc # Copyright (C) 2007-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #include #include #include #include #include "sourceclient.h" #include "main.h" typedef jack_default_audio_sample_t sample_t; static struct audio_feed *audio_feed; int audio_feed_process_audio(jack_nframes_t n_frames, void *arg) { struct audio_feed *self = audio_feed; struct threads_info *ti = self->threads_info; struct encoder *e; struct recorder *r; sample_t *input_port_buffer[2]; int i; input_port_buffer[0] = jack_port_get_buffer(g.port.output_in_l, n_frames); input_port_buffer[1] = jack_port_get_buffer(g.port.output_in_r, n_frames); /* feed pcm audio data to all encoders that request it */ for (i = 0; i < ti->n_encoders; i++) { e = ti->encoder[i]; switch (e->jack_dataflow_control) { case JD_OFF: break; case JD_ON: while (jack_ringbuffer_write_space(e->input_rb[1]) < n_frames * sizeof (sample_t)) nanosleep(&(struct timespec){0, 10000000}, NULL); jack_ringbuffer_write(e->input_rb[0], (char *)input_port_buffer[0], n_frames * sizeof (sample_t)); jack_ringbuffer_write(e->input_rb[1], (char *)input_port_buffer[1], n_frames * sizeof (sample_t)); break; case JD_FLUSH: jack_ringbuffer_reset(e->input_rb[0]); jack_ringbuffer_reset(e->input_rb[1]); e->jack_dataflow_control = JD_OFF; break; default: fprintf(stderr, "jack_process_callback: unhandled jack_dataflow_control parameter\n"); } } for (i = 0; i < ti->n_recorders; i++) { r = ti->recorder[i]; switch (r->jack_dataflow_control) { case JD_OFF: break; case JD_ON: while (jack_ringbuffer_write_space(r->input_rb[1]) < n_frames * sizeof (sample_t)) nanosleep(&(struct timespec){0, 10000000}, NULL); jack_ringbuffer_write(r->input_rb[0], (char *)input_port_buffer[0], n_frames * sizeof (sample_t)); jack_ringbuffer_write(r->input_rb[1], (char *)input_port_buffer[1], n_frames * sizeof (sample_t)); break; case JD_FLUSH: jack_ringbuffer_reset(r->input_rb[0]); jack_ringbuffer_reset(r->input_rb[1]); r->jack_dataflow_control = JD_OFF; break; default: fprintf(stderr, "jack_process_callback: unhandled jack_dataflow_control parameter\n"); } } return 0; } int audio_feed_jack_samplerate_request(struct threads_info *ti, struct universal_vars *uv, void *param) { fprintf(g.out, "idjcsc: sample_rate=%ld\n", (long)ti->audio_feed->sample_rate); fflush(g.out); if (ferror(g.out)) return FAILED; return SUCCEEDED; } struct audio_feed *audio_feed_init(struct threads_info *ti) { struct audio_feed *self; if (!(self = audio_feed = calloc(1, sizeof (struct audio_feed)))) { fprintf(stderr, "audio_feed_init: malloc failure\n"); return NULL; } self->threads_info = ti; self->sample_rate = jack_get_sample_rate(g.client); return self; } void audio_feed_destroy(struct audio_feed *self) { self->threads_info->audio_feed = NULL; free(self); } idjc-0.8.16/c/ogg_opus_dec.h0000644000175000017500000000343312630014502012464 00000000000000/* # ogg_opus_dec.h: opus decoder for oggdec.c # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_OPUS #include #include #include "xlplayer.h" struct opusdec_vars { int resample; /* do we need to resample? */ int do_down; /* do we need to downmix? */ float *pcm; /* decoder reads to here */ float *down; /* downmix buffer -- possible alias of pcm */ uint16_t preskip; /* dump this many samples from stream start */ float opgain; /* apply this much gain to all samples */ int channel_count; /* number of stream channels */ int channelmap_family; int stream_count; /* total stream count */ int stream_count_2c; /* qty stereo streams */ unsigned char channel_map[8]; OpusMSDecoder *odms; /* decoder handle */ int64_t gf_gp; /* granule position values */ int64_t f_gp; int64_t gp; int64_t dec_samples; }; int ogg_opusdec_init(struct xlplayer *xlplayer); #endif /* HAVE_OPUS */ idjc-0.8.16/c/recorder.c0000644000175000017500000011557312635350160011650 00000000000000/* # recorder.c: the recording part of the streaming module of idjc # Copyright (C) 2007-2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include "live_ogg_encoder.h" #include "sourceclient.h" #include "id3.h" #include "sig.h" #include "main.h" #define TIMESTAMP_SIZ 23 typedef jack_default_audio_sample_t sample_t; static const size_t rb_n_samples = 10000; /* maximum number of samples to hold in the ring buffer */ static const size_t audio_buffer_elements = 256; #if 0 static void recorder_write_ogg_metaheader(struct recorder *self) { struct encoder *encoder = self->encoder_op->encoder; struct loe_data *s = encoder->encoder_private; vorbis_info vi; vorbis_dsp_state vd; vorbis_block vb; vorbis_comment vc; ogg_stream_state os; ogg_page og; ogg_packet op; ogg_packet header_main; ogg_packet header_comments; ogg_packet header_codebooks; void write_out(ogg_page *ogp) /* output the ogg page */ { fwrite(ogp->header, ogp->header_len, 1, self->fp); fwrite(ogp->body, ogp->body_len, 1, self->fp); if (ferror(self->fp)) { fprintf(stderr, "recorder_write_ogg_metaheader: error writing the header\n"); } } void encode_silent_samples(int n_samples) { float **buffer; int i; /* generate a silent buffer */ buffer = vorbis_analysis_buffer(&vd, n_samples); for (i = 0; i < vi.channels; i++) memset(buffer[i], 0, n_samples * sizeof (float)); vorbis_analysis_wrote(&vd, n_samples); /* encode it */ while (vorbis_analysis_blockout(&vd, &vb) == 1) { vorbis_analysis(&vb, NULL); vorbis_bitrate_addblock(&vb); while (vorbis_bitrate_flushpacket(&vd, &op)) { ogg_stream_packetin(&os, &op); while (ogg_stream_pageout(&os, &og)) { write_out(&og); if (ogg_page_eos(&og)) break; } } } } vorbis_info_init(&vi); if (vorbis_encode_setup_managed(&vi, encoder->n_channels, encoder->target_samplerate, s->max_bitrate * 1000, encoder->bitrate * 1000, s->min_bitrate * 1000)) { fprintf(stderr, "recorder_write_ogg_metaheader: mode initialisation failed\n"); vorbis_info_clear(&vi); return; } vorbis_encode_setup_init(&vi); vorbis_analysis_init(&vd, &vi); vorbis_block_init(&vd, &vb); ogg_stream_init(&os, self->initial_serial - 1); vorbis_comment_init(&vc); /* write vorbis header */ vorbis_analysis_headerout(&vd, &vc, &header_main, &header_comments, &header_codebooks); ogg_stream_packetin(&os, &header_main); ogg_stream_packetin(&os, &header_comments); ogg_stream_packetin(&os, &header_codebooks); while (ogg_stream_flush(&os, &og)) write_out(&og); encode_silent_samples(1); /* one sample is all we need */ encode_silent_samples(0); ogg_stream_clear(&os); /* cleanup */ vorbis_block_clear(&vb); vorbis_dsp_clear(&vd); vorbis_comment_clear(&vc); vorbis_info_clear(&vi); } #endif /* recorder_write_ogg_metaheader */ static int recorder_write_id3_tag(struct recorder *self, FILE *fp) { struct metadata_item *mi; struct id3_tag *tag; struct id3_frame *chap; tag = id3_tag_new(0, 512); id3_add_frame(tag, id3_numeric_string_frame_new("TLEN", self->recording_length_ms)); for (mi = self->mi_first; mi; mi = mi->next) { chap = id3_chap_frame_new("", mi->time_offset, mi->time_offset_end, mi->byte_offset, mi->byte_offset_end); id3_embed_frame(chap, id3_text_frame_new("TIT2", mi->title, 3, 1)); if (mi->album[0]) id3_embed_frame(chap, id3_text_frame_new("TALB", mi->album, 3, 1)); if (mi->artist[0]) id3_embed_frame(chap, id3_text_frame_new("TPE1", mi->artist, 3, 1)); id3_add_frame(tag, chap); } id3_compile(tag); if (fwrite(tag->tag_data, 1, tag->tag_data_size, fp) != tag->tag_data_size) { fprintf(stderr, "recorder_write_id3_tag: error writing to file\n"); id3_tag_destroy(tag); return FAILED; } id3_tag_destroy(tag); return SUCCEEDED; } static int recorder_create_mp3_cuesheet(struct recorder *self) { struct metadata_item *mi; FILE *fp; int i, mm, ss, ff; if (!(fp = fopen(self->cuepathname, "wb"))) { fprintf(stderr, "recorder_write_mp3_cue_sheet: failed to open cue sheet file for writing\n"); return FAILED; } fprintf(fp, "TITLE \"%s\"\r\n", self->timestamp); fprintf(fp, "PERFORMER \"Recorded with IDJC\"\r\n"); fprintf(fp, "FILE \"%s\" MP3\r\n", strrchr(self->pathname, '/') + 1); for (i = 1, mi = self->mi_first; mi; i++, mi = mi->next) { fprintf(fp, " TRACK %02d AUDIO\r\n", i); if (mi->title[0]) fprintf(fp, " TITLE \"%s\"\r\n", mi->title); if (mi->artist[0]) fprintf(fp, " PERFORMER \"%s\"\r\n", mi->artist); if (mi->album[0]) fprintf(fp, " REM ALBUM \"%s\"\r\n", mi->album); /* the first index must be zero - it's in the cue file standard */ if (i > 1) { mm = mi->time_offset / 60000; ss = mi->time_offset / 1000 % 60; ff = mi->time_offset % 1000 * 75 / 1000; } else mm = ss =ff = 0; fprintf(fp, " INDEX 01 %02d:%02d:%02d\r\n", mm, ss, ff); } fclose(fp); return SUCCEEDED; } static int recorder_write_xing_tag(struct recorder *self, FILE *fp) { int mpeg1_f, mono_f; int xing_offset, initial_offset; int side_info_table[2][2] = { { 17, 9 } , { 32, 17 } }; int i, total_frames, samples_per_frame, framelength, padding, frame_fill; double seek, look_ms, seg_prop; unsigned char seek_table[100], *ptr; struct metadata_item2 *mi2; if (!self->include_xing_tag) return SUCCEEDED; if (self->mi2_first == NULL) { fprintf(stderr, "recorder_write_xing_tag: no metadata collected, skipping vbr tag\n"); return SUCCEEDED; } fprintf(stderr, "recorder_write_xing_tag: commencing\n"); initial_offset = ftell(fp); padding = (self->first_mp3_header[2] & 0x2) ? 1 : 0; mpeg1_f = ((self->first_mp3_header[1] & 0x18) == 0x18) ? 1 : 0; mono_f = ((self->first_mp3_header[3] & 0xC0) == 0xC0) ? 1 : 0; samples_per_frame = mpeg1_f ? 1152 : 576; framelength = samples_per_frame / 8 * self->mi2_first->bit_rate * 1000 / self->mi2_first->sample_rate + padding; xing_offset = side_info_table[mpeg1_f][mono_f]; if (!fwrite(self->first_mp3_header, 4, 1, fp)) return FAILED; for (i = 0; i < xing_offset; i++) { fputc(0x00, fp); if (ferror(fp)) return FAILED; } if (self->is_vbr) { if (!(fwrite("Xing\x00\x00\x00\x07", 8, 1, fp))) return FAILED; } else if (!(fwrite("Info\x00\x00\x00\x03", 8, 1, fp))) return FAILED; /* the following calculation is fake for files with varying sample rates * however the players which use this value will probably only use it * for calclulating the play duration which will yield the intended result */ total_frames = (int)(self->mi2_first->sample_rate * (double)self->recording_length_ms / (samples_per_frame * 1000.0) + 0.5); fputc((total_frames >> 24) & 0xFF, fp); fputc((total_frames >> 16) & 0xFF, fp); fputc((total_frames >> 8 ) & 0xFF, fp); fputc( total_frames & 0xFF, fp); fputc((self->bytes_written >> 24) & 0xFF, fp); fputc((self->bytes_written >> 16) & 0xFF, fp); fputc((self->bytes_written >> 8 ) & 0xFF, fp); fputc( self->bytes_written & 0xFF, fp); if (self->is_vbr) { fprintf(stderr, "recorder_write_xing_tag: creating a seek table\n"); /* generate a vbr seek table with 100 entries in it */ for (seek = 0.0, ptr = seek_table, mi2 = self->mi2_first; seek < 1.0; seek += 0.01, ptr++) { look_ms = seek * self->recording_length_ms; while (look_ms > mi2->finish_offset_ms) { mi2 = mi2->next; if (mi2 == NULL) /* this should never ever happen */ { fprintf(stderr, "recorder_write_xing_tag: WARNING: bad metadata, failed creation of seek table\n"); return FAILED; } } seg_prop = (look_ms - mi2->start_offset_ms) / (double)(mi2->finish_offset_ms - mi2->start_offset_ms); *ptr = (((seg_prop * mi2->size_bytes) + mi2->byte_offset) / self->bytes_written * 255); } if (!(fwrite(seek_table, 100, 1, fp))) return FAILED; if (seek_table[99] == 0xFF) fputc('\0', fp); } frame_fill = framelength - ftell(fp) + initial_offset; while (frame_fill-- > 0) /* this frame is allowed to overrun its bounds */ fputc('\0', fp); /* and can do so with very low bitrate, high sample rate */ if (ferror(fp)) return FAILED; return SUCCEEDED; } static void recorder_apply_mp3_tags(struct recorder *self) { char *tmpname; FILE *fpr, *fpw; char buffer[2048]; int bytes; if (!(tmpname = malloc(strlen(self->pathname) + 5))) { fprintf(stderr, "recorder_apply_mp3_tags: malloc failure\n"); return; } strcpy(tmpname, self->pathname); strcat(tmpname, ".tmp"); if (!(fpw = fopen(tmpname, "w+"))) { fprintf(stderr, "recorder_apply_mp3_tags: failed to open temporary file\n"); free(tmpname); return; } if (!(fpr = fopen(self->pathname, "r"))) { fprintf(stderr, "recorder_apply_mp3_tags: failed to open the mp3 file\n"); fclose(fpw); unlink(tmpname); free(tmpname); return; } if (!fread(self->first_mp3_header, 4, 1, fpr)) { fprintf(stderr, "failed to obtain the first four bytes of the recording\n"); fclose(fpr); fclose(fpw); unlink(tmpname); free(tmpname); return; } rewind(fpr); if (!(recorder_write_id3_tag(self, fpw) && recorder_write_xing_tag(self, fpw))) { fprintf(stderr, "recorder_apply_mp3_tags: failed to tag the mp3 file\n"); fclose(fpr); fclose(fpw); unlink(tmpname); free(tmpname); return; } for (;;) /* copy the mp3 file's data onto the end of the tagged file */ { bytes = fread(buffer, 1, 2048, fpr); if (bytes == 0) break; if (!(fwrite(buffer, bytes, 1, fpw))) { fprintf(stderr, "recorder_apply_mp3_tags: error copying the mp3 file\n"); fclose(fpr); fclose(fpw); unlink(tmpname); free(tmpname); return; } } fclose(fpr); fclose(fpw); if (rename(tmpname, self->pathname)) { fprintf(stderr, "recorder_apply_mp3_tags: failed to rename the temporary file\n"); free(tmpname); return; } free(tmpname); fprintf(stderr, "recorder_apply_mp3_tags: successfully tagged the mp3 file\n"); } static void recorder_append_metadata2(struct recorder *self, struct encoder_op_packet *packet) { struct metadata_item2 *mi2; if (!(mi2 = calloc(1, sizeof (struct metadata_item2)))) { fprintf(stderr, "recorder_append_metadata2: malloc failure\n"); return; } if (!(self->mi2_first)) { mi2->start_offset_ms = 0; mi2->byte_offset = 0; if (packet) { mi2->bit_rate = packet->header.bit_rate; mi2->sample_rate = packet->header.sample_rate; } self->mi2_first = mi2; self->mi2_last = mi2; } else { mi2->start_offset_ms = self->recording_length_ms; mi2->byte_offset = self->bytes_written; if (packet) { mi2->bit_rate = packet->header.bit_rate; mi2->sample_rate = packet->header.sample_rate; } self->mi2_last->finish_offset_ms = mi2->start_offset_ms; self->mi2_last->size_bytes = mi2->byte_offset - self->mi2_last->byte_offset; if (packet) { self->mi2_last->next = mi2; self->mi2_last = mi2; } else free(mi2); } if (packet && (packet->header.bit_rate != self->oldbitrate || packet->header.sample_rate != self->oldsamplerate) && (packet->header.flags & (PF_MP3 | PF_MP2 | PF_AAC | PF_AACP2))) { if (self->oldbitrate && self->oldsamplerate) { self->is_vbr = TRUE; fprintf(stderr, "recorder_append_metadata2: the mp3 frame length altered\n"); } self->oldbitrate = packet->header.bit_rate; self->oldsamplerate = packet->header.sample_rate; } } static void recorder_free_metadata2(struct recorder *self) { struct metadata_item2 *mi2, *oldmi2; for (mi2 = self->mi2_first; mi2;) { oldmi2 = mi2; mi2 = mi2->next; free(oldmi2); } self->mi2_first = NULL; self->mi2_last = NULL; } static void recorder_display_logged_metadata2(struct metadata_item2 *mi2) { if (mi2) { fprintf(stderr, "The following metadata was also logged.\n"); do { fprintf(stderr, "Start(ms): %06d Finish(ms): %06d Byte offset: %06d Size(bytes): %06d\n", mi2->start_offset_ms, mi2->finish_offset_ms, mi2->byte_offset, mi2->size_bytes); } while ((mi2 = mi2->next)); } else fprintf(stderr, "No start position for the stream was logged!\n"); } static void recorder_append_metadata(struct recorder *self, struct encoder_op_packet *packet) { struct metadata_item *mi; char *artist, *title, *album, *stringp; if (packet) { stringp = packet->data; strsep(&stringp, "\n"); /* we discard the first value */ artist = strsep(&stringp, "\n"); title = strsep(&stringp, "\n"); album = strsep(&stringp, ""); } else artist = title = album = ""; if (packet && self->mi_last && !strcmp(self->mi_last->artist, artist) && !strcmp(self->mi_last->title, title) && !strcmp(self->mi_last->album, album)) { fprintf(stderr, "recorder_append_metadata: duplicate artist-title, skipping\n"); return; } if (!(mi = calloc(1, sizeof (struct metadata_item)))) { fprintf(stderr, "recorder_append_metadata: malloc failure\n"); return; } mi->artist = strdup(artist); mi->title = strdup(title); mi->album = strdup(album); mi->time_offset = self->recording_length_ms; mi->byte_offset = self->bytes_written; if (!(self->mi_first)) { self->mi_first = mi; self->mi_last = mi; } else { self->mi_last->time_offset_end = mi->time_offset; self->mi_last->byte_offset_end = mi->byte_offset; if (packet) { self->mi_last->next = mi; self->mi_last = mi; } else { free(mi->artist); free(mi->title); free(mi->album); free(mi); } } } static void recorder_free_metadata(struct recorder *self) { struct metadata_item *mi, *oldmi; for (mi = self->mi_first; mi;) { oldmi = mi; mi = mi->next; free(oldmi->artist); free(oldmi->title); free(oldmi->album); free(oldmi); } self->mi_first = NULL; self->mi_last = NULL; } static void recorder_display_logged_metadata(struct metadata_item *mi) { if (mi) { fprintf(stderr, "The following metadata was logged.\n"); do { fprintf(stderr, "Start(ms): %06d Byte: %08d Finish(ms): %06d Finish byte %08d\n", mi->time_offset, mi->byte_offset, mi->time_offset_end, mi->byte_offset_end); fprintf(stderr, "Artist: %s\nTitle: %s\nAlbum: %s\n---\n", mi->artist, mi->title, mi->album); } while ((mi = mi->next)); } else fprintf(stderr, "No metadata was logged for the recording.\n"); } static void *recorder_main(void *args) { struct recorder *self = args; struct timespec ms10 = { 0, 10000000 }; struct encoder_op_packet *packet; char *rl, *rr, *w, *endp; size_t nbytes; int m, s, f; sig_mask_thread(); while (!self->thread_terminate_f) { nanosleep(&ms10, NULL); switch (self->record_mode) { case RM_STOPPED: pthread_mutex_lock(&self->mode_mutex); while (self->record_mode == RM_STOPPED && !self->thread_terminate_f) pthread_cond_wait(&self->mode_cv, &self->mode_mutex); pthread_mutex_unlock(&self->mode_mutex); continue; case RM_RECORDING: if (self->initial_serial == -1) { while ((nbytes = jack_ringbuffer_read(self->input_rb[1], self->right, audio_buffer_elements * sizeof (sample_t)))) { jack_ringbuffer_read(self->input_rb[0], self->left, nbytes); rl = self->left; rr = self->right; endp = rl + nbytes; w = self->combined; while (rl != endp) { for (unsigned i = 0; i < sizeof (sample_t); i++) *w++ = *rl++; for (unsigned i = 0; i < sizeof (sample_t); i++) *w++ = *rr++; } sf_writef_float(self->sf, (float *)self->combined, nbytes / sizeof (sample_t)); self->sf_samples += nbytes / sizeof (sample_t); if (self->stop_request || self->pause_request) break; } self->recording_length_s = self->sf_samples / self->sfinfo.samplerate; self->recording_length_ms = self->sf_samples * 1000 / self->sfinfo.samplerate; if (self->stop_request) { self->stop_request = FALSE; self->record_mode = RM_STOPPING; } if (self->pause_request) { self->pause_request = FALSE; self->record_mode = RM_PAUSED; } if (self->new_artist_title) { fprintf(self->fpcue, " TRACK %02d AUDIO\r\n", ++self->artist_title_writes); pthread_mutex_lock(&self->artist_title_mutex); self->new_artist_title = FALSE; fprintf(self->fpcue, " TITLE \"%s\"\r\n", self->title); fprintf(self->fpcue, " PERFORMER \"%s\"\r\n", self->artist); fprintf(self->fpcue, " REM ALBUM \"%s\"\r\n", self->album); pthread_mutex_unlock(&self->artist_title_mutex); s = self->recording_length_s % 60; m = self->recording_length_s / 60; f = self->recording_length_ms % 1000 * 75 / 1000; fprintf(self->fpcue, " INDEX 01 %02d:%02d:%02d\r\n", m, s, f); } } else { if ((packet = encoder_client_get_packet(self->encoder_op))) { if (packet->header.serial >= self->initial_serial) { if ((packet->header.flags & PF_INITIAL) && self->id3_mode) recorder_append_metadata2(self, packet); if (packet->header.flags & (PF_WEBM | PF_OGG | PF_MP3 | PF_MP2 | PF_AAC | PF_AACP2)) { if (packet->header.data_size != fwrite(packet->data, 1, packet->header.data_size, self->fp)) { fprintf(stderr, "recorder_main: failed writing to file %s\n", self->pathname); self->record_mode = RM_STOPPING; } else { self->recording_length_s = (int)(self->accumulated_time + packet->header.timestamp); self->recording_length_ms = (int)((self->accumulated_time + packet->header.timestamp) * 1000.0); self->bytes_written = ftell(self->fp); } } if (packet->header.flags & PF_FINAL) { self->accumulated_time += packet->header.timestamp; if (self->pause_pending && packet->header.serial >= self->final_serial) { self->record_mode = RM_PAUSED; self->pause_pending = FALSE; fprintf(stderr, "recorder_main: entering pause mode\n"); } } } if (packet->header.flags & PF_METADATA) recorder_append_metadata(self, packet); encoder_client_free_packet(packet); } if (self->stop_request) { self->stop_pending = TRUE; self->pause_request = TRUE; self->stop_request = FALSE; } if (self->pause_request) { self->pause_pending = TRUE; self->final_serial = encoder_client_set_flush(self->encoder_op); self->pause_request = FALSE; } } break; case RM_PAUSED: if (self->stop_request || self->stop_pending) self->record_mode = RM_STOPPING; else { while ((nbytes = jack_ringbuffer_read(self->input_rb[1], self->right, audio_buffer_elements * sizeof (sample_t)))) { jack_ringbuffer_read(self->input_rb[0], self->left, nbytes); } if (self->unpause_request) { self->unpause_request = FALSE; if (self->initial_serial != -1) self->initial_serial = encoder_client_set_flush(self->encoder_op) + 1; self->record_mode = RM_RECORDING; } } break; case RM_STOPPING: if (self->initial_serial == -1) { sf_close(self->sf); fclose(self->fpcue); self->jack_dataflow_control = JD_FLUSH; while (self->jack_dataflow_control != JD_OFF) nanosleep(&ms10, NULL); jack_ringbuffer_free(self->input_rb[0]); jack_ringbuffer_free(self->input_rb[1]); free(self->left); free(self->right); free(self->combined); self->left = self->right = self->combined = NULL; self->sf_samples = 0; } else { if (self->id3_mode) { recorder_append_metadata(self, NULL); recorder_append_metadata2(self, NULL); recorder_display_logged_metadata(self->mi_first); recorder_display_logged_metadata2(self->mi2_first); recorder_apply_mp3_tags(self); recorder_create_mp3_cuesheet(self); recorder_free_metadata(self); recorder_free_metadata2(self); } encoder_unregister_client(self->encoder_op); } fclose(self->fp); free(self->pathname); free(self->cuepathname); free(self->timestamp); memset(self->first_mp3_header, 0x00, 4); self->oldbitrate = 0; self->oldsamplerate = 0; self->id3_mode = FALSE; self->include_xing_tag = FALSE; self->is_vbr = FALSE; self->recording_length_s = 0; self->recording_length_ms = 0; self->accumulated_time = 0.0; self->bytes_written = 0; self->fp = NULL; self->pathname = NULL; self->cuepathname = NULL; self->encoder_op = NULL; self->stop_request = FALSE; self->stop_pending = FALSE; self->pause_request = FALSE; self->pause_pending = FALSE; self->record_mode = RM_STOPPED; break; default: fprintf(stderr, "recorder_main: unhandled record mode\n"); } } return NULL; } int recorder_make_report(struct recorder *self) { fprintf(g.out, "idjcsc: recorder%dreport=%d:%d\n", self->numeric_id, self->record_mode, self->recording_length_s); fflush(g.out); return SUCCEEDED; } int recorder_new_metadata(struct recorder *self, char *artist, char *title, char *album) { char *new_artist, *new_title, *new_album; char *old_artist, *old_title, *old_album; new_artist = strdup(artist); new_title = strdup(title); new_album = strdup(album); if (!new_artist || !new_title || !new_album) { fprintf(stderr, "recorder_new_metadata: malloc failure\n"); return FAILED; } old_artist = self->artist; old_title = self->title; old_album = self->album; pthread_mutex_lock(&self->artist_title_mutex); self->artist = new_artist; self->title = new_title; self->album = new_album; self->new_artist_title = TRUE; pthread_mutex_unlock(&self->artist_title_mutex); free(old_artist); free(old_title); free(old_album); return SUCCEEDED; } int recorder_start(struct threads_info *ti, struct universal_vars *uv, void *other) { struct recorder_vars *rv = other; struct recorder *self = ti->recorder[uv->tab]; time_t t; struct tm *tm; char *file_extension = NULL; size_t pathname_size; char timestamp[TIMESTAMP_SIZ]; size_t base; if (!strcmp(rv->record_source, "-1")) { file_extension = ".flac"; self->encoder_op = NULL; self->left = malloc(audio_buffer_elements * sizeof (sample_t)); self->right = malloc(audio_buffer_elements * sizeof (sample_t)); self->combined = malloc(audio_buffer_elements * sizeof (sample_t) * 2); if (!self->left || !self->right || !self->combined) { fprintf(stderr, "recorder_start: malloc failure\n"); return FAILED; } } else { if (!(self->encoder_op = encoder_register_client(ti, atoi(rv->record_source)))) { fprintf(stderr, "recorder_start: failed to register with encoder\n"); return FAILED; } if (!self->encoder_op->encoder->run_request_f) { fprintf(stderr, "recorder_start: encoder is not running\n"); encoder_unregister_client(self->encoder_op); return FAILED; } { struct encoder_data_format *df = &self->encoder_op->encoder->data_format; switch (df->family) { case ENCODER_FAMILY_OGG: switch (df->codec) { case ENCODER_CODEC_VORBIS: case ENCODER_CODEC_FLAC: case ENCODER_CODEC_SPEEX: case ENCODER_CODEC_OPUS: file_extension = ".oga"; case ENCODER_CODEC_UNHANDLED: default: break; } break; case ENCODER_FAMILY_MPEG: switch (df->codec) { case ENCODER_CODEC_MP3: file_extension = ".mp3"; self->id3_mode = TRUE; self->include_xing_tag = TRUE; break; case ENCODER_CODEC_MP2: file_extension = ".mp2"; self->id3_mode = TRUE; break; case ENCODER_CODEC_AAC: case ENCODER_CODEC_AACPLUSV2: file_extension = ".aac"; self->id3_mode = TRUE; break; case ENCODER_CODEC_UNHANDLED: default: break; } break; case ENCODER_FAMILY_WEBM: switch (df->codec) { case ENCODER_CODEC_VORBIS: case ENCODER_CODEC_OPUS: file_extension = ".webm"; break; case ENCODER_CODEC_UNHANDLED: default: break; } break; case ENCODER_FAMILY_UNHANDLED: default: break; } if (file_extension == NULL) { fprintf(stderr, "recorder_start: data_format is not set to a handled value\n"); encoder_unregister_client(self->encoder_op); return FAILED; } } } if (!(self->pathname = malloc(pathname_size = strlen(rv->record_folder) + 1 + strlen(rv->record_filename) + strlen(file_extension) + 1))) { fprintf(stderr, "recorder_start: malloc failure\n"); if (self->encoder_op) encoder_unregister_client(self->encoder_op); return FAILED; } /* generate a timestamp filename */ t = time(NULL); tm = localtime(&t); strftime(timestamp, TIMESTAMP_SIZ, "[%Y-%m-%d][%H:%M:%S]", tm); self->timestamp = strdup(timestamp); snprintf(self->pathname, pathname_size, "%s/%s%s", rv->record_folder, rv->record_filename, file_extension); fprintf(stderr, "%s\n", self->pathname); base = strlen(self->pathname) - strlen(file_extension); self->cuepathname = malloc(base + 5); memcpy(self->cuepathname, self->pathname, base); memcpy(self->cuepathname + base, ".cue", 5); if (!(self->fp = fopen(self->pathname, "w"))) { fprintf(stderr, "recorder_start: failed to open file %s\nuser should check file permissions on the particular directory\n", rv->record_folder); free(self->pathname); free(self->timestamp); if (self->encoder_op) encoder_unregister_client(self->encoder_op); return FAILED; } if (self->encoder_op) { self->initial_serial = encoder_client_set_flush(self->encoder_op) + 1; fprintf(stderr, "recorder_start: awaiting serial %d to commence\n", self->initial_serial); } else { /* no encoder implies we are encoding in this module */ if (!(self->fpcue = fopen(self->cuepathname, "w"))) { fprintf(stderr, "recorder_start: failed to open cue file for writing\n"); free(self->pathname); free(self->timestamp); fclose(self->fp); return FAILED; } else { fprintf(self->fpcue, "TITLE \"%s\"\r\n", self->timestamp); fprintf(self->fpcue, "PERFORMER \"Recorded with IDJC\"\r\n"); fprintf(self->fpcue, "FILE \"%s\" WAVE\r\n", strrchr(self->pathname, '/') + 1); } self->sfinfo.samplerate = ti->audio_feed->sample_rate; self->sfinfo.channels = 2; self->sfinfo.format = SF_FORMAT_FLAC | SF_FORMAT_PCM_24; if (!(self->sf = sf_open_fd(fileno(self->fp), SFM_WRITE, &self->sfinfo, 0))) { free(self->pathname); free(self->timestamp); fclose(self->fp); fclose(self->fpcue); fprintf(stderr, "recorder_start: unable to initialise FLAC encoder\n"); return FAILED; } self->input_rb[0] = jack_ringbuffer_create(rb_n_samples * sizeof (sample_t)); self->input_rb[1] = jack_ringbuffer_create(rb_n_samples * sizeof (sample_t)); if (!(self->input_rb[0] && self->input_rb[1])) { fprintf(stderr, "encoder_start: jack ringbuffer creation failure\n"); free(self->pathname); free(self->timestamp); fclose(self->fp); fclose(self->fpcue); fprintf(stderr, "recorder_start: failed to create ringbuffers\n"); return FAILED; } self->jack_dataflow_control = JD_ON; self->initial_serial = -1; self->new_artist_title = TRUE; /* risk inheriting old metadata rather than start with empty */ fprintf(stderr, "recorder_start: in FLAC mode\n"); } //if (file_extension == ".oga") // recorder_write_ogg_metaheader(self); pthread_mutex_lock(&self->mode_mutex); if (self->pause_request == TRUE) self->record_mode = RM_PAUSED; else self->record_mode = RM_RECORDING; pthread_cond_signal(&self->mode_cv); pthread_mutex_unlock(&self->mode_mutex); fprintf(stderr, "recorder_start: device %d activated\n", self->numeric_id); return SUCCEEDED; } int recorder_stop(struct threads_info *ti, struct universal_vars *uv, void *other) { struct recorder *self = ti->recorder[uv->tab]; struct timespec ms10 = { 0, 10000000 }; if (self->record_mode == RM_STOPPED) { fprintf(stderr, "recorder_stop: device %d is already stopped\n", self->numeric_id); return FAILED; } self->stop_request = TRUE; while (self->record_mode != RM_STOPPED) nanosleep(&ms10, NULL); fprintf(stderr, "recorder_stop: device %d stopped\n", self->numeric_id); return SUCCEEDED; } int recorder_pause(struct threads_info *ti, struct universal_vars *uv, void *other) { struct recorder *self = ti->recorder[uv->tab]; struct timespec ms10 = { 0, 10000000 }; self->unpause_request = FALSE; self->pause_request = TRUE; if (self->record_mode == RM_RECORDING) { fprintf(stderr, "recorder_pause: waiting for pause mode to be entered\n"); while (self->record_mode != RM_PAUSED) nanosleep(&ms10, NULL); fprintf(stderr, "recorder_pause: in pause mode\n"); } else { if (self->record_mode == RM_PAUSED) { fprintf(stderr, "recorder_pause: recorder is already paused\n"); return FAILED; } else fprintf(stderr, "recorder_pause: not currenly recording\n"); } return SUCCEEDED; } int recorder_unpause(struct threads_info *ti, struct universal_vars *uv, void *other) { struct recorder *self = ti->recorder[uv->tab]; struct timespec ms10 = { 0, 10000000 }; self->pause_request = FALSE; self->unpause_request = TRUE; if (self->record_mode == RM_PAUSED) { fprintf(stderr, "recorder_unpause: waiting for pause mode to finish\n"); while (self->record_mode == RM_PAUSED) nanosleep(&ms10, NULL); fprintf(stderr, "recorder_unpause: left pause mode\n"); } else { fprintf(stderr, "recorder_unpause: wasn't paused in the first place\n"); return FAILED; } return SUCCEEDED; } struct recorder *recorder_init(struct threads_info *ti, int numeric_id) { struct recorder *self; if (!(self = calloc(1, sizeof (struct recorder)))) { fprintf(stderr, "recorder_init: malloc failure\n"); return NULL; } self->threads_info = ti; self->numeric_id = numeric_id; self->artist = strdup(""); self->title = strdup(""); self->album = strdup(""); pthread_mutex_init(&self->artist_title_mutex, NULL); pthread_mutex_init(&self->mode_mutex, NULL); pthread_cond_init(&self->mode_cv, NULL); pthread_create(&self->thread_h, NULL, recorder_main, self); return self; } void recorder_destroy(struct recorder *self) { pthread_mutex_lock(&self->mode_mutex); self->thread_terminate_f = TRUE; pthread_cond_signal(&self->mode_cv); pthread_mutex_unlock(&self->mode_mutex); pthread_join(self->thread_h, NULL); pthread_cond_destroy(&self->mode_cv); pthread_mutex_destroy(&self->mode_mutex); pthread_mutex_destroy(&self->artist_title_mutex); free(self->artist); free(self->title); free(self->album); free(self); } idjc-0.8.16/c/Makefile.am0000644000175000017500000000431012640072474011722 00000000000000pkglib_LTLIBRARIES = idjc.la idjc_la_SOURCES = agc.c agc.h audio_feed.c audio_feed.h avcodecdecode.c avcodecdecode.h bsdcompat.c bsdcompat.h \ \ compressor.c compressor.h dbconvert.c dbconvert.h dyn_lame.c dyn_lame.h encoder.c \ \ encoder.h fade.c fade.h flacdecode.c flacdecode.h gnusource.h ialloc.c ialloc.h id3.c id3.h kvpdict.c \ \ kvpdict.h kvpparse.c kvpparse.h lame.h live_mp3_encoder.c live_mp3_encoder.h live_ogg_encoder.c \ \ live_ogg_encoder.h live_oggflac_encoder.c live_oggflac_encoder.h live_oggspeex_encoder.c \ \ live_oggspeex_encoder.h main.c main.h mic.c mic.h mixer.c mixer.h mp3dec.c mp3dec.h mp3tagread.c \ \ mp3tagread.h ogg_flac_dec.c ogg_flac_dec.h ogg_speex_dec.c ogg_speex_dec.h ogg_vorbis_dec.c \ \ ogg_vorbis_dec.h oggdec.c oggdec.h peakfilter.c peakfilter.h recorder.c recorder.h sig.c sig.h \ \ sndfiledecode.c sndfiledecode.h sndfileinfo.c sndfileinfo.h sourceclient.c sourceclient.h speextag.c \ \ speextag.h streamer.c streamer.h xlplayer.c xlplayer.h live_mp2_encoder.c live_mp2_encoder.h \ \ avcodec_encoder.c avcodec_encoder.h smoothing.c smoothing.h dyn_mpg123.c dyn_mpg123.h mpg123.h \ \ ogg_opus_dec.c ogg_opus_dec.h vorbistagparse.c vorbistagparse.h live_oggopus_encoder.c \ \ live_oggopus_encoder.h live_webm_encoder.c live_webm_encoder.h idjc_la_CFLAGS = ${GLIB_CFLAGS} ${LIBAVCODEC_CFLAGS} ${LIBAVFORMAT_CFLAGS} ${LIBAVUTIL_CFLAGS} ${LIBFLAC_CFLAGS} \ \ ${LIBJACK_CFLAGS} ${MPG123_CFLAGS} ${LIBSAMPLERATE_CFLAGS} ${SHOUTIDJC_CFLAGS} ${LIBSNDFILE_CFLAGS} \ \ ${LIBSPEEX_CFLAGS} ${LIBVORBISENC_CFLAGS} ${LIBVORBIS_CFLAGS} ${TWOLAME_CFLAGS} ${OPUS_CFLAGS} \ \ ${LIBSWRESAMPLE_CFLAGS} -O2 -Wall -std=gnu99 idjc_la_LIBADD = ${DYN_LIBS} ${GLIB_LIBS} ${LIBAVCODEC_LIBS} ${LIBAVFORMAT_LIBS} ${LIBAVUTIL_LIBS} ${LIBFLAC_LIBS} \ \ ${LIBJACK_LIBS} ${MPG123_LIBS} ${LIBMP3LAME} ${LIBM} ${LIBSAMPLERATE_LIBS} ${SHOUTIDJC_LIBS} \ \ ${LIBSNDFILE_LIBS} ${LIBSPEEX_LIBS} ${LIBVORBISENC_LIBS} ${LIBVORBIS_LIBS} ${TWOLAME_LIBS} \ \ ${LIBSWRESAMPLE_LIBS} ${OPUS_LIBS} -lpthread idjc_la_LDFLAGS = ${DYN_LDFLAGS} -no-undefined -avoid-version -module idjc-0.8.16/c/gnusource.h0000644000175000017500000000162712630014502012044 00000000000000/* # gnusource.h: determine if native glibc gnu extensions are to be used # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifndef USE_BSD_COMPAT #define _GNU_SOURCE #endif idjc-0.8.16/c/dyn_mpg123.c0000644000175000017500000001047412630014502011710 00000000000000/* # dyn_mpg123.c: dynamic linking for MPG123 # Copyright (C) 2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef DYN_MPG123 #include #include #include #ifdef HAVE_MPG123_H #include #else #include "mpg123.h" #endif #include "dyn_mpg123.h" static void *handle; static int (*open)(mpg123_handle *, const char *); static mpg123_handle *(*new)(const char *, int *); static void (*exit_)(); static int (*getformat)(mpg123_handle *, long *, int *, int *); static void (*delete)(mpg123_handle *); static int (*close)(mpg123_handle *); static int (*format)(mpg123_handle *, long, int, int); static off_t (*seek)(mpg123_handle *, off_t, int); static int (*open_fd)(mpg123_handle *, int); static int (*format_none)(mpg123_handle *); static int (*param)(mpg123_handle *, enum mpg123_parms, long, double); static int (*init)(); static int (*decode_frame)(mpg123_handle *, off_t *, unsigned char **, size_t *); static void dyn_mpg123_close() { dlclose(handle); } int dyn_mpg123_init() { char *libname = getenv("libmpg123_filename"); fprintf(stderr, "dyn_mpg123_init: using library '%s'\n", libname); if (libname == NULL || libname[0] == '\0' || !(handle = dlopen(libname, RTLD_LAZY))) { fprintf(stderr, "dyn_mpg123_init: failed to open library\n"); return 0; } if (!( (open = dlsym(handle, "mpg123_open")) && (new = dlsym(handle, "mpg123_new")) && (exit_ = dlsym(handle, "mpg123_exit")) && (getformat = dlsym(handle, "mpg123_getformat")) && (delete = dlsym(handle, "mpg123_delete")) && (close = dlsym(handle, "mpg123_close")) && (format = dlsym(handle, "mpg123_format")) && (seek = dlsym(handle, "mpg123_seek")) && (open_fd = dlsym(handle, "mpg123_open_fd")) && (format_none = dlsym(handle, "mpg123_format_none")) && (param = dlsym(handle, "mpg123_param")) && (init = dlsym(handle, "mpg123_init")) && (decode_frame = dlsym(handle, "mpg123_decode_frame")))) { fprintf(stderr, "dyn_mpg123_init: missing symbol in %s: %s\n", libname, dlerror()); return 0; } atexit(dyn_mpg123_close); return 1; } int mpg123_open(mpg123_handle *mh, const char *path) { return open(mh, path); } mpg123_handle *mpg123_new(const char* decoder, int *error) { return new(decoder, error); } void mpg123_exit() { exit_(); } int mpg123_getformat(mpg123_handle *mh, long *rate, int *channels, int *encoding) { return getformat(mh, rate, channels, encoding); } void mpg123_delete(mpg123_handle *mh) { delete(mh); } int mpg123_close(mpg123_handle *mh) { return close(mh); } int mpg123_format(mpg123_handle *mh, long rate, int channels, int encodings) { return format(mh, rate, channels, encodings); } off_t mpg123_seek(mpg123_handle *mh, off_t sampleoff, int whence) { return seek(mh, sampleoff, whence); } int mpg123_open_fd(mpg123_handle *mh, int fd) { return open_fd(mh, fd); } int mpg123_format_none(mpg123_handle *mh) { return format_none(mh); } int mpg123_param(mpg123_handle *mh, enum mpg123_parms type, long value, double fvalue) { return param(mh, type, value, fvalue); } int mpg123_init() { return init(); } int mpg123_decode_frame(mpg123_handle *mh, off_t *num, unsigned char **audio, size_t *bytes) { return decode_frame(mh, num, audio, bytes); } #endif /* DYN_MPG123 */ idjc-0.8.16/c/ogg_speex_dec.h0000644000175000017500000000267312630014502012627 00000000000000/* # ogg_speex_dec.h: speex decoder for oggdec.c # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_SPEEX #include #include #include #include #include "xlplayer.h" struct speexdec_vars { SpeexHeader *header; int stereo; int channels; void *dec_state; SpeexBits bits; float *frame; int frame_size; int nframes; SpeexStereoState stereo_state; int page_granule; int last_granule; int page_nb_packets; int skip_samples; int packet_no; int lookahead; int seek_dump_samples; }; int ogg_speexdec_init(struct xlplayer *xlplayer); #endif /* HAVE_SPEEX */ idjc-0.8.16/c/sig.h0000644000175000017500000000160312630014502010606 00000000000000/* # sig.h: signal masking for pthreads + general handling # Copyright (C) 2011-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ void sig_init(); void sig_mask_thread(); int sig_recent_usr1(); idjc-0.8.16/c/mp3tagread.h0000644000175000017500000000375712630014502012067 00000000000000/* # mp3tagread.h: reads id3 tag + chapter info + Xing header # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef MP3TAGREAD_H #define MP3TAGREAD_H #include "../config.h" #include struct id3data { unsigned char *data; int size; }; struct chapter_text { char *text; int encoding; size_t length; }; struct chapter { struct chapter *next; unsigned int time_begin; unsigned int time_end; unsigned int byte_begin; unsigned int byte_end; struct chapter_text artist; struct chapter_text title; struct chapter_text album; }; struct mp3taginfo { /* from the ID3 tag */ int version; int flags; int tlen; struct chapter *first_chapter; struct chapter *last_chapter; /* from the Xing tag */ int have_frames; int frames; int have_bytes; int bytes; int have_toc; unsigned char toc[100]; int first_byte; int start_frames_drop; int end_frames_drop; }; struct tag_lookup { char *id; void (*fn)(struct mp3taginfo *, unsigned char *); }; void mp3_tag_read(struct mp3taginfo *ti, FILE *fp); void mp3_tag_cleanup(struct mp3taginfo *ti); struct chapter *mp3_tag_chapter_scan(struct mp3taginfo *ti, unsigned time_ms); #endif /* MP3TAGREAD_H */ idjc-0.8.16/c/id3.h0000644000175000017500000000543712630014502010514 00000000000000/* # id3.h: the id3 tag reading/writing part of idjc # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ enum { ID3_LATIN1=0x00, ID3_UTF_8=0x3 }; struct id3_frame_header { char frame_id[5]; unsigned int size; unsigned char status_flags; unsigned char format_flags; }; struct id3_frame { char *compiled_data; int compiled_data_size; int compiled_non_embedded_data_size; struct id3_frame_header frame_header; struct id3_frame *first_embedded_frame; struct id3_frame *next; struct id3_frame *prev; struct id3_tag *tag; void *data; /* eg. points to struct id3_text_frame_data */ }; struct id3_chap_frame_data { char *identifier; unsigned char start_ms[4]; unsigned char end_ms[4]; unsigned char start_byte[4]; unsigned char end_byte[4]; }; struct id3_text_frame_data { unsigned char text_encoding; char *text; int null_terminator; }; struct id3_extended_header { unsigned int size; int n_flagbytes; unsigned char data[1]; }; struct id3_header { unsigned short int version; unsigned int size; unsigned char flags; }; struct id3_tag { void *tag_data; size_t tag_data_size; struct id3_header header; struct id3_extended_header *extended_header; struct id3_frame *first_frame; int padding; }; struct id3_tag *id3_tag_new(int flags, int padding); struct id3_frame *id3_text_frame_new(char *identifier, char *text, unsigned char encoding, int null_terminator); struct id3_frame *id3_numeric_string_frame_new(char *identifier, int value); void id3_add_frame(struct id3_tag *tag, struct id3_frame *frame); void id3_embed_frame(struct id3_frame *parent, struct id3_frame *child); struct id3_frame *id3_chap_frame_new(char *unique_id, uint32_t start_ms, uint32_t end_ms, uint32_t start_byte, uint32_t end_byte); void id3_compile(struct id3_tag *tag); void id3_decompile(struct id3_tag *tag); void id3_remove_frame(struct id3_frame *frame); void id3_frame_destroy(struct id3_frame *frame); void id3_tag_destroy(struct id3_tag *tag); idjc-0.8.16/c/lame.h0000644000175000017500000013776012630014502010760 00000000000000/* * Interface to MP3 LAME encoding engine * * Copyright (c) 1999 Mark Taylor * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /* $Id: lame.h,v 1.189 2011/10/02 14:52:20 robert Exp $ */ #ifndef LAME_LAME_H #define LAME_LAME_H /* for size_t typedef */ #include /* for va_list typedef */ #include /* for FILE typedef, TODO: remove when removing lame_mp3_tags_fid */ #include #if defined(__cplusplus) extern "C" { #endif typedef void (*lame_report_function)(const char *format, va_list ap); #if defined(WIN32) || defined(_WIN32) #undef CDECL #define CDECL __cdecl #else #define CDECL #endif #define DEPRECATED_OR_OBSOLETE_CODE_REMOVED 1 typedef enum vbr_mode_e { vbr_off=0, vbr_mt, /* obsolete, same as vbr_mtrh */ vbr_rh, vbr_abr, vbr_mtrh, vbr_max_indicator, /* Don't use this! It's used for sanity checks. */ vbr_default=vbr_mtrh /* change this to change the default VBR mode of LAME */ } vbr_mode; /* MPEG modes */ typedef enum MPEG_mode_e { STEREO = 0, JOINT_STEREO, DUAL_CHANNEL, /* LAME doesn't supports this! */ MONO, NOT_SET, MAX_INDICATOR /* Don't use this! It's used for sanity checks. */ } MPEG_mode; /* Padding types */ typedef enum Padding_type_e { PAD_NO = 0, PAD_ALL, PAD_ADJUST, PAD_MAX_INDICATOR /* Don't use this! It's used for sanity checks. */ } Padding_type; /*presets*/ typedef enum preset_mode_e { /*values from 8 to 320 should be reserved for abr bitrates*/ /*for abr I'd suggest to directly use the targeted bitrate as a value*/ ABR_8 = 8, ABR_320 = 320, V9 = 410, /*Vx to match Lame and VBR_xx to match FhG*/ VBR_10 = 410, V8 = 420, VBR_20 = 420, V7 = 430, VBR_30 = 430, V6 = 440, VBR_40 = 440, V5 = 450, VBR_50 = 450, V4 = 460, VBR_60 = 460, V3 = 470, VBR_70 = 470, V2 = 480, VBR_80 = 480, V1 = 490, VBR_90 = 490, V0 = 500, VBR_100 = 500, /*still there for compatibility*/ R3MIX = 1000, STANDARD = 1001, EXTREME = 1002, INSANE = 1003, STANDARD_FAST = 1004, EXTREME_FAST = 1005, MEDIUM = 1006, MEDIUM_FAST = 1007 } preset_mode; /*asm optimizations*/ typedef enum asm_optimizations_e { MMX = 1, AMD_3DNOW = 2, SSE = 3 } asm_optimizations; /* psychoacoustic model */ typedef enum Psy_model_e { PSY_GPSYCHO = 1, PSY_NSPSYTUNE = 2 } Psy_model; /* buffer considerations */ typedef enum buffer_constraint_e { MDB_DEFAULT=0, MDB_STRICT_ISO=1, MDB_MAXIMUM=2 } buffer_constraint; struct lame_global_struct; typedef struct lame_global_struct lame_global_flags; typedef lame_global_flags *lame_t; /*********************************************************************** * * The LAME API * These functions should be called, in this order, for each * MP3 file to be encoded. See the file "API" for more documentation * ***********************************************************************/ /* * REQUIRED: * initialize the encoder. sets default for all encoder parameters, * returns NULL if some malloc()'s failed * otherwise returns pointer to structure needed for all future * API calls. */ lame_global_flags * CDECL lame_init(void); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* obsolete version */ int CDECL lame_init_old(lame_global_flags *); #endif /* * OPTIONAL: * set as needed to override defaults */ /******************************************************************** * input stream description ***********************************************************************/ /* number of samples. default = 2^32-1 */ int CDECL lame_set_num_samples(lame_global_flags *, unsigned long); unsigned long CDECL lame_get_num_samples(const lame_global_flags *); /* input sample rate in Hz. default = 44100hz */ int CDECL lame_set_in_samplerate(lame_global_flags *, int); int CDECL lame_get_in_samplerate(const lame_global_flags *); /* number of channels in input stream. default=2 */ int CDECL lame_set_num_channels(lame_global_flags *, int); int CDECL lame_get_num_channels(const lame_global_flags *); /* scale the input by this amount before encoding. default=1 (not used by decoding routines) */ int CDECL lame_set_scale(lame_global_flags *, float); float CDECL lame_get_scale(const lame_global_flags *); /* scale the channel 0 (left) input by this amount before encoding. default=1 (not used by decoding routines) */ int CDECL lame_set_scale_left(lame_global_flags *, float); float CDECL lame_get_scale_left(const lame_global_flags *); /* scale the channel 1 (right) input by this amount before encoding. default=1 (not used by decoding routines) */ int CDECL lame_set_scale_right(lame_global_flags *, float); float CDECL lame_get_scale_right(const lame_global_flags *); /* output sample rate in Hz. default = 0, which means LAME picks best value based on the amount of compression. MPEG only allows: MPEG1 32, 44.1, 48khz MPEG2 16, 22.05, 24 MPEG2.5 8, 11.025, 12 (not used by decoding routines) */ int CDECL lame_set_out_samplerate(lame_global_flags *, int); int CDECL lame_get_out_samplerate(const lame_global_flags *); /******************************************************************** * general control parameters ***********************************************************************/ /* 1=cause LAME to collect data for an MP3 frame analyzer. default=0 */ int CDECL lame_set_analysis(lame_global_flags *, int); int CDECL lame_get_analysis(const lame_global_flags *); /* 1 = write a Xing VBR header frame. default = 1 this variable must have been added by a Hungarian notation Windows programmer :-) */ int CDECL lame_set_bWriteVbrTag(lame_global_flags *, int); int CDECL lame_get_bWriteVbrTag(const lame_global_flags *); /* 1=decode only. use lame/mpglib to convert mp3/ogg to wav. default=0 */ int CDECL lame_set_decode_only(lame_global_flags *, int); int CDECL lame_get_decode_only(const lame_global_flags *); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* 1=encode a Vorbis .ogg file. default=0 */ /* DEPRECATED */ int CDECL lame_set_ogg(lame_global_flags *, int); int CDECL lame_get_ogg(const lame_global_flags *); #endif /* internal algorithm selection. True quality is determined by the bitrate but this variable will effect quality by selecting expensive or cheap algorithms. quality=0..9. 0=best (very slow). 9=worst. recommended: 2 near-best quality, not too slow 5 good quality, fast 7 ok quality, really fast */ int CDECL lame_set_quality(lame_global_flags *, int); int CDECL lame_get_quality(const lame_global_flags *); /* mode = 0,1,2,3 = stereo, jstereo, dual channel (not supported), mono default: lame picks based on compression ration and input channels */ int CDECL lame_set_mode(lame_global_flags *, MPEG_mode); MPEG_mode CDECL lame_get_mode(const lame_global_flags *); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* mode_automs. Use a M/S mode with a switching threshold based on compression ratio DEPRECATED */ int CDECL lame_set_mode_automs(lame_global_flags *, int); int CDECL lame_get_mode_automs(const lame_global_flags *); #endif /* force_ms. Force M/S for all frames. For testing only. default = 0 (disabled) */ int CDECL lame_set_force_ms(lame_global_flags *, int); int CDECL lame_get_force_ms(const lame_global_flags *); /* use free_format? default = 0 (disabled) */ int CDECL lame_set_free_format(lame_global_flags *, int); int CDECL lame_get_free_format(const lame_global_flags *); /* perform ReplayGain analysis? default = 0 (disabled) */ int CDECL lame_set_findReplayGain(lame_global_flags *, int); int CDECL lame_get_findReplayGain(const lame_global_flags *); /* decode on the fly. Search for the peak sample. If the ReplayGain * analysis is enabled then perform the analysis on the decoded data * stream. default = 0 (disabled) * NOTE: if this option is set the build-in decoder should not be used */ int CDECL lame_set_decode_on_the_fly(lame_global_flags *, int); int CDECL lame_get_decode_on_the_fly(const lame_global_flags *); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* DEPRECATED: now does the same as lame_set_findReplayGain() default = 0 (disabled) */ int CDECL lame_set_ReplayGain_input(lame_global_flags *, int); int CDECL lame_get_ReplayGain_input(const lame_global_flags *); /* DEPRECATED: now does the same as lame_set_decode_on_the_fly() && lame_set_findReplayGain() default = 0 (disabled) */ int CDECL lame_set_ReplayGain_decode(lame_global_flags *, int); int CDECL lame_get_ReplayGain_decode(const lame_global_flags *); /* DEPRECATED: now does the same as lame_set_decode_on_the_fly() default = 0 (disabled) */ int CDECL lame_set_findPeakSample(lame_global_flags *, int); int CDECL lame_get_findPeakSample(const lame_global_flags *); #endif /* counters for gapless encoding */ int CDECL lame_set_nogap_total(lame_global_flags*, int); int CDECL lame_get_nogap_total(const lame_global_flags*); int CDECL lame_set_nogap_currentindex(lame_global_flags* , int); int CDECL lame_get_nogap_currentindex(const lame_global_flags*); /* * OPTIONAL: * Set printf like error/debug/message reporting functions. * The second argument has to be a pointer to a function which looks like * void my_debugf(const char *format, va_list ap) * { * (void) vfprintf(stdout, format, ap); * } * If you use NULL as the value of the pointer in the set function, the * lame buildin function will be used (prints to stderr). * To quiet any output you have to replace the body of the example function * with just "return;" and use it in the set function. */ int CDECL lame_set_errorf(lame_global_flags *, lame_report_function); int CDECL lame_set_debugf(lame_global_flags *, lame_report_function); int CDECL lame_set_msgf (lame_global_flags *, lame_report_function); /* set one of brate compression ratio. default is compression ratio of 11. */ int CDECL lame_set_brate(lame_global_flags *, int); int CDECL lame_get_brate(const lame_global_flags *); int CDECL lame_set_compression_ratio(lame_global_flags *, float); float CDECL lame_get_compression_ratio(const lame_global_flags *); int CDECL lame_set_preset( lame_global_flags* gfp, int ); int CDECL lame_set_asm_optimizations( lame_global_flags* gfp, int, int ); /******************************************************************** * frame params ***********************************************************************/ /* mark as copyright. default=0 */ int CDECL lame_set_copyright(lame_global_flags *, int); int CDECL lame_get_copyright(const lame_global_flags *); /* mark as original. default=1 */ int CDECL lame_set_original(lame_global_flags *, int); int CDECL lame_get_original(const lame_global_flags *); /* error_protection. Use 2 bytes from each frame for CRC checksum. default=0 */ int CDECL lame_set_error_protection(lame_global_flags *, int); int CDECL lame_get_error_protection(const lame_global_flags *); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* padding_type. 0=pad no frames 1=pad all frames 2=adjust padding(default) */ int CDECL lame_set_padding_type(lame_global_flags *, Padding_type); Padding_type CDECL lame_get_padding_type(const lame_global_flags *); #endif /* MP3 'private extension' bit Meaningless. default=0 */ int CDECL lame_set_extension(lame_global_flags *, int); int CDECL lame_get_extension(const lame_global_flags *); /* enforce strict ISO compliance. default=0 */ int CDECL lame_set_strict_ISO(lame_global_flags *, int); int CDECL lame_get_strict_ISO(const lame_global_flags *); /******************************************************************** * quantization/noise shaping ***********************************************************************/ /* disable the bit reservoir. For testing only. default=0 */ int CDECL lame_set_disable_reservoir(lame_global_flags *, int); int CDECL lame_get_disable_reservoir(const lame_global_flags *); /* select a different "best quantization" function. default=0 */ int CDECL lame_set_quant_comp(lame_global_flags *, int); int CDECL lame_get_quant_comp(const lame_global_flags *); int CDECL lame_set_quant_comp_short(lame_global_flags *, int); int CDECL lame_get_quant_comp_short(const lame_global_flags *); int CDECL lame_set_experimentalX(lame_global_flags *, int); /* compatibility*/ int CDECL lame_get_experimentalX(const lame_global_flags *); /* another experimental option. for testing only */ int CDECL lame_set_experimentalY(lame_global_flags *, int); int CDECL lame_get_experimentalY(const lame_global_flags *); /* another experimental option. for testing only */ int CDECL lame_set_experimentalZ(lame_global_flags *, int); int CDECL lame_get_experimentalZ(const lame_global_flags *); /* Naoki's psycho acoustic model. default=0 */ int CDECL lame_set_exp_nspsytune(lame_global_flags *, int); int CDECL lame_get_exp_nspsytune(const lame_global_flags *); void CDECL lame_set_msfix(lame_global_flags *, double); float CDECL lame_get_msfix(const lame_global_flags *); /******************************************************************** * VBR control ***********************************************************************/ /* Types of VBR. default = vbr_off = CBR */ int CDECL lame_set_VBR(lame_global_flags *, vbr_mode); vbr_mode CDECL lame_get_VBR(const lame_global_flags *); /* VBR quality level. 0=highest 9=lowest */ int CDECL lame_set_VBR_q(lame_global_flags *, int); int CDECL lame_get_VBR_q(const lame_global_flags *); /* VBR quality level. 0=highest 9=lowest, Range [0,...,10[ */ int CDECL lame_set_VBR_quality(lame_global_flags *, float); float CDECL lame_get_VBR_quality(const lame_global_flags *); /* Ignored except for VBR=vbr_abr (ABR mode) */ int CDECL lame_set_VBR_mean_bitrate_kbps(lame_global_flags *, int); int CDECL lame_get_VBR_mean_bitrate_kbps(const lame_global_flags *); int CDECL lame_set_VBR_min_bitrate_kbps(lame_global_flags *, int); int CDECL lame_get_VBR_min_bitrate_kbps(const lame_global_flags *); int CDECL lame_set_VBR_max_bitrate_kbps(lame_global_flags *, int); int CDECL lame_get_VBR_max_bitrate_kbps(const lame_global_flags *); /* 1=strictly enforce VBR_min_bitrate. Normally it will be violated for analog silence */ int CDECL lame_set_VBR_hard_min(lame_global_flags *, int); int CDECL lame_get_VBR_hard_min(const lame_global_flags *); /* for preset */ #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else int CDECL lame_set_preset_expopts(lame_global_flags *, int); #endif /******************************************************************** * Filtering control ***********************************************************************/ /* freq in Hz to apply lowpass. Default = 0 = lame chooses. -1 = disabled */ int CDECL lame_set_lowpassfreq(lame_global_flags *, int); int CDECL lame_get_lowpassfreq(const lame_global_flags *); /* width of transition band, in Hz. Default = one polyphase filter band */ int CDECL lame_set_lowpasswidth(lame_global_flags *, int); int CDECL lame_get_lowpasswidth(const lame_global_flags *); /* freq in Hz to apply highpass. Default = 0 = lame chooses. -1 = disabled */ int CDECL lame_set_highpassfreq(lame_global_flags *, int); int CDECL lame_get_highpassfreq(const lame_global_flags *); /* width of transition band, in Hz. Default = one polyphase filter band */ int CDECL lame_set_highpasswidth(lame_global_flags *, int); int CDECL lame_get_highpasswidth(const lame_global_flags *); /******************************************************************** * psycho acoustics and other arguments which you should not change * unless you know what you are doing ***********************************************************************/ /* only use ATH for masking */ int CDECL lame_set_ATHonly(lame_global_flags *, int); int CDECL lame_get_ATHonly(const lame_global_flags *); /* only use ATH for short blocks */ int CDECL lame_set_ATHshort(lame_global_flags *, int); int CDECL lame_get_ATHshort(const lame_global_flags *); /* disable ATH */ int CDECL lame_set_noATH(lame_global_flags *, int); int CDECL lame_get_noATH(const lame_global_flags *); /* select ATH formula */ int CDECL lame_set_ATHtype(lame_global_flags *, int); int CDECL lame_get_ATHtype(const lame_global_flags *); /* lower ATH by this many db */ int CDECL lame_set_ATHlower(lame_global_flags *, float); float CDECL lame_get_ATHlower(const lame_global_flags *); /* select ATH adaptive adjustment type */ int CDECL lame_set_athaa_type( lame_global_flags *, int); int CDECL lame_get_athaa_type( const lame_global_flags *); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* select the loudness approximation used by the ATH adaptive auto-leveling */ int CDECL lame_set_athaa_loudapprox( lame_global_flags *, int); int CDECL lame_get_athaa_loudapprox( const lame_global_flags *); #endif /* adjust (in dB) the point below which adaptive ATH level adjustment occurs */ int CDECL lame_set_athaa_sensitivity( lame_global_flags *, float); float CDECL lame_get_athaa_sensitivity( const lame_global_flags* ); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* OBSOLETE: predictability limit (ISO tonality formula) */ int CDECL lame_set_cwlimit(lame_global_flags *, int); int CDECL lame_get_cwlimit(const lame_global_flags *); #endif /* allow blocktypes to differ between channels? default: 0 for jstereo, 1 for stereo */ int CDECL lame_set_allow_diff_short(lame_global_flags *, int); int CDECL lame_get_allow_diff_short(const lame_global_flags *); /* use temporal masking effect (default = 1) */ int CDECL lame_set_useTemporal(lame_global_flags *, int); int CDECL lame_get_useTemporal(const lame_global_flags *); /* use temporal masking effect (default = 1) */ int CDECL lame_set_interChRatio(lame_global_flags *, float); float CDECL lame_get_interChRatio(const lame_global_flags *); /* disable short blocks */ int CDECL lame_set_no_short_blocks(lame_global_flags *, int); int CDECL lame_get_no_short_blocks(const lame_global_flags *); /* force short blocks */ int CDECL lame_set_force_short_blocks(lame_global_flags *, int); int CDECL lame_get_force_short_blocks(const lame_global_flags *); /* Input PCM is emphased PCM (for instance from one of the rarely emphased CDs), it is STRONGLY not recommended to use this, because psycho does not take it into account, and last but not least many decoders ignore these bits */ int CDECL lame_set_emphasis(lame_global_flags *, int); int CDECL lame_get_emphasis(const lame_global_flags *); /************************************************************************/ /* internal variables, cannot be set... */ /* provided because they may be of use to calling application */ /************************************************************************/ /* version 0=MPEG-2 1=MPEG-1 (2=MPEG-2.5) */ int CDECL lame_get_version(const lame_global_flags *); /* encoder delay */ int CDECL lame_get_encoder_delay(const lame_global_flags *); /* padding appended to the input to make sure decoder can fully decode all input. Note that this value can only be calculated during the call to lame_encoder_flush(). Before lame_encoder_flush() has been called, the value of encoder_padding = 0. */ int CDECL lame_get_encoder_padding(const lame_global_flags *); /* size of MPEG frame */ int CDECL lame_get_framesize(const lame_global_flags *); /* number of PCM samples buffered, but not yet encoded to mp3 data. */ int CDECL lame_get_mf_samples_to_encode( const lame_global_flags* gfp ); /* size (bytes) of mp3 data buffered, but not yet encoded. this is the number of bytes which would be output by a call to lame_encode_flush_nogap. NOTE: lame_encode_flush() will return more bytes than this because it will encode the reamining buffered PCM samples before flushing the mp3 buffers. */ int CDECL lame_get_size_mp3buffer( const lame_global_flags* gfp ); /* number of frames encoded so far */ int CDECL lame_get_frameNum(const lame_global_flags *); /* lame's estimate of the total number of frames to be encoded only valid if calling program set num_samples */ int CDECL lame_get_totalframes(const lame_global_flags *); /* RadioGain value. Multiplied by 10 and rounded to the nearest. */ int CDECL lame_get_RadioGain(const lame_global_flags *); /* AudiophileGain value. Multipled by 10 and rounded to the nearest. */ int CDECL lame_get_AudiophileGain(const lame_global_flags *); /* the peak sample */ float CDECL lame_get_PeakSample(const lame_global_flags *); /* Gain change required for preventing clipping. The value is correct only if peak sample searching was enabled. If negative then the waveform already does not clip. The value is multiplied by 10 and rounded up. */ int CDECL lame_get_noclipGainChange(const lame_global_flags *); /* user-specified scale factor required for preventing clipping. Value is correct only if peak sample searching was enabled and no user-specified scaling was performed. If negative then either the waveform already does not clip or the value cannot be determined */ float CDECL lame_get_noclipScale(const lame_global_flags *); /* * REQUIRED: * sets more internal configuration based on data provided above. * returns -1 if something failed. */ int CDECL lame_init_params(lame_global_flags *); /* * OPTIONAL: * get the version number, in a string. of the form: * "3.63 (beta)" or just "3.63". */ const char* CDECL get_lame_version ( void ); const char* CDECL get_lame_short_version ( void ); const char* CDECL get_lame_very_short_version ( void ); const char* CDECL get_psy_version ( void ); const char* CDECL get_lame_url ( void ); const char* CDECL get_lame_os_bitness ( void ); /* * OPTIONAL: * get the version numbers in numerical form. */ typedef struct { /* generic LAME version */ int major; int minor; int alpha; /* 0 if not an alpha version */ int beta; /* 0 if not a beta version */ /* version of the psy model */ int psy_major; int psy_minor; int psy_alpha; /* 0 if not an alpha version */ int psy_beta; /* 0 if not a beta version */ /* compile time features */ const char *features; /* Don't make assumptions about the contents! */ } lame_version_t; void CDECL get_lame_version_numerical(lame_version_t *); /* * OPTIONAL: * print internal lame configuration to message handler */ void CDECL lame_print_config(const lame_global_flags* gfp); void CDECL lame_print_internals( const lame_global_flags *gfp); /* * input pcm data, output (maybe) mp3 frames. * This routine handles all buffering, resampling and filtering for you. * * return code number of bytes output in mp3buf. Can be 0 * -1: mp3buf was too small * -2: malloc() problem * -3: lame_init_params() not called * -4: psycho acoustic problems * * The required mp3buf_size can be computed from num_samples, * samplerate and encoding rate, but here is a worst case estimate: * * mp3buf_size in bytes = 1.25*num_samples + 7200 * * I think a tighter bound could be: (mt, March 2000) * MPEG1: * num_samples*(bitrate/8)/samplerate + 4*1152*(bitrate/8)/samplerate + 512 * MPEG2: * num_samples*(bitrate/8)/samplerate + 4*576*(bitrate/8)/samplerate + 256 * * but test first if you use that! * * set mp3buf_size = 0 and LAME will not check if mp3buf_size is * large enough. * * NOTE: * if gfp->num_channels=2, but gfp->mode = 3 (mono), the L & R channels * will be averaged into the L channel before encoding only the L channel * This will overwrite the data in buffer_l[] and buffer_r[]. * */ int CDECL lame_encode_buffer ( lame_global_flags* gfp, /* global context handle */ const short int buffer_l [], /* PCM data for left channel */ const short int buffer_r [], /* PCM data for right channel */ const int nsamples, /* number of samples per channel */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ const int mp3buf_size ); /* number of valid octets in this stream */ /* * as above, but input has L & R channel data interleaved. * NOTE: * num_samples = number of samples in the L (or R) * channel, not the total number of samples in pcm[] */ int CDECL lame_encode_buffer_interleaved( lame_global_flags* gfp, /* global context handlei */ short int pcm[], /* PCM data for left and right channel, interleaved */ int num_samples, /* number of samples per channel, _not_ number of samples in pcm[] */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ int mp3buf_size ); /* number of valid octets in this stream */ /* as lame_encode_buffer, but for 'float's. * !! NOTE: !! data must still be scaled to be in the same range as * short int, +/- 32768 */ int CDECL lame_encode_buffer_float( lame_global_flags* gfp, /* global context handle */ const float pcm_l [], /* PCM data for left channel */ const float pcm_r [], /* PCM data for right channel */ const int nsamples, /* number of samples per channel */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ const int mp3buf_size ); /* number of valid octets in this stream */ /* as lame_encode_buffer, but for 'float's. * !! NOTE: !! data must be scaled to +/- 1 full scale */ int CDECL lame_encode_buffer_ieee_float( lame_t gfp, const float pcm_l [], /* PCM data for left channel */ const float pcm_r [], /* PCM data for right channel */ const int nsamples, unsigned char * mp3buf, const int mp3buf_size); int CDECL lame_encode_buffer_interleaved_ieee_float( lame_t gfp, const float pcm[], /* PCM data for left and right channel, interleaved */ const int nsamples, unsigned char * mp3buf, const int mp3buf_size); /* as lame_encode_buffer, but for 'double's. * !! NOTE: !! data must be scaled to +/- 1 full scale */ int CDECL lame_encode_buffer_ieee_double( lame_t gfp, const double pcm_l [], /* PCM data for left channel */ const double pcm_r [], /* PCM data for right channel */ const int nsamples, unsigned char * mp3buf, const int mp3buf_size); int CDECL lame_encode_buffer_interleaved_ieee_double( lame_t gfp, const double pcm[], /* PCM data for left and right channel, interleaved */ const int nsamples, unsigned char * mp3buf, const int mp3buf_size); /* as lame_encode_buffer, but for long's * !! NOTE: !! data must still be scaled to be in the same range as * short int, +/- 32768 * * This scaling was a mistake (doesn't allow one to exploit full * precision of type 'long'. Use lame_encode_buffer_long2() instead. * */ int CDECL lame_encode_buffer_long( lame_global_flags* gfp, /* global context handle */ const long buffer_l [], /* PCM data for left channel */ const long buffer_r [], /* PCM data for right channel */ const int nsamples, /* number of samples per channel */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ const int mp3buf_size ); /* number of valid octets in this stream */ /* Same as lame_encode_buffer_long(), but with correct scaling. * !! NOTE: !! data must still be scaled to be in the same range as * type 'long'. Data should be in the range: +/- 2^(8*size(long)-1) * */ int CDECL lame_encode_buffer_long2( lame_global_flags* gfp, /* global context handle */ const long buffer_l [], /* PCM data for left channel */ const long buffer_r [], /* PCM data for right channel */ const int nsamples, /* number of samples per channel */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ const int mp3buf_size ); /* number of valid octets in this stream */ /* as lame_encode_buffer, but for int's * !! NOTE: !! input should be scaled to the maximum range of 'int' * If int is 4 bytes, then the values should range from * +/- 2147483648. * * This routine does not (and cannot, without loosing precision) use * the same scaling as the rest of the lame_encode_buffer() routines. * */ int CDECL lame_encode_buffer_int( lame_global_flags* gfp, /* global context handle */ const int buffer_l [], /* PCM data for left channel */ const int buffer_r [], /* PCM data for right channel */ const int nsamples, /* number of samples per channel */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ const int mp3buf_size ); /* number of valid octets in this stream */ /* * REQUIRED: * lame_encode_flush will flush the intenal PCM buffers, padding with * 0's to make sure the final frame is complete, and then flush * the internal MP3 buffers, and thus may return a * final few mp3 frames. 'mp3buf' should be at least 7200 bytes long * to hold all possible emitted data. * * will also write id3v1 tags (if any) into the bitstream * * return code = number of bytes output to mp3buf. Can be 0 */ int CDECL lame_encode_flush( lame_global_flags * gfp, /* global context handle */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ int size); /* number of valid octets in this stream */ /* * OPTIONAL: * lame_encode_flush_nogap will flush the internal mp3 buffers and pad * the last frame with ancillary data so it is a complete mp3 frame. * * 'mp3buf' should be at least 7200 bytes long * to hold all possible emitted data. * * After a call to this routine, the outputed mp3 data is complete, but * you may continue to encode new PCM samples and write future mp3 data * to a different file. The two mp3 files will play back with no gaps * if they are concatenated together. * * This routine will NOT write id3v1 tags into the bitstream. * * return code = number of bytes output to mp3buf. Can be 0 */ int CDECL lame_encode_flush_nogap( lame_global_flags * gfp, /* global context handle */ unsigned char* mp3buf, /* pointer to encoded MP3 stream */ int size); /* number of valid octets in this stream */ /* * OPTIONAL: * Normally, this is called by lame_init_params(). It writes id3v2 and * Xing headers into the front of the bitstream, and sets frame counters * and bitrate histogram data to 0. You can also call this after * lame_encode_flush_nogap(). */ int CDECL lame_init_bitstream( lame_global_flags * gfp); /* global context handle */ /* * OPTIONAL: some simple statistics * a bitrate histogram to visualize the distribution of used frame sizes * a stereo mode histogram to visualize the distribution of used stereo * modes, useful in joint-stereo mode only * 0: LR left-right encoded * 1: LR-I left-right and intensity encoded (currently not supported) * 2: MS mid-side encoded * 3: MS-I mid-side and intensity encoded (currently not supported) * * attention: don't call them after lame_encode_finish * suggested: lame_encode_flush -> lame_*_hist -> lame_close */ void CDECL lame_bitrate_hist( const lame_global_flags * gfp, int bitrate_count[14] ); void CDECL lame_bitrate_kbps( const lame_global_flags * gfp, int bitrate_kbps [14] ); void CDECL lame_stereo_mode_hist( const lame_global_flags * gfp, int stereo_mode_count[4] ); void CDECL lame_bitrate_stereo_mode_hist ( const lame_global_flags * gfp, int bitrate_stmode_count[14][4] ); void CDECL lame_block_type_hist ( const lame_global_flags * gfp, int btype_count[6] ); void CDECL lame_bitrate_block_type_hist ( const lame_global_flags * gfp, int bitrate_btype_count[14][6] ); #if (DEPRECATED_OR_OBSOLETE_CODE_REMOVED && 0) #else /* * OPTIONAL: * lame_mp3_tags_fid will rewrite a Xing VBR tag to the mp3 file with file * pointer fid. These calls perform forward and backwards seeks, so make * sure fid is a real file. Make sure lame_encode_flush has been called, * and all mp3 data has been written to the file before calling this * function. * NOTE: * if VBR tags are turned off by the user, or turned off by LAME because * the output is not a regular file, this call does nothing * NOTE: * LAME wants to read from the file to skip an optional ID3v2 tag, so * make sure you opened the file for writing and reading. * NOTE: * You can call lame_get_lametag_frame instead, if you want to insert * the lametag yourself. */ void CDECL lame_mp3_tags_fid(lame_global_flags *, FILE* fid); #endif /* * OPTIONAL: * lame_get_lametag_frame copies the final LAME-tag into 'buffer'. * The function returns the number of bytes copied into buffer, or * the required buffer size, if the provided buffer is too small. * Function failed, if the return value is larger than 'size'! * Make sure lame_encode flush has been called before calling this function. * NOTE: * if VBR tags are turned off by the user, or turned off by LAME, * this call does nothing and returns 0. * NOTE: * LAME inserted an empty frame in the beginning of mp3 audio data, * which you have to replace by the final LAME-tag frame after encoding. * In case there is no ID3v2 tag, usually this frame will be the very first * data in your mp3 file. If you put some other leading data into your * file, you'll have to do some bookkeeping about where to write this buffer. */ size_t CDECL lame_get_lametag_frame( const lame_global_flags *, unsigned char* buffer, size_t size); /* * REQUIRED: * final call to free all remaining buffers */ int CDECL lame_close (lame_global_flags *); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* * OBSOLETE: * lame_encode_finish combines lame_encode_flush() and lame_close() in * one call. However, once this call is made, the statistics routines * will no longer work because the data will have been cleared, and * lame_mp3_tags_fid() cannot be called to add data to the VBR header */ int CDECL lame_encode_finish( lame_global_flags* gfp, unsigned char* mp3buf, int size ); #endif /********************************************************************* * * decoding * * a simple interface to mpglib, part of mpg123, is also included if * libmp3lame is compiled with HAVE_MPGLIB * *********************************************************************/ struct hip_global_struct; typedef struct hip_global_struct hip_global_flags; typedef hip_global_flags *hip_t; typedef struct { int header_parsed; /* 1 if header was parsed and following data was computed */ int stereo; /* number of channels */ int samplerate; /* sample rate */ int bitrate; /* bitrate */ int mode; /* mp3 frame type */ int mode_ext; /* mp3 frame type */ int framesize; /* number of samples per mp3 frame */ /* this data is only computed if mpglib detects a Xing VBR header */ unsigned long nsamp; /* number of samples in mp3 file. */ int totalframes; /* total number of frames in mp3 file */ /* this data is not currently computed by the mpglib routines */ int framenum; /* frames decoded counter */ } mp3data_struct; /* required call to initialize decoder */ hip_t CDECL hip_decode_init(void); /* cleanup call to exit decoder */ int CDECL hip_decode_exit(hip_t gfp); /* HIP reporting functions */ void CDECL hip_set_errorf(hip_t gfp, lame_report_function f); void CDECL hip_set_debugf(hip_t gfp, lame_report_function f); void CDECL hip_set_msgf (hip_t gfp, lame_report_function f); /********************************************************************* * input 1 mp3 frame, output (maybe) pcm data. * * nout = hip_decode(hip, mp3buf,len,pcm_l,pcm_r); * * input: * len : number of bytes of mp3 data in mp3buf * mp3buf[len] : mp3 data to be decoded * * output: * nout: -1 : decoding error * 0 : need more data before we can complete the decode * >0 : returned 'nout' samples worth of data in pcm_l,pcm_r * pcm_l[nout] : left channel data * pcm_r[nout] : right channel data * *********************************************************************/ int CDECL hip_decode( hip_t gfp , unsigned char * mp3buf , size_t len , short pcm_l[] , short pcm_r[] ); /* same as hip_decode, and also returns mp3 header data */ int CDECL hip_decode_headers( hip_t gfp , unsigned char* mp3buf , size_t len , short pcm_l[] , short pcm_r[] , mp3data_struct* mp3data ); /* same as hip_decode, but returns at most one frame */ int CDECL hip_decode1( hip_t gfp , unsigned char* mp3buf , size_t len , short pcm_l[] , short pcm_r[] ); /* same as hip_decode1, but returns at most one frame and mp3 header data */ int CDECL hip_decode1_headers( hip_t gfp , unsigned char* mp3buf , size_t len , short pcm_l[] , short pcm_r[] , mp3data_struct* mp3data ); /* same as hip_decode1_headers, but also returns enc_delay and enc_padding from VBR Info tag, (-1 if no info tag was found) */ int CDECL hip_decode1_headersB( hip_t gfp , unsigned char* mp3buf , size_t len , short pcm_l[] , short pcm_r[] , mp3data_struct* mp3data , int *enc_delay , int *enc_padding ); /* OBSOLETE: * lame_decode... functions are there to keep old code working * but it is strongly recommended to replace calls by hip_decode... * function calls, see above. */ #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else int CDECL lame_decode_init(void); int CDECL lame_decode( unsigned char * mp3buf, int len, short pcm_l[], short pcm_r[] ); int CDECL lame_decode_headers( unsigned char* mp3buf, int len, short pcm_l[], short pcm_r[], mp3data_struct* mp3data ); int CDECL lame_decode1( unsigned char* mp3buf, int len, short pcm_l[], short pcm_r[] ); int CDECL lame_decode1_headers( unsigned char* mp3buf, int len, short pcm_l[], short pcm_r[], mp3data_struct* mp3data ); int CDECL lame_decode1_headersB( unsigned char* mp3buf, int len, short pcm_l[], short pcm_r[], mp3data_struct* mp3data, int *enc_delay, int *enc_padding ); int CDECL lame_decode_exit(void); #endif /* obsolete lame_decode API calls */ /********************************************************************* * * id3tag stuff * *********************************************************************/ /* * id3tag.h -- Interface to write ID3 version 1 and 2 tags. * * Copyright (C) 2000 Don Melton. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ /* utility to obtain alphabetically sorted list of genre names with numbers */ void CDECL id3tag_genre_list( void (*handler)(int, const char *, void *), void* cookie); void CDECL id3tag_init (lame_t gfp); /* force addition of version 2 tag */ void CDECL id3tag_add_v2 (lame_t gfp); /* add only a version 1 tag */ void CDECL id3tag_v1_only (lame_t gfp); /* add only a version 2 tag */ void CDECL id3tag_v2_only (lame_t gfp); /* pad version 1 tag with spaces instead of nulls */ void CDECL id3tag_space_v1 (lame_t gfp); /* pad version 2 tag with extra 128 bytes */ void CDECL id3tag_pad_v2 (lame_t gfp); /* pad version 2 tag with extra n bytes */ void CDECL id3tag_set_pad (lame_t gfp, size_t n); void CDECL id3tag_set_title(lame_t gfp, const char* title); void CDECL id3tag_set_artist(lame_t gfp, const char* artist); void CDECL id3tag_set_album(lame_t gfp, const char* album); void CDECL id3tag_set_year(lame_t gfp, const char* year); void CDECL id3tag_set_comment(lame_t gfp, const char* comment); /* return -1 result if track number is out of ID3v1 range and ignored for ID3v1 */ int CDECL id3tag_set_track(lame_t gfp, const char* track); /* return non-zero result if genre name or number is invalid result 0: OK result -1: genre number out of range result -2: no valid ID3v1 genre name, mapped to ID3v1 'Other' but taken as-is for ID3v2 genre tag */ int CDECL id3tag_set_genre(lame_t gfp, const char* genre); /* return non-zero result if field name is invalid */ int CDECL id3tag_set_fieldvalue(lame_t gfp, const char* fieldvalue); /* return non-zero result if image type is invalid */ int CDECL id3tag_set_albumart(lame_t gfp, const char* image, size_t size); /* lame_get_id3v1_tag copies ID3v1 tag into buffer. * Function returns number of bytes copied into buffer, or number * of bytes rquired if buffer 'size' is too small. * Function fails, if returned value is larger than 'size'. * NOTE: * This functions does nothing, if user/LAME disabled ID3v1 tag. */ size_t CDECL lame_get_id3v1_tag(lame_t gfp, unsigned char* buffer, size_t size); /* lame_get_id3v2_tag copies ID3v2 tag into buffer. * Function returns number of bytes copied into buffer, or number * of bytes rquired if buffer 'size' is too small. * Function fails, if returned value is larger than 'size'. * NOTE: * This functions does nothing, if user/LAME disabled ID3v2 tag. */ size_t CDECL lame_get_id3v2_tag(lame_t gfp, unsigned char* buffer, size_t size); /* normaly lame_init_param writes ID3v2 tags into the audio stream * Call lame_set_write_id3tag_automatic(gfp, 0) before lame_init_param * to turn off this behaviour and get ID3v2 tag with above function * write it yourself into your file. */ void CDECL lame_set_write_id3tag_automatic(lame_global_flags * gfp, int); int CDECL lame_get_write_id3tag_automatic(lame_global_flags const* gfp); /* experimental */ int CDECL id3tag_set_textinfo_latin1(lame_global_flags * gfp, char const *id, char const *text); /* experimental */ int CDECL id3tag_set_comment_latin1(lame_global_flags * gfp, char const *lang, char const *desc, char const *text); #if DEPRECATED_OR_OBSOLETE_CODE_REMOVED #else /* experimental */ int CDECL id3tag_set_textinfo_ucs2(lame_global_flags * gfp, char const *id, unsigned short const *text); /* experimental */ int CDECL id3tag_set_comment_ucs2(lame_global_flags * gfp, char const *lang, unsigned short const *desc, unsigned short const *text); /* experimental */ int CDECL id3tag_set_fieldvalue_ucs2(lame_t gfp, const unsigned short *fieldvalue); #endif /* experimental */ int CDECL id3tag_set_fieldvalue_utf16(lame_t gfp, const unsigned short *fieldvalue); /* experimental */ int CDECL id3tag_set_textinfo_utf16(lame_global_flags * gfp, char const *id, unsigned short const *text); /* experimental */ int CDECL id3tag_set_comment_utf16(lame_global_flags * gfp, char const *lang, unsigned short const *desc, unsigned short const *text); /*********************************************************************** * * list of valid bitrates [kbps] & sample frequencies [Hz]. * first index: 0: MPEG-2 values (sample frequencies 16...24 kHz) * 1: MPEG-1 values (sample frequencies 32...48 kHz) * 2: MPEG-2.5 values (sample frequencies 8...12 kHz) ***********************************************************************/ extern const int bitrate_table [3][16]; extern const int samplerate_table [3][ 4]; /* access functions for use in DLL, global vars are not exported */ int CDECL lame_get_bitrate(int mpeg_version, int table_index); int CDECL lame_get_samplerate(int mpeg_version, int table_index); /* maximum size of albumart image (128KB), which affects LAME_MAXMP3BUFFER as well since lame_encode_buffer() also returns ID3v2 tag data */ #define LAME_MAXALBUMART (128 * 1024) /* maximum size of mp3buffer needed if you encode at most 1152 samples for each call to lame_encode_buffer. see lame_encode_buffer() below (LAME_MAXMP3BUFFER is now obsolete) */ #define LAME_MAXMP3BUFFER (16384 + LAME_MAXALBUMART) typedef enum { LAME_OKAY = 0, LAME_NOERROR = 0, LAME_GENERICERROR = -1, LAME_NOMEM = -10, LAME_BADBITRATE = -11, LAME_BADSAMPFREQ = -12, LAME_INTERNALERROR = -13, FRONTEND_READERROR = -80, FRONTEND_WRITEERROR = -81, FRONTEND_FILETOOLARGE = -82 } lame_errorcodes_t; #if defined(__cplusplus) } #endif #endif /* LAME_LAME_H */ idjc-0.8.16/c/live_mp3_encoder.c0000644000175000017500000001462412630014502013243 00000000000000/* # live_mp3_encoder.c: encode mp3 files from a live source # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #include #include #include #include #include "sourceclient.h" #include "live_mp3_encoder.h" #define READSIZE 1024 typedef jack_default_audio_sample_t sample_t; static void live_mp3_packetize_metadata(struct encoder *e, struct lm3e_data * const s) { size_t l = 4; pthread_mutex_lock(&e->metadata_mutex); l += strlen(e->custom_meta); l += strlen(e->artist); l += strlen(e->title); l += strlen(e->album); if ((s->metadata = realloc(s->metadata, l))) snprintf(s->metadata, l, "%s\n%s\n%s\n%s", e->custom_meta, e->artist, e->title, e->album); else fprintf(stderr, "malloc failure\n"); e->new_metadata = FALSE; pthread_mutex_unlock(&e->metadata_mutex); } static int live_mp3_write_packet(struct encoder *encoder, struct lm3e_data *s, unsigned char *buffer, size_t buffersize, int flags) { struct encoder_op_packet packet; packet.header.bit_rate = encoder->bitrate; packet.header.sample_rate = encoder->target_samplerate; packet.header.n_channels = encoder->n_channels; packet.header.flags = flags; packet.header.data_size = buffersize; packet.header.serial = encoder->oggserial; packet.header.timestamp = encoder->timestamp = s->lame_samples / (double)encoder->target_samplerate; packet.data = buffer; encoder_write_packet_all(encoder, &packet); return 1; } static void live_mp3_encoder_main(struct encoder *encoder) { struct lm3e_data * const s = encoder->encoder_private; struct encoder_ip_data *id; int mp3bytes = 0; if (encoder->encoder_state == ES_STARTING) { if (!(s->mp3buf = malloc(s->mp3bufsize = (int)(1.25 * 8192.0 + 7200.0)))) { fprintf(stderr, "live_mp3_encoder_main: malloc failure\n"); goto bailout; } if (!(s->gfp = lame_init())) { fprintf(stderr, "live_mp3_encoder_main: failed to initialise LAME\n"); free(s->mp3buf); goto bailout; } lame_set_num_channels(s->gfp, encoder->n_channels); lame_set_brate(s->gfp, encoder->bitrate); lame_set_in_samplerate(s->gfp, encoder->target_samplerate); lame_set_out_samplerate(s->gfp, encoder->target_samplerate); lame_set_mode(s->gfp, s->lame_mode); lame_set_quality(s->gfp, s->lame_quality); lame_set_bWriteVbrTag(s->gfp, 0); lame_set_scale(s->gfp, 32767.0f); if (lame_init_params(s->gfp) < 0) { fprintf(stderr, "live_mp3_encoder_main: LAME rejected the parameters given\n"); lame_close(s->gfp); free(s->mp3buf); goto bailout; } ++encoder->oggserial; s->packetflags = PF_INITIAL; s->lame_samples = 0; if (encoder->run_request_f) encoder->encoder_state = ES_RUNNING; else encoder->encoder_state = ES_STOPPING; return; } if (encoder->encoder_state == ES_RUNNING) { if (encoder->flush || !encoder->run_request_f) { encoder->flush = FALSE; mp3bytes = lame_encode_flush_nogap(s->gfp, s->mp3buf, s->mp3bufsize); fprintf(stderr, "live_mp3_encoder_main: flushing %d bytes\n", mp3bytes); live_mp3_write_packet(encoder, s, s->mp3buf, mp3bytes, PF_MP3 | PF_FINAL); encoder->encoder_state = ES_STOPPING; } else { if ((id = encoder_get_input_data(encoder, 1024, 8192, NULL))) { mp3bytes = lame_encode_buffer_float(s->gfp, id->buffer[0], id->buffer[1], id->qty_samples, s->mp3buf, s->mp3bufsize); s->lame_samples += id->qty_samples; encoder_ip_data_free(id); live_mp3_write_packet(encoder, s, s->mp3buf, mp3bytes, PF_MP3 | s->packetflags); s->packetflags = PF_UNSET; } if (encoder->new_metadata && encoder->use_metadata) { live_mp3_packetize_metadata(encoder, s); if (s->metadata) live_mp3_write_packet(encoder, s, (unsigned char *)s->metadata, strlen(s->metadata) + 1, PF_METADATA); } } return; } if (encoder->encoder_state == ES_STOPPING) { lame_close(s->gfp); free(s->mp3buf); if (encoder->run_request_f) { encoder->encoder_state = ES_STARTING; return; } } bailout: fprintf(stderr, "live_mp3_encoder_main: performing cleanup\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->flush = FALSE; encoder->encoder_private = NULL; if (s->metadata) free(s->metadata); free(s); fprintf(stderr, "live_mp3_encoder_main: finished cleanup\n"); } int live_mp3_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { struct lm3e_data * const s = calloc(1, sizeof (struct lm3e_data)); if (!s) { fprintf(stderr, "live_mp3_encoder: malloc failure\n"); return FAILED; } if (!(strcmp("stereo", ev->mode))) s->lame_mode = 0; else if (!(strcmp("jointstereo", ev->mode))) s->lame_mode = 1; else if (!(strcmp("mono", ev->mode))) s->lame_mode = 3; s->lame_quality = atoi(ev->quality); encoder->encoder_private = s; encoder->run_encoder = live_mp3_encoder_main; return SUCCEEDED; } idjc-0.8.16/c/live_ogg_encoder.h0000644000175000017500000000244512630014502013323 00000000000000/* # live_ogg_encoder.h: encode ogg files from a live source # Copyright (C) 2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef HAVE_OGGENC #define HAVE_OGGENC #include #include "sourceclient.h" struct ogg_tag_data { char *custom; char *artist; char *title; char *album; }; int live_ogg_encoder_init(struct encoder *encoder, struct encoder_vars *ev); int live_ogg_write_packet(struct encoder *encoder, ogg_page *op, int flags); void live_ogg_capture_metadata(struct encoder *e, struct ogg_tag_data *td); void live_ogg_free_metadata(struct ogg_tag_data *td); #endif idjc-0.8.16/c/vorbistagparse.c0000644000175000017500000002647612630014502013071 00000000000000/* # vorbistagparse.c: parse vorbis tags # Copyright (C) 2013 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include #include "vorbistagparse.h" /* READINT: read little endian uint32_t value pointed to by p and advance p */ #define GET(p, ind, shift) ((uint32_t)((unsigned const char *)p)[ind] << shift) #define READINT(p) (p += 4, GET(p, -1, 24) | GET(p, -2, 16) | \ GET(p, -3, 8) | GET(p, -4, 0)) #define SET(p, ind, shift, v) do {((unsigned char *)p)[ind] = v >> shift;} while (0) #define WRITEINT(p, v) do {p += 4; SET(p, -1, 24, v); SET(p, -2, 16, v); \ SET(p, -3, 8, v); SET(p, -4, 0, v);} while (0) struct vtag { GHashTable *hash_table; /* table of g_slists of key=value pairs */ char *vendor_string; }; struct vtag_block_private { size_t blocklen; }; static int key_valid(char const *key, size_t n) { if (n == 0) return 0; while (n--) { if (*key < 0x20 || *key > 0x7D || *key == '=') return 0; ++key; } return !0; } static char * strlwr(char *s) { if (s == NULL) return NULL; for (char *p = s; *p; ++p) *p = tolower(*p); return s; } /* key and value must be dedicated copies and heap allocated */ static void insert_value(GHashTable *hash_table, char *key, char *value) { GSList *slist = NULL; gpointer orig_key = NULL; if (g_hash_table_lookup_extended(hash_table, key, &orig_key, (gpointer *)&slist)) { g_hash_table_steal(hash_table, key); free(orig_key); } slist = g_slist_append(slist, (gpointer)value); g_hash_table_insert(hash_table, key, (gpointer)slist); } static enum vtag_error parse(struct vtag *s, char const * const data, size_t bytes) { char const *p = data, *end = p + bytes; uint32_t len, to_do; int const min_vorbis_tag_size = 8; if (bytes < min_vorbis_tag_size) return VE_CROPPED; len = READINT(p); if (p + len + 4 > end) return VE_CROPPED; if (!(s->vendor_string = strndup(p, len))) return VE_ALLOCATION; p += len; to_do = READINT(p); while (to_do--) { if (p + 4 > end) return VE_CROPPED; len = READINT(p); if (p + len > end) return VE_CROPPED; switch (len) { case 0: case 1: case 2: return VE_SHORT_COMMENT; default: { char const * const sep = memchr(p + 1, '=', len - 1); if (!sep) return VE_MISSING_SEPARATOR; if (sep + 1 - p == len) return VE_MISSING_VALUE; if (!key_valid(p, sep - p)) return VE_INVALID_KEY; char *key = strlwr(strndup(p, sep - p)); if (!key) return VE_ALLOCATION; char *value = strndup(sep + 1, len - (sep + 1 - p)); if (!value) { free(key); return VE_ALLOCATION; } insert_value(s->hash_table, key, value); } } p += len; } return VE_OK; } static void free_slist_value(GSList *slist) { g_slist_free_full(slist, free); } static struct vtag * vtag_create(int *error) { struct vtag *s; if (!(s = calloc(1, sizeof (struct vtag)))) { *error = VE_ALLOCATION; return NULL; } if (!(s->hash_table = g_hash_table_new_full(g_str_hash, g_str_equal, free, (GDestroyNotify)free_slist_value))) { free(s); *error = VE_ALLOCATION; return NULL; } return s; } struct vtag * vtag_parse(void *data, size_t bytes, int *error) { struct vtag *s; int error_; if (!error) error = &error_; if (!(s = vtag_create(error))) return NULL; *error = parse(s, data, bytes); if (*error != VE_OK) { vtag_cleanup(s); return NULL; } return s; } struct vtag * vtag_new(const char *vendor_string, int *error) { struct vtag *s; int error_; if (!error) error = &error_; if (!(s = vtag_create(error))) return NULL; if (!(s->vendor_string = strdup(vendor_string))) { vtag_cleanup(s); *error = VE_ALLOCATION; return NULL; } return s; } struct valuestore { size_t length; int count; }; static void slist_storage_calc(gpointer data, gpointer user_data) { struct valuestore *vs = user_data; vs->length += strlen(data); ++vs->count; } static void ht_storage_calc(gpointer key, gpointer value, gpointer user_data) { struct valuestore *vs = user_data; int count = vs->count; GSList *slist = value; g_slist_foreach(slist, slist_storage_calc, vs); vs->length += (vs->count - count) * (5 + strlen(key)); } struct valuestore2 { char **p; char *key; }; static void slist_dump(gpointer data, gpointer user_data) { struct valuestore2 *vs = user_data; char **p = vs->p; size_t len1, len2; len1 = strlen(vs->key); len2 = strlen(data); WRITEINT((*p), (len1 + 1 + len2)); memcpy(*p, vs->key, len1); *p += len1; *(*p)++ = '='; memcpy(*p, data, len2); *p += len2; } static void ht_dump(gpointer key, gpointer value, gpointer user_data) { GSList *slist = value; struct valuestore2 vs = {user_data, key}; g_slist_foreach(slist, slist_dump, &vs); } int vtag_block_init(struct vtag_block *block) { block->data = NULL; block->length = 0; if (!(block->private = malloc(sizeof (struct vtag_block_private)))) { fprintf(stderr, "malloc failure\n"); return 0; } block->private->blocklen = 0; return 1; } void vtag_block_cleanup(struct vtag_block *block) { if (block->data) free(block->data); free(block->private); }; int vtag_serialize(struct vtag *s, struct vtag_block *block, char const *prefix) { size_t len; char *p; struct valuestore vs = {0, 0}; if (!prefix) prefix = ""; /* determine how much space to allocate */ g_hash_table_foreach(s->hash_table, ht_storage_calc, &vs); len = vs.length + 8 + strlen(s->vendor_string) + strlen(prefix); if (len > block->private->blocklen) { if (!(block->data = realloc(block->data, len))) return VE_ALLOCATION; block->private->blocklen = len; } block->length = len; p = block->data; strncpy(p, prefix, len = strlen(prefix)); p += len; len = strlen(s->vendor_string); WRITEINT(p, len); strncpy(p, s->vendor_string, len); p += len; WRITEINT(p, vs.count); g_hash_table_foreach(s->hash_table, ht_dump, &p); return VE_OK; } static void slist_data_length(gpointer data1, gpointer data2) { struct valuestore *vs = (struct valuestore *)data2; vs->length += strlen(data1); ++vs->count; } static GSList * slist_lookup(struct vtag *s, char const *key) { GSList *slist; char *lcase_key; if (!(lcase_key = strlwr(strdup(key)))) { fprintf(stderr, "slist_lookup: malloc failure\n"); return NULL; } slist = g_hash_table_lookup(s->hash_table, lcase_key); free(lcase_key); return slist; } int vtag_comment_count(struct vtag *s, char const *key) { GSList *slist; struct valuestore vs = {0, 0}; if (!(slist = slist_lookup(s, key))) return 0; g_slist_foreach(slist, slist_data_length, &vs); return vs.count; } char * vtag_lookup(struct vtag *s, char const *key, enum vtag_lookup_mode mode, char *sep) { char *value; GSList *slist; size_t length = 0; struct valuestore vs = {0, 0}; if (!(slist = slist_lookup(s, key))) return NULL; switch (mode) { case VLM_FIRST: return strdup(slist->data); case VLM_LAST: return strdup(g_slist_last(slist)->data); case VLM_MERGE: if (!sep) sep = ""; g_slist_foreach(slist, slist_data_length, &vs); length = vs.length + (vs.count - 1) * strlen(sep) + 1; if (!(value = malloc(length))) { fprintf(stderr, "vtag_lookup: malloc failure\n"); return NULL; } strcpy(value, slist->data); while (slist->next) { strcat(value, sep); slist = slist->next; strcat(value, slist->data); } return value; default: fprintf(stderr, "vtag_lookup: unknown lookup mode\n"); } return NULL; } int vtag_append(struct vtag *s, char const *key, char const *value) { char *lcase_key, *value_copy; if (!key_valid(key, strlen(key))) return VE_INVALID_KEY; if (strlen(value) == 0) return VE_MISSING_VALUE; if (!(lcase_key = strlwr(strdup(key)))) return VE_ALLOCATION; if (!(value_copy = strdup(value))) return VE_ALLOCATION; insert_value(s->hash_table, lcase_key, value_copy); return VE_OK; } char const * vtag_vendor_string(struct vtag *s) { return s->vendor_string; } void vtag_cleanup(struct vtag *s) { if (s->vendor_string) free(s->vendor_string); g_hash_table_destroy(s->hash_table); free(s); } char const * vtag_strerror(int error) { switch ((enum vtag_error) error) { case VE_OK: return "no error"; case VE_ALLOCATION: return "malloc failure"; case VE_CROPPED: return "vorbis comment block larger than supplied data"; case VE_TRAILING: return "vorbis comment block finished before end of data"; case VE_SHORT_COMMENT: return "vorbis comment too short to express key=value"; case VE_MISSING_SEPARATOR: return "vorbis comment separator missing"; case VE_MISSING_VALUE: return "vorbis comment value missing"; case VE_INVALID_KEY: return "vorbis comment key contains illegal characters"; default: return "unknown error code"; } } idjc-0.8.16/c/fade.h0000644000175000017500000000321212630014502010721 00000000000000/* # fade.h: fade in/out progressive gain adjustment # Copyright (C) 2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #ifndef FADE_H #define FADE_H enum fade_startpos { FADE_SET_LOW, FADE_SET_SAME, FADE_SET_HIGH }; enum fade_direction { FADE_IN, FADE_OUT, FADE_DIRECTION_UNCHANGED }; struct fade { float level; enum fade_direction direction; float rate; float baselevel; int samplerate; int moving; int newdata; enum fade_startpos startpos; int samples; enum fade_direction newdirection; pthread_mutex_t mutex; }; /* fade level l stands before -infinity dB */ struct fade *fade_init(int samplerate, float l); void fade_destroy(struct fade *s); /* initiate a fade that would take t seconds to complete from one end of the range to the other */ void fade_set(struct fade *s, enum fade_startpos, float t, enum fade_direction); /* obtain the next fade value */ float fade_get(struct fade *s); #endif /* FADE_H */ idjc-0.8.16/c/bsdcompat.c0000644000175000017500000000457612630014502012007 00000000000000/* # bsdcompat.c: library functions that are missing from BSD # Copyright (C) 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "bsdcompat.h" #ifdef USE_BSD_COMPAT #include #include #include #include #include float bsd_pow10f(float x) { return powf(10.f, x); } char *bsd_strndup(const char *s, size_t n) { size_t l; char *r, *p; if ((l = strlen(s)) < n) n = l; if ((p = r = malloc(n + 1)) == NULL) errno = ENOMEM; else { while (n--) *p++ = *s++; *p = '\0'; } return r; } ssize_t bsd_getline(char **lineptr, size_t *n, FILE *stream) { const size_t growby = 64; ssize_t i = 0; int eol = 0, c; if (lineptr == NULL || n == NULL || fileno(stream) == -1) { errno = EINVAL; return -1; } if (*lineptr == NULL) *n = 0; for (;;) { if (i == *n) if ((*lineptr = realloc(*lineptr, *n += growby + i / 8)) == NULL) { perror("getline: malloc failure\n"); *n = 0; return -1; } if (eol) break; c = fgetc(stream); if (feof(stream) || ferror(stream)) eol = 1; else { (*lineptr)[i++] = c; if (c == '\n') eol = 1; } } (*lineptr)[i] = '\0'; if (i == 0) fprintf(stderr, "line length was zero\n"); return i; } char *bsd_canonicalize_file_name(const char *path) { return realpath(path, NULL); } #endif /* USE_BSD_COMPAT */ idjc-0.8.16/c/mp3dec.c0000644000175000017500000002322112630014502011172 00000000000000/* # mp3dec.c: decodes mp3 file format for xlplayer # Copyright (C) 2012-2013 Stephen Fairchild (s-fairchild@users.sf.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include "gnusource.h" #include #include #include #include #include #include #include "xlplayer.h" #include "mp3dec.h" #include "bsdcompat.h" #define TRUE 1 #define FALSE 0 #define ACCEPTED 1 #define REJECTED 0 static int decoder_library_ok; int dynamic_metadata_form[4] = { DM_SPLIT_L1, DM_NOTAG, DM_NOTAG, DM_SPLIT_U8 }; static void mp3decode_eject(struct xlplayer *xlplayer) { struct mp3decode_vars *self = xlplayer->dec_data; if (self->resample) { if (xlplayer->src_data.data_out) free(xlplayer->src_data.data_out); xlplayer->src_state = src_delete(xlplayer->src_state); } mp3_tag_cleanup(&self->taginfo); mpg123_close(self->mh); mpg123_delete(self->mh); fclose(self->fp); free(self); fprintf(stderr, "finished eject\n"); } static void mp3decode_init(struct xlplayer *xlplayer) { } static void mp3decode_play(struct xlplayer *xlplayer) { struct mp3decode_vars *self = xlplayer->dec_data; struct chapter *chapter; long rate; int channels, encoding, samples, rv, delay; off_t num; float *fppcm; size_t len; int src_error; switch(rv = mpg123_decode_frame(self->mh, &num, (unsigned char **)&fppcm, &len)) { case MPG123_DONE: if (self->resample) { xlplayer->src_data.input_frames = 0; xlplayer->src_data.end_of_input = 1; if ((src_error = src_process(xlplayer->src_state, &xlplayer->src_data))) fprintf(stderr, "mp3decode_play: %s src_process reports - %s\n", xlplayer->playername, src_strerror(src_error)); xlplayer_demux_channel_data(xlplayer, xlplayer->src_data.data_out, xlplayer->src_data.output_frames_gen, 2, 1.f); xlplayer_write_channel_data(xlplayer); } break; case MPG123_NEW_FORMAT: if (mpg123_getformat(self->mh, &rate, &channels, &encoding) != MPG123_OK) { fprintf(stderr, "mp3decode_play: mpg123_getformat failed\n"); break; } if (channels != MPG123_STEREO || encoding != MPG123_ENC_FLOAT_32) { fprintf(stderr, "mp3decode_play: unusable data format\n"); break; } case MPG123_OK: if ((samples = len / (2 * sizeof (float))) > 0) { if (self->resample) { xlplayer->src_data.data_in = fppcm; xlplayer->src_data.input_frames = samples; if ((src_error = src_process(xlplayer->src_state, &xlplayer->src_data))) { fprintf(stderr, "mp3decode_play: %s src_process reports - %s\n", xlplayer->playername, src_strerror(src_error)); break; } xlplayer_demux_channel_data(xlplayer, xlplayer->src_data.data_out, xlplayer->src_data.output_frames_gen, 2, 1.f); } else xlplayer_demux_channel_data(xlplayer, fppcm, samples, 2, 1.f); delay = xlplayer_calc_rbdelay(xlplayer); chapter = mp3_tag_chapter_scan(&self->taginfo, xlplayer->play_progress_ms + delay); if (chapter && chapter != self->current_chapter) { self->current_chapter = chapter; xlplayer_set_dynamic_metadata(xlplayer, dynamic_metadata_form[chapter->title.encoding], chapter->artist.text, chapter->title.text, chapter->album.text, delay); } xlplayer_write_channel_data(xlplayer); } return; default: fprintf(stderr, "mp3decode_play: mpg123_decode_frame unexpected return code %d\n", rv); break; } xlplayer->playmode = PM_FLUSH; } static void decoder_library_init() { if((decoder_library_ok = (mpg123_init() == MPG123_OK))) atexit(mpg123_exit); } int mp3decode_reg(struct xlplayer *xlplayer) { static pthread_once_t once_control = PTHREAD_ONCE_INIT; struct mp3decode_vars *self; struct chapter *chapter; int fd, rv; long rate; int channels, encoding; int src_error; pthread_once(&once_control, decoder_library_init); if (!decoder_library_ok) { fprintf(stderr, "mp3decode_reg: decoder library is not ok\n"); goto rej; } if (!(self = xlplayer->dec_data = calloc(1, sizeof (struct mp3decode_vars)))) { fprintf(stderr, "mp3decode_reg: malloc failure\n"); goto rej; } if (!(self->mh = mpg123_new(NULL, NULL))) { fprintf(stderr, "mp3decode_reg: handle not okay"); goto rej_; } #ifdef MPG123_AUTO_RESAMPLE if (mpg123_param(self->mh, MPG123_REMOVE_FLAGS, MPG123_AUTO_RESAMPLE, 0.0) != MPG123_OK) { fprintf(stderr, "mpgdecode_reg: failed to turn off auto resampling\n"); goto rej_; } #endif if (mpg123_param(self->mh, MPG123_ADD_FLAGS, MPG123_FORCE_STEREO, 0.0) != MPG123_OK) { fprintf(stderr, "mpgdecode_reg: failed to set flags"); goto rej_; } if (mpg123_format_none(self->mh) != MPG123_OK) { fprintf(stderr, "mp3decode_reg: failed to clear output formats"); goto rej_; } /* all the permitted mp3 sample rates are enabled * forced stereo is in effect so no need to add mono formats */ mpg123_format(self->mh, 48000, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 44100, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 32000, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 24000, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 22050, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 16000, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 12000, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 11025, MPG123_STEREO, MPG123_ENC_FLOAT_32); mpg123_format(self->mh, 8000, MPG123_STEREO, MPG123_ENC_FLOAT_32); if (!(self->fp = fopen(xlplayer->pathname, "r"))) { fprintf(stderr, "mp3decode_reg: failed to open %s\n", xlplayer->pathname); goto rej_; } mp3_tag_read(&self->taginfo, self->fp); lseek(fd = fileno(self->fp), 0, SEEK_SET); if ((rv = mpg123_open_fd(self->mh, fd)) != MPG123_OK) { fprintf(stderr, "mp3decode_reg: mpg123_open_fd failed with return value %d\n", rv); goto rej__; } if (mpg123_getformat(self->mh, &rate, &channels, &encoding) != MPG123_OK || channels != 2) { fprintf(stderr, "mp3decode_reg: mpg123_getformat returned unexpected value\n"); goto rej___; } if (rate != xlplayer->samplerate) { fprintf(stderr, "mp3decode_reg: configuring resampler\n"); xlplayer->src_state = src_new(xlplayer->rsqual, channels, &src_error); if (src_error) { fprintf(stderr, "mp3decode_reg: src_new reports %s\n", src_strerror(src_error)); goto rej___; } xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double)rate; xlplayer->src_data.end_of_input = 0; size_t output_frames = (size_t)(xlplayer->src_data.src_ratio * 1.1 * 1152); xlplayer->src_data.output_frames = (long)output_frames; if (!(xlplayer->src_data.data_out = malloc(output_frames * 2 * sizeof (float)))) { fprintf(stderr, "mp3decode_reg: malloc failure\n"); goto rej____; } self->resample = TRUE; } xlplayer->dec_init = mp3decode_init; xlplayer->dec_play = mp3decode_play; xlplayer->dec_eject = mp3decode_eject; if ((chapter = mp3_tag_chapter_scan(&self->taginfo, xlplayer->play_progress_ms + 70))) { self->current_chapter = chapter; xlplayer_set_dynamic_metadata(xlplayer, dynamic_metadata_form[chapter->title.encoding], chapter->artist.text, chapter->title.text, chapter->album.text, 0); } if (xlplayer->seek_s) if (mpg123_seek(self->mh, (off_t)rate * xlplayer->seek_s, SEEK_SET) < 0) { fprintf(stderr, "mp3decode_init: seek failed\n"); mp3decode_eject(xlplayer); xlplayer->playmode = PM_STOPPED; xlplayer->command = CMD_COMPLETE; } return ACCEPTED; rej____: xlplayer->src_state = src_delete(xlplayer->src_state); rej___: mpg123_delete(self->mh); rej__: mp3_tag_cleanup(&self->taginfo); fclose(self->fp); rej_: free(self); rej: return REJECTED; } idjc-0.8.16/c/mp3dec.h0000644000175000017500000000227012630014502011200 00000000000000/* # mp3dec.h: decodes mp3 file format for xlplayer # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include #ifdef HAVE_MPG123_H #include #else #include "mpg123.h" #endif /* HAVE_MPG123_H */ #include "xlplayer.h" #include "mp3tagread.h" struct mp3decode_vars { FILE *fp; mpg123_handle *mh; struct mp3taginfo taginfo; struct chapter *current_chapter; int resample; }; int mp3decode_reg(struct xlplayer *xlplayer); idjc-0.8.16/c/agc.c0000644000175000017500000004664612630014502010571 00000000000000/* # agc.c: a fast lookahead microphone AGC # Copyright (C) 2008 Stefan Fendt (stefan@sfendt.de) # Copyright (C) 2008-2010 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include #include #include #include #include #include #include "agc.h" /* coefficients of agc_RC_Filter */ struct agc_RC_Coe { float a; float b; float c; float f; float q; }; /* variables of agc_RC_Filter */ struct agc_RC_Var { float last_in; float lp; float bp; float hp; }; /* structure for an RC filter */ struct agc_RC_Filter { struct agc_RC_Coe coe; struct agc_RC_Var var; }; struct agc_RC_FilterGroup { struct agc_RC_Filter RC_HPF_initial[4]; struct agc_RC_Filter RC_HPF_detail; struct agc_RC_Filter RC_LPF_detail; struct agc_RC_Filter RC_PHR[4]; struct agc_RC_Filter RC_F_DS; }; struct agc { int id; struct agc *host; /* points to self or partner for stereo implementation */ struct agc *partner; float input; float ratio; float limit; float nr_gain; float nr_onthres; float nr_offthres; float gain_interval_amount; /* agc gain can move by this amount each interval */ int nr_state; float *buffer; /* eventual buffer size depends on sample rate */ int buffer_len; int sRate; /* the sample rate in use by JACK */ int in_pos; int out_pos; float gain; float DC; float ds_bias; float ds_gain; int ds_state; int RR_reset_point[4]; /* reset intervals used by all the envelope followers */ float RR_signal[4]; float RR_DS_high[4]; float RR_DS_low[4]; int use_ducker; float df; float ducker_attack; float ducker_release; int ducker_hold_timer; int ducker_hold_timer_resetval; float meter_signal_cap, meter_de_ess, meter_noise_gate; int hpstages; float hf_detail; float lf_detail; int use_phaserotator; struct agc_RC_FilterGroup filters; }; static GHashTable *control_ht; /* used for looking up control functions */ static float agc_12db_hpfilter(struct agc_RC_Coe *c, struct agc_RC_Var *v, float input) { input += c->q * v->bp; v->hp = c->c * (v->hp + input - v->last_in); v->bp = v->bp * c->a + v->hp * c->b; v->last_in = input; return v->hp; } static float agc_6db_hpfilter(float detail, struct agc_RC_Coe *c, struct agc_RC_Var *v, float input) { v->hp = c->c * (v->hp + input - v->last_in); v->last_in = input; return input + v->hp * detail; } static float agc_6db_lpfilter(float detail, struct agc_RC_Coe *c, struct agc_RC_Var *v, float input) { v->lp = v->lp * c->a + input * c->b; return input + v->lp * detail; } static float agc_phaserotate(struct agc_RC_Filter *f, float input) { struct agc_RC_Coe *c = &f->coe; struct agc_RC_Var *v = &f->var; v->hp = c->c * (v->hp + input - v->last_in); v->lp = v->lp * c->a + input * c->b; v->last_in = input; return v->lp - v->hp; } void agc_process_stage1(struct agc *s, float input) { /* An analog active RC-Highpassfilter network to remove DC and subsonic sounds * each stage has 12dB/octave of attenuation. */ for (int i = 0, q = s->host->hpstages; i < q; ++i) input = agc_12db_hpfilter(&s->host->filters.RC_HPF_initial[i].coe, &s->filters.RC_HPF_initial[i].var, input); /* RC-Network (but with only one stage and without resonance/feedback (->6dB/octave)) * used as HF-Detail-Filter */ input = agc_6db_hpfilter(s->host->hf_detail, &s->host->filters.RC_HPF_detail.coe, &s->filters.RC_HPF_detail.var, input); /* RC-Network (but with only one stage and without resonance/feedback) * used as LF-Detail-Filter */ input = agc_6db_lpfilter(s->host->lf_detail, &s->host->filters.RC_LPF_detail.coe, &s->filters.RC_LPF_detail.var, input); /* Phase-rotator done with RC-simulation * for good reasons doesn't use Q/resonance either... */ if (s->host->use_phaserotator) for (int i = 0; i < 4; ++i) input = agc_phaserotate(s->filters.RC_PHR + i, input); /* feed input into ring-buffer, store input */ s->buffer[s->in_pos % s->buffer_len] = s->input = input; /* update pointers of the ring-buffer */ s->in_pos++; s->out_pos++; } static float agc_quad_rr(float *storage, int *reset_point, int phase, float input) { float highest = 0.0f; input = fabsf(input); for (int i = 0; i < 4; ++i, ++storage, ++reset_point) { if (*reset_point == phase) *storage = 0.0f; if (input > *storage) *storage = input; if (*storage > highest) highest = *storage; } return highest; } void agc_process_stage2(struct agc *s, int mic_is_mute) { /* audio signal for sidechain use - possibly combined */ float input; /* phase for use by all of the envelope-followers */ float phase; /* de-esser values */ float ds_amph, ds_ampl; /* the input signal level as computed by the envelope follower */ float amp; /* the amplification factor */ float factor, orig_factor; /* the computed ducker amplification factor - used externally */ float duck_amp; if (s == s->host) { input = (s->partner->host == s) ? (s->input + s->partner->input) * 0.5 : s->input; phase = s->in_pos % (2 * s->buffer_len); /* De-Esser sidechain-filter - does high and low pass filtering */ { float ds_input; struct agc_RC_Coe *c = &s->filters.RC_F_DS.coe; struct agc_RC_Var *v = &s->filters.RC_F_DS.var; ds_input = input; ds_input += c->q * v->bp; v->lp = v->lp * c->a + ds_input * c->b; v->hp = c->c * (v->hp + input - v->last_in ); v->bp = v->bp * c->a + v->hp * c->b; v->last_in = ds_input; } /* follow the envelope of the de-esser high and low pass filtered signal */ ds_amph = agc_quad_rr(s->RR_DS_high, s->RR_reset_point, phase, s->filters.RC_F_DS.var.hp); ds_ampl = agc_quad_rr(s->RR_DS_low, s->RR_reset_point, phase, s->filters.RC_F_DS.var.lp); /* round-robin-4-peak-envelope-follower tracking the general signal level */ amp = agc_quad_rr(s->RR_signal, s->RR_reset_point, phase, input); /* raw-amplification-factor limited to maximum allowed ratio */ factor = s->limit / (amp + 0.0001f); if (factor > s->ratio) factor = s->ratio; /* so we can know how much attenuation was applied this is stored */ orig_factor = factor; /* if below noise-floor, attenuate signal */ if (amp < s->nr_onthres) s->nr_state = 1; if (amp > s->nr_offthres) s->nr_state = 0; if (s->nr_state==1) factor *= s->nr_gain; /* if de-esser says there are only high frequencies, attenuate signal */ if (ds_amph * s->ds_bias > ds_ampl * 1.3333333f) s->ds_state = 1; if (ds_amph * s->ds_bias < ds_ampl * 0.75f) s->ds_state = 0; if (s->ds_state == 1) factor *= s->ds_gain; /* modulate gain-factor */ if (s->gain < factor) s->gain += s->gain_interval_amount; if (s->gain > factor) s->gain -= s->gain_interval_amount; /* ducking is optional and must not work when the mic is closed */ if (mic_is_mute || s->use_ducker == 0) { if (s->df < 1.0f) s->df += s->ducker_release; else s->df = 1.0f; } else { /* calculate ducking factor */ duck_amp = 1.0f - factor * amp; /* if duck-amp is below the minimum-allowed level (limit enforces some headroom) * then limit duck-amp to that minimum-allowed level. This ensures, that if the * microphone-headroom is set to a sensible value (-2..-3dB) there still is some * music audiable in the background... */ if (duck_amp < 1.0f - s->limit) { duck_amp = 1.0f - s->limit; } /* ducker is "opened" fast (same rate as agc -> 10ms) * but closed more slowly... */ if (s->df < duck_amp) { if (s->ducker_hold_timer == 0) { s->df += s->ducker_release; if (s->df > 1.0f) s->df = 1.0f; } else s->ducker_hold_timer--; } if (s->df > duck_amp) { s->df -= s->ducker_attack; s->ducker_hold_timer = s->ducker_hold_timer_resetval; if (s->df < 0.00000001f) s->df = 0.00000001f; } } /* maintain a peak hold gain figure for the GUI compression meter * essentially this is metadata */ if ((s->out_pos & 0x7) == 0) { s->meter_signal_cap = orig_factor / s->ratio; s->meter_de_ess = s->ds_state ? s->ds_gain : 1.0f; s->meter_noise_gate = s->nr_state ? s->nr_gain : 1.0f; } } } float agc_process_stage3(struct agc *s) { /* modulate delayed signal with gain */ return s->buffer[s->out_pos % s->buffer_len] * s->host->gain; } void agc_get_meter_levels(struct agc *s, int *signal_cap, int *de_ess, int *noise_gate) { int level2db(float level) { return (int)(log10f(level) * -20.0f); } *signal_cap = (int)level2db(s->meter_signal_cap); *de_ess = (int)level2db(s->meter_de_ess); *noise_gate = (int)level2db(s->meter_noise_gate); } float agc_get_ducking_factor(struct agc *s) { return s->df; } void agc_reset(struct agc *s) { struct agc_RC_Filter *f, *end; /* wipe variables of all filters */ for (f = (struct agc_RC_Filter *)&s->filters, end = (struct agc_RC_Filter *)((&s->filters) + 1); f < end; ++f) { memset(&f->var, 0, sizeof f->var); } /* wipe audio buffer */ memset(s->buffer, 0, s->buffer_len); /* wipe indicator settings */ s->df = s->meter_signal_cap = s->meter_de_ess = s->meter_noise_gate = 1.0f; } static void setup_ratio(struct agc *s, float ratio_db) { s->ratio = powf(10.0f, ratio_db / 20.0f); s->gain_interval_amount = s->ratio / s->buffer_len; } static void setup_subsonic(struct agc *s, float fCutoff) { struct agc_RC_Coe *c; for (int i = 0; i < 4; ++i) { c = &s->filters.RC_HPF_initial[i].coe; c->f = fCutoff; c->q = 0.375f; c->a = 1.0f - (1.0f/s->sRate) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f/s->sRate)); c->b = 1.0f - c->a; c->c = (1.0f/(c->f * 2.0f * M_PI)) / ((1.0f/(c->f * 2.0f * M_PI)) + (1.0f/s->sRate)); } } static void setup_lfdetail(struct agc *s, float multi, float fCutoff) { struct agc_RC_Coe *c = &s->filters.RC_LPF_detail.coe; s->lf_detail = multi; c->f = fCutoff; c->q = 0.375f; c->a = 1.0f - (1.0f/s->sRate) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f/s->sRate)); c->b = 1.0f - c->a; c->c = (1.0f / (c->f * 2.0f * M_PI)) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f / s->sRate)); } static void setup_hfdetail(struct agc *s, float multi, float fCutoff) { struct agc_RC_Coe *c = &s->filters.RC_HPF_detail.coe; s->hf_detail = multi; c->f = fCutoff; c->q = 0.375f; c->a = 1.0f - (1.0f / s->sRate) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f / s->sRate)); c->b = 1.0f - c->a; c->c = (1.0f / (c->f * 2.0f * M_PI)) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f / s->sRate)); } static void control_phaserotate(struct agc *s, char *value) { s->use_phaserotator = (value[0] == '1'); } static void control_gain(struct agc *s, char *value) { setup_ratio(s, strtof(value, NULL)); } static void control_limit(struct agc *s, char *value) { s->limit = powf(2.0f, strtof(value, NULL) / 6.0f); } static void control_ngthresh(struct agc *s, char *value) { s->nr_onthres = powf(2.0f, (strtof(value, NULL) - 1.0f) / 6.0f); s->nr_offthres = powf(2.0f, (strtof(value, NULL) + 1.0f) / 6.0f); } static void control_nggain(struct agc *s, char *value) { s->nr_gain = powf(2.0f, strtof(value, NULL) / 6.0f); } static void control_duckenable(struct agc *s, char *value) { s->use_ducker = (value[0] == '1'); } static void control_duckrelease(struct agc *s, char *value) { s->ducker_release = 1000.0f / (strtof(value, NULL) * s->sRate); } static void control_duckhold(struct agc *s, char *value) { s->ducker_hold_timer_resetval = atoi(value) * s->sRate / 1000; } static void control_deessbias(struct agc *s, char *value) { s->ds_bias = strtof(value, NULL); } static void control_deessgain(struct agc *s, char *value) { s->ds_gain = powf(2.0f, strtof(value, NULL) / 6.0f); } static void control_hpcutoff(struct agc *s, char *value) { setup_subsonic(s, strtof(value, NULL)); } static void control_hpstages(struct agc *s, char *value) { s->hpstages = (int)(strtof(value, NULL) + 0.5f); } static void control_hfmulti(struct agc *s, char *value) { setup_hfdetail(s, strtof(value, NULL), s->filters.RC_HPF_detail.coe.f); } static void control_hfcutoff(struct agc *s, char *value) { setup_hfdetail(s, s->hf_detail, strtof(value, NULL)); } static void control_lfmulti(struct agc *s, char *value) { setup_lfdetail(s, strtof(value, NULL), s->filters.RC_LPF_detail.coe.f); } static void control_lfcutoff(struct agc *s, char *value) { setup_lfdetail(s, s->lf_detail, strtof(value, NULL)); } static void free_control_hash_table() { g_hash_table_destroy(control_ht); } static void setup_control_hash_table() { struct { char *key; void (*value)(struct agc *, char *); } *htdp, htdata[] = { {"phaserotate", control_phaserotate}, {"gain", control_gain}, {"limit", control_limit}, {"ngthresh", control_ngthresh}, {"nggain", control_nggain}, {"duckenable", control_duckenable}, {"duckrelease", control_duckrelease}, {"duckhold", control_duckhold}, {"deessbias", control_deessbias}, {"deessgain", control_deessgain}, {"hpcutoff", control_hpcutoff}, {"hpstages", control_hpstages}, {"hfmulti", control_hfmulti}, {"hfcutoff", control_hfcutoff}, {"lfmulti", control_lfmulti}, {"lfcutoff", control_lfcutoff}, {NULL, NULL}}; if (!(control_ht = g_hash_table_new(g_str_hash, g_str_equal))) { fprintf(stderr, "agc setup_control_hash_table failed\n"); return; } for (htdp = htdata; htdp->key; ++htdp) g_hash_table_insert(control_ht, htdp->key, htdp->value); atexit(free_control_hash_table); } void agc_control(struct agc *s, char *key, char *value) { void (*fn)(struct agc *, char *); if (!(fn = g_hash_table_lookup(control_ht, key))) fprintf(stderr, "agc_control: lookup error for key %s\n", key); else fn(s, value); } void agc_set_as_partners(struct agc *agc1, struct agc *agc2) { agc1->partner = agc2; agc2->partner = agc1; } void agc_set_partnered_mode(struct agc *s, int boolean) { if (boolean) s->host = s->partner; else s->host = s; } struct agc *agc_init(int sRate, float lookahead, int id) { struct agc *s; struct agc_RC_Coe *c; static pthread_once_t control_hash_table_once = PTHREAD_ONCE_INIT; pthread_once(&control_hash_table_once, setup_control_hash_table); if (!(s = calloc(1, sizeof (struct agc)))) { fprintf(stderr, "agc_init: malloc failure\n"); return NULL; } if (!(s->buffer = calloc((s->buffer_len = (s->sRate = sRate) * lookahead), sizeof (float)))) { fprintf(stderr, "agc_init: malloc failure\n"); free(s); return NULL; } s->id = id; s->host = s->partner = s; { /* determine the phase points for the envelope followers */ int p4 = s->buffer_len * 2; s->RR_reset_point[0] = 0; s->RR_reset_point[1] = p4 * 1 / 4; s->RR_reset_point[2] = p4 * 2 / 4; s->RR_reset_point[3] = p4 * 3 / 4; } setup_ratio(s, 3.0f);/* 3:1 "compression" */ s->limit = 0.707f; /* signal level to top out at */ s->in_pos = s->buffer_len - 1; s->out_pos = 1; s->gain = 0.0f; s->nr_onthres = 0.1f; /* silence detection level */ s->nr_offthres = 0.1001f; /* non-silence detection level */ s->nr_gain = 0.5f; /* if silence detected reduce gain by 6dB */ s->ds_bias = 0.35f; /* lpf * bias / hpf exceeds 1 for de-esser to go active */ s->ds_gain = 0.5f; /* attenuate signal by this amount */ s->meter_signal_cap = s->meter_de_ess = s->meter_noise_gate = 1.0f; /* setup coefficients for the ducker */ s->ducker_release = 1.0f / (0.250f * s->sRate); /* 250ms */ s->ducker_attack = 1.0f / s->buffer_len; /* same as lookahead delay */ s->ducker_hold_timer_resetval = 0.500f * s->sRate; /* 500ms */ s->df = 1.0f; /* setup coefficients for the subsonic-and-DC-killer-RC-highpass */ setup_subsonic(s, 100.0f); s->hpstages = 4; /* setup coefficients for the HF-Detail highpass */ setup_hfdetail(s, 4.0f, 2000.0f); /* setup coefficients for the LF-Detail lowpass */ setup_lfdetail(s, 4.0f, 150.0f); /* setup coefficients for the phase rotator */ s->use_phaserotator = 1; for (int i = 0; i < 4; ++i) { c = &s->filters.RC_PHR[i].coe; c->f = 300.0f; c->q = 0.0f; c->a = 1.0f - (1.0f / s->sRate) / ((1.0f/(c->f * 2.0f * M_PI)) + (1.0f / s->sRate)); c->b = 1.0f - c->a; c->c = (1.0f / (c->f * 2.0f * M_PI)) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f / s->sRate)); } /* setup coefficients for the de-esser-sidechain highpass/lowpass filter */ c = &s->filters.RC_F_DS.coe; c->f = 1000.0f; c->q = 1.000f; c->a = 1.0f - (1.0f / s->sRate) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f / s->sRate)); c->b = 1.0f - c->a; c->c = (1.0f / (c->f * 2.0f * M_PI)) / ((1.0f / (c->f * 2.0f * M_PI)) + (1.0f / s->sRate)); return s; } void agc_free(struct agc *s) { free(s->buffer); free(s); } idjc-0.8.16/c/mpg123.h0000644000175000017500000016614212630014502011047 00000000000000/* libmpg123: MPEG Audio Decoder library (version 1.14.2) copyright 1995-2010 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org */ #ifndef MPG123_LIB_H #define MPG123_LIB_H /** \file mpg123.h The header file for the libmpg123 MPEG Audio decoder */ /* A macro to check at compile time which set of API functions to expect. This should be incremented at least each time a new symbol is added to the header. */ #define MPG123_API_VERSION 36 /* These aren't actually in use... seems to work without using libtool. */ #ifdef BUILD_MPG123_DLL /* The dll exports. */ #define EXPORT __declspec(dllexport) #else #ifdef LINK_MPG123_DLL /* The exe imports. */ #define EXPORT __declspec(dllimport) #else /* Nothing on normal/UNIX builds */ #define EXPORT #endif #endif #ifndef MPG123_NO_CONFIGURE /* Enable use of this file without configure. */ #include #include /* Simplified large file handling. I used to have a check here that prevents building for a library with conflicting large file setup (application that uses 32 bit offsets with library that uses 64 bits). While that was perfectly fine in an environment where there is one incarnation of the library, it hurt GNU/Linux and Solaris systems with multilib where the distribution fails to provide the correct header matching the 32 bit library (where large files need explicit support) or the 64 bit library (where there is no distinction). New approach: When the app defines _FILE_OFFSET_BITS, it wants non-default large file support, and thus functions with added suffix (mpg123_open_64). Any mismatch will be caught at link time because of the _FILE_OFFSET_BITS setting used when building libmpg123. Plus, there's dual mode large file support in mpg123 since 1.12 now. Link failure is not the expected outcome of any half-sane usage anymore. More complication: What about client code defining _LARGEFILE64_SOURCE? It might want direct access to the _64 functions, along with the ones without suffix. Well, that's possible now via defining MPG123_NO_LARGENAME and MPG123_LARGESUFFIX, respectively, for disabling or enforcing the suffix names. */ /* Now, the renaming of large file aware functions. By default, it appends underscore _FILE_OFFSET_BITS (so, mpg123_seek_64 for mpg123_seek), if _FILE_OFFSET_BITS is defined. You can force a different suffix via MPG123_LARGESUFFIX (that must include the underscore), or you can just disable the whole mess by defining MPG123_NO_LARGENAME. */ #if (!defined MPG123_NO_LARGENAME) && ((defined _FILE_OFFSET_BITS) || (defined MPG123_LARGESUFFIX)) /* Need some trickery to concatenate the value(s) of the given macro(s). */ #define MPG123_MACROCAT_REALLY(a, b) a ## b #define MPG123_MACROCAT(a, b) MPG123_MACROCAT_REALLY(a, b) #ifndef MPG123_LARGESUFFIX #define MPG123_LARGESUFFIX MPG123_MACROCAT(_, _FILE_OFFSET_BITS) #endif #define MPG123_LARGENAME(func) MPG123_MACROCAT(func, MPG123_LARGESUFFIX) #define mpg123_open MPG123_LARGENAME(mpg123_open) #define mpg123_open_fd MPG123_LARGENAME(mpg123_open_fd) #define mpg123_open_handle MPG123_LARGENAME(mpg123_open_handle) #define mpg123_framebyframe_decode MPG123_LARGENAME(mpg123_framebyframe_decode) #define mpg123_decode_frame MPG123_LARGENAME(mpg123_decode_frame) #define mpg123_tell MPG123_LARGENAME(mpg123_tell) #define mpg123_tellframe MPG123_LARGENAME(mpg123_tellframe) #define mpg123_tell_stream MPG123_LARGENAME(mpg123_tell_stream) #define mpg123_seek MPG123_LARGENAME(mpg123_seek) #define mpg123_feedseek MPG123_LARGENAME(mpg123_feedseek) #define mpg123_seek_frame MPG123_LARGENAME(mpg123_seek_frame) #define mpg123_timeframe MPG123_LARGENAME(mpg123_timeframe) #define mpg123_index MPG123_LARGENAME(mpg123_index) #define mpg123_set_index MPG123_LARGENAME(mpg123_set_index) #define mpg123_position MPG123_LARGENAME(mpg123_position) #define mpg123_length MPG123_LARGENAME(mpg123_length) #define mpg123_set_filesize MPG123_LARGENAME(mpg123_set_filesize) #define mpg123_replace_reader MPG123_LARGENAME(mpg123_replace_reader) #define mpg123_replace_reader_handle MPG123_LARGENAME(mpg123_replace_reader_handle) #define mpg123_framepos MPG123_LARGENAME(mpg123_framepos) #endif /* largefile hackery */ #endif /* MPG123_NO_CONFIGURE */ #ifdef __cplusplus extern "C" { #endif /** \defgroup mpg123_init mpg123 library and handle setup * * Functions to initialise and shutdown the mpg123 library and handles. * The parameters of handles have workable defaults, you only have to tune them when you want to tune something;-) * Tip: Use a RVA setting... * * @{ */ /** Opaque structure for the libmpg123 decoder handle. */ struct mpg123_handle_struct; /** Opaque structure for the libmpg123 decoder handle. * Most functions take a pointer to a mpg123_handle as first argument and operate on its data in an object-oriented manner. */ typedef struct mpg123_handle_struct mpg123_handle; /** Function to initialise the mpg123 library. * This function is not thread-safe. Call it exactly once per process, before any other (possibly threaded) work with the library. * * \return MPG123_OK if successful, otherwise an error number. */ EXPORT int mpg123_init(void); /** Function to close down the mpg123 library. * This function is not thread-safe. Call it exactly once per process, before any other (possibly threaded) work with the library. */ EXPORT void mpg123_exit(void); /** Create a handle with optional choice of decoder (named by a string, see mpg123_decoders() or mpg123_supported_decoders()). * and optional retrieval of an error code to feed to mpg123_plain_strerror(). * Optional means: Any of or both the parameters may be NULL. * * \return Non-NULL pointer when successful. */ EXPORT mpg123_handle *mpg123_new(const char* decoder, int *error); /** Delete handle, mh is either a valid mpg123 handle or NULL. */ EXPORT void mpg123_delete(mpg123_handle *mh); /** Enumeration of the parameters types that it is possible to set/get. */ enum mpg123_parms { MPG123_VERBOSE = 0, /**< set verbosity value for enabling messages to stderr, >= 0 makes sense (integer) */ MPG123_FLAGS, /**< set all flags, p.ex val = MPG123_GAPLESS|MPG123_MONO_MIX (integer) */ MPG123_ADD_FLAGS, /**< add some flags (integer) */ MPG123_FORCE_RATE, /**< when value > 0, force output rate to that value (integer) */ MPG123_DOWN_SAMPLE, /**< 0=native rate, 1=half rate, 2=quarter rate (integer) */ MPG123_RVA, /**< one of the RVA choices above (integer) */ MPG123_DOWNSPEED, /**< play a frame N times (integer) */ MPG123_UPSPEED, /**< play every Nth frame (integer) */ MPG123_START_FRAME, /**< start with this frame (skip frames before that, integer) */ MPG123_DECODE_FRAMES, /**< decode only this number of frames (integer) */ MPG123_ICY_INTERVAL, /**< stream contains ICY metadata with this interval (integer) */ MPG123_OUTSCALE, /**< the scale for output samples (amplitude - integer or float according to mpg123 output format, normally integer) */ MPG123_TIMEOUT, /**< timeout for reading from a stream (not supported on win32, integer) */ MPG123_REMOVE_FLAGS, /**< remove some flags (inverse of MPG123_ADD_FLAGS, integer) */ MPG123_RESYNC_LIMIT, /**< Try resync on frame parsing for that many bytes or until end of stream (<0 ... integer). This can enlarge the limit for skipping junk on beginning, too (but not reduce it). */ MPG123_INDEX_SIZE /**< Set the frame index size (if supported). Values <0 mean that the index is allowed to grow dynamically in these steps (in positive direction, of course) -- Use this when you really want a full index with every individual frame. */ ,MPG123_PREFRAMES /**< Decode/ignore that many frames in advance for layer 3. This is needed to fill bit reservoir after seeking, for example (but also at least one frame in advance is needed to have all "normal" data for layer 3). Give a positive integer value, please.*/ ,MPG123_FEEDPOOL /**< For feeder mode, keep that many buffers in a pool to avoid frequent malloc/free. The pool is allocated on mpg123_open_feed(). If you change this parameter afterwards, you can trigger growth and shrinkage during decoding. The default value could change any time. If you care about this, then set it. (integer) */ ,MPG123_FEEDBUFFER /**< Minimal size of one internal feeder buffer, again, the default value is subject to change. (integer) */ }; /** Flag bits for MPG123_FLAGS, use the usual binary or to combine. */ enum mpg123_param_flags { MPG123_FORCE_MONO = 0x7 /**< 0111 Force some mono mode: This is a test bitmask for seeing if any mono forcing is active. */ ,MPG123_MONO_LEFT = 0x1 /**< 0001 Force playback of left channel only. */ ,MPG123_MONO_RIGHT = 0x2 /**< 0010 Force playback of right channel only. */ ,MPG123_MONO_MIX = 0x4 /**< 0100 Force playback of mixed mono. */ ,MPG123_FORCE_STEREO = 0x8 /**< 1000 Force stereo output. */ ,MPG123_FORCE_8BIT = 0x10 /**< 00010000 Force 8bit formats. */ ,MPG123_QUIET = 0x20 /**< 00100000 Suppress any printouts (overrules verbose). */ ,MPG123_GAPLESS = 0x40 /**< 01000000 Enable gapless decoding (default on if libmpg123 has support). */ ,MPG123_NO_RESYNC = 0x80 /**< 10000000 Disable resync stream after error. */ ,MPG123_SEEKBUFFER = 0x100 /**< 000100000000 Enable small buffer on non-seekable streams to allow some peek-ahead (for better MPEG sync). */ ,MPG123_FUZZY = 0x200 /**< 001000000000 Enable fuzzy seeks (guessing byte offsets or using approximate seek points from Xing TOC) */ ,MPG123_FORCE_FLOAT = 0x400 /**< 010000000000 Force floating point output (32 or 64 bits depends on mpg123 internal precision). */ ,MPG123_PLAIN_ID3TEXT = 0x800 /**< 100000000000 Do not translate ID3 text data to UTF-8. ID3 strings will contain the raw text data, with the first byte containing the ID3 encoding code. */ ,MPG123_IGNORE_STREAMLENGTH = 0x1000 /**< 1000000000000 Ignore any stream length information contained in the stream, which can be contained in a 'TLEN' frame of an ID3v2 tag or a Xing tag */ ,MPG123_SKIP_ID3V2 = 0x2000 /**< 10 0000 0000 0000 Do not parse ID3v2 tags, just skip them. */ ,MPG123_IGNORE_INFOFRAME = 0x4000 /**< 100 0000 0000 0000 Do not parse the LAME/Xing info frame, treat it as normal MPEG data. */ ,MPG123_AUTO_RESAMPLE = 0x8000 /**< 1000 0000 0000 0000 Allow automatic internal resampling of any kind (default on if supported). Especially when going lowlevel with replacing output buffer, you might want to unset this flag. Setting MPG123_DOWNSAMPLE or MPG123_FORCE_RATE will override this. */ }; /** choices for MPG123_RVA */ enum mpg123_param_rva { MPG123_RVA_OFF = 0 /**< RVA disabled (default). */ ,MPG123_RVA_MIX = 1 /**< Use mix/track/radio gain. */ ,MPG123_RVA_ALBUM = 2 /**< Use album/audiophile gain */ ,MPG123_RVA_MAX = MPG123_RVA_ALBUM /**< The maximum RVA code, may increase in future. */ }; /* TODO: Assess the possibilities and troubles of changing parameters during playback. */ /** Set a specific parameter, for a specific mpg123_handle, using a parameter * type key chosen from the mpg123_parms enumeration, to the specified value. */ EXPORT int mpg123_param(mpg123_handle *mh, enum mpg123_parms type, long value, double fvalue); /** Get a specific parameter, for a specific mpg123_handle. * See the mpg123_parms enumeration for a list of available parameters. */ EXPORT int mpg123_getparam(mpg123_handle *mh, enum mpg123_parms type, long *val, double *fval); /** Feature set available for query with mpg123_feature. */ enum mpg123_feature_set { MPG123_FEATURE_ABI_UTF8OPEN = 0 /**< mpg123 expects path names to be given in UTF-8 encoding instead of plain native. */ ,MPG123_FEATURE_OUTPUT_8BIT /**< 8bit output */ ,MPG123_FEATURE_OUTPUT_16BIT /**< 16bit output */ ,MPG123_FEATURE_OUTPUT_32BIT /**< 32bit output */ ,MPG123_FEATURE_INDEX /**< support for building a frame index for accurate seeking */ ,MPG123_FEATURE_PARSE_ID3V2 /**< id3v2 parsing */ ,MPG123_FEATURE_DECODE_LAYER1 /**< mpeg layer-1 decoder enabled */ ,MPG123_FEATURE_DECODE_LAYER2 /**< mpeg layer-2 decoder enabled */ ,MPG123_FEATURE_DECODE_LAYER3 /**< mpeg layer-3 decoder enabled */ ,MPG123_FEATURE_DECODE_ACCURATE /**< accurate decoder rounding */ ,MPG123_FEATURE_DECODE_DOWNSAMPLE /**< downsample (sample omit) */ ,MPG123_FEATURE_DECODE_NTOM /**< flexible rate decoding */ ,MPG123_FEATURE_PARSE_ICY /**< ICY support */ ,MPG123_FEATURE_TIMEOUT_READ /**< Reader with timeout (network). */ }; /** Query libmpg123 feature, 1 for success, 0 for unimplemented functions. */ EXPORT int mpg123_feature(const enum mpg123_feature_set key); /* @} */ /** \defgroup mpg123_error mpg123 error handling * * Functions to get text version of the error numbers and an enumeration * of the error codes returned by libmpg123. * * Most functions operating on a mpg123_handle simply return MPG123_OK on success and MPG123_ERR on failure (setting the internal error variable of the handle to the specific error code). * Decoding/seek functions may also return message codes MPG123_DONE, MPG123_NEW_FORMAT and MPG123_NEED_MORE (please read up on these on how to react!). * The positive range of return values is used for "useful" values when appropriate. * * @{ */ /** Enumeration of the message and error codes and returned by libmpg123 functions. */ enum mpg123_errors { MPG123_DONE=-12, /**< Message: Track ended. Stop decoding. */ MPG123_NEW_FORMAT=-11, /**< Message: Output format will be different on next call. Note that some libmpg123 versions between 1.4.3 and 1.8.0 insist on you calling mpg123_getformat() after getting this message code. Newer verisons behave like advertised: You have the chance to call mpg123_getformat(), but you can also just continue decoding and get your data. */ MPG123_NEED_MORE=-10, /**< Message: For feed reader: "Feed me more!" (call mpg123_feed() or mpg123_decode() with some new input data). */ MPG123_ERR=-1, /**< Generic Error */ MPG123_OK=0, /**< Success */ MPG123_BAD_OUTFORMAT, /**< Unable to set up output format! */ MPG123_BAD_CHANNEL, /**< Invalid channel number specified. */ MPG123_BAD_RATE, /**< Invalid sample rate specified. */ MPG123_ERR_16TO8TABLE, /**< Unable to allocate memory for 16 to 8 converter table! */ MPG123_BAD_PARAM, /**< Bad parameter id! */ MPG123_BAD_BUFFER, /**< Bad buffer given -- invalid pointer or too small size. */ MPG123_OUT_OF_MEM, /**< Out of memory -- some malloc() failed. */ MPG123_NOT_INITIALIZED, /**< You didn't initialize the library! */ MPG123_BAD_DECODER, /**< Invalid decoder choice. */ MPG123_BAD_HANDLE, /**< Invalid mpg123 handle. */ MPG123_NO_BUFFERS, /**< Unable to initialize frame buffers (out of memory?). */ MPG123_BAD_RVA, /**< Invalid RVA mode. */ MPG123_NO_GAPLESS, /**< This build doesn't support gapless decoding. */ MPG123_NO_SPACE, /**< Not enough buffer space. */ MPG123_BAD_TYPES, /**< Incompatible numeric data types. */ MPG123_BAD_BAND, /**< Bad equalizer band. */ MPG123_ERR_NULL, /**< Null pointer given where valid storage address needed. */ MPG123_ERR_READER, /**< Error reading the stream. */ MPG123_NO_SEEK_FROM_END,/**< Cannot seek from end (end is not known). */ MPG123_BAD_WHENCE, /**< Invalid 'whence' for seek function.*/ MPG123_NO_TIMEOUT, /**< Build does not support stream timeouts. */ MPG123_BAD_FILE, /**< File access error. */ MPG123_NO_SEEK, /**< Seek not supported by stream. */ MPG123_NO_READER, /**< No stream opened. */ MPG123_BAD_PARS, /**< Bad parameter handle. */ MPG123_BAD_INDEX_PAR, /**< Bad parameters to mpg123_index() and mpg123_set_index() */ MPG123_OUT_OF_SYNC, /**< Lost track in bytestream and did not try to resync. */ MPG123_RESYNC_FAIL, /**< Resync failed to find valid MPEG data. */ MPG123_NO_8BIT, /**< No 8bit encoding possible. */ MPG123_BAD_ALIGN, /**< Stack aligmnent error */ MPG123_NULL_BUFFER, /**< NULL input buffer with non-zero size... */ MPG123_NO_RELSEEK, /**< Relative seek not possible (screwed up file offset) */ MPG123_NULL_POINTER, /**< You gave a null pointer somewhere where you shouldn't have. */ MPG123_BAD_KEY, /**< Bad key value given. */ MPG123_NO_INDEX, /**< No frame index in this build. */ MPG123_INDEX_FAIL, /**< Something with frame index went wrong. */ MPG123_BAD_DECODER_SETUP, /**< Something prevents a proper decoder setup */ MPG123_MISSING_FEATURE /**< This feature has not been built into libmpg123. */ ,MPG123_BAD_VALUE /**< A bad value has been given, somewhere. */ ,MPG123_LSEEK_FAILED /**< Low-level seek failed. */ ,MPG123_BAD_CUSTOM_IO /**< Custom I/O not prepared. */ ,MPG123_LFS_OVERFLOW /**< Offset value overflow during translation of large file API calls -- your client program cannot handle that large file. */ ,MPG123_INT_OVERFLOW /**< Some integer overflow. */ }; /** Return a string describing that error errcode means. */ EXPORT const char* mpg123_plain_strerror(int errcode); /** Give string describing what error has occured in the context of handle mh. * When a function operating on an mpg123 handle returns MPG123_ERR, you should check for the actual reason via * char *errmsg = mpg123_strerror(mh) * This function will catch mh == NULL and return the message for MPG123_BAD_HANDLE. */ EXPORT const char* mpg123_strerror(mpg123_handle *mh); /** Return the plain errcode intead of a string. */ EXPORT int mpg123_errcode(mpg123_handle *mh); /*@}*/ /** \defgroup mpg123_decoder mpg123 decoder selection * * Functions to list and select the available decoders. * Perhaps the most prominent feature of mpg123: You have several (optimized) decoders to choose from (on x86 and PPC (MacOS) systems, that is). * * @{ */ /** Return a NULL-terminated array of generally available decoder names (plain 8bit ASCII). */ EXPORT const char **mpg123_decoders(void); /** Return a NULL-terminated array of the decoders supported by the CPU (plain 8bit ASCII). */ EXPORT const char **mpg123_supported_decoders(void); /** Set the chosen decoder to 'decoder_name' */ EXPORT int mpg123_decoder(mpg123_handle *mh, const char* decoder_name); /** Get the currently active decoder engine name. The active decoder engine can vary depening on output constraints, mostly non-resampling, integer output is accelerated via 3DNow & Co. but for other modes a fallback engine kicks in. Note that this can return a decoder that is ony active in the hidden and not available as decoder choice from the outside. \return The decoder name or NULL on error. */ EXPORT const char* mpg123_current_decoder(mpg123_handle *mh); /*@}*/ /** \defgroup mpg123_output mpg123 output audio format * * Functions to get and select the format of the decoded audio. * * Before you dive in, please be warned that you might get confused by this. This seems to happen a lot, therefore I am trying to explain in advance. * * The mpg123 library decides what output format to use when encountering the first frame in a stream, or actually any frame that is still valid but differs from the frames before in the prompted output format. At such a deciding point, an internal table of allowed encodings, sampling rates and channel setups is consulted. According to this table, an output format is chosen and the decoding engine set up accordingly (including ptimized routines for different output formats). This might seem unusual but it just follows from the non-existence of "MPEG audio files" with defined overall properties. There are streams, streams are concatenations of (semi) independent frames. We store streams on disk and call them "MPEG audio files", but that does not change their nature as the decoder is concerned (the LAME/Xing header for gapless decoding makes things interesting again). * * To get to the point: What you do with mpg123_format() and friends is to fill the internal table of allowed formats before it is used. That includes removing support for some formats or adding your forced sample rate (see MPG123_FORCE_RATE) that will be used with the crude internal resampler. Also keep in mind that the sample encoding is just a question of choice -- the MPEG frames do only indicate their native sampling rate and channel count. If you want to decode to integer or float samples, 8 or 16 bit ... that is your decision. In a "clean" world, libmpg123 would always decode to 32 bit float and let you handle any sample conversion. But there are optimized routines that work faster by directly decoding to the desired encoding / accuracy. We prefer efficiency over conceptual tidyness. * * People often start out thinking that mpg123_format() should change the actual decoding format on the fly. That is wrong. It only has effect on the next natural change of output format, when libmpg123 will consult its format table again. To make life easier, you might want to call mpg123_format_none() before any thing else and then just allow one desired encoding and a limited set of sample rates / channel choices that you actually intend to deal with. You can force libmpg123 to decode everything to 44100 KHz, stereo, 16 bit integer ... it will duplicate mono channels and even do resampling if needed (unless that feature is disabled in the build, same with some encodings). But I have to stress that the resampling of libmpg123 is very crude and doesn't even contain any kind of "proper" interpolation. * * In any case, watch out for MPG123_NEW_FORMAT as return message from decoding routines and call mpg123_getformat() to get the currently active output format. * * @{ */ /** An enum over all sample types possibly known to mpg123. * The values are designed as bit flags to allow bitmasking for encoding families. * * Note that (your build of) libmpg123 does not necessarily support all these. * Usually, you can expect the 8bit encodings and signed 16 bit. * Also 32bit float will be usual beginning with mpg123-1.7.0 . * What you should bear in mind is that (SSE, etc) optimized routines may be absent * for some formats. We do have SSE for 16, 32 bit and float, though. * 24 bit integer is done via postprocessing of 32 bit output -- just cutting * the last byte, no rounding, even. If you want better, do it yourself. * * All formats are in native byte order. If you need different endinaness, you * can simply postprocess the output buffers (libmpg123 wouldn't do anything else). * mpg123_encsize() can be helpful there. */ enum mpg123_enc_enum { MPG123_ENC_8 = 0x00f /**< 0000 0000 1111 Some 8 bit integer encoding. */ ,MPG123_ENC_16 = 0x040 /**< 0000 0100 0000 Some 16 bit integer encoding. */ ,MPG123_ENC_24 = 0x4000 /**< 0100 0000 0000 0000 Some 24 bit integer encoding. */ ,MPG123_ENC_32 = 0x100 /**< 0001 0000 0000 Some 32 bit integer encoding. */ ,MPG123_ENC_SIGNED = 0x080 /**< 0000 1000 0000 Some signed integer encoding. */ ,MPG123_ENC_FLOAT = 0xe00 /**< 1110 0000 0000 Some float encoding. */ ,MPG123_ENC_SIGNED_16 = (MPG123_ENC_16|MPG123_ENC_SIGNED|0x10) /**< 1101 0000 signed 16 bit */ ,MPG123_ENC_UNSIGNED_16 = (MPG123_ENC_16|0x20) /**< 0110 0000 unsigned 16 bit */ ,MPG123_ENC_UNSIGNED_8 = 0x01 /**< 0000 0001 unsigned 8 bit */ ,MPG123_ENC_SIGNED_8 = (MPG123_ENC_SIGNED|0x02) /**< 1000 0010 signed 8 bit */ ,MPG123_ENC_ULAW_8 = 0x04 /**< 0000 0100 ulaw 8 bit */ ,MPG123_ENC_ALAW_8 = 0x08 /**< 0000 1000 alaw 8 bit */ ,MPG123_ENC_SIGNED_32 = MPG123_ENC_32|MPG123_ENC_SIGNED|0x1000 /**< 0001 0001 1000 0000 signed 32 bit */ ,MPG123_ENC_UNSIGNED_32 = MPG123_ENC_32|0x2000 /**< 0010 0001 0000 0000 unsigned 32 bit */ ,MPG123_ENC_SIGNED_24 = MPG123_ENC_24|MPG123_ENC_SIGNED|0x1000 /**< 0101 0000 1000 0000 signed 24 bit */ ,MPG123_ENC_UNSIGNED_24 = MPG123_ENC_24|0x2000 /**< 0110 0000 0000 0000 unsigned 24 bit */ ,MPG123_ENC_FLOAT_32 = 0x200 /**< 0010 0000 0000 32bit float */ ,MPG123_ENC_FLOAT_64 = 0x400 /**< 0100 0000 0000 64bit float */ ,MPG123_ENC_ANY = ( MPG123_ENC_SIGNED_16 | MPG123_ENC_UNSIGNED_16 | MPG123_ENC_UNSIGNED_8 | MPG123_ENC_SIGNED_8 | MPG123_ENC_ULAW_8 | MPG123_ENC_ALAW_8 | MPG123_ENC_SIGNED_32 | MPG123_ENC_UNSIGNED_32 | MPG123_ENC_SIGNED_24 | MPG123_ENC_UNSIGNED_24 | MPG123_ENC_FLOAT_32 | MPG123_ENC_FLOAT_64 ) /**< Any encoding on the list. */ }; /** They can be combined into one number (3) to indicate mono and stereo... */ enum mpg123_channelcount { MPG123_MONO = 1 ,MPG123_STEREO = 2 }; /** An array of supported standard sample rates * These are possible native sample rates of MPEG audio files. * You can still force mpg123 to resample to a different one, but by default you will only get audio in one of these samplings. * \param list Store a pointer to the sample rates array there. * \param number Store the number of sample rates there. */ EXPORT void mpg123_rates(const long **list, size_t *number); /** An array of supported audio encodings. * An audio encoding is one of the fully qualified members of mpg123_enc_enum (MPG123_ENC_SIGNED_16, not MPG123_SIGNED). * \param list Store a pointer to the encodings array there. * \param number Store the number of encodings there. */ EXPORT void mpg123_encodings(const int **list, size_t *number); /** Return the size (in bytes) of one mono sample of the named encoding. * \param encoding The encoding value to analyze. * \return positive size of encoding in bytes, 0 on invalid encoding. */ EXPORT int mpg123_encsize(int encoding); /** Configure a mpg123 handle to accept no output format at all, * use before specifying supported formats with mpg123_format */ EXPORT int mpg123_format_none(mpg123_handle *mh); /** Configure mpg123 handle to accept all formats * (also any custom rate you may set) -- this is default. */ EXPORT int mpg123_format_all(mpg123_handle *mh); /** Set the audio format support of a mpg123_handle in detail: * \param mh audio decoder handle * \param rate The sample rate value (in Hertz). * \param channels A combination of MPG123_STEREO and MPG123_MONO. * \param encodings A combination of accepted encodings for rate and channels, p.ex MPG123_ENC_SIGNED16 | MPG123_ENC_ULAW_8 (or 0 for no support). Please note that some encodings may not be supported in the library build and thus will be ignored here. * \return MPG123_OK on success, MPG123_ERR if there was an error. */ EXPORT int mpg123_format(mpg123_handle *mh, long rate, int channels, int encodings); /** Check to see if a specific format at a specific rate is supported * by mpg123_handle. * \return 0 for no support (that includes invalid parameters), MPG123_STEREO, * MPG123_MONO or MPG123_STEREO|MPG123_MONO. */ EXPORT int mpg123_format_support(mpg123_handle *mh, long rate, int encoding); /** Get the current output format written to the addresses givenr. */ EXPORT int mpg123_getformat(mpg123_handle *mh, long *rate, int *channels, int *encoding); /*@}*/ /** \defgroup mpg123_input mpg123 file input and decoding * * Functions for input bitstream and decoding operations. * Decoding/seek functions may also return message codes MPG123_DONE, MPG123_NEW_FORMAT and MPG123_NEED_MORE (please read up on these on how to react!). * @{ */ /* reading samples / triggering decoding, possible return values: */ /** Enumeration of the error codes returned by libmpg123 functions. */ /** Open and prepare to decode the specified file by filesystem path. * This does not open HTTP urls; libmpg123 contains no networking code. * If you want to decode internet streams, use mpg123_open_fd() or mpg123_open_feed(). */ EXPORT int mpg123_open(mpg123_handle *mh, const char *path); /** Use an already opened file descriptor as the bitstream input * mpg123_close() will _not_ close the file descriptor. */ EXPORT int mpg123_open_fd(mpg123_handle *mh, int fd); /** Use an opaque handle as bitstream input. This works only with the * replaced I/O from mpg123_replace_reader_handle()! * mpg123_close() will call the cleanup callback for your handle (if you gave one). */ EXPORT int mpg123_open_handle(mpg123_handle *mh, void *iohandle); /** Open a new bitstream and prepare for direct feeding * This works together with mpg123_decode(); you are responsible for reading and feeding the input bitstream. */ EXPORT int mpg123_open_feed(mpg123_handle *mh); /** Closes the source, if libmpg123 opened it. */ EXPORT int mpg123_close(mpg123_handle *mh); /** Read from stream and decode up to outmemsize bytes. * \param outmemory address of output buffer to write to * \param outmemsize maximum number of bytes to write * \param done address to store the number of actually decoded bytes to * \return error/message code (watch out for MPG123_DONE and friends!) */ EXPORT int mpg123_read(mpg123_handle *mh, unsigned char *outmemory, size_t outmemsize, size_t *done); /** Feed data for a stream that has been opened with mpg123_open_feed(). * It's give and take: You provide the bytestream, mpg123 gives you the decoded samples. * \param in input buffer * \param size number of input bytes * \return error/message code. */ EXPORT int mpg123_feed(mpg123_handle *mh, const unsigned char *in, size_t size); /** Decode MPEG Audio from inmemory to outmemory. * This is very close to a drop-in replacement for old mpglib. * When you give zero-sized output buffer the input will be parsed until * decoded data is available. This enables you to get MPG123_NEW_FORMAT (and query it) * without taking decoded data. * Think of this function being the union of mpg123_read() and mpg123_feed() (which it actually is, sort of;-). * You can actually always decide if you want those specialized functions in separate steps or one call this one here. * \param inmemory input buffer * \param inmemsize number of input bytes * \param outmemory output buffer * \param outmemsize maximum number of output bytes * \param done address to store the number of actually decoded bytes to * \return error/message code (watch out especially for MPG123_NEED_MORE) */ EXPORT int mpg123_decode(mpg123_handle *mh, const unsigned char *inmemory, size_t inmemsize, unsigned char *outmemory, size_t outmemsize, size_t *done); /** Decode next MPEG frame to internal buffer * or read a frame and return after setting a new format. * \param num current frame offset gets stored there * \param audio This pointer is set to the internal buffer to read the decoded audio from. * \param bytes number of output bytes ready in the buffer */ EXPORT int mpg123_decode_frame(mpg123_handle *mh, off_t *num, unsigned char **audio, size_t *bytes); /** Decode current MPEG frame to internal buffer. * Warning: This is experimental API that might change in future releases! * Please watch mpg123 development closely when using it. * \param num last frame offset gets stored there * \param audio this pointer is set to the internal buffer to read the decoded audio from. * \param bytes number of output bytes ready in the buffer */ EXPORT int mpg123_framebyframe_decode(mpg123_handle *mh, off_t *num, unsigned char **audio, size_t *bytes); /** Find, read and parse the next mp3 frame * Warning: This is experimental API that might change in future releases! * Please watch mpg123 development closely when using it. */ EXPORT int mpg123_framebyframe_next(mpg123_handle *mh); /** Get access to the raw input data for the last parsed frame. * This gives you a direct look (and write access) to the frame body data. * Together with the raw header, you can reconstruct the whole raw MPEG stream without junk and meta data, or play games by actually modifying the frame body data before decoding this frame (mpg123_framebyframe_decode()). * A more sane use would be to use this for CRC checking (see mpg123_info() and MPG123_CRC), the first two bytes of the body make up the CRC16 checksum, if present. * You can provide NULL for a parameter pointer when you are not interested in the value. * * \param header the 4-byte MPEG header * \param bodydata pointer to the frame body stored in the handle (without the header) * \param bodybytes size of frame body in bytes (without the header) * \return MPG123_OK if there was a yet un-decoded frame to get the data from, MPG123_ERR otherwise (without further explanation, the error state of the mpg123_handle is not modified by this function). */ EXPORT int mpg123_framedata(mpg123_handle *mh, unsigned long *header, unsigned char **bodydata, size_t *bodybytes); /** Get the input position (byte offset in stream) of the last parsed frame. * This can be used for external seek index building, for example. * It just returns the internally stored offset, regardless of validity -- you ensure that a valid frame has been parsed before! */ EXPORT off_t mpg123_framepos(mpg123_handle *mh); /*@}*/ /** \defgroup mpg123_seek mpg123 position and seeking * * Functions querying and manipulating position in the decoded audio bitstream. * The position is measured in decoded audio samples, or MPEG frame offset for the specific functions. * If gapless code is in effect, the positions are adjusted to compensate the skipped padding/delay - meaning, you should not care about that at all and just use the position defined for the samples you get out of the decoder;-) * The general usage is modelled after stdlib's ftell() and fseek(). * Especially, the whence parameter for the seek functions has the same meaning as the one for fseek() and needs the same constants from stdlib.h: * - SEEK_SET: set position to (or near to) specified offset * - SEEK_CUR: change position by offset from now * - SEEK_END: set position to offset from end * * Note that sample-accurate seek only works when gapless support has been enabled at compile time; seek is frame-accurate otherwise. * Also, really sample-accurate seeking (meaning that you get the identical sample value after seeking compared to plain decoding up to the position) is only guaranteed when you do not mess with the position code by using MPG123_UPSPEED, MPG123_DOWNSPEED or MPG123_START_FRAME. The first two mainly should cause trouble with NtoM resampling, but in any case with these options in effect, you have to keep in mind that the sample offset is not the same as counting the samples you get from decoding since mpg123 counts the skipped samples, too (or the samples played twice only once)! * Short: When you care about the sample position, don't mess with those parameters;-) * Also, seeking is not guaranteed to work for all streams (underlying stream may not support it). * * @{ */ /** Returns the current position in samples. * On the next read, you'd get that sample. */ EXPORT off_t mpg123_tell(mpg123_handle *mh); /** Returns the frame number that the next read will give you data from. */ EXPORT off_t mpg123_tellframe(mpg123_handle *mh); /** Returns the current byte offset in the input stream. */ EXPORT off_t mpg123_tell_stream(mpg123_handle *mh); /** Seek to a desired sample offset. * Set whence to SEEK_SET, SEEK_CUR or SEEK_END. * \return The resulting offset >= 0 or error/message code */ EXPORT off_t mpg123_seek(mpg123_handle *mh, off_t sampleoff, int whence); /** Seek to a desired sample offset in data feeding mode. * This just prepares things to be right only if you ensure that the next chunk of input data will be from input_offset byte position. * \param input_offset The position it expects to be at the * next time data is fed to mpg123_decode(). * \return The resulting offset >= 0 or error/message code */ EXPORT off_t mpg123_feedseek(mpg123_handle *mh, off_t sampleoff, int whence, off_t *input_offset); /** Seek to a desired MPEG frame index. * Set whence to SEEK_SET, SEEK_CUR or SEEK_END. * \return The resulting offset >= 0 or error/message code */ EXPORT off_t mpg123_seek_frame(mpg123_handle *mh, off_t frameoff, int whence); /** Return a MPEG frame offset corresponding to an offset in seconds. * This assumes that the samples per frame do not change in the file/stream, which is a good assumption for any sane file/stream only. * \return frame offset >= 0 or error/message code */ EXPORT off_t mpg123_timeframe(mpg123_handle *mh, double sec); /** Give access to the frame index table that is managed for seeking. * You are asked not to modify the values... Use mpg123_set_index to set the * seek index * \param offsets pointer to the index array * \param step one index byte offset advances this many MPEG frames * \param fill number of recorded index offsets; size of the array */ EXPORT int mpg123_index(mpg123_handle *mh, off_t **offsets, off_t *step, size_t *fill); /** Set the frame index table * Setting offsets to NULL and fill > 0 will allocate fill entries. Setting offsets * to NULL and fill to 0 will clear the index and free the allocated memory used by the index. * \param offsets pointer to the index array * \param step one index byte offset advances this many MPEG frames * \param fill number of recorded index offsets; size of the array */ EXPORT int mpg123_set_index(mpg123_handle *mh, off_t *offsets, off_t step, size_t fill); /** Get information about current and remaining frames/seconds. * WARNING: This function is there because of special usage by standalone mpg123 and may be removed in the final version of libmpg123! * You provide an offset (in frames) from now and a number of output bytes * served by libmpg123 but not yet played. You get the projected current frame * and seconds, as well as the remaining frames/seconds. This does _not_ care * about skipped samples due to gapless playback. */ EXPORT int mpg123_position( mpg123_handle *mh, off_t frame_offset, off_t buffered_bytes, off_t *current_frame, off_t *frames_left, double *current_seconds, double *seconds_left); /*@}*/ /** \defgroup mpg123_voleq mpg123 volume and equalizer * * @{ */ enum mpg123_channels { MPG123_LEFT=0x1 /**< The Left Channel. */ ,MPG123_RIGHT=0x2 /**< The Right Channel. */ ,MPG123_LR=0x3 /**< Both left and right channel; same as MPG123_LEFT|MPG123_RIGHT */ }; /** Set the 32 Band Audio Equalizer settings. * \param channel Can be MPG123_LEFT, MPG123_RIGHT or MPG123_LEFT|MPG123_RIGHT for both. * \param band The equaliser band to change (from 0 to 31) * \param val The (linear) adjustment factor. */ EXPORT int mpg123_eq(mpg123_handle *mh, enum mpg123_channels channel, int band, double val); /** Get the 32 Band Audio Equalizer settings. * \param channel Can be MPG123_LEFT, MPG123_RIGHT or MPG123_LEFT|MPG123_RIGHT for (arithmetic mean of) both. * \param band The equaliser band to change (from 0 to 31) * \return The (linear) adjustment factor. */ EXPORT double mpg123_geteq(mpg123_handle *mh, enum mpg123_channels channel, int band); /** Reset the 32 Band Audio Equalizer settings to flat */ EXPORT int mpg123_reset_eq(mpg123_handle *mh); /** Set the absolute output volume including the RVA setting, * vol<0 just applies (a possibly changed) RVA setting. */ EXPORT int mpg123_volume(mpg123_handle *mh, double vol); /** Adjust output volume including the RVA setting by chosen amount */ EXPORT int mpg123_volume_change(mpg123_handle *mh, double change); /** Return current volume setting, the actual value due to RVA, and the RVA * adjustment itself. It's all as double float value to abstract the sample * format. The volume values are linear factors / amplitudes (not percent) * and the RVA value is in decibels. */ EXPORT int mpg123_getvolume(mpg123_handle *mh, double *base, double *really, double *rva_db); /* TODO: Set some preamp in addition / to replace internal RVA handling? */ /*@}*/ /** \defgroup mpg123_status mpg123 status and information * * @{ */ /** Enumeration of the mode types of Variable Bitrate */ enum mpg123_vbr { MPG123_CBR=0, /**< Constant Bitrate Mode (default) */ MPG123_VBR, /**< Variable Bitrate Mode */ MPG123_ABR /**< Average Bitrate Mode */ }; /** Enumeration of the MPEG Versions */ enum mpg123_version { MPG123_1_0=0, /**< MPEG Version 1.0 */ MPG123_2_0, /**< MPEG Version 2.0 */ MPG123_2_5 /**< MPEG Version 2.5 */ }; /** Enumeration of the MPEG Audio mode. * Only the mono mode has 1 channel, the others have 2 channels. */ enum mpg123_mode { MPG123_M_STEREO=0, /**< Standard Stereo. */ MPG123_M_JOINT, /**< Joint Stereo. */ MPG123_M_DUAL, /**< Dual Channel. */ MPG123_M_MONO /**< Single Channel. */ }; /** Enumeration of the MPEG Audio flag bits */ enum mpg123_flags { MPG123_CRC=0x1, /**< The bitstream is error protected using 16-bit CRC. */ MPG123_COPYRIGHT=0x2, /**< The bitstream is copyrighted. */ MPG123_PRIVATE=0x4, /**< The private bit has been set. */ MPG123_ORIGINAL=0x8 /**< The bitstream is an original, not a copy. */ }; /** Data structure for storing information about a frame of MPEG Audio */ struct mpg123_frameinfo { enum mpg123_version version; /**< The MPEG version (1.0/2.0/2.5). */ int layer; /**< The MPEG Audio Layer (MP1/MP2/MP3). */ long rate; /**< The sampling rate in Hz. */ enum mpg123_mode mode; /**< The audio mode (Mono, Stereo, Joint-stero, Dual Channel). */ int mode_ext; /**< The mode extension bit flag. */ int framesize; /**< The size of the frame (in bytes, including header). */ enum mpg123_flags flags; /**< MPEG Audio flag bits. Just now I realize that it should be declared as int, not enum. It's a bitwise combination of the enum values. */ int emphasis; /**< The emphasis type. */ int bitrate; /**< Bitrate of the frame (kbps). */ int abr_rate; /**< The target average bitrate. */ enum mpg123_vbr vbr; /**< The VBR mode. */ }; /** Get frame information about the MPEG audio bitstream and store it in a mpg123_frameinfo structure. */ EXPORT int mpg123_info(mpg123_handle *mh, struct mpg123_frameinfo *mi); /** Get the safe output buffer size for all cases (when you want to replace the internal buffer) */ EXPORT size_t mpg123_safe_buffer(void); /** Make a full parsing scan of each frame in the file. ID3 tags are found. An accurate length * value is stored. Seek index will be filled. A seek back to current position * is performed. At all, this function refuses work when stream is * not seekable. * \return MPG123_OK or MPG123_ERR. */ EXPORT int mpg123_scan(mpg123_handle *mh); /** Return, if possible, the full (expected) length of current track in samples. * \return length >= 0 or MPG123_ERR if there is no length guess possible. */ EXPORT off_t mpg123_length(mpg123_handle *mh); /** Override the value for file size in bytes. * Useful for getting sensible track length values in feed mode or for HTTP streams. * \return MPG123_OK or MPG123_ERR */ EXPORT int mpg123_set_filesize(mpg123_handle *mh, off_t size); /** Returns the time (seconds) per frame; <0 is error. */ EXPORT double mpg123_tpf(mpg123_handle *mh); /** Returns the samples per frame for the most recently parsed frame; <0 is error. */ EXPORT int mpg123_spf(mpg123_handle *mh); /** Get and reset the clip count. */ EXPORT long mpg123_clip(mpg123_handle *mh); /** The key values for state information from mpg123_getstate(). */ enum mpg123_state { MPG123_ACCURATE = 1 /**< Query if positons are currently accurate (integer value, 0 if false, 1 if true) */ ,MPG123_BUFFERFILL /**< Get fill of internal (feed) input buffer as integer byte count returned as long and as double. An error is returned on integer overflow while converting to (signed) long, but the returned floating point value shold still be fine. */ ,MPG123_FRANKENSTEIN /**< Stream consists of carelessly stitched together files (the leading one featuring gapless info). */ }; /** Get various current decoder/stream state information. * \param key the key to identify the information to give. * \param val the address to return (long) integer values to * \param fval the address to return floating point values to * \return MPG123_OK or MPG123_ERR for success */ EXPORT int mpg123_getstate(mpg123_handle *mh, enum mpg123_state key, long *val, double *fval); /*@}*/ /** \defgroup mpg123_metadata mpg123 metadata handling * * Functions to retrieve the metadata from MPEG Audio files and streams. * Also includes string handling functions. * * @{ */ /** Data structure for storing strings in a safer way than a standard C-String. * Can also hold a number of null-terminated strings. */ typedef struct { char* p; /**< pointer to the string data */ size_t size; /**< raw number of bytes allocated */ size_t fill; /**< number of used bytes (including closing zero byte) */ } mpg123_string; /** Create and allocate memory for a new mpg123_string */ EXPORT void mpg123_init_string(mpg123_string* sb); /** Free-up mempory for an existing mpg123_string */ EXPORT void mpg123_free_string(mpg123_string* sb); /** Change the size of a mpg123_string * \return 0 on error, 1 on success */ EXPORT int mpg123_resize_string(mpg123_string* sb, size_t news); /** Increase size of a mpg123_string if necessary (it may stay larger). * Note that the functions for adding and setting in current libmpg123 use this instead of mpg123_resize_string(). * That way, you can preallocate memory and safely work afterwards with pieces. * \return 0 on error, 1 on success */ EXPORT int mpg123_grow_string(mpg123_string* sb, size_t news); /** Copy the contents of one mpg123_string string to another. * \return 0 on error, 1 on success */ EXPORT int mpg123_copy_string(mpg123_string* from, mpg123_string* to); /** Append a C-String to an mpg123_string * \return 0 on error, 1 on success */ EXPORT int mpg123_add_string(mpg123_string* sb, const char* stuff); /** Append a C-substring to an mpg123 string * \return 0 on error, 1 on success * \param from offset to copy from * \param count number of characters to copy (a null-byte is always appended) */ EXPORT int mpg123_add_substring(mpg123_string *sb, const char *stuff, size_t from, size_t count); /** Set the conents of a mpg123_string to a C-string * \return 0 on error, 1 on success */ EXPORT int mpg123_set_string(mpg123_string* sb, const char* stuff); /** Set the contents of a mpg123_string to a C-substring * \return 0 on error, 1 on success * \param from offset to copy from * \param count number of characters to copy (a null-byte is always appended) */ EXPORT int mpg123_set_substring(mpg123_string *sb, const char *stuff, size_t from, size_t count); /** Count characters in a mpg123 string (non-null bytes or UTF-8 characters). * \return character count * \param sb the string * \param utf8 a flag to tell if the string is in utf8 encoding * Even with the fill property, the character count is not obvious as there could be multiple trailing null bytes. */ EXPORT size_t mpg123_strlen(mpg123_string *sb, int utf8); /** The mpg123 text encodings. This contains encodings we encounter in ID3 tags or ICY meta info. */ enum mpg123_text_encoding { mpg123_text_unknown = 0 /**< Unkown encoding... mpg123_id3_encoding can return that on invalid codes. */ ,mpg123_text_utf8 = 1 /**< UTF-8 */ ,mpg123_text_latin1 = 2 /**< ISO-8859-1. Note that sometimes latin1 in ID3 is abused for totally different encodings. */ ,mpg123_text_icy = 3 /**< ICY metadata encoding, usually CP-1252 but we take it as UTF-8 if it qualifies as such. */ ,mpg123_text_cp1252 = 4 /**< Really CP-1252 without any guessing. */ ,mpg123_text_utf16 = 5 /**< Some UTF-16 encoding. The last of a set of leading BOMs (byte order mark) rules. * When there is no BOM, big endian ordering is used. Note that UCS-2 qualifies as UTF-8 when * you don't mess with the reserved code points. If you want to decode little endian data * without BOM you need to prepend 0xff 0xfe yourself. */ ,mpg123_text_utf16bom = 6 /**< Just an alias for UTF-16, ID3v2 has this as distinct code. */ ,mpg123_text_utf16be = 7 /**< Another alias for UTF16 from ID3v2. Note, that, because of the mess that is reality, * BOMs are used if encountered. There really is not much distinction between the UTF16 types for mpg123 * One exception: Since this is seen in ID3v2 tags, leading null bytes are skipped for all other UTF16 * types (we expect a BOM before real data there), not so for utf16be!*/ ,mpg123_text_max = 7 /**< Placeholder for the maximum encoding value. */ }; /** The encoding byte values from ID3v2. */ enum mpg123_id3_enc { mpg123_id3_latin1 = 0 /**< Note: This sometimes can mean anything in practice... */ ,mpg123_id3_utf16bom = 1 /**< UTF16, UCS-2 ... it's all the same for practical purposes. */ ,mpg123_id3_utf16be = 2 /**< Big-endian UTF-16, BOM see note for mpg123_text_utf16be. */ ,mpg123_id3_utf8 = 3 /**< Our lovely overly ASCII-compatible 8 byte encoding for the world. */ ,mpg123_id3_enc_max = 3 /**< Placeholder to check valid range of encoding byte. */ }; /** Convert ID3 encoding byte to mpg123 encoding index. */ EXPORT enum mpg123_text_encoding mpg123_enc_from_id3(unsigned char id3_enc_byte); /** Store text data in string, after converting to UTF-8 from indicated encoding * \return 0 on error, 1 on success (on error, mpg123_free_string is called on sb) * \param sb target string * \param enc mpg123 text encoding value * \param source source buffer with plain unsigned bytes (you might need to cast from char *) * \param source_size number of bytes in the source buffer * * A prominent error can be that you provided an unknown encoding value, or this build of libmpg123 lacks support for certain encodings (ID3 or ICY stuff missing). * Also, you might want to take a bit of care with preparing the data; for example, strip leading zeroes (I have seen that). */ EXPORT int mpg123_store_utf8(mpg123_string *sb, enum mpg123_text_encoding enc, const unsigned char *source, size_t source_size); /** Sub data structure for ID3v2, for storing various text fields (including comments). * This is for ID3v2 COMM, TXXX and all the other text fields. * Only COMM and TXXX have a description, only COMM and USLT have a language. * You should consult the ID3v2 specification for the use of the various text fields ("frames" in ID3v2 documentation, I use "fields" here to separate from MPEG frames). */ typedef struct { char lang[3]; /**< Three-letter language code (not terminated). */ char id[4]; /**< The ID3v2 text field id, like TALB, TPE2, ... (4 characters, no string termination). */ mpg123_string description; /**< Empty for the generic comment... */ mpg123_string text; /**< ... */ } mpg123_text; /** Data structure for storing IDV3v2 tags. * This structure is not a direct binary mapping with the file contents. * The ID3v2 text frames are allowed to contain multiple strings. * So check for null bytes until you reach the mpg123_string fill. * All text is encoded in UTF-8. */ typedef struct { unsigned char version; /**< 3 or 4 for ID3v2.3 or ID3v2.4. */ mpg123_string *title; /**< Title string (pointer into text_list). */ mpg123_string *artist; /**< Artist string (pointer into text_list). */ mpg123_string *album; /**< Album string (pointer into text_list). */ mpg123_string *year; /**< The year as a string (pointer into text_list). */ mpg123_string *genre; /**< Genre String (pointer into text_list). The genre string(s) may very well need postprocessing, esp. for ID3v2.3. */ mpg123_string *comment; /**< Pointer to last encountered comment text with empty description. */ /* Encountered ID3v2 fields are appended to these lists. There can be multiple occurences, the pointers above always point to the last encountered data. */ mpg123_text *comment_list; /**< Array of comments. */ size_t comments; /**< Number of comments. */ mpg123_text *text; /**< Array of ID3v2 text fields (including USLT) */ size_t texts; /**< Numer of text fields. */ mpg123_text *extra; /**< The array of extra (TXXX) fields. */ size_t extras; /**< Number of extra text (TXXX) fields. */ } mpg123_id3v2; /** Data structure for ID3v1 tags (the last 128 bytes of a file). * Don't take anything for granted (like string termination)! * Also note the change ID3v1.1 did: comment[28] = 0; comment[19] = track_number * It is your task to support ID3v1 only or ID3v1.1 ...*/ typedef struct { char tag[3]; /**< Always the string "TAG", the classic intro. */ char title[30]; /**< Title string. */ char artist[30]; /**< Artist string. */ char album[30]; /**< Album string. */ char year[4]; /**< Year string. */ char comment[30]; /**< Comment string. */ unsigned char genre; /**< Genre index. */ } mpg123_id3v1; #define MPG123_ID3 0x3 /**< 0011 There is some ID3 info. Also matches 0010 or NEW_ID3. */ #define MPG123_NEW_ID3 0x1 /**< 0001 There is ID3 info that changed since last call to mpg123_id3. */ #define MPG123_ICY 0xc /**< 1100 There is some ICY info. Also matches 0100 or NEW_ICY.*/ #define MPG123_NEW_ICY 0x4 /**< 0100 There is ICY info that changed since last call to mpg123_icy. */ /** Query if there is (new) meta info, be it ID3 or ICY (or something new in future). The check function returns a combination of flags. */ EXPORT int mpg123_meta_check(mpg123_handle *mh); /* On error (no valid handle) just 0 is returned. */ /** Clean up meta data storage (ID3v2 and ICY), freeing memory. */ EXPORT void mpg123_meta_free(mpg123_handle *mh); /** Point v1 and v2 to existing data structures wich may change on any next read/decode function call. * v1 and/or v2 can be set to NULL when there is no corresponding data. * \return Return value is MPG123_OK or MPG123_ERR, */ EXPORT int mpg123_id3(mpg123_handle *mh, mpg123_id3v1 **v1, mpg123_id3v2 **v2); /** Point icy_meta to existing data structure wich may change on any next read/decode function call. * \return Return value is MPG123_OK or MPG123_ERR, */ EXPORT int mpg123_icy(mpg123_handle *mh, char **icy_meta); /* same for ICY meta string */ /** Decode from windows-1252 (the encoding ICY metainfo used) to UTF-8. * Note that this is very similar to mpg123_store_utf8(&sb, mpg123_text_icy, icy_text, strlen(icy_text+1)) . * \param icy_text The input data in ICY encoding * \return pointer to newly allocated buffer with UTF-8 data (You free() it!) */ EXPORT char* mpg123_icy2utf8(const char* icy_text); /* @} */ /** \defgroup mpg123_advpar mpg123 advanced parameter API * * Direct access to a parameter set without full handle around it. * Possible uses: * - Influence behaviour of library _during_ initialization of handle (MPG123_VERBOSE). * - Use one set of parameters for multiple handles. * * The functions for handling mpg123_pars (mpg123_par() and mpg123_fmt() * family) directly return a fully qualified mpg123 error code, the ones * operating on full handles normally MPG123_OK or MPG123_ERR, storing the * specific error code itseld inside the handle. * * @{ */ /** Opaque structure for the libmpg123 decoder parameters. */ struct mpg123_pars_struct; /** Opaque structure for the libmpg123 decoder parameters. */ typedef struct mpg123_pars_struct mpg123_pars; /** Create a handle with preset parameters. */ EXPORT mpg123_handle *mpg123_parnew(mpg123_pars *mp, const char* decoder, int *error); /** Allocate memory for and return a pointer to a new mpg123_pars */ EXPORT mpg123_pars *mpg123_new_pars(int *error); /** Delete and free up memory used by a mpg123_pars data structure */ EXPORT void mpg123_delete_pars(mpg123_pars* mp); /** Configure mpg123 parameters to accept no output format at all, * use before specifying supported formats with mpg123_format */ EXPORT int mpg123_fmt_none(mpg123_pars *mp); /** Configure mpg123 parameters to accept all formats * (also any custom rate you may set) -- this is default. */ EXPORT int mpg123_fmt_all(mpg123_pars *mp); /** Set the audio format support of a mpg123_pars in detail: \param rate The sample rate value (in Hertz). \param channels A combination of MPG123_STEREO and MPG123_MONO. \param encodings A combination of accepted encodings for rate and channels, p.ex MPG123_ENC_SIGNED16|MPG123_ENC_ULAW_8 (or 0 for no support). \return 0 on success, -1 if there was an error. / */ EXPORT int mpg123_fmt(mpg123_pars *mh, long rate, int channels, int encodings); /* 0 is good, -1 is error */ /** Check to see if a specific format at a specific rate is supported * by mpg123_pars. * \return 0 for no support (that includes invalid parameters), MPG123_STEREO, * MPG123_MONO or MPG123_STEREO|MPG123_MONO. */ EXPORT int mpg123_fmt_support(mpg123_pars *mh, long rate, int encoding); /** Set a specific parameter, for a specific mpg123_pars, using a parameter * type key chosen from the mpg123_parms enumeration, to the specified value. */ EXPORT int mpg123_par(mpg123_pars *mp, enum mpg123_parms type, long value, double fvalue); /** Get a specific parameter, for a specific mpg123_pars. * See the mpg123_parms enumeration for a list of available parameters. */ EXPORT int mpg123_getpar(mpg123_pars *mp, enum mpg123_parms type, long *val, double *fval); /* @} */ /** \defgroup mpg123_lowio mpg123 low level I/O * You may want to do tricky stuff with I/O that does not work with mpg123's default file access or you want to make it decode into your own pocket... * * @{ */ /** Replace default internal buffer with user-supplied buffer. * Instead of working on it's own private buffer, mpg123 will directly use the one you provide for storing decoded audio. */ EXPORT int mpg123_replace_buffer(mpg123_handle *mh, unsigned char *data, size_t size); /** The max size of one frame's decoded output with current settings. * Use that to determine an appropriate minimum buffer size for decoding one frame. */ EXPORT size_t mpg123_outblock(mpg123_handle *mh); /** Replace low-level stream access functions; read and lseek as known in POSIX. * You can use this to make any fancy file opening/closing yourself, * using mpg123_open_fd() to set the file descriptor for your read/lseek (doesn't need to be a "real" file descriptor...). * Setting a function to NULL means that the default internal read is * used (active from next mpg123_open call on). * Note: As it would be troublesome to mess with this while having a file open, * this implies mpg123_close(). */ EXPORT int mpg123_replace_reader(mpg123_handle *mh, ssize_t (*r_read) (int, void *, size_t), off_t (*r_lseek)(int, off_t, int)); /** Replace I/O functions with your own ones operating on some kind of handle instead of integer descriptors. * The handle is a void pointer, so you can pass any data you want... * mpg123_open_handle() is the call you make to use the I/O defined here. * There is no fallback to internal read/seek here. * Note: As it would be troublesome to mess with this while having a file open, * this mpg123_close() is implied here. * \param r_read The callback for reading (behaviour like posix read). * \param r_lseek The callback for seeking (like posix lseek). * \param cleanup A callback to clean up an I/O handle on mpg123_close, can be NULL for none (you take care of cleaning your handles). */ EXPORT int mpg123_replace_reader_handle(mpg123_handle *mh, ssize_t (*r_read) (void *, void *, size_t), off_t (*r_lseek)(void *, off_t, int), void (*cleanup)(void*)); /* @} */ #ifdef __cplusplus } #endif #endif idjc-0.8.16/c/live_webm_encoder.c0000644000175000017500000003246212640073177013514 00000000000000/* # live_webm_encoder.c: encode using libavformat # Copyright (C) 2015 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_AVCODEC #include #include #include #include #include #include #include #include #include #include #include #include #include "main.h" #include "sourceclient.h" #include "live_webm_encoder.h" static const struct timespec time_delay = { .tv_nsec = 10 }; typedef struct WebMState { AVStream *st; int64_t next_pts; int64_t serial_samples; int samples_count; AVFrame *frame; AVFrame *tmp_frame; struct SwrContext *swr_ctx; AVFormatContext *oc; AVIOContext *avio_ctx; enum packet_flags packet_flags; } WebMState; static AVCodec *add_stream(WebMState *self, enum AVCodecID codec_id, int br, int sr, int ch) { AVCodec *codec; AVCodecContext *c; if (!(codec = avcodec_find_encoder(codec_id))) { fprintf(stderr, "could not find encoder for '%s'\n", avcodec_get_name(codec_id)); return NULL; } if (codec->type != AVMEDIA_TYPE_AUDIO) { fprintf(stderr, "not an audio codec: %s\n", avcodec_get_name(codec_id)); return NULL; } if (!(self->st = avformat_new_stream(self->oc, codec))) { fprintf(stderr, "could not allocate stream\n"); return NULL; } c = self->st->codec; c->sample_fmt = codec->sample_fmts ? codec->sample_fmts[0] : AV_SAMPLE_FMT_FLTP; c->bit_rate = br; c->sample_rate = sr; c->channels = ch; c->channel_layout = (ch == 2) ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO; self->st->id = 0; self->st->time_base = (AVRational){ 1, sr }; if (self->oc->oformat->flags & AVFMT_GLOBALHEADER) c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; return codec; } static AVFrame *alloc_audio_frame(enum AVSampleFormat sample_fmt, uint64_t channel_layout, int sample_rate, int nb_samples) { AVFrame *frame = av_frame_alloc(); if (!frame) { fprintf(stderr, "error allocating an audio frame\n"); return NULL; } frame->format = sample_fmt; frame->channel_layout = channel_layout; frame->sample_rate = sample_rate; frame->nb_samples = nb_samples; if (nb_samples && av_frame_get_buffer(frame, 0) < 0) { fprintf(stderr, "error allocating an audio buffer\n"); av_frame_free(&frame); return NULL; } return frame; } static int open_stream(WebMState *self, AVCodec *codec) { AVCodecContext *c; int nb_samples; int ret; c = self->st->codec; while (pthread_mutex_trylock(&g.avc_mutex)) nanosleep(&time_delay, NULL); ret = avcodec_open2(c, codec, NULL); pthread_mutex_unlock(&g.avc_mutex); if (ret < 0) { fprintf(stderr, "Could not open audio codec: %s\n", av_err2str(ret)); return 0; } if (c->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE) nb_samples = 10000; else nb_samples = c->frame_size; self->frame = alloc_audio_frame(c->sample_fmt, c->channel_layout, c->sample_rate, nb_samples); self->tmp_frame = alloc_audio_frame(AV_SAMPLE_FMT_FLTP, c->channel_layout, c->sample_rate, nb_samples); if (!(self->swr_ctx = swr_alloc())) { fprintf(stderr, "Could not allocate resampler context\n"); avcodec_close(c); return 0; } av_opt_set_int (self->swr_ctx, "in_channel_count", c->channels, 0); av_opt_set_int (self->swr_ctx, "in_sample_rate", c->sample_rate, 0); av_opt_set_sample_fmt(self->swr_ctx, "in_sample_fmt", AV_SAMPLE_FMT_FLTP, 0); av_opt_set_int (self->swr_ctx, "out_channel_count", c->channels, 0); av_opt_set_int (self->swr_ctx, "out_sample_rate", c->sample_rate, 0); av_opt_set_sample_fmt(self->swr_ctx, "out_sample_fmt", c->sample_fmt, 0); if ((ret = swr_init(self->swr_ctx)) < 0) { fprintf(stderr, "Failed to initialize the resampling context\n"); swr_free(&self->swr_ctx); avcodec_close(c); return 0; } return 1; } static AVFrame *get_audio_frame(struct encoder *encoder) { WebMState *self = encoder->encoder_private; AVFrame *frame = self->tmp_frame; struct encoder_ip_data *id; id = encoder_get_input_data(encoder, frame->nb_samples, frame->nb_samples, (float **)frame->data); if (id) { encoder_ip_data_free(id); frame->pts = self->next_pts; self->next_pts += frame->nb_samples; self->serial_samples += frame->nb_samples; return frame; } return NULL; } static int write_audio_frame(struct encoder *encoder, int final) { WebMState *self = encoder->encoder_private; AVCodecContext *c; AVPacket pkt = { 0 }; AVFrame *frame; int ret; int got_packet; int dst_nb_samples; av_init_packet(&pkt); c = self->st->codec; if (final) frame = NULL; else { go_again: if (!(frame = get_audio_frame(encoder))) return 0; dst_nb_samples = av_rescale_rnd(swr_get_delay(self->swr_ctx, c->sample_rate) + frame->nb_samples, c->sample_rate, c->sample_rate, AV_ROUND_UP); av_assert0(dst_nb_samples == frame->nb_samples); if (av_frame_make_writable(self->frame) < 0) { fprintf (stderr, "failed to make av frame writable\n"); return -1; } if (swr_convert(self->swr_ctx, self->frame->data, dst_nb_samples, (const uint8_t **)frame->data, frame->nb_samples) < 0) { fprintf(stderr, "error while converting\n"); return -1; } frame = self->frame; frame->pts = av_rescale_q(self->samples_count, (AVRational){1, c->sample_rate}, c->time_base); self->samples_count += dst_nb_samples; } if ((ret = avcodec_encode_audio2(c, &pkt, frame, &got_packet)) < 0) { fprintf(stderr, "error encoding audio frame: %s\n", av_err2str(ret)); return -1; } if (got_packet && av_write_frame(self->oc, &pkt) < 0) { fprintf(stderr, "error while writing audio frame: %s\n", av_err2str(ret)); return -1; } if (final) return 1; if (!got_packet) goto go_again; return 0; } static void close_stream(WebMState *self) { avcodec_close(self->st->codec); av_frame_free(&self->frame); av_frame_free(&self->tmp_frame); swr_free(&self->swr_ctx); } static int write_packet(void *opaque, uint8_t *buf, int buf_size) { struct encoder *encoder = opaque; WebMState *self = encoder->encoder_private; struct encoder_op_packet packet; packet.header.bit_rate = encoder->bitrate; packet.header.sample_rate = encoder->target_samplerate; packet.header.n_channels = encoder->n_channels; packet.header.flags = PF_WEBM | self->packet_flags; packet.header.data_size = buf_size; packet.header.serial = encoder->oggserial; packet.header.timestamp = encoder->timestamp = self->serial_samples / (double)encoder->target_samplerate; packet.data = buf; encoder_write_packet_all(encoder, &packet); self->packet_flags &= ~PF_INITIAL; return 1; } static int write_header(struct encoder *encoder) { WebMState *self = encoder->encoder_private; int ret; ++encoder->oggserial; self->serial_samples = 0; self->packet_flags = PF_HEADER | PF_INITIAL; ret = avformat_write_header(self->oc, NULL); self->packet_flags &= ~PF_HEADER; return ret; } static int write_trailer(struct encoder *encoder) { WebMState *self = encoder->encoder_private; int ret; ret = av_write_trailer(self->oc); self->packet_flags = PF_FINAL; write_packet(encoder, NULL, 0); self->packet_flags = 0; return ret; } static int setup(struct encoder *encoder) { WebMState *self = encoder->encoder_private; size_t avio_ctx_buffer_size = 4096; AVCodec *codec; uint8_t *avio_ctx_buffer; enum AVCodecID codec_id; switch (encoder->data_format.codec) { case ENCODER_CODEC_VORBIS: codec_id = AV_CODEC_ID_VORBIS; break; case ENCODER_CODEC_OPUS: codec_id = AV_CODEC_ID_OPUS; break; default: goto fail1; } if (!(self->oc = avformat_alloc_context())) { fprintf(stderr, "avformat_alloc_context failed\n"); goto fail1; } if (!(self->oc->oformat = av_guess_format("webm", NULL, "video/webm"))) { fprintf(stderr, "format unsupported\n"); goto fail2; } if (!(avio_ctx_buffer = av_malloc(avio_ctx_buffer_size))) { fprintf(stderr, "av_malloc failed\n"); goto fail2; } if (!(self->avio_ctx = avio_alloc_context(avio_ctx_buffer, avio_ctx_buffer_size, 1, encoder, NULL, &write_packet, NULL))) { fprintf(stderr, "avio_alloc_context failed\n"); goto fail3; } self->oc->pb = self->avio_ctx; if (!(codec = add_stream(self, codec_id, encoder->bitrate, encoder->target_samplerate, encoder->n_channels))) { fprintf(stderr, "failed to add stream\n"); goto fail4; } if (!open_stream(self, codec)) { fprintf(stderr, "failed to open codec\n"); goto fail4; } if (encoder->use_metadata) { pthread_mutex_lock(&encoder->metadata_mutex); av_dict_set(&self->oc->metadata, "TITLE", encoder->custom_meta, 0); pthread_mutex_unlock(&encoder->metadata_mutex); } if (write_header(encoder) < 0) goto fail5; return SUCCEEDED; fail5: close_stream(self); fail4: av_freep(&self->avio_ctx->buffer); av_freep(&self->avio_ctx); goto fail2; fail3: av_freep(&self->avio_ctx->buffer); fail2: avformat_free_context(self->oc); fail1: return FAILED; } static void teardown(WebMState *self) { close_stream(self); av_freep(&self->avio_ctx->buffer); av_freep(&self->avio_ctx); avformat_free_context(self->oc); memset(self, '\0', sizeof (WebMState)); } static void live_webm_encoder_main(struct encoder *encoder) { WebMState *self = encoder->encoder_private; if (encoder->encoder_state == ES_STARTING) { if (setup(encoder) == FAILED) { goto bailout; } if (encoder->run_request_f) encoder->encoder_state = ES_RUNNING; else encoder->encoder_state = ES_STOPPING; return; } if (encoder->encoder_state == ES_RUNNING) { if (encoder->new_metadata && encoder->use_metadata) { encoder->new_metadata = FALSE; write_trailer(encoder); pthread_mutex_lock(&encoder->metadata_mutex); av_dict_set(&self->oc->metadata, "TITLE", encoder->custom_meta, 0); pthread_mutex_unlock(&encoder->metadata_mutex); write_header(encoder); } if (encoder->flush) { encoder->flush = FALSE; write_trailer(encoder); write_header(encoder); } switch (write_audio_frame(encoder, !encoder->run_request_f)) { case 0: break; case -1: fprintf(stderr, "error writing out audio frame\n"); default: write_trailer(encoder); encoder->encoder_state = ES_STOPPING; } return; } if (encoder->encoder_state == ES_STOPPING) { teardown(self); encoder->flush = FALSE; if (encoder->run_request_f) { encoder->encoder_state = ES_STARTING; return; } } bailout: fprintf(stderr, "live_webm_encoder_main: performing cleanup\n"); encoder->run_request_f = FALSE; encoder->encoder_state = ES_STOPPED; encoder->run_encoder = NULL; encoder->flush = FALSE; encoder->encoder_private = NULL; free(self); fprintf(stderr, "live_webm_encoder_main: finished cleanup\n"); } int live_webm_encoder_init(struct encoder *encoder, struct encoder_vars *ev) { WebMState *self; if (!(self = calloc(1, sizeof (WebMState)))) { fprintf(stderr, "malloc failure\n"); return FAILED; } encoder->encoder_private = self; encoder->run_encoder = live_webm_encoder_main; return SUCCEEDED; } #endif /* HAVE_AVCODEC */ idjc-0.8.16/c/encoder.c0000644000175000017500000007342212635350160011456 00000000000000/* # encoder.c: the encoder framework for the streaming module of idjc # Copyright (C) 2007-2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #include "gnusource.h" #include #include #include #include #include #include #include #include "sourceclient.h" #include "sig.h" #include "live_ogg_encoder.h" #include "live_mp3_encoder.h" #include "live_mp2_encoder.h" #include "live_oggflac_encoder.h" #include "live_oggspeex_encoder.h" #include "live_oggopus_encoder.h" #include "live_webm_encoder.h" #include "avcodec_encoder.h" #include "bsdcompat.h" #include "main.h" #ifdef DYN_LAME #include "dyn_lame.h" #endif #define RS_INPUT_SAMPLES 512 typedef jack_default_audio_sample_t sample_t; static const size_t rb_n_samples = 53000; /* maximum number of samples to hold in the ring buffer */ static uint32_t encoder_packet_magic_number = 'I' << 24 | 'D' << 16 | 'J' << 8 | 'C'; static const float fade_floor = 0.0003f; int encoder_init_lame(struct threads_info *ti, struct universal_vars *uv, void *param) { int l = 1; #ifdef DYN_LAME l = dyn_lame_init(); #endif fprintf(g.out, "idjcsc: lame_available=%d\n", l); fflush(g.out); if (ferror(g.out)) return FAILED; return SUCCEEDED; } static struct encoder_data_format encoder_lex_format(char *source, char *family, char *codec) { struct encoder_data_format df = { .source = ENCODER_SOURCE_UNHANDLED, .family = ENCODER_FAMILY_UNHANDLED, .codec = ENCODER_CODEC_UNHANDLED }; void warning(char *msg, char *setting) { fprintf(stderr, "warning: %s: setting: %s\n", msg, setting); } if (!strcmp(source, "jack")) df.source = ENCODER_SOURCE_JACK; if (!strcmp(source, "file")) df.source = ENCODER_SOURCE_FILE; if (!strcmp(family, "mpeg")) df.family = ENCODER_FAMILY_MPEG; if (!strcmp(family, "ogg")) df.family = ENCODER_FAMILY_OGG; if (!strcmp(family, "webm")) df.family = ENCODER_FAMILY_WEBM; if (!strcmp(codec, "mp3")) df.codec = ENCODER_CODEC_MP3; if (!strcmp(codec, "mp2")) df.codec = ENCODER_CODEC_MP2; if (!strcmp(codec, "aac")) df.codec = ENCODER_CODEC_AAC; if (!strcmp(codec, "aacpv2")) df.codec = ENCODER_CODEC_AACPLUSV2; if (!strcmp(codec, "vorbis")) df.codec = ENCODER_CODEC_VORBIS; if (!strcmp(codec, "flac")) df.codec = ENCODER_CODEC_FLAC; if (!strcmp(codec, "speex")) df.codec = ENCODER_CODEC_SPEEX; if (!strcmp(codec, "opus")) df.codec = ENCODER_CODEC_OPUS; if (df.source == ENCODER_SOURCE_UNHANDLED) warning("encoder source is not recognised", source); if (df.family == ENCODER_FAMILY_UNHANDLED) warning("encoder family is not recognized", family); if (df.codec == ENCODER_CODEC_UNHANDLED) warning("encoder codec is not recognized", codec); return df; } static int encoder_get_resample_mode(char *rm_string) { if (!strcmp(rm_string, "lowest")) return SRC_SINC_FASTEST; if (!strcmp(rm_string, "medium")) return SRC_SINC_MEDIUM_QUALITY; if (!strcmp(rm_string, "highest")) return SRC_SINC_BEST_QUALITY; fprintf(stderr, "encoder_get_resample_mode: unknown resample mode %s\n", rm_string); return -1; } static void encoder_free_input_ringbuffers(struct encoder *self) { struct timespec ms10 = { 0, 10000000 }; if (self->jack_dataflow_control == JD_ON) self->jack_dataflow_control = JD_FLUSH; while (self->jack_dataflow_control != JD_OFF) nanosleep(&ms10, NULL); if (self->input_rb[0]) jack_ringbuffer_free(self->input_rb[0]); if (self->input_rb[1]) jack_ringbuffer_free(self->input_rb[1]); self->input_rb[0] = self->input_rb[1] = NULL; } static void encoder_free_resampler(struct encoder *self) { int i; for (i = 0; i < 2; i++) if (self->src_state[i]) { src_delete(self->src_state[i]); self->src_state[i] = NULL; } } static void encoder_plugin_terminate(struct encoder *self) { struct timespec ms10 = { 0, 10000000 }; self->run_request_f = FALSE; if (self->encoder_state != ES_STOPPED) fprintf(stderr, "encoder_plugin_terminate: waiting for encoder to finish\n"); while (self->encoder_state != ES_STOPPED) nanosleep(&ms10, NULL); } static void encoder_unlink(struct encoder *self) { encoder_plugin_terminate(self); encoder_free_input_ringbuffers(self); encoder_free_resampler(self); } static long encoder_input_rb_mono_downmix(jack_ringbuffer_t **rb, float *bptr, int max_samples) { jack_ringbuffer_data_t rbvec0[2], rbvec1[2]; sample_t *ch0, *ch1; int transition, i; long n_samples; jack_ringbuffer_get_read_vector(rb[0], rbvec0); jack_ringbuffer_get_read_vector(rb[1], rbvec1); n_samples = (rbvec1[0].len + rbvec1[1].len) / sizeof (sample_t); if (n_samples > max_samples) n_samples = max_samples; /* transition is the point at the end of the ringbuffer where we must wrap around */ if((transition = rbvec0[0].len / sizeof (sample_t)) > n_samples) transition = n_samples; ch0 = (sample_t *)rbvec0[0].buf; /* set channel 0 and 1 pointers */ ch1 = (sample_t *)rbvec1[0].buf; for (i = 0; i < transition; i++) *bptr++ = (*ch0++ + *ch1++) * 0.5F; /* copy up to the transition */ ch0 = (sample_t *)rbvec0[1].buf; /* set pointers for segment 2 */ ch1 = (sample_t *)rbvec1[1].buf; for (i = transition; i < n_samples; i++) /* do the second segment if relevant */ *bptr++ = (*ch0++ + *ch1++) * 0.5F; jack_ringbuffer_read_advance(rb[0], n_samples * sizeof (sample_t)); jack_ringbuffer_read_advance(rb[1], n_samples * sizeof (sample_t)); return n_samples; } static long encoder_input_rb_stereo(jack_ringbuffer_t **rb, float **dest, long max_samples) { long n_samples; int i; n_samples = jack_ringbuffer_read_space(rb[1]) / sizeof (sample_t); if (n_samples > max_samples) n_samples = max_samples; for (i = 0; i < 2; i++, rb++, dest++) jack_ringbuffer_read(*rb, (char *)*dest, n_samples * sizeof (sample_t)); return n_samples; } static long encoder_input_rb_one_channel(jack_ringbuffer_t **rb, float **dest, long max_samples, int c) { long n_samples; n_samples = jack_ringbuffer_read_space(rb[c]) / sizeof (sample_t); if (n_samples > max_samples) n_samples = max_samples; jack_ringbuffer_read(rb[c], (char *)dest[c], n_samples * sizeof (sample_t)); return n_samples; } static long encoder_resampler_get_data(void *cb_data, float **data) { struct encoder *encoder = cb_data; long n_samples; if (encoder->rs_channel >= 0) { n_samples = encoder_input_rb_one_channel(encoder->input_rb, encoder->rs_input, RS_INPUT_SAMPLES, encoder->rs_channel); *data = encoder->rs_input[encoder->rs_channel]; } else { n_samples = encoder_input_rb_mono_downmix(encoder->input_rb, encoder->rs_input[0], RS_INPUT_SAMPLES); *data = encoder->rs_input[0]; } return (long)n_samples; } struct encoder_ip_data *encoder_get_input_data(struct encoder *encoder, size_t min_samples_needed, size_t max_samples, float **caller_supplied_buffer) { struct encoder_ip_data *id; ssize_t n_samples; size_t samples_available; int i; if (max_samples == 0) return NULL; if (!(id = calloc(1, sizeof (struct encoder_ip_data)))) { fprintf(stderr, "encoder_get_input_data: malloc failure\n"); return NULL; } id->channels = encoder->n_channels; if (caller_supplied_buffer) { /* link callers own buffer into the encoder_input_data structure */ for (i = 0; i < encoder->n_channels; i++) id->buffer[i] = caller_supplied_buffer[i]; id->caller_supplied_buffer = TRUE; } else { /* make our own buffer */ for (i = 0; i < encoder->n_channels; i++) if (!(id->buffer[i] = malloc(max_samples * sizeof (sample_t)))) { fprintf(stderr, "encoder_get_input_data: malloc failure\n"); goto no_data; } } if (!encoder->resample_f) { if (jack_ringbuffer_read_space(encoder->input_rb[1]) / sizeof (sample_t) < min_samples_needed) goto no_data; if (encoder->n_channels == 2) id->qty_samples = encoder_input_rb_stereo(encoder->input_rb, id->buffer, max_samples); else id->qty_samples = encoder_input_rb_mono_downmix(encoder->input_rb, id->buffer[0], max_samples); } else { /* handle the resampling condition */ /* note 128 samples are held back to make sure the resampler gives the full number of samples on both reads */ n_samples = (ssize_t)(jack_ringbuffer_read_space(encoder->input_rb[1]) / sizeof (sample_t) * encoder->sr_conv_ratio) - 128; samples_available = (n_samples > 0) ? n_samples : 0; if (samples_available > max_samples) samples_available = max_samples; if (samples_available < min_samples_needed) goto no_data; if (encoder->n_channels == 2) { encoder->rs_channel = 0; id->qty_samples = (size_t)src_callback_read(encoder->src_state[0], encoder->sr_conv_ratio, samples_available, id->buffer[0]); encoder->rs_channel = 1; src_callback_read(encoder->src_state[1], encoder->sr_conv_ratio, id->qty_samples, id->buffer[1]); } else { encoder->rs_channel = -1; id->qty_samples = (size_t)src_callback_read(encoder->src_state[0], encoder->sr_conv_ratio, samples_available, id->buffer[0]); } if (id->qty_samples == 0) goto no_data; } pthread_mutex_lock(&encoder->fade_mutex); if (encoder->pregain != 1.0f || encoder->fadescale != 1.0f) { float pgain = encoder->pregain; float fgain = 1.0f, fscale = encoder->fadescale; for (int i = 0; i < id->channels; ++i) { float *bp = id->buffer[i]; fgain = encoder->fadegain; for (size_t s = id->qty_samples; s; --s) *bp++ *= pgain * (fgain *= fscale); } if (fgain < fade_floor) encoder->fadegain = encoder->fadescale = 1.0f; else encoder->fadegain = fgain; } pthread_mutex_unlock(&encoder->fade_mutex); return id; no_data: encoder_ip_data_free(id); return NULL; } void encoder_ip_data_free(struct encoder_ip_data *id) { int i; if (!id->caller_supplied_buffer) for (i = 0; i < id->channels; i++) if (id->buffer[i]) free(id->buffer[i]); free(id); } /* note encoder.mutex must be locked before helper threads can safely traverse encoder.output_chain to find the op structure to pass to this function */ size_t encoder_write_packet(struct encoder_op *op, struct encoder_op_packet *packet) { size_t packet_size, written; packet->header.magic = encoder_packet_magic_number; packet->header.serial = op->encoder->oggserial; packet_size = sizeof packet->header + packet->header.data_size; while (packet_size > jack_ringbuffer_write_space(op->packet_rb)) { if (jack_ringbuffer_read_space(op->packet_rb) == 0) { fprintf(stderr, "encoder_write_packet: packet too big to fit in the ringbuffer\n"); return 0; } encoder_client_free_packet(encoder_client_get_packet(op)); /* flush stale packets */ op->performance_warning_indicator = PW_AUDIO_DATA_DROPPED; } pthread_mutex_lock(&op->mutex); written = jack_ringbuffer_write(op->packet_rb, (char *)&packet->header, sizeof packet->header); written += jack_ringbuffer_write(op->packet_rb, (char *)packet->data, packet->header.data_size); pthread_mutex_unlock(&op->mutex); return written; } void encoder_write_packet_all(struct encoder *encoder, struct encoder_op_packet *packet) { struct encoder_op *iter; struct timespec ms10 = { 0, 10000000 }; while (pthread_mutex_trylock(&encoder->mutex)) nanosleep(&ms10, NULL); for (iter = encoder->output_chain; iter; iter = iter->next) encoder_write_packet(iter, packet); pthread_mutex_unlock(&encoder->mutex); } struct encoder_op_packet *encoder_client_get_packet(struct encoder_op *op) { struct encoder_op_packet *packet; pthread_mutex_lock(&op->mutex); if (jack_ringbuffer_read_space(op->packet_rb) >= sizeof (struct encoder_op_packet_header)) { if (!(packet = calloc(1, sizeof (struct encoder_op_packet)))) { fprintf(stderr, "encoder_client_get_packet: malloc failure\n"); goto unlock; } jack_ringbuffer_read(op->packet_rb, (char *)packet, sizeof (struct encoder_op_packet_header)); if (packet->header.magic != encoder_packet_magic_number) { fprintf(stderr, "encoder_client_get_packet: magic number missing\n"); free(packet); goto unlock; } if (jack_ringbuffer_read_space(op->packet_rb) < packet->header.data_size) { fprintf(stderr, "encoder_client_get_packet: packet header specifying more data than can fit in the buffer\n"); free(packet); goto unlock; } if (packet->header.data_size) { if (!(packet->data = malloc(packet->header.data_size))) { fprintf(stderr, "encoder_client_get_packet: malloc failure for data buffer\n"); free(packet); goto unlock; } jack_ringbuffer_read(op->packet_rb, packet->data, packet->header.data_size); } pthread_mutex_unlock(&op->mutex); return packet; } unlock: pthread_mutex_unlock(&op->mutex); return NULL; } void encoder_client_free_packet(struct encoder_op_packet *packet) { if (packet->data) free(packet->data); free(packet); } int encoder_client_set_flush(struct encoder_op *op) { struct encoder *encoder = op->encoder; struct timespec ns1 = { 0, 1 }; int serial; while (pthread_mutex_trylock(&encoder->flush_mutex)) nanosleep(&ns1, NULL); serial = encoder->oggserial; encoder->flush = TRUE; pthread_mutex_unlock(&encoder->flush_mutex); return serial; } /* this is called from a recipient thread to obtain a handle for getting data */ /* the numeric_id is the encoder that is requested */ struct encoder_op *encoder_register_client(struct threads_info *ti, int numeric_id) { struct encoder *enc; struct encoder_op *op; struct timespec ms10 = { 0, 10000000 }; if (numeric_id >= ti->n_encoders || numeric_id < 0) { fprintf(stderr, "encoder_register_client: invalid encoder numeric_id %d\n", numeric_id); return NULL; } if (!(op = calloc(1, sizeof (struct encoder_op)))) { fprintf(stderr, "encoder_register_client: malloc failure\n"); return NULL; } if (!(op->packet_rb = jack_ringbuffer_create(65536))) { fprintf(stderr, "encoder_register_client: malloc failure\n"); free(op); return NULL; } enc = ti->encoder[numeric_id]; op->encoder = enc; pthread_mutex_init(&op->mutex, NULL); while (pthread_mutex_trylock(&op->encoder->mutex)) nanosleep(&ms10, NULL); op->next = enc->output_chain; enc->output_chain = op; enc->client_count++; pthread_mutex_unlock(&op->encoder->mutex); return op; } void encoder_unregister_client(struct encoder_op *op) { struct encoder_op *iter; struct timespec ms10 = { 0, 10000000 }; /* ten milliseconds */ fprintf(stderr, "encoder_unregister_client called\n"); while (pthread_mutex_trylock(&op->encoder->mutex)) nanosleep(&ms10, NULL); if ((iter = op->encoder->output_chain) == op) op->encoder->output_chain = op->next; else { while (iter->next != op) iter = iter->next; iter->next = op->next; } op->encoder->client_count--; pthread_mutex_unlock(&op->encoder->mutex); pthread_mutex_destroy(&op->mutex); jack_ringbuffer_free(op->packet_rb); free(op); fprintf(stderr, "encoder_unregister_client finished\n"); } void *encoder_main(void *args) { struct encoder *self = args; struct timespec ms10 = { 0, 10000000 }; /* ten milliseconds */ sig_mask_thread(); while(!self->thread_terminate_f) { pthread_mutex_lock(&self->flush_mutex); switch(self->encoder_state) { case ES_STOPPED: break; case ES_STARTING: case ES_PAUSED: case ES_RUNNING: case ES_STOPPING: self->run_encoder(self); break; } pthread_mutex_unlock(&self->flush_mutex); nanosleep(&ms10, NULL); } return NULL; } int encoder_start(struct threads_info *ti, struct universal_vars *uv, void *other) { struct encoder *self = ti->encoder[uv->tab]; struct encoder_vars *ev = other; struct timespec ms10 = { 0, 10000000 }; int (*encoder_init)(struct encoder *, struct encoder_vars *) = NULL; int i, resample_mode, error; if (self->encoder_state != ES_STOPPED) { fprintf(stderr, "encoder_start: encoder state out of control - shouldn't be marked as running\n"); goto failed; } self->data_format = encoder_lex_format(ev->encode_source, ev->family, ev->codec); switch (self->data_format.source) { case ENCODER_SOURCE_JACK: switch (self->data_format.family) { #if defined(HAVE_AVCODEC) && defined(HAVE_AVFORMAT) case ENCODER_FAMILY_WEBM: switch (self->data_format.codec) { case ENCODER_CODEC_VORBIS: encoder_init = live_webm_encoder_init; break; case ENCODER_CODEC_OPUS: if ((ev->samplerate = realloc(ev->samplerate, 6))) { strcpy(ev->samplerate, "48000"); encoder_init = live_webm_encoder_init; } else goto failed; break; case ENCODER_CODEC_UNHANDLED: default: goto failed; } break; #endif case ENCODER_FAMILY_MPEG: switch (self->data_format.codec) { case ENCODER_CODEC_MP3: encoder_init = live_mp3_encoder_init; break; case ENCODER_CODEC_MP2: #ifdef HAVE_TWOLAME encoder_init = live_mp2_encoder_init; #endif break; case ENCODER_CODEC_AAC: case ENCODER_CODEC_AACPLUSV2: #if defined(HAVE_AVCODEC) && defined(HAVE_AVFORMAT) encoder_init = live_avcodec_encoder_init; #endif break; case ENCODER_CODEC_UNHANDLED: default: goto failed; } break; case ENCODER_FAMILY_OGG: switch (self->data_format.codec) { case ENCODER_CODEC_VORBIS: encoder_init = live_ogg_encoder_init; break; case ENCODER_CODEC_FLAC: #ifdef HAVE_OGGFLAC encoder_init = live_oggflac_encoder_init; #endif break; case ENCODER_CODEC_SPEEX: #ifdef HAVE_SPEEX encoder_init = live_oggspeex_encoder_init; #endif break; case ENCODER_CODEC_OPUS: #ifdef HAVE_OPUS if ((ev->samplerate = realloc(ev->samplerate, 6))) { strcpy(ev->samplerate, "48000"); encoder_init = live_oggopus_encoder_init; } else goto failed; #endif break; case ENCODER_CODEC_UNHANDLED: default: goto failed; } break; case ENCODER_FAMILY_UNHANDLED: default: break; } break; case ENCODER_SOURCE_FILE: fprintf(stderr, "streaming direct from a file is not supported\n"); goto failed; case ENCODER_SOURCE_UNHANDLED: default: goto failed; } self->performance_warning_indicator = PW_OK; self->samplerate = (long)self->threads_info->audio_feed->sample_rate; self->target_samplerate = atol(ev->samplerate); self->resample_f = !(self->samplerate == self->target_samplerate); self->sr_conv_ratio = (double)self->target_samplerate / (double)self->samplerate; self->pregain = atof(ev->pregain); self->fadegain = self->fadescale = 1.0f; if (ev->bitrate) self->bitrate = atoi(ev->bitrate); self->n_channels = strcmp(ev->mode, "mono") ? 2 : 1; if ((self->use_metadata = (strcmp(ev->metadata_mode, "suppressed") ? 1 : 0))) self->new_metadata = TRUE; if (self->resample_f) { fprintf(stderr, "encoder_start: initiating resampler(s)\n"); resample_mode = encoder_get_resample_mode(ev->resample_quality); for (i = 0; i < self->n_channels; i++) { if (!(self->src_state[i] = src_callback_new(encoder_resampler_get_data, resample_mode, 1, &error, self))) goto failed; src_set_ratio(self->src_state[i], self->sr_conv_ratio); } } else fprintf(stderr, "encoder_start: resampler will not be used\n"); if (encoder_init && encoder_init(self, ev)) { if (self->data_format.source == ENCODER_SOURCE_JACK) { self->input_rb[0] = jack_ringbuffer_create(rb_n_samples * sizeof (sample_t)); self->input_rb[1] = jack_ringbuffer_create(rb_n_samples * sizeof (sample_t)); if (!(self->input_rb[0] && self->input_rb[1])) { fprintf(stderr, "encoder_start: jack ringbuffer creation failure\n"); goto failed; } self->jack_dataflow_control = JD_ON; } self->run_request_f = TRUE; self->encoder_state = ES_STARTING; while (self->encoder_state == ES_STARTING) nanosleep(&ms10, NULL); while (self->encoder_state == ES_STOPPING) nanosleep(&ms10, NULL); if (self->encoder_state == ES_STOPPED) { fprintf(stderr, "encoder_start: encoder failed during initialisation\n"); goto failed; } fprintf(stderr, "encoder_start: successfully started the encoder\n"); return SUCCEEDED; } failed: encoder_unlink(self); fprintf(stderr, "encoder_start: failed to start the encoder\n"); return FAILED; } int encoder_stop(struct threads_info *ti, struct universal_vars *uv, void *other) { struct encoder *self = ti->encoder[uv->tab]; encoder_unlink(self); if (self->output_chain) fprintf(stderr, "encoder_stop: function has been called with encoder_op objects still attached\n"); fprintf(stderr, "encoder_stop: encoder is stopped\n"); return SUCCEEDED; } int encoder_update(struct threads_info *ti, struct universal_vars *uv, void *other) { struct encoder *self = ti->encoder[uv->tab]; encoder_unlink(self); return encoder_start(ti, uv, other); } int encoder_initiate_fade(struct threads_info *ti, struct universal_vars *uv, void *other) { struct encoder *self = ti->encoder[uv->tab]; pthread_mutex_lock(&self->fade_mutex); if (self->fadescale == 1.0f) self->fadescale = powf(fade_floor, 1.f / (6.f * self->target_samplerate)); pthread_mutex_unlock(&self->fade_mutex); return SUCCEEDED; } int encoder_new_song_metadata(struct threads_info *ti, struct universal_vars *uv, void *other) { struct encoder *self; struct encoder_vars *ev = other; if (uv->tab == -1) { for (uv->tab = 0; uv->tab < ti->n_encoders; uv->tab++) if (!(encoder_new_song_metadata(ti, uv, other))) return FAILED; for (int i = 0; i < ti->n_recorders; i++) if (!(recorder_new_metadata(ti->recorder[i], ev->artist, ev->title, ev->album))) return FAILED; } else { self = ti->encoder[uv->tab]; pthread_mutex_lock(&self->metadata_mutex); self->new_metadata = FALSE; if (self->artist) free(self->artist); if (self->title) free(self->title); if (self->album) free(self->album); if (ev->artist) self->artist = strdup(ev->artist); else self->artist = strdup(""); if (ev->album) self->album = strdup(ev->album); else self->album = strdup(""); if (ev->title) self->title = strdup(ev->title); else self->title = strdup(""); if (!(self->artist && self->title && self->album)) { pthread_mutex_unlock(&self->metadata_mutex); fprintf(stderr, "encoder_new_metadata: malloc failure\n"); return FAILED; } /* we won't set new_metadata to true here, but wait for custom (per stream) metadata to arrive first */ pthread_mutex_unlock(&self->metadata_mutex); return SUCCEEDED; } return SUCCEEDED; } int encoder_new_custom_metadata(struct threads_info *ti, struct universal_vars *uv, void *other) { struct encoder *self = ti->encoder[uv->tab]; struct encoder_vars *ev = other; pthread_mutex_lock(&self->metadata_mutex); self->new_metadata = FALSE; if (self->custom_meta) free(self->custom_meta); self->custom_meta = ev->custom_meta; ev->custom_meta = NULL; if (!self->custom_meta) self->custom_meta = strdup(""); if (self->use_metadata) self->new_metadata = TRUE; pthread_mutex_unlock(&self->metadata_mutex); return SUCCEEDED; } struct encoder *encoder_init(struct threads_info *ti, int numeric_id) { struct encoder *self; if (!(self = calloc(1, sizeof (struct encoder)))) { fprintf(stderr, "encoder_init: malloc failure\n"); return NULL; } self->rs_input[0] = malloc(RS_INPUT_SAMPLES * sizeof (sample_t)); self->rs_input[1] = malloc(RS_INPUT_SAMPLES * sizeof (sample_t)); if (!(self->rs_input[0] && self->rs_input[1])) { fprintf(stderr, "encoder_init: malloc failure\n"); free(self); return NULL; } self->threads_info = ti; self->numeric_id = numeric_id; self->artist = strdup(""); self->title = strdup(""); self->album = strdup(""); self->custom_meta = strdup(""); while ((self->oggserial = rand()) + 20000 < 0 || self->oggserial < 100); pthread_mutex_init(&self->mutex, NULL); pthread_mutex_init(&self->metadata_mutex, NULL); pthread_mutex_init(&self->flush_mutex, NULL); pthread_mutex_init(&self->fade_mutex, NULL); if (pthread_create(&self->thread_h, NULL, encoder_main, self)) { fprintf(stderr, "encoder_init: pthread_create call failed\n"); return NULL; } /* the input ringbuffer will be allocated when the encoder is started */ return self; } void encoder_destroy(struct encoder *self) { self->thread_terminate_f = TRUE; pthread_join(self->thread_h, NULL); pthread_mutex_destroy(&self->mutex); pthread_mutex_destroy(&self->metadata_mutex); pthread_mutex_destroy(&self->flush_mutex); pthread_mutex_destroy(&self->fade_mutex); if (self->rs_input[0]) free(self->rs_input[0]); if (self->rs_input[1]) free(self->rs_input[1]); if (self->custom_meta) free(self->custom_meta); if (self->artist) free(self->artist); if (self->title) free(self->title); if (self->album) free(self->album); free(self); } idjc-0.8.16/c/ogg_opus_dec.c0000644000175000017500000002426412630014502012464 00000000000000/* # ogg_opus_dec.c: opus decoder for oggdec.c # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . */ #include "../config.h" #ifdef HAVE_OPUS #include #include #include #include #include "oggdec.h" #include "ogg_opus_dec.h" #define ACCEPTED 1 #define REJECTED 0 #define TRUE 1 #define FALSE 0 #define MAX_FRAME_SIZE 5760 static void ogg_opusdec_cleanup(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct opusdec_vars *self = od->dec_data; free(self->pcm); if (self->do_down) free(self->down); opus_multistream_decoder_destroy(self->odms); fprintf(stderr, "ogg_opusdec_cleanup was called\n"); if (self->resample) xlplayer->src_state = src_delete(xlplayer->src_state); free(self); /* prevent double free or continued codec use */ od->dec_cleanup = NULL; od->dec_data = NULL; } static void ogg_opusdec_play(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct opusdec_vars *self = od->dec_data; int error; int samples; int end_trim = 0; if (!(oggdec_get_next_packet(od))) { fprintf(stderr, "oggdec_get_next_packet says no more packets\n"); oggdecode_playnext(xlplayer); return; } samples = opus_multistream_decode_float(self->odms, od->op.packet, od->op.bytes, self->pcm, MAX_FRAME_SIZE, 0); self->dec_samples += samples; if (od->op.granulepos != -1) { self->gf_gp = self->f_gp; self->f_gp = self->gp; self->gp = od->op.granulepos; if (self->gp < self->f_gp) { fprintf(stderr, "ogg_opusdec_play: bad granule pos\n"); oggdecode_playnext(xlplayer); return; } if (od->op.e_o_s) { if (self->f_gp > self->gf_gp) end_trim = self->f_gp - self->gf_gp - (self->gp - self->f_gp); else end_trim = self->dec_samples - self->gp; if (end_trim < 0) end_trim = 0; } } samples -= end_trim; if (self->preskip) { if (samples > self->preskip) { samples -= self->preskip; memmove(self->pcm, self->pcm + self->preskip * self->channel_count, samples * sizeof (float) * self->channel_count); self->preskip = 0; } else { self->preskip -= samples; samples = 0; } } if (samples > 0) { if (self->do_down) { static const float table[6][8][2] = { {{0.7f, 0.0f}, {0.7f, 0.7f}, {0.0f, 0.7f}}, {{0.7f, 0.0f}, {0.0f, 0.7f}, {0.7f, 0.0f}, {0.0f, 0.7f}}, {{0.7f, 0.0f}, {0.7f, 0.7f}, {0.0f, 0.7f}, {0.7f, 0.0f}, {0.0f, 0.7f}}, {{0.7f, 0.0f}, {0.7f, 0.7f}, {0.0f, 0.7f}, {0.7f, 0.0f}, {0.0f, 0.7f}, {0.5f, 0.5f}}, {{0.7f, 0.0f}, {0.7f, 0.7f}, {0.0f, 0.7f}, {0.7f, 0.0f}, {0.0f, 0.7f}, {0.7f, 0.7f}, {0.5f, 0.5f}}, {{0.7f, 0.0f}, {0.7f, 0.7f}, {0.0f, 0.7f}, {0.7f, 0.0f}, {0.0f, 0.7f}, {0.7f, 0.0f}, {0.0f, 0.7f}, {0.5f, 0.5f}} }; int cc = self->channel_count; float *p = self->pcm; float *d = self->down; float sample, lc, rc; for (int i = 0; i < samples; ++i) { lc = rc = 0.0; for (int j = 0; j < cc; ++j) { sample = *p++; lc += sample * table[cc - 3][j][0]; rc += sample * table[cc - 3][j][1]; } *d++ = lc; *d++ = rc; } } if (self->resample) { xlplayer->src_data.input_frames = samples; xlplayer->src_data.end_of_input = od->op.e_o_s; if ((error = src_process(xlplayer->src_state, &xlplayer->src_data))) { fprintf(stderr, "ogg_opusdec_play: %s src_process reports - %s\n", xlplayer->playername, src_strerror(error)); oggdecode_playnext(xlplayer); return; } xlplayer_demux_channel_data(xlplayer, xlplayer->src_data.data_out, xlplayer->src_data.output_frames_gen, od->channels[od->ix], self->opgain); } else xlplayer_demux_channel_data(xlplayer, self->down, samples, od->channels[od->ix], self->opgain); xlplayer_write_channel_data(xlplayer); } if (od->op.e_o_s) { fprintf(stderr, "end of stream\n"); oggdecode_playnext(xlplayer); } } int ogg_opusdec_init(struct xlplayer *xlplayer) { struct oggdec_vars *od = xlplayer->dec_data; struct opusdec_vars *self; unsigned char *pkt; float opgain_db; int error; size_t down_siz = MAX_FRAME_SIZE * sizeof (float) * od->channels[od->ix]; fprintf(stderr, "ogg_opusdec_init was called\n"); ogg_stream_reset_serialno(&od->os, od->serial[od->ix]); fseeko(od->fp, od->bos_offset[od->ix], SEEK_SET); ogg_sync_reset(&od->oy); /* sanity checking was pre-done in opus_get_samplerate() */ if (!(oggdec_get_next_packet(od))) { fprintf(stderr, "ogg_opusdec_init: failed to get opus header\n"); goto cleanup1; } if (!(self = calloc(1, sizeof (struct opusdec_vars)))) { fprintf(stderr, "ogg_opusdec_init: malloc failure\n"); goto cleanup1; } pkt = od->op.packet; self->channel_count = pkt[9]; self->preskip = pkt[10] | (uint16_t)pkt[11] << 8; fprintf(stderr, "preskip %hu samples\n", self->preskip); opgain_db = (int16_t)((uint16_t)pkt[16] | ((uint16_t)((unsigned char *)pkt)[17] << 8)) / 256.0f; fprintf(stderr, "output gain %0.1lf (dB)\n", opgain_db); self->opgain = powf(10.0f, opgain_db / 20.0f); switch ((self->channelmap_family = pkt[18])) { case 0: self->stream_count = 1; self->stream_count_2c = self->channel_count - 1; self->channel_map[0] = 0; self->channel_map[1] = 1; break; case 1: self->stream_count = pkt[19]; self->stream_count_2c = pkt[20]; memcpy(self->channel_map, pkt + 21, self->channel_count); break; default: goto cleanup2; } if (!(oggdec_get_next_packet(od))) { fprintf(stderr, "ogg_opusdec_init: missing OpusTags packet\n"); goto cleanup2; } if (od->seek_s) { if (od->seek_s > (od->duration[od->ix] - 0.5)) { fprintf(stderr, "ogg_opusdec_init: seeked stream virtually over - skipping\n"); goto cleanup2; } oggdecode_seek_to_packet(od); } else self->gf_gp = self->f_gp = self->gp = od->initial_granulepos[od->ix]; if (!(self->odms = opus_multistream_decoder_create(48000, self->channel_count, self->stream_count, self->stream_count_2c, self->channel_map, &error))) { fprintf(stderr, "ogg_opusdec_init: failed to create multistream decoder: %s\n", opus_strerror(error)); goto cleanup2; } if (!(self->pcm = malloc(MAX_FRAME_SIZE * sizeof (float) * self->channel_count))) { fprintf(stderr, "ogg_opusdec_init: malloc failure -- pcm\n"); goto cleanup3; } if ((self->do_down = od->channels[od->ix] != self->channel_count)) { if (!(self->down = malloc(down_siz))) { fprintf(stderr, "ogg_opusdec_init: malloc failure -- down\n"); goto cleanup4; } } else self->down = self->pcm; /* no need to downmix for mono/stereo */ if (od->samplerate[od->ix] != xlplayer->samplerate) { fprintf(stderr, "ogg_opusdec_init: configuring resampler\n"); self->resample = TRUE; xlplayer->src_state = src_new(xlplayer->rsqual, od->channels[od->ix], &error); if (error) { fprintf(stderr, "ogg_opusdec_init: src_new reports %s\n", src_strerror(error)); goto cleanup5; } xlplayer->src_data.data_in = self->down; xlplayer->src_data.src_ratio = (double)xlplayer->samplerate / (double)od->samplerate[od->ix]; xlplayer->src_data.end_of_input = 0; size_t opframes = MAX_FRAME_SIZE * xlplayer->src_data.src_ratio + 4096; xlplayer->src_data.output_frames = opframes; if (!(xlplayer->src_data.data_out = malloc(opframes * sizeof (float) * od->channels[od->ix]))) { fprintf(stderr, "ogg_opusdec_init: malloc failure -- data_out\n"); goto cleanup6; } } od->dec_data = self; od->dec_cleanup = ogg_opusdec_cleanup; xlplayer->dec_play = ogg_opusdec_play; return ACCEPTED; cleanup6: if (self->resample) xlplayer->src_state = src_delete(xlplayer->src_state); cleanup5: if (self->do_down) free(self->down); cleanup4: free(self->pcm); cleanup3: opus_multistream_decoder_destroy(self->odms); cleanup2: free(self); cleanup1: return REJECTED; } #endif /* HAVE_OPUS */ idjc-0.8.16/config.rpath0000755000175000017500000004401212631274030011747 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-2010 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,' ;; darwin*) case $cc_basename in xlc*) wl='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; newsos6) ;; linux* | k*bsd*-gnu) case $cc_basename in ecc*) wl='-Wl,' ;; icc* | ifort*) wl='-Wl,' ;; lf95*) wl='-Wl,' ;; pgcc | pgf77 | pgf90) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) wl='-Wl,' ;; 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*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we cannot use # them. ld_shlibs=no ;; 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 ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | k*bsd*-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*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; 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 test "$GCC" = yes ; then : else case $cc_basename in xlc*) ;; *) ld_shlibs=no ;; esac fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd1*) ld_shlibs=no ;; 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=: ;; 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*) library_names_spec='$libname.a' ;; 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' ;; freebsd1*) ;; 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' ;; 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) 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' ;; 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=/' <@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --with-aix-soname flag, and support the `aix-soname=aix' # and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT # is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_WITH([aix-soname], [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) with_aix_soname=$lt_cv_with_aix_soname]) AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## 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])]) idjc-0.8.16/m4/lt~obsolete.m40000644000175000017500000001377412514014631012605 00000000000000# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software # Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) idjc-0.8.16/m4/intlmacosx.m40000644000175000017500000000457512631274031012415 00000000000000# intlmacosx.m4 serial 3 (gettext-0.18) dnl Copyright (C) 2004-2010 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 dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Checks for special options needed on MacOS X. dnl Defines INTL_MACOSX_LIBS. AC_DEFUN([gt_INTL_MACOSX], [ dnl Check for API introduced in MacOS X 10.2. AC_CACHE_CHECK([for CFPreferencesCopyAppValue], [gt_cv_func_CFPreferencesCopyAppValue], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], [CFPreferencesCopyAppValue(NULL, NULL)], [gt_cv_func_CFPreferencesCopyAppValue=yes], [gt_cv_func_CFPreferencesCopyAppValue=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) fi dnl Check for API introduced in MacOS X 10.3. AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], [CFLocaleCopyCurrent();], [gt_cv_func_CFLocaleCopyCurrent=yes], [gt_cv_func_CFLocaleCopyCurrent=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFLocaleCopyCurrent = yes; then AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi AC_SUBST([INTL_MACOSX_LIBS]) ]) idjc-0.8.16/m4/gettext.m40000644000175000017500000003513212631274031011711 00000000000000# gettext.m4 serial 63 (gettext-0.18) dnl Copyright (C) 1995-2010 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 dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2006, 2008-2010. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old], [AC_DIAGNOSE([obsolete], [Use of AM_GNU_GETTEXT without [external] argument is deprecated.])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define([gt_included_intl], ifelse([$1], [external], ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), [yes])) define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) gt_NEEDS_INIT AM_GNU_GETTEXT_NEED([$2]) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Sometimes, on MacOS X, libintl requires linking with CoreFoundation. gt_INTL_MACOSX dnl Set USE_NLS. AC_REQUIRE([AM_NLS]) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl Add a version number to the cache macros. case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH([included-gettext], [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext]) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], [AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings;], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings], [eval "$gt_func_gnugettext_libc=yes"], [eval "$gt_func_gnugettext_libc=no"])]) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], [$gt_func_gnugettext_libintl], [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *);], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], [eval "$gt_func_gnugettext_libintl=yes"], [eval "$gt_func_gnugettext_libintl=no"]) dnl Now see whether libintl exists and depends on libiconv. if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *);], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi CATOBJEXT= if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Some extra flags are needed during linking. LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE([HAVE_GETTEXT], [1], [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE([HAVE_DCGETTEXT], [1], [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST([BUILD_INCLUDED_LIBINTL]) AC_SUBST([USE_INCLUDED_LIBINTL]) AC_SUBST([CATOBJEXT]) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST([DATADIRNAME]) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST([INSTOBJEXT]) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST([GENCAT]) dnl For backward compatibility. Some Makefiles may be using this. INTLOBJS= if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST([INTLOBJS]) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST([INTL_LIBTOOL_SUFFIX_PREFIX]) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST([INTLLIBS]) dnl Make all documented variables known to autoconf. AC_SUBST([LIBINTL]) AC_SUBST([LTLIBINTL]) AC_SUBST([POSUB]) ]) dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. m4_define([gt_NEEDS_INIT], [ m4_divert_text([DEFAULTS], [gt_needs=]) m4_define([gt_NEEDS_INIT], []) ]) dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) AC_DEFUN([AM_GNU_GETTEXT_NEED], [ m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) idjc-0.8.16/m4/ChangeLog0000644000175000017500000000063512630014503011530 000000000000002011-08-07 gettextize * gettext.m4: New file, from gettext-0.18.1. * iconv.m4: New file, from gettext-0.18.1. * lib-ld.m4: New file, from gettext-0.18.1. * lib-link.m4: New file, from gettext-0.18.1. * lib-prefix.m4: New file, from gettext-0.18.1. * nls.m4: New file, from gettext-0.18.1. * po.m4: New file, from gettext-0.18.1. * progtest.m4: New file, from gettext-0.18.1. idjc-0.8.16/m4/lib-ld.m40000644000175000017500000000660312631274031011371 00000000000000# lib-ld.m4 serial 4 (gettext-0.18) dnl Copyright (C) 1996-2003, 2009-2010 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/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision dnl with libtool.m4. dnl From libtool-1.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 ld's only accept -v. case `$LD -v 2>&1 conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh 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 GCC]) 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. [[\\/]* | [A-Za-z]:[\\/]*)] [re_direlt='/[^/][^/]*/\.\./'] # Canonicalize the path 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 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do 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 GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi]) LD="$acl_cv_path_LD" if test -n "$LD"; then AC_MSG_RESULT([$LD]) else AC_MSG_RESULT([no]) fi test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) AC_LIB_PROG_LD_GNU ]) idjc-0.8.16/m4/iconv.m40000644000175000017500000001653712631274031011353 00000000000000# iconv.m4 serial 11 (gettext-0.18.1) dnl Copyright (C) 2000-2002, 2007-2010 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([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], [am_cv_func_iconv=yes]) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], [am_cv_lib_iconv=yes] [am_cv_func_iconv=yes]) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ dnl This tests against bugs in AIX 5.1, HP-UX 11.11, Solaris 10. am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi AC_TRY_RUN([ #include #include int main () { /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) return 1; } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) return 1; return 0; }], [am_cv_func_iconv_works=yes], [am_cv_func_iconv_works=no], [case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac]) LIBS="$am_save_LIBS" ]) case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then AC_DEFINE([HAVE_ICONV], [1], [Define if you have the iconv() function and it works.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST([LIBICONV]) AC_SUBST([LTLIBICONV]) ]) dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to dnl avoid warnings like dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". dnl This is tricky because of the way 'aclocal' is implemented: dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. dnl Otherwise aclocal's initial scan pass would miss the macro definition. dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. dnl Otherwise aclocal would emit many "Use of uninitialized value $1" dnl warnings. m4_define([gl_iconv_AC_DEFUN], m4_version_prereq([2.64], [[AC_DEFUN_ONCE( [$1], [$2])]], [[AC_DEFUN( [$1], [$2])]])) gl_iconv_AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL([am_cv_proto_iconv], [ AC_TRY_COMPILE([ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ], [], [am_cv_proto_iconv_arg1=""], [am_cv_proto_iconv_arg1="const"]) am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([ $am_cv_proto_iconv]) AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], [Define as const if the declaration of iconv() needs const.]) fi ]) idjc-0.8.16/m4/po.m40000644000175000017500000004461612631274031010652 00000000000000# po.m4 serial 17 (gettext-0.18) dnl Copyright (C) 1995-2010 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 dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake AC_REQUIRE([AM_NLS])dnl dnl Release version of the gettext macros. This is used to ensure that dnl the gettext macros and po/Makefile.in.in are in sync. AC_SUBST([GETTEXT_MACRO_VERSION], [0.18]) dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT]) dnl Test whether it is GNU msgfmt >= 0.15. changequote(,)dnl case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac changequote([,])dnl AC_SUBST([MSGFMT_015]) changequote(,)dnl case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac changequote([,])dnl AC_SUBST([GMSGFMT_015]) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Test whether it is GNU xgettext >= 0.15. changequote(,)dnl case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac changequote([,])dnl AC_SUBST([XGETTEXT_015]) dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) dnl Installation directories. dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we dnl have to define it here, so that it can be used in po/Makefile. test -n "$localedir" || localedir='${datadir}/locale' AC_SUBST([localedir]) dnl Support for AM_XGETTEXT_OPTION. test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) AC_CONFIG_COMMANDS([po-directories], [[ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done]], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" < /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" <, 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE([nls], [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT([$USE_NLS]) AC_SUBST([USE_NLS]) ]) idjc-0.8.16/m4/libtool.m40000644000175000017500000112570012514014631011671 00000000000000# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ]) # serial 58 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_PREPARE_CC_BASENAME # ----------------------- m4_defun([_LT_PREPARE_CC_BASENAME], [ # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in @S|@*""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } ])# _LT_PREPARE_CC_BASENAME # _LT_CC_BASENAME(CC) # ------------------- # It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, # but that macro is also expanded into generated libtool script, which # arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], [m4_require([_LT_PREPARE_CC_BASENAME])dnl AC_REQUIRE([_LT_DECL_SED])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl func_cc_basename $1 cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## 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\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE _LT_PREPARE_MUNGE_PATH_LIST _LT_PREPARE_CC_BASENAME # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # 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 yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test no = "$hard_links"; then AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_PREPARE_MUNGE_PATH_LIST # --------------------------- # Make sure func_munge_path_list() is defined correctly. m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], [[# func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x@S|@2 in x) ;; *:) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" ;; x:*) eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; *::*) eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" ;; *) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; esac } ]])# _LT_PREPARE_PATH_LIST # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /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 AC_ARG_VAR([LT_SYS_LIBRARY_PATH], [User-defined run-time library search path.]) case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /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 # Handle Gentoo/FreeBSD as it was Linux case $host_vendor in gentoo) version_type=linux ;; *) version_type=freebsd-$objformat ;; esac case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; linux) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' need_lib_prefix=no need_version=no ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /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 ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /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 yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/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 no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], [Detected run-time system search path for libraries]) _LT_DECL([], [configure_time_lt_sys_library_path], [2], [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$1"; then lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## 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 what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## 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 set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS idjc-0.8.16/m4/lib-link.m40000644000175000017500000010020212631274031011715 00000000000000# lib-link.m4 serial 21 (gettext-0.18) dnl Copyright (C) 2001-2010 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],[translit([$1],[./-], [___])]) pushdef([NAME],[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],[translit([$1],[./-], [___])]) pushdef([NAME],[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_TRY_LINK([$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_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],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) define([acl_frompackage_]NAME, [$2]) popdef([NAME]) pushdef([PACK],[$2]) pushdef([PACKUP],[translit(PACK,[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) define([acl_libsinpackage_]PACKUP, m4_ifdef([acl_libsinpackage_]PACKUP, [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],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) pushdef([PACKUP],[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],[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]) ]) idjc-0.8.16/m4/ltsugar.m40000644000175000017500000001044012514014631011677 00000000000000# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) idjc-0.8.16/m4/progtest.m40000644000175000017500000000557312631274031012102 00000000000000# progtest.m4 serial 6 (gettext-0.18) dnl Copyright (C) 1996-2003, 2005, 2008-2010 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 dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. AC_PREREQ([2.50]) # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL([ac_cv_path_$1], [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$][$1]) else AC_MSG_RESULT([no]) fi AC_SUBST([$1])dnl ]) idjc-0.8.16/m4/lib-prefix.m40000644000175000017500000002042212631274031012262 00000000000000# lib-prefix.m4 serial 7 (gettext-0.18) dnl Copyright (C) 2001-2005, 2008-2010 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" ]) idjc-0.8.16/doc/0000755000175000017500000000000012711167614010273 500000000000000idjc-0.8.16/doc/tour_main.html0000644000175000017500000001400612711160237013071 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Main Window Screenshot

The main window isn't as complicated as it first appears thanks to a fairly standard media player layout.

On the right there are meters. Meters for monitoring your stream and microphone audio levels and also the stream connection status and health, as well as the number of listeners, currently none.

Beneath each playlist is a selector for the playlist mode. This feature affects what will happen once a track ends. Among other options, Loop All, Random, Manual. Fade controls the amount of inter-track fade with options for 5 or 10 seconds and finally, Audio Feed controls whether the player audio is piped to the stream and or the DJ. This feature when combined with Monitor Mix DJ facilitates the pre-listening of tracks.

The Metadata source feature controls which player contributes the song title metadata to the stream and to the right of that are various crossfader controls.

At the bottom are controls for opening the various audio sources, among them potentially: VoIP callers, auxiliary audio sources, a number of microphones. Here there are two configured on two separate opener buttons buttons one of which is helpfully labelled DJ by default. Conveniently alongside the mic buttons, a playlist advance button with play/skip-to-the-next-track-and-stop functionality.

On the bottom left a button to toggle the routing of the stream audio mix through an external program.

idjc-0.8.16/doc/index.html0000644000175000017500000001365512711160237012214 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Introduction

Internet DJ Console is a project started in March 2005 to provide a powerful yet easy to use source-client for individuals interested in streaming live radio shows over the Internet using Shoutcast or Icecast servers.

Because of the large number of streaming applications that already existed but did little more than stream a pair of audio channels or a fixed playlist, it was decided that IDJC would be the opposite and simulate audio hardware to cut down the expense of creating a home studio.

In addition to providing a large number of show production features, this software has been written with the aim of producing the best possible experience for the listeners and DJ alike. To that end features like VoIP integration were conceived of from the very start resulting in the choice of Jack Audio Connection Kit to base the audio.

This has afforded IDJC audio processing capabilities that were they built in would be considered excessive. Enjoy integration with powerful programs such as the well known Skype, Jack Rack (offering audio sound effects plugins), Jamin (the powerful audio compressor/equalizer), and many more.

Fortunately IDJCs power does not come at the expense of a well organized user interface, nor have requests for features been permitted to diminish the application's intuitive feel yet throughout development the main goals have always been that of stability and audio quality.

Stephen Fairchild

idjc-0.8.16/doc/install_standard.html0000644000175000017500000001237512711160237014431 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

The recommended way to install IDJC

Installation examples
  • Ubuntu

    $ sudo apt-get install idjc
  • Debian

    $ su -c "apt-get install idjc"

You will be required to enter a password.

In summary

That's it as far as installing from the repository goes. Enjoy your program but see the First run section because you will probably need to configure your system for working with Jack Audio Connection Kit which has some special requirements.

If IDJC is unavailable in your distribution's repository or you would prefer to use a newer or more capable version this page will be of interest.

idjc-0.8.16/doc/prefs-channels.png0000644000175000017500000160071512711160237013635 00000000000000PNG  IHDR4ugAMA a cHRMz&u0`:pQ<bKGDtIME   JCIDATx#_dg I$Ϟ쓓9=I 7p ֨;~?|t}c>c>c1lþa_İ/b>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>}S/rENȩ9u"N_鋜:}S/baaa:}S/rENȩ9u"N_鋜:}S/b>c>c>鋜:}S/rENȩ9u"N_鋜:}þş<֨p 7pw/xտk1Qr$JDɑޫޫ'^)]z'^}CH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9%GH#Qr$JDɑ(9ycC]Ǯ|cW>+ؕxG+ؕxG+ؕxG]sOt^1zw _?џ q<܋p?ğzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz>OO>O?=?}z>?}zO>?}zzzz4?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=O?=OoS{rş7|7q7q7q7}ۂ׹z0=Wt n>=n>=n>=>]yo}}zwz5n>=n>=n>=n>ӕ'Os5&/stҿ߿vJ#/&9$<W~~w~߻|3_> I7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMr;lǛ҆{s}osasaK&IwyOk;|j7&9$$Ͻw>^x7&9$ǛxoMrI7&9$ǛxO]ZUej߽I7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9$ǛxoMrI7&9/z+>Ҝ`ŧ9p?\|jAʓν-$[{y>ww3-ypтG -xpfٹ$[/gMypтO-ԂO-x`_{~kB{?~|ßX~za=xɁ3'馛n['xF4wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wq{wqG[|w\]z;y;I7V?{̸㡗77<:oq#/S~%|e|M<0s JĝD;Œo>s~MrIw9q{_&9=<Ǯ\ۏ4}7/89Ǜxs_=/xoMrΏ=/xr{woMrIw9x;s_&9/q{sIw9=x;s_&9=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;=x;h/̟վ˅IN?"|G>#}cn5iSq{J'R;[qV4|oE{+.\Q wܓ+Lzt<#5?CǸOmF[Lǥ.Wx`9-/~zç,ӜShG{Ko7t;Í7ȿ3K|w5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;Zю&ɟ}7+ּ};-^y=:_ي;W9뼱9Jtϕ7ޣɷ~<\= ~#gßKr6|o~wrūz*?w:MW1>yhGkx;~Unx[/^Gޡ-v<0{z8ƭΙΒqT7.^ ޢuZv9g~Un{mюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvF;ZюhGk5hvԎy/r=x<C<C<C<C!F;J;w>#}ė[s~5k} "?>Rng<0q5G^ x*0L23}}9Ob/zjw=S?ɹoўC/?M7'> ?w߽<7LwM$_foFspKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9ni4[-pKs9nros7<̛|<rw|W~s>_bo^~Kg^< Vw=Rb=>9RŹ{$:y,=1k!L5x:_}+sרx N3+Ư\d|3|[ϿJoxd釯x<œS\ț|(5/Cny叝;;ԟ\3'?u19O,/SDžɞ67aC>y'?_7OonOW4 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1'ox7Byҟlk~k~7?g<~T_"xowyBs :X`Cc>z!':/esNruro~JfÏy?M~㛯_57xwk?tνgk<9: _eB'{-N]pѷ8 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh 64 `Cc1lh r%;=x;=xG{?qN1pg]N8p΃/`szry?'NHs`C⿕NF/9λ͵~¹8AsOrli 6[Z.?x.~U^ xo_.Mu͏#ݿ߽5z]~s[uQl?[7;kѽw_}x4ۿyx^|-|^xo7xo_g~T^*mz5Ն~o]8Uy+-TuҟW+zǘ+| W oozC`~k<:= O~O/p\M_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩk5zM_Sﯩkun24.)7yo<x-[[؏TNƧΜPﯩ8Uyr+[>)w>>|&>s_'gN855\6KשW|~|V|Sy|7>O^^_ss7| <0qqXˍ7Owm<>s,;M7'?IG÷Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE~  ?W|3x[xoKϽK|o댯WWO$|KdW(=^xosuƯWWWܹx㧿:gW|5_z-g.\~zۭ+|㑫|}o+W3~}.n>~Koy}[X~'Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoE[Q뭨Vz+jފZoEܓkn0%ӵW_ۏ=1Ot2[M[Qd|8xg Os#z/^T} Y=SgNvgz+OmZsoq&xm‹Ǭ>9%=TIU=[Q[Z.Sp6ZR}=lg'4q߻㦛n⦛nw{T%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hI5ZRT%hɝ'orŷ9^x >_ybXs7?9_o=tS߾?%-V|㛗 K~mno]+;yr'~5>*}gF)9gSn&0G 9շO_CT~=R,~e+>^ε_ z7[ܟpօ딿]>_2گo?%Wks|uC*OgEJ8@_׹[/s::^kOPj&FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKђj-FKjCpK`=eP~͇k>_5/qg'OKm>ǯJSoUjhxK>uZO}Oxo{xMtMx'铿˿?ӏhI]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *wob^LYgL&o^ŏƏ򇼹 C_#xoJ?Gx9%*g_p^l`$hhhIMnb- oRαJk"/~Ou N?co2zcf̛y9e>? ott}7yꝏ1o.?䙗4—ܷ^'{ _*/'|+xnɶ?E7yꝏ#\~3/i\k?s~z#rosgwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT *JwA]P.tT z=N{.kW[p,r,G|遗]]S.{Si?Էbt/< sbcg g%rBjO̩t5}?XG˭֋|Żʗ;=Fq쓔yQ.(g--nmrgN3ܙws'?OS&2;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)wf~*_'+k؏-|ឧ1_9n9*f?z&?)=:_5-?eΜrgN}/&|ߢԙS)w;3N?|/sgsʝ9 ;-?}5d~5tO-k897W1_nq_GyMn`3ʝ9 7W1_nq_GyMnJkΛr3|`̸] /|gU#o{cx3mo< ,_7]ki)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3ܙS)w;sʝ9ΜrgN3]rgIy[[[[[ᷱy/,kʝ9ނ?=xw5x[[[[3xw27W[R̹wb폾m| ;װy}dWtTKʝ9k--nmҖ3'(g3J9§8{Sϟ_swޥԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(Q:F5Μ\5Μ\ΰ.ƹ;\zuM_;3Jk9ƙkNQj(g3JkNQ:Qj(g3J5J'(\ԞQj(g(\5Μ\trR{F}5J'(g3Jk9ƙkNQj(gNQ:F=ԞQj(gNqgNQ:F=ԞQ:FR{Fk3JkNqk3Jk9ƙkNQj(gNQ:ƙk9FdF=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3JR{F=ԞQj(g3J;38_S']Nĩs8u]ԹK:wOUg?{TKJwV˧ӳԹK:wS.q%NĩsoggTϨ>JwI%v|=Nĩs8u]ԹK:wO5S'9k믹=ԞqxK>u68af8asr3؛i)u: Jg3k8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af8af85Μ˭^s׹;gN20 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 3Μ\_sw: g?uYb=NNqW=꾋uYbX:,g?KQ}=0 30\rg?uYbXMל9f8a^f[z 3H13H113H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H1ᷱN3H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H13H1~'8s2Ɍ3'3Μ8s2Ɍ3'3Μ̰{3H13H18s2Ɍ3'3Μ8s2Ɍ3'3Μ8 +H13H13H{3'3Μ8s2Ɍ3'3Μ8s2 '̸13H1zKr[ˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍ͍ˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍ͍ܘ|yn/QEQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @TQ D*U @Dq}vNn{կ~OVp˯~K((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((~5j^~_EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEOxKVx{{ku߻u߻V}uor'PdRR'Y D␨( &S'$$g>yN8c~4R>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb7fg ]nFN|X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bݘ7\w o9yubX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,vcv{p5n׉E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bʮ9k9k9k9k9k9k9k9k9k9k9k9k9kyeF"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,vcv{p5n׉E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b1(*^Xqhq&Mt7.n]ܤIwq&Mt7.n]ܤIwq&Mt7.n]ܤIwq&Mt7.n]ܤIwq&Mt7.n]ܤIwq&Mt7.n]ܤIwq&7.nާ>6e7&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,vcv{p5n׉E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,6v?mg͞-gn=s [`{3-gn=s [`{3-gn=s [`{3-gn=s [`{3-gn=s [`{3-gn=s [`{3-p߼e=`4&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,vcv{p5n׉E,bX"E,ba5X V`5X V`5X V`5X V`5X V`5X V`5X V`5X V`5X V`5X V`5X V`5X ɔo'K<ƾ}';8a Nwp¾}';8a Nwp¾}';8a Nwp¾}';8a Nwp¾}';8a Nwp¾}';8a Nwp¾gG|Ǹujjjjjjjjjjjjjj!jjjjjjjjjjjjXjjjjjjjjjjE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"1;=npM7r"E,bXBlyEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢnixlaÏo37gn|>s}37gn|>s}37gn|>s}37gn|>s}37gn|>s}37gn|>s}37v/qxG<Ңni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNa~1:[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢ~|Vy}Eݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢ~'[`e/Ϧ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,vcv{p5n׉E,bX" O?bH򌦙43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43f/O #9~y!e.{wٻ]we.{wٻ]we.{wٻ]we.{wٻ]we.{wٻ]we.{wٻ]wW{=?c43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3ifϣG* g4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFh3F:)˂M3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3if4͌43fFhM3ifT՘y#/b5"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"nv7|Ӎ<:E,bX"VÓ-utɱf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Nj餦3;:?3^fW+Y镬JVz%+^JdW+Y镬JVz%+^JdW+Y镬JVz%+^JdW+Y镬JVz%+^JdW+Y镬JVz%+^JdW+Y镬JVz%+^vŤy7vʗ-^c:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njfrbme'{f:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njf:Njfrb}m': L'5ItR3L'5ItR3L'5ItR3L'5ItR3L'5ItR3L'5ItR3L'5ItR3L'5ItR3L'5ItR3L'5~ٔX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"؍quo'_'E,bXjXxÝm%u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘s+k=ɡ!!!ݕ!tWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWtWZ]]]]]]rpqoR3ncu5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1vcuI]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcj̱dɣX]RWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1u5՘SWcjL]1x#لX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"؍quo'_'E,bXjXx~,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,ʂ,8VTeAUTeAo{s_#Ϯ]8E^WqFENαWYy~7l/8EN"'NȉS)r9q8EN"'NȉS)r9q8EN"'NȉS)r9q8EN"'N}uVp5~/8EN"'NȉSO8<`NoRCbHY )!xıb6M*&UAU )!e1,ŐRCbHY )!e1,ŐRCbHY )!e1,ŐRCbHY )!e1,ŐR=|#+댋e1,lmmqm:ʁMvyי:>y;9_6J ο?zxy5^~$~/_y?k4:E^3y/_=qf5^~$yğy嵿kF_xy5?+W^3>::'=s?[)ty/_=q9^ڀ2Oe1,ňsQCbH]L!e1,Ő3=V3TLRcUe1,՘I=*ŐRW%IlR3TLRCbHY )!e1,ŐRCbHY8Ve1,ŐRCbHY )!e1,k<RCbH]&5IlR1 bH5.cbHY )!e1,ŐRCbHY ;]znEI]RCbHY )!e1,ŐRCbHY )!e1,ŐRCbHY )!e1,Ő,)#bHY )!e1,F;V1TŐ2\Sϱ=RCbHY )!e1,ŐRCbHY )!e1,ŐR#%xHY )!e1,Őb#لX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"]VIDATE,bX"E,bX"؍quo'_'E,bXjXxxh@1P!9pWsw^h@1Ph@1Ph@1Ph@1Ph@1Ph@1Ph@1Phȱ!E\ рb4`sss)N:S 0{53?y~qxjӭ_p.gw#?c#*U?wC~yjst8G?}_wcn}Uz/C~{x'&yi^a`t#ߛ1WNp_ryW|sbEnO/;Fu_yF^ Őb4 (G<^9̰R=w2qx}b4 A6mv=>AN~m W_tbhg8sQ~~<'_?ɓ32;Ux9.s?>v:4q?=|*w֙|'O3߸/}T>7o咯]Ƿ>tEU7=o]s b}vͧ.칊|B8/༫+{Ŝ/qŵױos-鮌8_ wS }}lnj>5gYv; }֞ ;L.׾—|- G2|,v8tqݯ`yh8= 8wB*.r[ŀ`N`pg83fNч3 }>;m>Apg4a}m; }0rGx/kk?3μ]V_z;o; vo3 }>6p~5.w9w-m; =v=;}>A`N`g6A`N`gpg83 wX_zppg83xo[/䞗zm3>ã}>ApgN6Apgg83 }srZfpg83{<< /&"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"nv7|Ӎ<:E,bX"Vln1f1o3mspyrk0шjrYWl.M<`÷./~B>pg {Kn6N{|{Fg.;r, {9-o3?H.:kgkàcﱱ;y9k?D4M㻟k$#ʱ8ǚL}f˸oh7,Z>vxibEd7Y7{U|?~{j$|]_ј;u^c:Cǧ>z?y~\ptˣ\p~c/#kL|ʐ}k`A`O_r# ϻ|K{Y1/sǞ8kQ=~=\qG{31Sۗ}k~lJg+opg3[N.&_d$_)>wO㴷W?ė~-K?nz;9ߡ6~Apg%ڭl3)]Or-18on>~W|{x|Rً8w~r/˛ی5|3>g|?]-gѥ.'/~o=|[Q).q.O_dz[[<OGO筧?{=.2l3{ wY_]2f12s_xQMc__x&x8їl[|_~!z[8K}OU΀`Gk1'Ý~AGlB,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXlkx7ɓX"E,ba5,<7/9W屧گ^m{1~{݅|S?aq)|lbg{5~s<*O.=ni-_/ tqǯ;{ λC]7qGഷwwpnJ>߰i\sǍW+?I 9xdg/0u:x;yӛdxn kO=wqxxf?qhy__gXLJ{lo͸?u!Wnz;p#}}|ާ{ll3,s;rڇ.t>?IzF>zx|e9Wp#q+8r/C?}+q/{yr% 8}6cY\6koƣ㊳Oڳ\woDfg{-vX[Ybg{-v VYgq?wr ч O+F8w9wxۿs ȗ?w\kx?`y'G~~c,..;[louٔX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"؍quo'_'E,bXjXhͳDosͣ _dU_/>[pOqo]WŵW}O}+yfA>󣇞ekkw|_w?[^ͫ[_o{ <ԯ9ϭ:*/ >W]q=mn`ue^WOГKl3<+EWrtʋrhϻ O2_':p^~}hJ>wŭ62mJ~+]9y^ͥK83gyrsƸ*y'xnm's%˒?vV5⹥_ϧ^cXoAos\ b,wgqO2<͗K[kͭ67me}?|+[GmnܠpYn4:l=R83yt*۾&O/:lnm_=g~lmmq_\~>:|o1yqe z67meȋ<2 [Gmnd;w>!?>͜^G{?ȷ([=+}<.׶m\y}wqi|neh~ng\/n0Zۿ_a~G?\On lomܠAosxmAosMw\ř_,O1lsv<`k'p\~+?a6zlt7|~z#sѧṭmKk\kyݜrGܠAos 67xxy6%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,vcv{p5n׉E,bX"ڭy_bcm6V\¹|*[G2z+;k~G~/' ׹⧷ /Eo0< kxL~~ۮ^>or7W\}_Kl}+}/g_˗|p \sgdeck+ltw*'zrtKrY#^?`}z2O?]q}!>zޅ|[Y`rp%V/$]Ϲトz /-pݗ..則~|g!\88og)_~}ۜ:b`s}6^/8߼ﺁ_ggrG?yi~qُcyu+l;z_Ϝ'g>}?*k+l|?ߦu567yb9猋U793/=ħs&7a}c=grX[a#qKh~tk+lpt}#/ȋ|}g{XXgs!>޳}릯r'ɣGWߺs.'9o=..dwѣlo<ŷ?}!V)]m_5ֺm˟9bGVX[*/~gyߙgsNo˾w' 3v8Boc2yo!q냬n} .֎8sy]ֳ퓇9 k+l2lJ,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXlkx7ɓX"E,ba5[,yeWY_]fc}nsgEZ A~zU^}=4O{\ty|xꉇ7;G1u9̋O7Gƹg͹XZ_c}ue}^}WOXpJq̌&ag{Gy?0`lmLwޱPLVog; ڭŁyEVXYYБmv&4q6ňgYd13(<"(&ݤWZw6iZGxpʔbRSʨsX[a}uUzksk߿}wZ~{ۯ֛o{o zoᑇϾ]}_]y.wx|]g}>2k窋ˬ.‘?xV[|s,-S ?QXz||Y]|&\ˬ.K ˬ[k?yG;ms%ʑ zOrCgO\փwi${o_ޱ|{s],o2yyG gxisΧ.sLc=,G^z{^ğLbTѱ0B9}$j1:fƓ0Űcf< Z+'Mq,3ŰűPL̨6IbTQmƓ0Ũca<}rxF3Ibt,PN_a< Z̳GtzzU{`}u%V-γ眳wn}x͍Un?\u,-=oY~ o|{ʟ ǟ^ϕ:+?E{n"]}\UnVX[Ybme%W^}茷s5O_=+/>5"zq֖|͜p9xнKq~v𳫿w~k<Λn>xݟ#/74>Y_]bme%Vxpk+Kl-7gUą罟f>r5< ,| 'qƅx{ŕVm~vŅw&])qpW][ơUWX[Ybme#˳)E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b 7t#'ON,bX"n=đguyEVY]^duy#,YZ|#./V_bȋ,/"GXY<VY]>V_bK,/aeiե#,aeyEVYY:,-|#,auyEVy<<*'tYamF3cfť13:fF3cfť13:fF3cfť13:fF3cfť?Ax-}w;M9sΜ_鶧/ݒXYI\%YkhjIiRAR$ɛHY Uyf|>^JǽW:q{t{+^JǽW:q{t{+[_l|Ӌ|Sk7,%7}ǏO5͚5w7knjΛfݦf^ѬWl5MySswfyb9oݬ9ojΛ5w7knݬYs٬W4MSsw|]sݬYsl+65wzES455w7knݬY\y'YswfMyb^zŦYsԜ75盚漩YswSsԜ75w7kΛzE^Yל75盚u漩9ojnԜ75M͗7|f笾m7 wzES455w7knݬYS}zSݬYsw漩9oj7knݬ9_ל75^ijnݬYsެf͚5͊ͺY45MfybSجk7knݬYYx'y(]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRqxaϣ<[x1ҵt-k)]KZJR}P-جWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb>sX\|E&wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[wιu[/~_y޼≧>iΛfί/;4YYجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجW75g_<$Mfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zf]sw燾oWlzfb^YجWl+6fsOql+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zESWgX~4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESWTg n?sXXWN9ܻ}swýp>{9ܻ}swýp>{9ܻ}swýp>{9ܻ}swýp>{9ܻ}swýp>{9ܻ}swýWxĢyzzESWl+ _lꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦجW|iyn=)6M]M]M]M]M]M]M]M]M]M]M]M]M]M]M]M]M]ѬWt۟0'z媢+++++K_ѬW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESWWKyIx5JRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt-k)]KZJRҵt^#'at-k)]KZJRҵk3,E+++++++++++++++++++++++ݾ5E1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}LGĢy?f+++++++++++++++++++++++++++++4<hꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦ^qެYsM]M]M]M]M]_̧hꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦhꊦ3yIopuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\]. WepuY,\ҵt-k)]KZJRҵ\ {}a1 7t-k)]KZJRҵtnz3atl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'<; ?MX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"c"g'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'| o=ş?NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NO?>tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60Nxn :[PWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]QWguuF]|Ot-k)]KZJRҵt^#'at-k)]KZJRҵk_a۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖŖӽ#pC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"kݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn ^]mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw`۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖn~e۲mw[-ݖv/////////////////////////////////////////////////////////////////////////////////////////////////////////////////\|+_xHZJRҵt-k)]e8G-O<pCZJRҵt-k)]K>n3 o80808080808080808080808080808080808080808080800p݇X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,qǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁqǁ7ǁ暫KJRҵt-k)úbZ6/|ҵt-k)]KZJRqxaϣ<[x1ҵt-k)]KZJR}ݦC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX":O'>?Q>?'~}#|O>S_%{_ ]ҵt-k)]KZJrY:/yy?0Pҵt-k)]KZJҵx}E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX1?ǹeqdnc.Kk[^2/-_x{ԓ4o& }.y+}^w?SK' ]ҵt-k)]KZJrY:/yy?0Pҵt-k)]KZJҵx}E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX\=O?$/xo# }.i믽ʫ_/3{6/|_:gt-k)]KZJRqxaϣ<[x1ҵt-k)]KZJR}ݦC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXO?$/N|qd^+w7ze^U^2ٳs҉n?C>t-k)]KZJRҵ\ {}a1 7t-k)]KZJRҵt6}bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"}x'yto&x/K}嗾/ȫ/3{6/|_:gt-k)]KZJRqxaϣ<[x1ҵt-k)]KZJR}ݦC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXO?$/N|m9~./xK_:[x̞ N/x3tJRҵt-k)]e8G-O<pCZJRҵt-k)]K>n!E,bX"E,z||j{J"(Ts^"E,b_ӬJk["E,bW_ gNg[^E,bX"E,bX"ElW{_w"#ܻ矿tlX"E,bX"E,bX"E,bX"E,b5ry=dsy.^|"E,bey\ u/swuΫX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"O=ɋ7GWW0oyJRҵt-k)]KZ?wE,bX"E,0xǯ_fs5Ͻru58pMosaY>GE 7 7׌ 7E,bq'_C'oO58pMob' 7 7797=580\'ׯ'~ E,bko>~Gٯ6=50pMob>anxsa Elnnn7nzX}0xpz 7 77 7EM_Ox|w?|랛X\=7=q;G{{oQ*80noCokaᆛ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXO?$/N|qdOxګze^2go3x~}@ZJRҵt-k,<ücn(]KZJRҵt-k"E,bX" ~?W?͏7ܫ\tO/g#]zƇ?^lwo>W{;| L,bqwTzQ^+E/ໞ`ҖC?»𬦵zW_Y,oG药U-"7ׯ'~҇x"o>whN||}Ӽ~?7_w?O~aKI/// лy7ˎ>8_?v=N{eӱQ?|sܿ4_w~SpՇ8z_c|sWgg?>编k>>1w=?}|_{ӿq]o?abMG#į?]ᱏ9/^b'{~gϬxp%bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,SOrw_+0ps}MltYxxWxxxnz>/x3tJRҵt-k)]e8G-O<pCZJRҵt-k)]K>n!E,bX1}Llb[~_˷7^o ?s???O]>uۜX>?%ꂇ_#_}7}/~ub뾰{}C͇Oݺ>~cڜh ocy}.S^;LJ>ygWIL|w_o[G~yW_G/Vg~ɏ!}pU%w&Ƈ~9>xOw?O?GNw_;7ӟ8?/p?k|w4~|{џS!O|?V-b>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>&E,bXO~G>'>????G|Oo3Ϲ҉n?C>t-k)]KZJRҵ\ {}a1 7t-k)]KZJRҵt6}bX"*_z{xXa_wc~=?~7yϏK't~탯xC>˭?ean}|҇x"y~g_1xod9wW~~Om|[ިswQC_6t>K|Y|}{_8cpss8xo7o?MgW~?y*/S?}w~ۻ }h~]K>W/sӛ? ~'⧞xW2__go?g+6et뜎Nxt}y?#Ozo%~~gt-k)]KZJRqxaϣ<[x1ҵt-k)]KZJR}ݦC,bXĢt-/|/?/CFow7O7d~^c^_Ƨ?oGkgwO4G>[8&}x-&WHoYo?}w>W,]5c_owMw~?=vz?UyKzؤly~|1_ɯ׷<ogiG޼˯ď[oz7OK~._|o];xCo硇|sڄ;[zX"3~S> tɽ/?/oyOr/ׯз?xkoybKo?m׿ ~_*S?so_w~'?~-w}}\XtT_Z\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\ቛkuuu39ӝӉ1Y\ DEC`"D EUUP<~W}͞=̞=̞=̞=̞=̞=̞=̞=̞=̇ϑCљYbX"hf.nel1ź퓬`Ֆcxm,418Vb,ʂ,ʂ,ʂ,JƎtbYr]RUYPUYPUYPUYP3lC,bX1Gv3[tmK61q}]L~qfcLɣb.[$aǸxKwӻ~ ]gGwb>&r"G& y?qxjWW-n`i-b|Fb ~ޡ+p ãy .Z5!{)nbؾ=gNLĭ?ũ̇+xq\ n㜙!G`yWDAmXġ[/g?3ˏ#|v)_kv=ԡ!~}?p9|$8=& λ?$:<{-81ys8#\Dz([gd'1~4we!;' jX1}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}ҵ ''OL|qE,b k6bQ6fÎ)m? Vm9ƊY>0ʲM#,eawgj8C[)* * * `*;:%9gt]KUTeAUTeAUTeAUTeAY̰}hE,baa86N6"C#iNMf¢i8.ڰ+Ç↋nf牒"C]|̯m|;ʷ<~3P7?]ď3nY(y !=9d1ӷ\Y8c=<_h2EwP4-}X{X; |d'3"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b:f'3rmSX"hf.nei6b`Ֆcxm,4Qfp~&34* * * * f#,]sV\A׵TeAUTeAUTeAUTeAU ۇX"MvbrbE,b2sr$bV"3L}1ѣK&OL2S̖9uR$bU%ř4N!X"93ԗc=ʱ/d$3eə4N!X)Osj#Satlӧ>-bX$F_etlK+crD$&gJN}9}1AQ!%Q$,qu㣌=STgbV"E,Sac8UTĦ, GG;vSLOթ ƏrbjYT&?:ʉilUgQ8q3g95,38]g(O}ɱƏs%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢÁ}{9r]X"hf.nei6b`Ֆcxm,4Qfp~&34* * * * f#,]sV\A׵TeAUTeAUTeAUTeAU ۇX"MvbrbE,bX"E,bXĦE,bX"E,bX"E,bX"6uL,bX"E,bX1uD,bX"E,b:"qs_{5?ePG"E,"E,bX"MX"E,bXĢcX"cjX"cbX1E,bQ"E,bX"cX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX4u8o/GkbX"mlml9͆S~Cr|`eFX>0ʢ qR3TeAUTeAUTeAUTelU2vtKsΪ+躖,ʂ,ʂ,ʂ,ʂa ubXĢÇûC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b4>ɞogc(&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,:ط#ѵ E,b k6bQ6fÎ)m? Vm9ƊY>0ʲM#,eawgj8C[)* * * `*;:%9gt]KUTeAUTeAUTeAUTeAY̰}hE,b]LNL!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bӶ mmbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b·IDATX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MˑÇچX"Eۄ5wv(wNa붟`ck,e٦h0;35q UYPUYPUYPUY0[aŜj * * * * ,f>4H]X"h.&'&hX"EUpb FGaltFGaltc̜E,b4M-bX"E,b3iNMB6MX"E,bX"&E,bX"ET1=9I9;K,bX"E,b E,b4E,bX"E,bX"E,bX"E,bX"E,bX">C5s"E,bX"E,bX"E,bX"E,bX"E,bXL)*!E,bX"E,bX"E,bX"E,bX"6MX"E,b4E,bX"E,b>["E,b 4NM#X"E,bX"E,bX"E,bX"l1ͩS"E,bX"E,bX"E,bXB3<X"E,bX"E,bX"E,bX"E,bX"E,bXĢÁ}{9r]X"hf.nei6b`Ֆcxm,4Qfp~&34* * * * f#,]sV\A׵TeAUTeAUTeAUTeAU ۇX"M>MbX"81^~'׭f5lX װa6_Ækذ~ {>WgX"g/9fX"E,b:n~9c.E,bX"E,bQgc9|1E,bX"Cfpe 8E,bX" =3BbX"E,bX"E,bX"E,bX"E,bX"S4_-E,bX"E,bX"E,bX"E,bX"E,bX"6ijX"E,bX"E,bX"E,bX"E,bS"E,bj>T9K,bX"E,b>3KbAN7 E,bX"m={/=ȯZͱ4E,bX"E,bX"E,bX"E,z]wD6"E,&ټFٸs ;X&X+^g(6|`Eܹ n,fʂ,ʂ,ʂ,ʂ٪dK,U+Wu-UYPUYPUYPUYPe1A:"ESw191ASX"E,uYFGW7_X"ײsjچ8۷tM-bQסZ>km{yW.`1+o)bS5]rkhk$mپ:mOGsDz8״뚮k9۷tM-b8nnqX4uMۄXĢkڦff ZvMy?]ӦoB,ж-g#b45]w-g E,btmC6}ٮMԴElMu ]rkiж-g }s-O[c Ebڶ;EtmCߵtmMж-gmhbbX"1mr軆6뚮m躖}GHL۶;|90t4E,b黎}Kׄ"u]wg El;v mmbikhbb麖]K[b8ijl5N=|jOTMElڶ;E,{zvnO馡E,Ӷ-}ҷ5}s.[x5_}[SGĢNږ}G54hm躖}Kׄ" ]е-}w MD,b4 }w mmfVp4-E,bӶ ]wg6E] M6tmK߷tMhۚ&gyMjۚ"i軆6е ]w ML4}ٮM,bX"E,bX"E,bX"hp`^>D6"E,&ټFٸs ;X&X+^g(6|`Eܹ n,fʂ,ʂ,ʂ,ʂ٪dK,U+Wu-UYPUYPUYPUYPe1A:"ESw191ASX"E,ǎ _E,b1yh+ϿSkX}|.7DiT oo+pǞ)jpݗXrl5™4Ays/.uCWϰgh3/"=oOB־23oO鵬3uGlXv;WϙϝxmNu^u?ܺoBE91k/Wqx}>aOkڜ͍ϰu>Fʂkœ`#wsͼyݔ:5^Ɲwz`gLQNUv\nw={$Cϯ?,w^y_2o\n^;?;Abb q],s;{%vc/ŷ0oK8QDﻍys{ߺEb\|1gu,z3*|s̙#<=3g缱n)]=-]GQXw/͙ˍw=QB풑?r2!ΜյKn9sy n~Wǒ_/d m>](k;nkoc8}yv+i뒃ogӇذ>V-k-侧0:>w=2&+.pwp9U Wzan?ko[kz?#Koo[!~~n?oZ̋;RI"E,bX"E,bX"E,b9|mE,bXMXykq4vLn VMj1V6Qma(3s?SJYPUYPUYPUYPU.Y9VZ* * * * bCuE,bbrbE,bXu_ Ǐ1+bXbWroJ{~/>~?54W\̯~$oX_a-^]ϯ{a qUb[e1ɿʯ_'fh CN/ nc ϳKmUwr8L;鮇o+|!o+o18}1?v)_x{83ŠKyM~ӫyv҄X-/cls~>=Dt+_}nwV<ź^Ă>+o{{#c Z ?/oR[7 ^\K(/!.g{>o9Ԧy!NM]}ӿ_?şg_ϯY'_L[xQ,ZgJM]ݏx E,ں`Y|<£0*~ʧTqxXŮqq^p)+{WY͚/1v/nǗ=C\}>0Ȣyrkx<&˯zO1{{wdz/>Msw|~{>=[.떲qK##xno/zVse?㗏>g1-[^{۞b_/`2~+x|>F?~=16o~e7o{/5g,ҫnfa\p9{O C{S?🿿/mfOofۧG̿v9#i9̰c}̿37/|wZ{ܴOn_Kϯ嗗IU{ʛx|+0ʲM#,eawgj8C[)* * * `*;:%9gt]KUTeAUTeAUTeAUTeAY̰}hE,b]LNL!E,bxo;o Ksơ v?^|/1V_3.[l ?9Bܱ?o.=5_;O2G?Ǟ88v3E,bX"E,bX"E,bX4u8o/GkbX"mlml9͆S~Cr|`eFX>0ʢ qR3TeAUTeAUTeAUTelU2vtKsΪ+躖,ʂ,ʂ,ʂ,ʂa ubXĢÇûC,bX"cGyrj׿c l~X"<4/䃩شi9˯]e[k]|\6K>XeW,੏GW꧟G8掶M]SG~e\e_Eܾ)&4c9̝{CN\Ț!Sy[o`b`'9<9ߛϻ'JjS#sDIm1}t_6g/poC'f2ꞯI^{n3~oW2oΝ˭w>秏ױ!ϟMs/?ï&5Ŏ5p/.ˮd??غw'8^wm\~ם#if>%߾c-b?xE\x̝{9qOE]3 m̹`l_u\~rOm6NUYre<~T4sEsy}}\wJ>WG[ihyUlyc{ .\ܹWpKnz#_`ys66MmSM`[νrܹ͝sspzg;dGx94&iꚾa˸Ulsu7h5kŗ\W\U?/ _]\+yI3Y|\xs/M;ӿ{ā}/cRt`-N>=}_=;pܹ̝;ώ+qKr瞛\u01+jX"E,bX"E,bX"ESr!!E,b6a]6Ɲl1ź'X=4-X8FYi,Z?LMghp+e1CUTeAUTeAUTeAUV%cGGXd1Zkʂ,ʂ,ʂ,ʂ,( R!E,:|8ɉ :"E,b1>v'׭+_?W믈E,bC\yB>:YM;ޟܼO^疋~ʭ9y/<89x#n^.{y9qSwiۜ>ɾזq+/}z-.by x뮹M4|>ˌCm5;7rdb^X.YGOކrܻxoSmw)Ff.eӡDg.eӡ)3N}..7'e\? #Zظi3ª)Xb:o|YP[LU]͟'sNN3)./>ɜKٚbt+W7_V4G+ya>>q .cL~&{MY|~mfbbz|oNJ#۶<{[~8뎳)._?= q8o7P[Ģvѣ?q=ztuѧ+U51` \0=I r*J$PaH\0(%XZb16ؖuҖs}sm~o[nOp3ǽ]/_ϝq|C{|o|)w=v}[}w߻_W)O>^^xxqG~族-o|'[?Wx܏VGlݓ~o_8⹫׾O=xo?rs? ^;7ҘݓzG:珎}˟\8?8ooč7zWΖ']x|>~_sg}g~?g }oM0\}gqأ>svoݟ4)_}Gڼvڳ~]{%wN/=/ <苗~~Yo·v=O{_%V^zw{/uc?~>}{;x̆ʟTgrK}[WGqH#4H#4H#4H#4H#4Hzyړ/<4H#4G{>'E9zMOy=p#g:#;N4N4N4N4z)v_r^4N4N4N4N8ziF3>u⸗\H#4H#gNQUUUUUUs~_\icoz꓿~izʿoϽk>^q7>xw~m=owNC7+^^_[^Rofwzy_9O7=vz/y+|M7__io|o~|_MyCgw_|_|͛^&O g|?/ O:rkx>?WyKo5ou{'?}qOwYiz[~w/΍W|ˏ7\\z+;oWn7|-ȿN7;loٚ\O_}YW^-o|7&o̽>}ar͞g[|M7׿;ӆwzz|C~]M7kwNٹH[o~7*wzy_?wya׹y~-5 oz=7]iڗW?'7tx=O9^o-W^M7_YzæGoy卾Uo}zr;?ZoFo~Û|Gn߳w/mpoGyy u>gx{Ko5oŗo_>zH#S_Sz/+}o?<|吿x}_sqs'|M/WƷ;s'ۻnOWǷ'_|̟~=PsOu|ën7ޏ|>#Syϰﺑ?~{m^'_g=;e/f'ɷ~'N_qOÁ?/k?Էe/u-g?_u/3ޣ'?nt|K/.zy o/w'FiFiFiFiFiF3>Ӟ|yﯥFiq>rŎ>.z-=vփnzw=|7Y<9yquqpqpqp3OyCw}qpqpqpqpacG8H#4ҸǽzFiFi)l$^i7ϝK^l#4HzgN¥+&vre4k ;^c3^i766p.nwmaWwH9\ൽ]/_DK8^ܙSnlҕ]۸7xʎiF:yu{aN^v&58ͳ^;&W.]rvMmq^sعի^奭9} vL#^ܙSnl]۸7xiLnws㔛g/;]FiFiFiFiFiFi\3O{罾Fi5q{bÇ;>=G)Nxd[wK}iiii]=<#4HzƧN֖iFiq?׾꣇ÏG|#>zvacn]8~v]iFiFiFi֙H#4H#4B4H#3Fi֙H#4:SiFiFgH#48SFiƙJ#4TiƙJ#4H#4H#4H#4H#4HLFiFiFiFZg*4H#3u&H#4H#4TiFi֙J#4H#4H#48SiFiFgH#4u&H#4ԹFiq΍4H#DiFis#4HLFi3Fiq΍4H#4H#3FiFiFTiFiFiFiFi:iFiFiFiFgLFiFiFiƙJ#4H#ԙJ#4H#48SFiFiFiFiFiFi='_xkiFi_㽏'6|hOn{stCࣛ8] o{GϺuΣGwviiiiSy~}iiiiq#3H#4g|q/mmFiFg/~/~s__?Ϯ;SiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq=s<ZiFx#ǽ Zcg=oxç=G)Nxd[wK}iiii]=<#4HzƧN֖iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF3>Ӟ|yﯥFiq>rŎ>.z-=vփnzw=|7Y<9yquqpqpqp3OyCw}qpqpqpqpacG8H#4ҸǽzFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi='_xkiFi_㽏'6|hOn{stCࣛ8] o{GϺuΣGwviiiiSy~}iiiiq#3H#4g|q/mmFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq=s<ZiFx#ǽ Zcg=oxç=G)Nxd[wK}iiii]=<#4HzƧN֖iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF3>Ӟ|yﯥFiq>rŎ>.z-=vփnzw=|7Y<9yquqpqpqp3OyCw}qpqpqpqpacG8H#4ҸǽzFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi='_xkiFi_㽏'6|hOn{stCࣛ8] o{GϺuΣGwviiiiSy~}iiiiq#3H#4g|q/mmFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq=s<ZiFx#ǽ Zcg=oxç=G)Nxd[wK}iiii]=<#4HzƧN֖iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi_?WiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF3>Ӟ|yﯥFiq>rŎ>.z-=vփnzw=|7Y<9yquqpqpqp3OyCw}qpqpqpqpacG8H#4ҸǽzFiFiFiFZ?~پgg"H#4H#4Һ^ϮJ#4H#4H#4H#4Hz_#4H#4H#{g3v^{}vnFiFiFiߟ]SiFiFiFiFi\5FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq=s<ZiFx#ǽ Zcg=oxç'E9zMOy=p#g:#;N4N4N4N4z)v_r^4N4N4N4N8ziF3>u⸗\H#4H#4H#45}w}ogNzUKtՋ68}s.ךz;g9e4=w/o;kN;[8ƙ^ޝFZ@ܹ8-kq>A\~νp=޵8 yڍӧpiϾ7GNxn^swO{%kל{/ug^pJF]_\znzL\K=qڳ/:]5+^x g7fm{/_}co}}㍯-oz|Hz:W~9y~}ӛ__2ozͻ{\ro|ë>5ϞgNz}^o_IѓO=|M7z㍯wxy/|x-uѧN_{j_~ ݿ?<ϼykn7xͫ3>~mU7zo^i=wy/W?^٫s#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Ҹg {}-4H#kĆ-v|m?v{ny豳|t7S8mYyî888888879};ݗׯ;88888888;zyFiO8-3H#4HL]8Siq'|o?ǎ?kO=7l k;W'/˞O[O=}_X{/z?}iz#⏾}p.O{OtcH~;䋧k/ɿ[/W>_w#wyE_<_|d}ɹ>/K|.\>Qo^wS'ȵ ';>7>O=mSg_ιw4HY}?}?z/y'?|׾\m/˿[q#~ַ{r}/|OzqSֿ ~W^ӯ~/~Y_M7u؛۱Y}+[~7O?࿼g\~;nm¥w|c_*4g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3g\ϸq=z3FiF3>Ӟ|yﯥFiq>rŎ>.z-=vփnzw=|7Y<9yquqpqpqp3OyCw}qpqpqpqpacG8H#4ҸǽzFiFwwg{ǿ~L9W=G⣾r=n3zzۧ>{~M!ه?g}?=OuZ~wpw]mYZ#lWKp꛾UzlkrzůW'w1gW?ݟ{X7hoկ>_m~w>F7oϜw7=k~ ?Ὼݏ~?KWom->u޻3}7W|?Owwny_<׮Soz3~wS\~浿/f[=?_ ,u{G<8:888888{ӧ}ɡz88888888뱣GgFi\ԉ^r=#48S;`=n;縻z^s;^~ ;<⩓^A{9ͮ0<_3<3O|9<lj؉`ۘ`71E*$Y\ B R{Vj%֮zc?|u/yy~/_O <;>?w?> w3o{'W7?q~%gO'yˏ#\DcvoWNz{3,W^|ߍ-7?B6\8C|<Խ|9v_OOrU.]8#|>;Ƿ}|[[y5Σ'x'~7 E,bѦλwٟo}12 N? 9Oo7#7uK|>_}ןr=S~r7O_^f_7/gqK< {^0i.Y͟'vo/?wx[?i~}Uz[>iz?/C DS;~< SUb 2+eƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4dyy2/"EۄOZbX"6ܻ^ys, 9͝ewMb=p]0gaNr****TW9};︝m{ꪤJꪤJꪤJꪤJr= hX"m?xᐶ E,&~U^~"1iXf8zU>sC?fq^}\G+?{_88/O~WʐG|fBkXxu_>s3KKzpcpf/_>uo>ɇz,g_?]=O-\7sWog}83w}oc'?s_}uzssϼ/}SOŗI|~[k_ÿ5ۿ8&h6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ m&Mh6mBۄ mV/2"hp!^;yIK,bXb҆{wK<"c3➅!?Ƕl]Sl]k,IUQW%uURW%uURW%uURW%3Oqwoc}}B]UI]UI]UI]UIUgaMbXĢm<6!EۄG_ı#OZbXĢ(_?ܽ7gn*gW/z#7_ExwΟ_7;r3~ΉR\z37- s<|-qY"4<~31: W/Xo~㫗iY6o}ze޷ ^=ns5RC7]Ǎ_;8'v>sGx]A+'|7giڒv; .E,.Ǝogɋ1MB[N1 ?0_Go}/t_m;ű7L.Ͽ5p_p4 ~xuqjWs?~{f".&𕛮3_[O\Ocoi}{ W_,7}iE,bX$f2iXƄ64hۖ+&mEӴlsece}X4M"1Ʉ+lLZ'-mcbӶ-\Yo4&E,ڦa҆&f2ih,bɤM۶ll޲>ii$Lچ"6m۲ƤM۶llse}e}X4M:듆"6I˕u6[ژXMä E,bɤE,bӶ^o^<-mF{~m_|*onLXoC,bɤecc+-" W6XoYL$L& E,bӶ-\Y>iY446ICL& mL,a}}• "6m۲Ε mh,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b6LۄX"m>k'O>iE,bXLpܷ{_b{Fܳ0d6wK5}KAv?xx];5ꪤJꪤJꪤJR]q)v޶mO****5,iB,bXMxC&"hpaN?%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b|o^yq "6 Ovׯ6X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Eۄg2mbXM8z<%E,b1iý;p%1q폟cY.恵IDATq).qٵyv*ר***Kuřӧy>JꪤJꪤJꪤJꪤ*س E,b6XiXĢm#9y듖X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,T.X"Lŋ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b Dže&"hp!^;yIK,bXb҆{wK<"c3➅!?Ƕl]Sl]k,IUQW%uURW%uURW%uURW%3Oqwoc}}B]UI]UI]UI]UIUgaMbXĢm<6!EۄGs1'-E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXMx>.,/6!EۄOZbX"6ܻ^ys, 9͝ewMb=p]0gaNr****TW9};︝m{ꪤJꪤJꪤJꪤJr= hX"m?xᐶ E,&?rǏ>iE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX\TSW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uUKE,bX"E,bX"E,bX"E,bX"E,bX"E,b˗jꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJtE,bX"E,bX"E,bX"E,bX"E,bX"E,bXHTWUI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UƺL,b6LۄX"m>k'O>iE,bXLpܷ{_b{Fܳ0d6wK5}KAv?xx];5ꪤJꪤJꪤJR]q)v޶mO****5,iB,bXMxC&"hpaN?%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,V/Ggbfz)fbfz)fbfz)fbfz)fbfz)fbfz)fbfz)fbfz)f9?+/L]"E,bX"E,bX"E,bX"E,bX"E,bX"ky癟efz)fbfz)fbfz)fbfz)fbfz)fbfz)fbfz)fbfz)fbcs>UF,bX"E,bX"E,bX"E,bX"E,bX"E,bX%Nz3SLO13=3SLO13=3SLO13=3SLO13=3SLO13=3SLO13=3SLO13=3SLO13=ţ3JꪤJꪤJꪤJꪤ*س E,b6XiXĢm#9y듖X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b 2eX.c]ƺu2eX.X"E,bX"E,bX"E,bX"E,bX"E,bX"ťgǞX]H6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC64 ~'畗_B/X"E,bX"E,bX"E,bX"E,bX"E,bqRڦmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶip~K5E,bX"E,bX"E,bX"E,bX"E,bX"E,Ν]byN8NlڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶmڶR]ܳy\Eۄg2mbXM8z<%E,b1iý;p%1q폟cY.q).qٵyv*ר***Kuřӧy>JꪤJꪤJꪤJꪤ*س E,b6XiXĢm#9y듖X"E,bX"E,bX"E,bX"E,b 2W.ҋ/9?9vϱs~s윟c;9?9vϱs~s윟c;9?9vϱs~s윟c;9?9vs,}bS{Ş(?,;#"E,bX"E,bX"E,bX"E,bX"E,bX"E,b+~z躎躎躎躎躎躎躎躎躎躎躎躎躎躎躎躎rmG(VE,bX"E,bX"E,bX"E,bX"E,bX"X[W\:::::::::::::::::ҥGf E,bX"E,bX"E,bX"E,bX"E,bX"Eot]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut]Gut] OrCĢm³qay E,&=|N`}X"oȃŘgaϱm,[gk[g큃< vRkUI]UI]UI]UɥSymX_PW%uURW%uURW%uURW%uURkYEӄX"h,ME,b6Ü<~IK,bX"E,bX"E,bX"E,bX"ū'o|3K[lnn&lnn&lnn&lnn&lnn&lnn&lnn&m23=Eut;{]O<._E,bX"E,bX"E,bX"E,bX"E,bX"E,bX\\#[t]Gut]Gu}O}O}O}O}O}O}O}O}O}O}O}O}O}Out]Ge*E,bX"E,bX"E,bX"E,bX"E,bX"kʕ+t]Gut]Gu}O}O}O}O}O}O}O}O}O}O}O}O}O}Out]G\t<bX"E,bX"E,bX"E,bX"E,bX"E,b&fbcG躎躎䕗 Dže&"hp!^;yIK,bXb҆{wK<"c3➅!?Ƕl]Sl]k,IUQW%uURW%uURW%uURW%3Oqwoc}}B]UI]UI]UI]UIUgaMbXĢm<6!EۄGs1'-E,bX"E,bX"hۆIbX" -E,bXĢ9_d2`ccS\zWxoU^իWr LsRMX"E,bX"E,bX"E,bX"E,bX"E,bɤE,.\`vz-:M…U.rau \X]*VWʅU.rau \X]*VWʅU.rau \X]*VWʅ*ܤ:,Kf(VE,bX"E,b3i[&ME,bX"E,bX"E,bX"6IKX^dfz+Wu]umӰraxxxxxxxxxxxxxxxxxxxxxxxx̅erM{._ĎGf E,bX"E,bX"E,bX"E,bX"E,bX4MEot]Gu[YYYYYYYYYYYYYYYYYYYYYYYY/ra:]uO/<+/"m= ˴ME,b6Cv듖X"Ť 8}xhE,ܿg= C?~msg:]ӧ:md#Yص\JꪤJꪤJꪤJ.gN;nm****\c.&"Eۄ`y8mB,b ǏcOZb4a҆"m0iB,bӶ &L& mD,b6%'^3_jZ' E, 'yѧ8W]E,b&_c}2`ccso&Wz|#~7G[o֛o֛o4&&E,b4a}}• mh,bX"E,bX"E,bX"E,bX"7xf~G_-bqqӏ֛ou]=Οm[ysssssssssssssssssssssss[橅ݼt]GSk"E,bӶ-\Y0iCzf~ E,bX"E,bX"E,b;weՋLOq:gyf-s2?7,s2?7,s2?7,s2?7,s2?7,s2?7%n{ a<<®TuURW%uURW%uURW%uUr8swq;o~6'UI]UI]UI]UI]T{v4!E,&<!mbXM8~0'c}Ҷ '/vqjXo.G?jZ&9Kw>ɯ~ ?;&H•v|_Y/_9v6b rMX"hb^z|>'~̶wxa6׹ӧWUy+\4&&E,K㆛҅&"MX"hbbX"ibbX"6ML,bXĢIC[I~yU+~7|M677麎M7#-[ld&[0ٲɖ-Llae -[ld&[0ٲɖ-Llae -[ld&[0ٲɖ-L?ÛWIu1;=EJ,bXՈf~-_ 7|/sYg|ܷնMX"ibbX"ML,bXĢIä>7>)+X^dfz 677ܤ:8{EY\\dqqEY\\dqqEY\\dqqEY\\dqqEY\\dqqEY\\( G#/eccMR]㑇YB,b~rW}_/~NעEbX"Hz[qϩLh#}ǎ`ssM޼rv?={X\\dqqEY\\dqqEY\\dqqEY\\dqqEY\\dqqEY\\dqqEïpQNzܤ{^xW^>D,&<{`iXĢmÇx '-E,bIqv/ŝw۶߽ uURW%uURW%uURW%uURW%Uƞ]4ME,b wKM666ìO&OlݺU.5?OߥIX_0.5ML,b$(_=L|SܳK^[ 8ę3gZXėXӜ,k+cVYZ:5l\.Μ^b8,b_fm:gEkX\\#lnnIu}k'O>iE,bXLpܷ{_b{Fܳ0d6wK5}KAv?xx];5ꪤJꪤJꪤJR]q)v޶mO****5,iB,bXMxC&"hpaN?%ih/wo ?y3s+^[37|o]%;Z9oE=G]?;?Ķ̩y>O\q?~)/X41/>p YWwv>x%lll㑇 a._YOZt.iI0.5ML,bI[R>N\I8gxvO>xxǟ?yǟqӷf3k>y_}_;Mw?!>?>vOْ.܏ON>|7y2p yw؇?OX\\#^իW麎df0 hf0 hf0 hf0 hf0 hf0yixf"WlpU677Y[]evzrmX"r}Wŋ49Ͽ%|`x~/;ǟoccrw`sk~|˟|Csw!w~?nw%bm"3SlllpU^Js="EQPEQPEQPEQPEQPEQPEQPEQPEQPEQPEQP{e8q\zMb#vqX"a=#^yOx;O}?~Co[knc2/_m^x|_]89L[c=z7Yʄ֢ٷXpի\z+W6xjyi( ( ( ( ( ( ( ( ( ( ( sN*]qU㩅ݼ!b6LۄX"m>k'O>iE,bXLpܷ{_b{Fܳ0d6wK5}KAv?xx];5ꪤJꪤJꪤJR]q)v޶mO****5,iB,bXMxC&"hpaN?%m[q_%G';>yڳ|/eѳO_E_8 ߹y>YDpry7~6勗h,^| G;rro\M^&L?0mж e6LچI0i&mˤmh03=ťE,Ⱁ7;|մ4ir?|>?2^ÿ?w'>w~\:>\95q]X]9̶o<̲/0O񱿻#G+?{JEfի\zx9eqq(((((((((((((((((((((({2ٿu^&u]㑇YB,b=\o||S/9M!~|= >WWf|ۿWsr/pK+GG{S_5ﻎ~*g~OO|j?R&M̾łcG=W^ի\S`OSEQPEQPEQPEQPEQPEQPEQPEQPEQPEQPEQw^|ǎpW麞W=O-敗 Dže&"hp!^;yIK,bXb҆{wK<"c3➅!?Ƕl]Sl]k,IUQW%uURW%uURW%uURW%3Oqwoc}}B]UI]UI]UI]UIUgaMbXĢm<6!EۄGs1'-H^5~&i|ous]|ß/_]=ȗifgG]_w=u,5m,]b1>9˧Y-״MK/d@/}'>ӷyY{ؿ{ٿ{ٿ{WaԫR]"qYο>jZ4dٗ2[of3bGKw|7I+_=Eٮs%W?Zȁn:>ƻN·|ILh.<1~k8&W.03= 666x79y^MLl hf0 hf0 hf0 hf0 hf0 hfag-Ҷ \r cf(VE,b^0 E,ќN^y_}] %N19Zwp'>?u#.Ԝ{xn}cO/O Ճ|Cţ(!kydm`cc7|7Οc~Q)(((((((((((((((((((((ػw/}&lllpk10kWE,bzk;Wgk?#>qzy75̽v˯O~u^Z9w>i~j'_>·~wcy]e/ !3hb-= Wl'EAQEAQEAQEAQEAQEAQEAQEAQEAQEAQEAQݻ/ı#vo&֛,+/"m= ˴ME,b6Cv듖X"Ť 8}xhE,ܿg= C?~msg:]ӧ:md#Yص\JꪤJꪤJꪤJ.gN;nm****\c.&"Eۄ`y8mB,b ǏcOZbTw'|8k~eI7 'u޼~S|̾ b1|e߸|Of-״MK/dp;Ň?u-0_[1666-/pi^?wgp,q^?wsgN3 ~\T"LJn2} &p~|Yr Vy wq=S~r7O>r5~O4eΕG_<hck~7<;gˬV'qpg_1r)&mC6llsٛlB3 4`@3 4`@3 4`@3 4`@3 4`@3 4o; lѶ Ih*E,bqy?Gŋ49Ͽ%q?|#;\i*~?>vyeֆy#gc\w1S{Uc|g9.5s1ՋxaӶ m۰>瘟{E( ( ( ( ( ( ( ( ( ( ( h8d_˗/Ѷ Iʅ1;f E,bSs= W\3k~OSx ZͮwO2,=ɲ1R*_$UNbWB$REK C L#.)MX;nl;ؙ=w1Ãt3}qp{{^z9ok7_1=>w~x=~7st*?|u/ͻ<G/2/'$} #Eއ?aƁ[|((((((((((((((((((((((G1M#3M#?6%C޻._>zЇX"C>w>iE,bXCx^~o_Zq+gx+oU<<{³ OZr_p۴MM6tmC6tmC6tmC6\v-yڕgFkkkkڦ >"Ї;<:=eC,bӏƁX"?~¯Oyգ/8-~OK?O)'_?O/?'~cxw+,u }? 28MCRkGy捫ߦkz?)ߧm|'So/qϹcbXGE?_?~.&[]~~~xBۻorW/ro|I3L,y7'숗?{oS=nYo}???{qL,.q}>L/~Uod1}!߽vX"~_ 6o+{O.>㏾os~v_W?xe'\}|?{&_"ݟ| zo|{o!嫬w|??o~?~;o`?\|z{7->}Ǒ_T쿹b( ( ( ( ( ( ( ( ( ( ( G?g[ˎ}<ߦX"ϳؤ]?~6|オ˷/oӂ_?sC!>wHQEAQEAQEAQEAQEAQEAQEAQEAQEAQEAQE~#}xOq0|m?K,>w]|E,>|t.} 8X"; ߾Wx)Wުxyng|#O捷imچmچmچmZO+/<4tmC6tmC6tmC6tmC6M}E,bwxtzЇX"C>>ǧ3E,\7~\ qrNl|ʿ2Ͽwo?˯IWnsq%?3|~W߼%E'%EOk4L|7~r9/]>>7ӿθ7\^v1E,b_OKoK~6~/|'7x?: o>s^ox_~_on}y|{;/}ϟ?1KUbX/~UodǗH ߽vX"p{{׿_ſ]:=S,r9G[_3/~%;>[?u~Wϼg x'|=;|cm֋O_Ug?X|EAzL,b1 =sbAQEAQEAQEAQEAQEAQEAQEAQEAQEAQEAQE~#NOyG?ZbGg\mꋯE,bG|W{V_[M>&˿?P#o?[/g >/ᚾ%q|Krpg|W9wBwocoʟ#}̻28zEAQEAQEAQEAQEAQEAQEAQEAQEAQEAQEAQG?އ?:dC,>8.ޝw#>"ѽ|'L@,bXbK;'~׊s^98ś\y7?vvOxՒ8?7ަmjkkkkY?3O?׮<4ҵ ]е ]е ]е ]657o!E,>_)CbX }~|4"H8Ǟ!"Ǟ!"}3O42b1 ?G!1[" [Ģ?W_fGy捫NGg|1G:oM~_އw_?9}L,bXĢ{ig4>f?m;q/<2 !H8Ϧ770􌽉Eqg< 18lǁibbo\z_Ǘ }Xo_:?O?O?O?O?O?O?O?O?O?O?O0ܼ]۠ǗXyEw߸JSoE,bXfig؛X C؛X 4ydCo4ydBo$ybba<180"o|Ǘ%z|Ibcłbb`XX,X,, łbb`XX,X,, łbb`XX,(S~65z|Ӈ\mꋯE,b،cOX}4>aF~6Ocq#b3=CL,gC0=8 18 1y42zX1. z|_2=?988`XX,X,, łbb`XX,X,, łbb`XX,X,, ł(w=bǗ}xX }xλ|CbX }]>q E,b1wx^}k9SU ^s'||tO?>fbX"E,bX"E,bX"E,bX"EOk4s.Gįy>_>:CreGX"E,bLWx_??-bX"E,bX"E,bX"E,bX"KǗ/;>yoCe%*KT,QYDe%*KT,QYDe%*KT,_/ѭ65/;/Wi-E,bX"E,bX"E,bX"E,bX"E,bX"o|ˎǗ/;bk38?;38?;38?;38?;38?;3xtvF[?}ˎǗ}Bql8?;38?;38?;38?;38?;38?;Ggg-Gz̍9.ޝw#>"ѽ|'L@,bXbK;'~׊s^98ś\y7?vvOxՒ8?7ަmjkkkkY?3O?׮<4ҵ ]е ]е ]е ]657o!E,>_)CbX }~|4"E,bX"E,bX"E,bX"E,b>û+ >KNrp vϹE,bX"E,tW\\lE,bX"E,bX"E,bX"E,bX"K.//麖kX,Eq@QPEq@QPEq@QPEq@QPEq@QPEq@QP…麖ˎ5}*M%E,bX"E,bX"E,bX"E,bX"E,bXĢ^pu-]u-'gqp-Xbqp-Xbqp-Xbqp-Xbqp-Xbqp-XܢM?E]o麖kloS_|E,bX"E,bX"E,bX"E,bX"E,bX"E,bǼ(E׵t]K6qAÛ,n8[,n8[,n8[,n8[,n8[,n8[zO躖Ǐ/[}xX }xλ|CbX }]>q E,b1wx^}k9SU ^s'||tO?>fbX"E,bX"E,bX"E,bX"E,N|->:ǿo\6_} g7=ppÇ=pp拊ey|K1E,bX"E,bX"E,bX"E,bX"E,bX"E,bmڶmijijijijijijijijijijijijijijڶmڶ }*M%E,bX"E,bX"E,bX"E,bX"E,bXĢ^pж mж m45MS45MS45MS45MS45MS45MS45MS45MS45MS45MS45MS45MS45MS45MSӶ mж _|Qq귩/"E,bX"E,bX"E,bX"E,bX"E,bX"c]HiۆmhۆiiiiiiiiiiiiiimhۆˎG%C޻._>zЇX"C>w>iE,bXCx^~o_Zq+gx+oU<<{³ OZr_p۴MM6tmC6tmC6tmC6\v-yڕgFkkkkڦ >"Ї;<:=eC,bӏƁX"E,bX"E,bX"E,bX"E,bˮ]_kW~*ׯ]\v׮rU_kW~*ׯ]\v׮rU_kW~*ׯ]\v׮rU_kW~*o|o}o{ v7ؽ`{67X"E,bX"E,bX"E,bX"E,bX"E,bX"E,boR[zK]o-uR[zK]o-uR[zK]o-uR[zK]o-u45'>cUzK,bX"E,bX"E,bX"E,bX"E,bX"Eo՗R[zK]o-uR[zK]o-uR[zK]o-uR[zK]o-uR}~ߡX"E,bX"E,bX"E,bX"E,bX"E,bXĢゟ,ߣZzK]o-uR[zK]o-uR[zK]o-uR[zK]o-uR[zK|M}H,>w]|E,>|t.} 8X"; ߾Wx)Wުxyng|#O捷imچmچmچmZO+/<4tmC6tmC6tmC6tmC6M}E,bwxtzЇX"C>>ǧ3E,bX"E,bX"E,bX"E,bX"}LsqO8yp8y8y8y8y8y8y8y8y8y8y8y8y8yNO9}Ӈ9}Ӈ9}Ӈ9}Ӈ9;;ij,E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ^]O4z{A^Po/ z{A^Po/ z{A^Po/ z{A^Po/ _}ɇi-E,bX"E,bX"E,bX"E,bX"E,bX"Me=>W-z{A^Po/ z{A^Po/ z{A^Po/ z{A^Po/ _qx{z{A,bX"E,bX"E,bX"E,bX"E,bX"E,bǬ_R臜?: z{A^Po/ z{A^Po/ z{A^Po/ z{A^[7~|L,>w]|E,>|t.} 8X"; ߾Wx)Wުxyng|#O捷imچmچmچmZO+/<4tmC6tmC6tmC6tmC6M}E,bwxtzЇX"C>>ǧ3E,bX"E,bX"E,bX"E,bX"ЇqqqqqqqqqqqqqqqqqqqqbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,_v銷&)Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!,y=>9ˮ%E,bX"E,bX"E,bX"E,bX"E,bXBޛr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!G'֛{teX"E,bX"E,bX"E,bX"E,bX"E,bXw]!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|t!Gr|tqqgb{wGXbG٧0E,bq/] ^+yor孊vOx}=WKn> nxچmچmچmچˮe><_LH6tmC6tmC6tmC6tmCܼA߇X"~yG }E,b1{|18X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"mSsx.?6{.{.{.{.{.{.{.{ǴX"E,bX"E,bX"E,bX"E,bX"E,bXĢkk>:w.{.{.{.{.{.{.{.{.~pOh-E,bX"E,bX"E,bX"E,bX"E,bX"E,ba=f缻(x{{.{.{.{.{.{.{.{.nKb1;G }E,b1{wOƁX"8wNxrpƋ7OVo~s'<{>%7nq~7oMtmC6tmC6tmC6tmeײ~pg~]yyikkkkmjnޠC,bX }xãS>"G|z0X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX".yܵ\ ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]p6tmC6%7nq~7oMtmC6tmC6tmC6tmeײ~pg~]yyikkkkmjnޠC,bX }xãS>"೿Oy|1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1C> }0aЇC> }0aЇC> }0aЇC> }0aЇC>1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}ЇC> }0aЇC> }0aЇC> }0aЇC> }0aЇ}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}L1}ЇC> }0aЇC> }0aЇC> }0aЇC> }0aЇ}L_ޝw/.bX }]>q E,b1wx^}k9SU ^s'aSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚MfSTk6՚M{1}L,bݻg~4"E,!t/s/x8畃3^yʕ*s=kyn'_-q/ymڦkkkk.|t.} 8X"; ߾Wx)Wުxyng|#O捷imچmچmچmZO+/<4tmC6tmC6tmC6tmC6M}E,bwxtzЇX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ѽ|'L@,bXbK;'~׊s^98ś\y7?vvOxՒ8?7ަmjkkkkY?3O?׮<4ҵ ]е ]е ]е ]657o!E,>_)CbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbG٧0E,bq/] ^+yor孊vOx}=WKn> nxچmچmچmچˮe><_LH6tmC6tmC6tmC6tmCܼA߇X"~yG }E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bݻg~4"E,!t/s/x8畃3^yʕ*s=kyn'_-q/ymڦkkkk.|t.} 8X"; ߾Wx)Wުxyng|#O捷imچmچmچmZO+/<4tmC6tmC6tmC6tmC6M}E,bwxtzЇX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ѽ|'L@,bXbK;'~׊s^98ś\y7?vvOxՒ8?7ަmjkkkkY?3O?׮<4ҵ ]е ]е ]е ]657o!E,>_^NIDAT)CbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"iϴOU|p\cq^BelL0x2rD`xYIثceIgn~K|K/Ճ;]O:NCxt<ӱ?_r_xONCxt}/o~{}雯t饷zpv˗~Ixtt˗:?7Ydɺ8W_.M,Y/^y7_============}?Գ=Wz |^B/_yW^+/z |^B?zw~gK/z |^B/_yW^+/z |~~J\{gK/z |^B/_yW^+/z |~~J\{dɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%Ksk޻=~t,YdztaOjxFyazA|~O^?k'їJ^zgw|Gt::NCxקc7WןGNCxt~Q?~?['wQ?~?ÏG}>~Q?~?['wQ?~?ÏG}>~Q?~?[]y}xV,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yd]۵7^dɒ%K֣ {{WƳ7KofU{~K|K/Ճ;]O:NCxt<ӱ?_r_xONCxtw}?]>w}U_=׃g=փg=փg=փg=փg=փg=G~oGYYYYYYу{[oу{=փg=փg=փg=փg=փg=փg}^/>n^s%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%Ksk޻=~t,YdztaOjxFya Zxi_|ro}zOt˗:?7Ydɺ8W_.M,Y/ҋշ>>>>}oOog}g}g}g}g}g}?pZ?^O=ֽ;۽;۽;۽;۽;۽;ۃgvzp{gwwv{gwwv{gwwv{gwwv{gwwv{gwwvzv,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yd]۵7^dɒ%K֣ {{WƳ7K7_s+}o}zOt˗:?7Ydɺ8W_.M,Y/W~O^~O>﷿~Oۃ?/\y~Oo?Kʟungwowvvgwtnܻ۽tvvgwowvvgwown/駿OӧO?Mo{?ҕW{wo[}xV޾_?n~W[}xV޹Շwn[ݽ?ܛYgwo[}xV޾_?n޽q;έ>ss{?>s;έ>{~ǗzW[}xV޹Շwnu^xr7ɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%KŹ]{?H,Yd=wo<{o=?|^p~x''׾AOt˗:?7Ydɺ8W_.M,Y/칫>my<~o?7}ܿ׿_]>~o?7Ǐ}O?ҕW~чwnuܾ_k۟w[޻y;ovܾ;Oiwݹ}o_W?zƍܾٝ7sfwݽs;ovܾٝ;׿?ٟuܾٝ7sfw^:?7Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɺ8koGɒ%KGgo.oo37w?gnoҥٝ._Q'NCxt}K><??跟^˯v֍nݼޭ{֭oo+_o׻uzn^έ'۷ntnݼwzov]Kkݺy[7w֍~ڟ۷ntnݼޭ׻{~_ݺy[7wnݼޝ[7Ot~ndɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒuqnx{Ǐ.%K,Y.];/=[?\>gn~K|K/Ճ;]O:NCxt<ӱ?_r_xONCxtͣ/tݼ~7o\ݾyg?_ίun^=w^Wun^ݽ}~_ӾW7W{_uݼ~7O'ݺA7w/B_?_ҍtݼ~7O:?7Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɺ8koGɒ%KGgo.oo37w?gnoҥٝ._Q'NCxtbW~u|Г߻u/gy7>Uխoo|?'Su{|?{W]^E//۽γ']W]^s/u,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yd]۵7^dɒ%K֣ {{WƳ7Kzꇷ{z}377_KoN/NCxtw?|S?ݓ߿k'їJ^zgw|Gt::NCxקc7WןGNCxtΥs\zgb/x~w;7^M+~曽s޹f\{w{\'Իo;koƫϿ+?_eߥ?}w~w;wuҏ_ݷkoε7{O/o|?_Ov7{ڛs޹fs˗~t~ndɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒuqnx{Ǐ.%K,Y.];/=[?\>gn~K|K/Ճ;]O:NCxt<ӱ?_r_xONCxto췿鷟>9]sף s//ε7{7z7V?Og7z7z7z7zڛ|woo[?WKs._a?zwooWUwax޹foFoFoF\{˗~t~ndɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒuqnx{Ǐ.%K,Y.];/=[?\>gn~K|K/Ճ;]O:NCxt<ӱ?_r_xONCxtgn~K|K/Ճ;{o]Ir$SNR,KDXr2M#D\ܥdqI! 3s[ b9<9|>Ocd׋[7ߣmе ]е ]е ]е ]G<ܳK׸zJ6tmC6tmC6tmC6tmC;E,.ruuI,D$"HD"D$2|xC~x8:<8:<8:<8#~}C8:<8:<8:<8#>x~}GqtxGptxGptxGpG|wX-!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,.p|xgOzzI,bXex7}{ym/:k/X›xƒg*n;ٗܺmmچmچmچm8ZV?g_Skkkk [7X"}د}E,bqه?:㏹zzI,bX"E,bX~Ƚ;{|o8C,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX\rX"[y%o+^uw\{ ^7%lUܼw/u= ]е ]е ]е ]p޵>=ϮttmC6tmC6tmC6tmC6fn!E,._3.XG|r1WO/E,bX"E,bX\!>Ã<8c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>cX"e)WO/E,bX< uW_ƽx}1;[g\w͵K^x/XV{G<>[7ߣmе ]е ]е ]е ]G<ܳK׸zJ6tmC6tmC6tmC6tmC;E,.p|x!WO/E,bX"E,bX\w/އ{6wܽswnsm޹;{6wܽs{n|{ܽswnsm޹;{6wܽswnsm}o]}xwnsm޹;{6wܽswnsm޹;o|`ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZ^-YWK֫%ՒjzdZbɟ|OX"e)WO/E,bX< uW_ƽx}1;[g\w͵K^x/XV{G<>[7ߣmе ]е ]е ]е ]G<ܳK׸zJ6tmC6tmC6tmC6tmC;E,.p|x!WO/E,bX"E,bX1)կY+żb1X+żb1X+żb1X+żb1X+żb1X+żb1X+żb1X+żb1X+żb1X+żb1X+żb1X+żb1Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^Q+yE=Wz^WT>X"=<%E,bᕷK޸=W|﮹xc o>K٪yg_r{kkkkY}{]WWOچmچmچmچmh'nݤC,bX\agg\!e)E,bX"E,bX)ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 a0l ða6 Æa0 aðpu~濾EXLJ|𔫧"E,^W޺ϫ/ywf_3_%/o,yf#}ɭ6Oچmچmچmچe#Y~vk\]=kkkkm0uE,bqه>_qهX"}8:<ӇX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E, y5z= E,.p|xgOzzI,bXex7}{ym/:k/X›xƒg*n;ٗܺmmچmچmچm8ZV?g_Skkkk [7X"}د}E,bqه>} E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"} 'XLJ|𔫧"E,^W޺ϫ/ywf_3_%/o,yf#}ɭ6Oچmچmچmچe#Y~vk\]=kkkkm0uE,bqه>_qهX"}8:<ӇX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bݷ/ߡ}=E,.p|xgOzzI,bXex7}{ym/:k/X›xƒg*n;ٗܺmmچmچmچm8ZV?g_Skkkk [7X"}د}E,bqه>} E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"} 'XLJ|𔫧"E,^W޺ϫ/ywf_3_%/o,yf#}ɭ6Oچmچmچmچe#Y~vk\]=kkkkm0uE,bqه>_qهX"}8:<ӇX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>cbX"E,>;O'e)WO/E,bX< uW_ƽx}1;[g\w͵K^x/XV{G<>[7ߣmе ]е ]е ]е ]G<ܳK׸zJ6tmC6tmC6tmC6tmC;E,.ptx?aE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢig|1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1'ǜszr1>E,bX|7|wh|O,b>S^X"xz^y>{c^}˷θko7#^䙭x|%nG"e|}vebX\O~+bX"E,bX"E,bX"E,bXB\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\w\wX"E,bX"E,bX"E,bX"E,bX<;ͯq{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fvٛ7eol.{]fv=烛>E"E,>;O'e)WO/E,bX< uW_ƽx}1;[g\w͵K^x/XV{G<>[7ߣmе ]е ]е ]е ]G<ܳK׸zJ6tmC6tmC6tmC6tmC;E,.ptx?aE,bX"E,bX"E,bX"E,{l3vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{-vbg{_N?&E,bX"E,bX"E,bX"E,bX"Gq{m?r|1nǷ>&E,bݷ/ߡ}=E,.p|xgOzzI,bXex7}{ym/:k/X›xƒg*n;ٗܺmmچmچmچm8ZV?g_Skkkk [7X"}د}E,bqه>} E,bX"E,bX"E,bX"E,[~`[ܽGا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/ԋ}>bzOا^S/sfmX-yzX"E,bX"E,bX"E,bX"Ebܞq 41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M?pſWo_E,bX|7|wh|O,b>S^X"xz^y>{c^}˷θko7#^䙭x|%nG"e|}vebX\O~+bX"E,bX"E,bX"E,b'OB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)O?RJB)R J)R(PJB)R J)R(PJO?č/XX"o>X"}8><ೇ\=$E,b2}^}Ǽ6oq5o,yGxc3[7Kn|yB6tmC6tmC6tmC6w-s/])]е ]е ]е ]е m٭}E,b>W>">W"E,bX"E,bX"E,bX"OcVbX"E,bX"E,bX"E,bX"cnG} @)R J)R(PJB)R J)R(PJB)R J)R(PSB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R 0B)R J)R(PJB)R J)R(PJB)R J)R(PJB)R 4O.R  ib&`&J)R(PJB)R ~'n|ŊX"w~|"=<%E,bᕷK޸=W|﮹xc o>K٪yg_r{kkkkY}{]WWOچmچmچmچmh'nݤC,bX\agg\!e'l~"E, tqq~.y9E,bX"..E,b'uV%S)R(PL4~9?8X"E,ba]`X"E,bX"E,bX"cn>qǑq)PJ88888888?l9~O/~#82#82#82#82#82#82#82#82#82#82#82#82#82#?42#82#82#8O?1#82#82#82#82#82#82#X/f?LLedGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGi>ERǑq|y/W ޺ vg4SD)R J)RǑq駟+bX"} 'XLJ|𔫧"E,^W޺ϫ/ywf_3_%/o,yf#}ɭ6Oچmچmچmچe#Y~vk\]=kkkkm0uE,bqه>_qهX"}8:<ӇX"}x3˿˿?SOy=~=E߇˘X$x?nOcb'uV%lGSoۧ xWyo'o_E,bX"'?o|c\=El.<#b'\^`*qǑ2ML0#c)LSa0#8RSaGƱ0 %^y%Siwgg 82DGƱ0M0StqA)q?翸K{kHD"la~qǑo!_~"E,bݷ/ߡ}=E,.p|xgOzzI,bXex7}{ym/:k/X›xƒg*n;ٗܺmmچmچmچm8ZV?g_Skkkk [7X"}د}E,bqه>} E,bϗ|~G>Պ/>j>_!'$&͗|_w3{cbo߽j<.oZ` ˿7x֊2} |7E,bX}ov|گ>gq.[svo'ߵ|GԿC;E,ۻO0#8Ox_8?L)L8888HaB'wS̩>cbGJǟwK }|Gs[|g?iT(dq;O|f,i>sK~zO*>dq< />5[~,?^]:ý3.)?]'?w8;\1qxܽ!'_HGƟxGܿs#ǑqǑqǑqǑqǑqǑqǑqǑqǑR ]\PJaGa?_[?G;{ۿ93y{Ǒo!_~"E,bݷ/ߡ}=E,.p|xgOzzI,bXex7}{ym/:k/X›xƒg*n;ٗܺmmچmچmچm8ZV?g_Skkkk [7X"}د}E,bqه>} E,bX$!Uџp'xٿ_Y;?cw|o?ŧœ~:?0Ƿ_߿oxG#~ǁX"E,p/u?cv_s/g2|K/o{~_7k n=}-ۻO2M??gO╗3>pO?Ǔ'?H)0뛝wa{W̋k=5b={Ϟ陽{&;ҝt! h $@ ppaS\. UNٖ-#LPBTlte밞<}U%|vweww]vwwq3ǿ/=_>wnqo~wƇw;.oo5z}~7? gnlkl{SͿzxWx}|_{x]o;....\|x vwwy;y\ݸs|?1ϼ8cg}~W 9^zo&;vw={yO}+_yg_mvwweww]vw`ܾΡ>'1ׯqg˭ݷ)/Ɖ?{A6?Sw7:F?O>w~+(*uo#><9cv{yϞr7Kgu|k# o_e{ӿ w~?389Ko|g/?8qsU_s͕}93[....op hx7kwq}s_Cл.sK\6_~0p[k19\rX"ŭ7x5j7#bΞ9Kγ E,bKg6y-y:G_#[*&&8cSo]᧨BV Z-ZhзKs߽e٦BV Z-ZhjG3X"Xyuk<"Xi^p;wE,bX~G=LΞ1ӿ7+nי|??~症oZE,M\ |OrJM@V؇qeq_<<7uOKog_] :~_  A^cgپm^[7y9Ư|ΟKڝm^~_G&ַkɯП羻W;]vA/C?;o⧇G7\N_o']}qܹoΝۼnl6;;l6;;ܾ}/czn߾6Ŝ/w=w+M\K:3y]͟}nj+창X>׮\&E,bq }z͈E,bgN҅l/E,bXl/yM;vGWxʾ'w.w=Npؔ[8r)jhjBV Z-rEw/o>vvijBV Z-Z!E,pq^b1E,0=s/bX"qn~qc><&gO/^|oޯ~O'މ˹kYXĢ_Mع?)~^Gqc{Gyyn͛7x_#E,b8,/÷OLyW\J/ͻ'Vew!<{K|_|;[<>ɯqeb> naXY,,HD<ڌW.'Vyp~?{3?%,se?9~(w}g'g8C/_3X?wWnqyE.]擿6;#^<}ʩw8 ۿ<{k3Yʰ0۾C℻p^]G>. '>wGy5^:/tUf\… 9*[[@ɜbb1gXY,,s9 ^<0lo/X,_8o.zxx ?x;c}i]wbNbqebX"n٧ר݌X"y8{4/]8X"",=~cx,}lɫ{ {'"{'sMu#V Z-ZhjB*/]d}cggV Z-ZhjBZ:9|bXb1'Oխ-Xb13y9!E,b>{3?|&?y|9M>zC8Ģ_M9=o=>˃ß~/ᦀ]GټugW2 >|F-$f>~L~u]<}&#]ß|.~Gn£? x߯6g gM9}O"8spBxbA_{d_u(_烟*G"}O}/}{?w_!|w|{λ?‹7n%ȗ4vK>\?}o{ſMǹgtOW|#{4/û,b$&1Åg<$FC8.<,=}ۥۿ߼_ f$xڕ"E,nݼOQE,pi^pE,bEXz8?cnY> bWN6EN6 r}G?E-Z-ZhjBU._Ȟ-6Z-ZhjBV t=r<"bN8Ϋ[[,!bgNsܹC,bX"6iW9ʌ\\:/? ߚ<櫯gWy~c '3l'au2x ~Gx5dUN_#֯d>Ȣ.0/ݪآ.0/ݪNs>uxCwg'yV%?y07\ܼ|'u/g8]|G{K'y|oWNـuN=(Ͼp6%__7^Au>o/=37mi\><ßqA:?|息?‘okƙ?'W6~3n̶~(ڀ= HҀ4 H8,Cߓi_Oe跿?x{|;=wLVeɿ=ƍW0wv2E,b[7oknF,b<=s.gg{A,bXb{?lر[E,b'yE,bӼxwnX"Elvv,"b1Ϲ}{p{g"f`gnb9^"&~.ono2x?{f{7oط믿F,bX"EL,9omv&ΝܹvL,9;9sX,svs<96NI0 C0 C0 C0 C0 C0 C0 C0 C0 CO*~q͛a$` C 1_g0Hb>zAC<0 =Y,lQǥӜv~,,X̍3 Y0I vvޞy%ΐ۷ޞ Cmsgzl3 =0mv#a FC$拠gzgzgzgz }-3}qUO}'&9 _~#Z˵+E,bXܺyg^v3bX,Ӽt<; bX"ۋq~fǎ篳|:'+lrlrρ>65~Z:Z-ZhjBV }\t=[?mZ-ZhjBV j8z0yE,b<:[oUV[oUV[oUV[oUV[oU4 }oUV[oUV[oUV[oUV[oUV[oUV[oUV[oaQ[oUV[oUV[oUV[oUV[9qϽ|ؔҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*} }uGCO*̸OW__"Ɨ7K=W8y-V˵+E,bXܺyg^v3bX,Ӽt<; bX"ۋq~fǎ篳|:'+lrlrρ>65~Z:Z-ZhjBV }\t=[?mZ-ZhjBV j8z0yE,b</{x=<x`<__ŏ>C7E8ڕ"E,nݼOQE,pi^pE,bEXz8?cnY> bWN6EN6 r}G?E-Z-ZhjBU._Ȟ-6Z-ZhjBV t=r<"bN8Ϋ[[,!bgNsܹC,bX"E,bX"E,bX"E,bjGKqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑqǑ7f3&?8/NmbX"E,bX"E,bX"E,bX"HG㗿9UJ7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J7t3J(݌(݌ͨo }cC71o}BfnM}\rX"ŭ7x5j7#bΞ9Kγ E,bKg6y-y:G_#[*&&8cSo]᧨BV Z-ZhзKs߽e٦BV Z-ZhjG3X"Xyuk<"Xi^p;wE,bX"E,bX"E,bX"E,nvzGݣy+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/+K,/#o?=Fb1E,bX"E,bX"E,bX"E,bXO'?~_ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF]7ft݌u3nF7ť/~uX"ŭ7x5j7#bΞ9Kγ E,bKg6y-y:G_#[*&&8cSo]᧨BV Z-ZhзKs߽e٦BV Z-ZhjG3X"Xyuk<"Xi^p;wE,bX"E,bX"E,bX"E,b1YHC3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C3=C# ,s1E,bX"E,bX"E,bX"E,bX"/_Oc?t:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL٘1]gct:u6lL9s~r]wX"ŭ7x5j7#bΞ9Kγ E,bKg6y-y:G_#[*&&8cSo]᧨BV Z-ZhзKs߽e٦BV Z-ZhjG3X"Xyuk<"Xi^p;wE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXz2QUV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:amuꄵ kV'NX[:ᙧ/NquX"ŭ7x5j7#bΞ9Kγ E,bKg6y-y:G_#[*&&8cSo]᧨BV Z-ZhзKs߽e٦BV Z-ZhjG3X"Xyuk<"Xi^p;wE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"7ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjV VbX"u>Ff"X3yyv"E,a<&#_g+E,b'yE,bӼxwnX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"3o }cC71o }cC71o }cC71o }cC7}+}_JW2W4hE,bXܺyg^v3bX,Ӽt<; bX"ۋq~fǎ篳|:'+lrlrρ>65~Z:Z-ZhjBV }\t=[?mZ-ZhjBV j8z0yE,b</~1X"ŭ7x5j7#bΞ9Kγ E,bKg6y-y:G_#[*&&8cSo]᧨BV Z-ZhзKs߽e٦BV Z-ZhjG3X"Xyuk<"Xi^p;wE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bѷ)>^8ɩNrꅓz$^8ɩNrꅓz$^8ɩNrꅓz$^8ɩNrꅓz$^8ɩNrꅓz$^8ɩNrꅓz$^8ɩNrꅓz$^8ɱA^~zzz_/tcbX"n٧ר݌X"y8{4/]8X"",=~cx,}lɫ{ {'"{'sMu#V Z-ZhjB*/]d}cggV Z-ZhjBZ:9|bXb1'Oխ-Xb13y9!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ŭyg~8fu8&o&o&&&o&8+bX"n٧ר݌X"y8{4/]8X"",=~cx,}lɫ{ {'"{'sMu#V Z-ZhjB*/]d}cggV Z-ZhjBZ:9|bXb1'Oխ-Xb13y9!E,bX"ED,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX";lϙ["EE,bX"E,bX"E,bX-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"6sE,b1ٞ3E,b|""E,b|b"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"qUկfewuvwwyO__]vw_ggg}yB,bX<Xb1gϜ ^X"^Ǐ3s<3ttLwzbLژh;h4&1F `İǸDDRTa E!+j=T{WE|E,bXXX"E,bX"g8k6P["E,bX"E,bX"E,bX"E,bX"E,bX"E,bX" E,bX"E,bXff0WoXA,b6?~G/LXĢ &/xj2;f*fg*4;-zSF׆7E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"(vf>gaa>>sͶ7?_ҥy.;|<.37aHB,bXbrb;(E,b@?'i7"E,MXI6c}(kz[t<˪gXm[Ym%ҽ9zwQTeAUTeAUTeAUTeLUr0˗-岮իtTeAUTeAUTeAUTeAU4}uE,bbESX"M91tE,: +__䟿.Z\~69OijXĢNh7 vMSX"Ebn45MD,:vSij4MM]"u]n7t&&uLSXĢiiv4 fw^_3w057GX"uLkڵC3{p=w8Lm3׌GzF.1nhסElnh7Elnk"i7 YX݇82ijݮijM#b:4t5Mmbi75vM6M]n7P["M4MM]Ħij:vjXĢCnjMhb꘦E,45 6z5gH]45uBikڵE,b45vE3x;En7yw2ziN}Ͼ rW7kz&?{[>bbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b1>6ʳ]m`-,ɝ|'9:Ο?>3>o2Ͷ7pi~.\s >,O=w8uhn~:!E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"- ΝXY!Nas卬þ`$# 'p_{z1xj"G?|ݻyC/3!|tҷN;ˑ}'G bQbħw>iZL_g$VssE,j ={YfSq׹ÿ{>=N!S5l_w'5uLf&9{vwLT$x{7=o˱3c(&{{ݻ7^~7,a~=|if\rAvw*SGL]`Er}Dw9^>Og68?z{z+g'-bQ75nK.4poзo/x{~'οͭ_W><ȉAz7_0Z%M]۹[-E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,Fyk5 sز|N_]Os]O14{ #zˇ a >mfhSuko{vkn~:!E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"E2y{GΒd wqŵ7[oګ%`xr~]\u\ͷ}|6M3ڴu;uWv1Vf_#7.o~\E|/sۊ?qqL#_ws=^mZ' zKlSWy;/㳉O+߹z^u7|#|& /#8#6HLF߹;pw|=~̿|&? \3~??rquWŋ")j:n:s͍~f4G_mnkbC񙒦8Îo^Í7Ŀ~G8:σW3_ZC~e?UКF0{.W\tr(;y"n+|۸r_k-"6gvs_5Wx3#;?tl:u ,"K_{?@: #yx~z6=?qíCpx0~n:njnImƫu7|/k9;Emv3C.to]u-7|=_M?-'._}3\s嚯{秩.z||:ZX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bQZhO{xGW3pOmf:6Mlԡij-&1[6JX"g)bX4u8:ɡt E,bvn==#MX7ʚ];ϲjVnaŖaVnaɆtdu]4UYPUYPUYPUY0S>5eKk*:6UYPUYPUYPUYPe1M_o7ubXĢáj!ES~N c~C,bX"|{\恳8s|1>&u_Cp34౵5ElR=|t<¡\Oywx7Vϕ7/~_8{oA>Ȯ-?ϱY7 oӽElC[n_K>{e]/c3akxz~)?gE]smkgp1/^gb\}+i-b3׌#$>/̅#+ytL|u)ߺ|6yfǘFŚ9wO;pgxѫO׾Ow3696} wv`a䭧5wXm`)tf~\s9O=I1owûL]_~+~=&>k?tafO[~d9_qstj`яY>{xۮ{U3o^sLk0_ƽҟk-wv/.2;6s??o>W~jMޟ<)g99XtۏN5eKk*:6UYPUYPUYPUYPe1M_o7ubXĢáj!ES~N c~C,bX"|{\恳8s9Lo.fc躏+k_oE\M"qř;劯^_"7cS_N}R,8xqg>fK:opw /Z155{~~gnOϐ>ď-3_nմ-bapnWm<ŭ'ۋxS8&k \hOb'Ͼŵ r9W|rC:6<|W^~9W|o}o|O6 ]|ã^}3/|0뚺$um ~;goG71|v/߻{u]~OY>8\sg/R4 ElN֯JϹ&8u*W|ro|p$~z7K7aRy?]UMehn<.>e_qOz4~+}/^d;i:s9;ImN3ͻ/{\6)~8iNeKIz-?~?I7Yv-r;7EmX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b1>6ʳ]mhώqwx홇sw{Kq?9w(l{c3#'ٽݻ۽ݻ۽ݻ۽;99t-_NE,bXLNӳ{E,:q:X"E k`ݞ^?ɦ}ceMogY +b0+dA2:Go.b,ʂ,ʂ,ʂ,JNf\ֵzN,ʂ,ʂ,ʂ,ʂE,b\lhXĢ@?'1?!E,bOϽW.bY̮O9vѡ*X& ˯wume`$>UM6eSK^`K9Y9^~W87A#{Yu,xR\sR>W?ԇ>cbf|3~яy+Ֆ:sCGO #'96_YJCmkoe˱i3N3wkEIPϜ[/GQ7L ߾ݟW~|[f8s|PҔkt<ݬxi-b3uz7]=:?MmQ~/3>q~E|\C}~?k,/[?dߨIOqd0_>sϞla]ܾ>:s9!|6ŏxxԍ77ײE,F^w?ޑY.u*>ٲ;xwϛj ?-'.o;a|kz'oÙ|붧E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"(vf09Qu|2f&Ƙ(0}xz[ϓl,)@bnydjbdjr ))&Ǚ^NE,bXLNӳ{E,:q:X"E k`ݞ^?ɦ}ceMogY +b0+dA2:Go.b,ʂ,ʂ,ʂ,JNf\ֵzN,ʂ,ʂ,ʂ,ʂE,b\lhXĢ@?'1?!E,bO+ngqjS7ڑsLx?>s_GzWz>d:5ElR G7rǗ]W?Q6znbw?í7=g C۸xŹqsw棳%C}W>7$7_}Kx$Ebf[GX|MSNCya5cl{_ Mf7yYy#z۽<,{l WndqȯV˟}!~d.~=wg?|p$[O<7_m|iS_:N>^EqvKG誛t<}XiMCmӻX(vj9˖>ʲ_,_?xp1?%3+GX%,w_{#Oعg9[iP>sɝ>+C`ӛ29;Ż{o<1oJNQ[Ģktmvuڔ'M?\r?;> }\Wϝx'~8Z{NL̞Ƚkfj"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb|lgV3j0_35k׏>C])*?/M<~o~Ƀ?]Aߙ6ٺ5f1vi;~$S|!vc+ E,bɉqzv"ES:NX"h7a3'ٴo}mѵ,aVlfl8HAZEYLSUYPUYPUYP3US,_˺ViSUYPUYPUYPUYPvS!E,::xMbX4u1:"E,b,ooIuws|tؤ:ۻ9>:E]زixr5߶:"g8q?YOvl~u''.2{{UmF?wfƇy,&96_O#]@u5GXzv=wtS7Z&3nNQ]8SO$E,21 [7<ÓO<潟21kn>0A,b&%'>;S$4)9~9pqqwȳV^s\8J+Ox4'l zW]ZDZE,\rhK<5eKk*:6UYPUYPUYPUYPe1M_o7ubXĢáj!ES~N c~C,bX"tXĦihbbNE]u4aSD"E]u4a0ihb݄XuM]S[$i-b4m瘟kӮM,b4 ss\0nkjNEl:&& NKsmX"뚹;̵kjt ML,bX4MM EtĴm瘟kӮM,t4?|\]Xu\Ks: vMmn741El6swXĢk:\iBmNMĦnh!E:"HLf~~Ksm:Ela~~Wna~nKs vMmn741M]ijjXĢk:.1ih"bNåsNCX"1Xu\Ks: u4?ǥ9ڴkSg3tX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXljF[-ukS]ed$\mgFN1vq E,bɉqzv"ES:NX"h7a3'ٴo}mѵ,aVlfl8HAZEYLSUYPUYPUYP3US,_˺ViSUYPUYPUYPUYPvS!E,::xMbX4u1:"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"El:9]+ٸ}ʺ&E,bX"E,bX"E,bX"E,bvjX"E,bX"EЮCmX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXljF[-eLONpuN`X>5h Ο?LX"g)bX4u8:ɡt E,bvn==#MX7ʚ];ϲjVnaŖaVnaɆtdu]4UYPUYPUYPUY0S>5eKk*:6UYPUYPUYPUYPe1M_o7ubXĢáj!ES~N c~C,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX",E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b11~?S$f291N9ZӺprYZӺp 9=2ͯQ'"E,&'ٽrzX"Msr8vC,bXĢ݄[n/dӾ1Eγ~FXeFX k{e1MUTeAUTeAUTeAUT%O |R.ZNMUTeAUTeAUTeAUTeAYLM]X"hp.Z4uE,bapCǘX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ{oۊfgYXX`aaXXX`aaXXX`aaXXX`aaXXX`aaXXX`aaXXX`aaXXX_񱋜;ssgpΝ=ùg8w Ϟa0}{{;uE,bXLNӳ{E,:q:X"E k`ݞ^?ɦ}ceMogY +b0+dA2:Go.b,ʂ,ʂ,ʂ,JNf\ֵzN,ʂ,ʂ,ʂ,ʂE,b\lhXĢ@?'1?!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"58}o ش~-ׯel\ײqZ6_kٸ~-ׯel\ײqZ6_kٸ~-ׯel\ײqZ6_kٸ~-ׯel\ײa֭}_}W_yW_yW_yW_yW_yW_yW_y-_e{(i4;C,bXbrb;(E,b@?'i7"E,MXI6c}(kz[t<˪gXm[Ym%ҽ9zwQTeAUTeAUTeAUTeLUr0˗-岮իtTeAUTeAUTeAUTeAU4}uE,bbESX"M91tE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bQ4u,330;3 330;3 330;3 330;3 330;3 330;3 330;3 33ΐ[6mlc1av"E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,aaIDATbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b191NS"hptCbX"&zu{Fxy$o5-ve36Š-ì6’ ?Xݻ(i* * * `*9}j˖rYUt:m* * * * bn:"ESCpբC,b:\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,:E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX?AxgA)ݧ{gݾ}ιԩ3S9e9 EJ*%L*%T@ !J I ؙٙ;էDiFiFiFiFiFiκuKF3ܿw/:\iFWx#;z8Oy׶E7>q so{7-x}>,pۖ'%qpqpqpqpy=z䰷rxWWWiiii%ol4H#޵ӋgH#4go_yq{mn|;M aoZv}Y<-O:KN4N4N4N4zaof_ 888888888Kn߶ iF3ܽkϐFip=x耗VFi yw:oۿooۿov֧yimMiqeeuu^/yw{imյs*K}쌀+++^Z[umu|ViZ_~^Z24Y#3peeŕw~mWN;?+N:wHܵUVΩ4g3WW殮ximյFiq>243W8k^Z93?[~w?r}Ri_}zwa xUnypF箭ziuŕY|ꪗVW\\߸~۽?zim9iFgꊗV][;'⥵UVΩ4H#PWVVܕYFi+sWWV\[]qN++^Z[ume欑֕++2s>9u|ܵ/:Y#3puu?^yz?|ڪksTg+sWWW\[;kqF\]s_\UgꊗV\]Y#4H#̵UVg8|ګ^[9kgziuŕY|ꪗVW\#4f3VWʬH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4?w֭w\ 48{|AWWH#4Ҹ2ǻ=O-г~ʻ-nx7-xÇ]igyf۶<8,9888888#}74N4N4N4N8,}g3Fip^\t>Ciq>}{^Z[FiF/?w}˶j4R\%+?槮\e7gާG<\a٣{{{nW~{nݿoy_aOsE֗u^w7Eg?_k7~«}Л|ăgis_??zϻ{ŋ#~绛{}n={ߍ?~e>Ҹ|?̷_Yo7~ȟ-.>}k«?Y;O6kֹ;z1G>}>17g<FɽO{Ǎ+ٗu}>UW[/*4ҋ^8;?t^/o^rFg\;Kz>Gɟ~/{nޫ7_}ܲ7~{7G~O~wx~zI~O_\W|iO,ŕE_Z' |=#Ɠxh]}?v6zWnO޳^<ׯ]&[/?ޱ׋ϼ+ֻ~…eiFZx=?zzsa~nY8w?v:?9Gg>rW~3n/Y^>Rg4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4xYn~q4H|C]]K#4H~dݻvzzq i ㋇ximUiFip-Ϟ=k[UWWW>_f3}^Z[Fil˿]Muӿ?禇z}{|_X?䏾s}w'.⬑U=|ķɟ:[sf{~ŻwŻ~p7Sp{|w{i#۫?_g?wy˃\ϜW][瑣pϿ^t+k_V>׽FO2}RitGY_'~sn~oOo_YIO/=s7|Ӈ~wvyqzOw_So{g/o\otwOwJz>OoG?Ǐ/^{O}ϕnw^O=yo~gԸ,,nu8v>O׿o]NDio~}?xt'N :~cw[x>S9׼ ~[?џ|o~=?zW^W?֍~O_t>4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4xYn~q4H|C]]K#4H~dݻvzzq i ㋇ximUiFipw~s_W>ٳgݲe>|륵5iFi&Kܵs7]gW&woZW|C~ȯ~kmO54R\%э?,k7\AowynsWgoӫ..w6wݯmkf+N/5n~᠏yn/.>xzj⬑az<_x?zشo}޹~㺏?v^C[*ٲ/׫ExI|U%SGܳ>m<~|{׼M~muo|bG=Ú!~;H#OO֧_ sOlwZУWyH#tv޶ͧݷ Jenɋ^Z ~{?{חwK #~|'ݾtg^qw}~?k/_Wʃ=5o'.{i6i./7SnWaY#3.z7w|ƽW\?u>06|/CuH|:?yly,0t~>}|G ?yCiq>}{^Z[FiF/?]w~C~Co|]vITg>x^Z[Fil˿]M>KܵsU ~o?ܜ?^swŻ{5R\%~͕U/-OU 'lOe \e ,Ͽ=޳밝[ѽtǍ~|K>vǍ~|y⬑"KoW~>ǿx6>?#}7s~ÖJ|6o]{ܷ+yw6/'կ'~[|Kc~+=?w|_ǵEngϺ Wo|W[uWgq_cc8o˾vψ+\t7ms6?{X獴O?߱ɳ3fN'_3_{7~񯞝_-<_ȯ~Z7Oǣ p:/^]+tݺO;fH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hsgݺqǥ H#߻Ǘtue.4H#+sԂ={wkۢ8ǎ~ӂ=|]nyvgOm˓Ò8888888<=r[oWl}+N4N4N4N4Ò۷mq6Ci wE3F3ܷw/:ॵUiFis{^\^'//w߹uVUU֤Fiq>wx_@&f\6|n^u-p^_ys[zٟnڷ]#9oa~՛w_/w|jv~+|?zN[{}Ǎ8/]~g/[7r"OO}]71~|yY~|y⬑F:̫~Wka7~`ٽ{ߍ?~e~aKq>ܷ.|ܷ_w wiAsS7>Foo|Ͻryȕ1Ǽ-.n~3ɟy׹Aُ{74_Ǽ͞8 3/;׽xΧnu__^r:೏?澓GWاly#4θoogNNΉ_οO/w_<:kueew{ؾ_k|v~n=q߹w[_}ϫswn~si\8g_y?{~؍nʌ̓N 4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4?w֭w\ 48{|AWWH#4Ҹ2ǻ=O-г~ʻ-nx7-xÇ]igyf۶<8,9888888#}74N4N4N4N8,}g3Fip^\t>Ciq>}{^Z[FiF/?=w}l-[x58M+++>x^Z[Filmzݵ}1sWg{]]M}^=t~7> m׽敾mWyǣ;Qi|755 wo9s|y+};.W=|ΧC_O|-_c{W7]~2|m{jY7U8[qH#'7ߞs|߫7w<=~O|<כ.?8gx+X9uϞ࡭᷽Wu|_^_7Uo3z sg8=7|\ip__Wuoݗ׽CYoOo}_߼SHW굯WwTg,⯾Ǯ&gz_U]xڥq?KO??ݿ;~^O/>׿KfǽK{ڡK'}^^7E0Ḱo}^k~^t7+iqF_{6^p#Z_?^ۮNK#4^ݻvzzq i ㋇ximUiFipǏuaw G{Q;?.I#4H# ;s4xq3L# ;sdӎS=zOr\4H#]vϞ>鉣Gu./yc.9Sg]iF;ԉ)O/v\^FitgzFZc=rc'].J'ϟ90-K/:;녥As;wd3.gY/, .;;녥A]^.,uiϜ>q)O=c>dyH#4H]:s£Gz ^\ɣ.YpH#4O=/4.KFϝ>t3ӞX8c'yq{mn|;M aoZv}Y<-O:KN4N4N4N4zaof_ 888888888Kn߶ iF3ܽkϐFip=x耗VFii<>xQmz6=cMئG|⧏ҡ^&4H#4H#4H#4H#4H#3ꬑFiFi:#H#4BiFgTiqFFiQg4H#4H#4H#4H#4H#4H#4H#4H#4H#ΨFiuFFiFiFiJ#4HJ#4H#4:H#4H#4H#48iFiFiFiFiFiuFFiH#4H#4H#4Ψ4H#3*4H#4H#Y#4H#4BiFΈ4H#Ψ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4?w֭w\ 48{|AWWH#4Ҹ2ǻ=O-г~ʻ-nx7-xÇ]igyf۶<8,9888888#}74N4N4N4N8,}g3Fip^\t>Ciq>}{^Z[FiFiG???OOӟKkgH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hsgݺqǥ H#߻Ǘtue.4H#+sԂ={wkۢ8ǎ~ӂ=|]nyvgOm˓Ò8888888<=r[oWl}+N4N4N4N4Ò۷mq6Ci wE3F3ܷw/:ॵUiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiκuKF3ܿw/:\iFWx#;z8Oy׶E7>q so{7-x}>,pۖ'%qpqpqpqpy=z䰷rxWWWiiii%ol4H#޵ӋgH#4go_yq{mn|;M aoZv}Y<-O:KN4N4N4N4zaof_ 888888888Kn߶ iF3ܽkϐFip=x耗VFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFϟ;͏;.]Fip=t蠫+siFi\ݏ|޿n?]q7n?]q7靛yGGOw?gyf۶<8,9888888#}74N4N4N4N8,}g3Fip^\t>Ciq>}{^Z[FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi<[7?tAiq>{ҡ̥Fiqe}~՛7}Io''''OzOɯ?~Ӌ'ܶIaiiii\F9쭷+6޾qpqpqpqpa۶8!4H|wH#ۻڪ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hsgݺqǥ H#߻Ǘtue.4H#rv|a^σ/ <>σ/ tBiq½wo6MiFiqs>>|w>;w/Z!4Hѣk????_;O缕Fiu5FiFiqչ/L'>J#4H#4H#G׮4ҺytJ#4H#4H#4H#4H#G׮4H#4H#=H#4H#4H#^u^H#4H#4H#4vH#4H#4H#4H#4H#+pU#4H#4H#4HoڐFiFiFiFiFiFiFiFiFizH#4H#4H#4H#4H#4H*Gܿg/q6H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4xsGF+3n]K#4Hznw:l:q68NM'ΦgӉ}۷muS|na80wq;s =\n77:sa80wq;7ܶuH#4WvH#ݽ}ǏmJ#4H#Gyw}ǟVtǥF땏lo|^x^͛ow/rFZ_H#4H#u7\qJiFiFZY;8=xXZYp[|!iFiFiFiFie'xCiFiusK*4H#4H#4~./|U#4H#4H#4H~_XH#4H#4H#4H#4H㊥o-몑FiFiFI?ug FiFiFiFiFiFiFiFiFi]s'oO\4H#4H#4H#4H#4H#.vs.FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiÇt8"4Ҹ^d.ϞqZiF+|p6w}i 'wGH#4Ҹ^۷N8NM'ΦgӉtl:qlm[._=x[ro8sa80w8sz5Wnͣq;sa80w mj4H#|x†k*&~׺yQo셾}?vljcw|ÿzօ׺o<O}E~Gg򦏝[Nm_|'LQ?ֿ ֭O\-}?N+Η68|BO=TsE=*4f;~wmxIC_/bG}'f7}xk4Oo]| ~\HՆyz{=/?_ݞ|^\䠷zU|)'O}n__%?vمwi^SN ~7ɝ~s'W~' ]3z_v9dO|~Gzp^yÝ~'N?O쳇.xԫ/ORӻzͣ+iFiFiFiFiFiFiFiFiFi7;6H#4W8ٽg-f8p@r>3xQ|<~4H#4WO}Ӭ=ݽ:~9ٳo/^9Y\={;}n_}<2].?u˟}zC~S_q/K;O7_{n;;yW'_=_^~}_s~ckoϾ̟n_sg~'.; zbW?ϻ?^ow+;?]~_syƿ7s{i^xOԽ? >5HcOOCO<ϯzo4ۮ|߾ן{޶+oӽs=;v/rj{E]Ӈ𣧝篞|޲Gi'd׻/{ާ+_֯­\uHqӏ~zr{>?y7}B1}|zc'.ӷ!6=6ʯ\~zz%4yO?o9x>_'8y|o'}ߟ쵿xqFZpr^y.=kv/ٟ_w~ݿg}?7\__lwۼ+ݽXZ#?^z׼KNw\3Ss=.WGm^w*4m7\5LzUNWxkw=+G4H>{fo:ByU#n/7|+}>C>rS.rx˕߿ӧ\zHK~7~lz|}_\A?j7=6>M_uO?Sz%n;t9ggs~زjI? '}{_vp]߻|G>_5W=^tʅsz[vڧ=?䧿g7kW.^Gz?yWƾ޷^/}˿K3}^?v7^5?s;O|ҽGz{w~sϸj?~s{Oz܏v|yJe%yư6%;>n|e/WVG]5R\m#/ ?]_-)Yo϶97=z~R?}]bcx^I#Ggg''w]~_w7p}4z 5 w{)y߁ Ww{^׽oZ/8?u՗^{ܵ6/8SWn>O|?z5_/>s_:⪑az}yهn}g|]Ł^tʅn{o~w3>ඃKi=z[>!OYozl}_\A?j7=xڛ>|V~짞Kvpjox_#{1GxO௯+yݻw|yoH6n}YWp떻q;sa80w1ܳ^{Uops0wq;sa8|m[Z!4Hz;k^!4Ҹ^ݻ7zئ4H#4x!p˷OxꩧտGUUu^[cǤFij~i[>q7/rw} νڧ=^xNoNfOk/K ]nxgSO|I}9]_{ӏmww|֧Lwzo𥃇\w35y2{˯w{枃#7=~?|~s?Q׍W_>v[v{gW/sYnz[?u՟8y5O=7yܿ+\+4yO몟gy~+˅} .{`͞O?{iq^q;{|#zn?}{`Uc6^9>~y/ܷEyW}p'╷m靿.O<|p#pŻ{w;}vo__Zq.˾}=߾;cҸb;9~Oσtى'G^۷=':/⯎4:<6g]osˋG\5Һ>=??M_Z}vǭr|/8}n{i>yW'_=_^~}ɇgvߑgާѫ{GG=zt|3Ͼ̟;~{gu?}y_|GyO}_:[1GOˏ+:/bOn>~O:mtw='/?}O?viK⣧O~߇|ԟ_^r-4p?{z.^>tW?/mwyjr?|{.]r__wq>O~w{MiFiFiFiFiFiFiFiFiFiFz{a4Hzݻ?{ͣkiFi\N'{M'ΦgӉtl:q6o6u}j<-w970wq;sab|g|M7Qa80wq;s۶nqBi w>tBiq½wo6MiFiC~{rZ{կ^UU=z?<~4H#4Wӿ/]}gjt_{շ|VnF^;2Ə]}|m|7;7T)n%~~NW/y>o>?O~soGopV_ /=͟|o=Oۇ~{և뫵F {'ӗ|}C~ |'x>/|PiqZO]C {xqq z~{hYW48?9?|ۉ'zg^_vO8O=+ͧ^:,Tip?}2Oϧ}G_j\u{N97~wy8K>GzxIye^ûkSw{ O\Ǘ_lO=O'[O_'9^yg;v`4B͡SN𤷿K? ?r6}{'_#|qFY#DO3ՇC_to]~*>[~jڍ۟]')o;o,;;?yѥNO} 3٫c +׋57|7yix≧o._/}jai]_7w≧K>=w>Pi.}cͯ^qIy{+nx.̷9z}uQ,|eV{}I'~۶q-_=<5G >_ '/zC]/FiFiFiFiFiFiFiFiFiFiÇt8"4Ҹ^d.ϞqZiF+|p6w_þګ?)4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#+>O伮iFiFiFiFiFiFiFiFiFi=z[Q^uH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HCoxw:lFi\p{gϸyt-4H#>};dtl:q68NM'Φͦn߶սOՃܺ.0wq;sa8]/<^so<80wq;sa0p-VH#4Ҹ^·wWH#4Ww.ͦ?)4H#4ҸyǏ______cnnuEFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiKNv?DiFiFiFiFiFiFiFiFiFi\1ϾH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HCoxw:lFi\p{gϸyt-4H#>};dtl:q68NM'Φͦn߶սOՃܺ.0wq;sa8]/<^so<80wq;sa0p-VH#4Ҹ^·wWH#4Ww.ͦ?)4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H# W4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hjk*4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4xsGF+3n]K#4Hznw:l:q68NM'ΦgӉ}۷muS|na80wq;s =\n77:sa80wq;7ܶuH#4WvH#ݽ}ǏmJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4>}i 'wGH#4Ҹ^۷N8NM'ΦgӉtl:qlm[._=x[ro8sa80w8sz5Wnͣq;sa80w mj4H#|xWp떻q;sa80w1ܳ^{Uops0wq;sa8|m[Z!4Hz;k^!4Ҹ^ݻ7zئ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HCoxw:lFi\p{gϸyt-iXnIDAT4H#>};dtl:q68NM'Φͦn߶սOՃܺ.0wq;sa8]/<^so<80wq;sa0p-VH#4Ҹ^·wWH#4Ww.ͦ?)4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4xsGF+3n]K#4Hznw:l:q68NM'ΦgӉ}۷muS|na80wq;s =\n77:sa80wq;7ܶuH#4WvH#ݽ}ǏmJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4>}i 'wGH#4Ҹ^۷N8NM'ΦgӉtl:qlm[._=x[ro8sa80w8sz5Wnͣq;sa80w mj4H#|xWp떻q;sa80w1ܳ^{Uops0wq;sa8|m[Z!4Hz;k^!4Ҹ^ݻ7zئ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HCoxw:lFi\p{gϸyt-4H#>};dtl:q68NM'Φͦn߶սOՃܺ.0wq;sa8]/<^so<80wq;sa0p-VH#4Ҹ^·wWH#4Ww.ͦ?)OMzd:kfLOMuOM3t  1YMYd!6جUT)QRiRrIةx#BS[jTo!48OZ\qFiy._ʣ8navXVnavX^tkO_/yƽqa{ƽqa{vܳs]t:zƽqa{ƽqa;o{ iF |⊯޸w̩Fiƙۧ'SKGpjFiFiFiFi<{gDiFiFiFiFiFZgn䅿~7>Q|P9{K^{uH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H㭛Ѓw4HZVnavXVnan;xE=}Wn 8o{ƽqa{ƽqaszwa{ƽqa{ƽq︿&Fi'|+z4H_qyBiq⪻wNH#4H#4H#i/ꛣ~{7VS/{~/¯?}g_>rW}7ͷ;g.opٟ}{oگC48~{_z _{~ܿyy/z?ok?WG'?Moj?}lk7_|Ÿz|{շmCvHx>>-oVSWW8$g?UƯwɿiooFc?/}#~׿կwy_<~|M/}[?~|7_˾v8FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi[7_?x iyl74H#4>vW}at;+r;+v^{xɋp0={ø0={޳-wø0={ø0={qK/8MH#48OW| iyko9I#4H#upF/=}?|я7?u?eG?>g?OOs~#?o xƹ_{~w+>|w|σ7[ᗮ]?5o95zoΏUq>q~ȫOwO<[O_+u/?}࿹~{ßϳS#4ßEW7?cO?/>};/?˟]K3~KS_~~#v5'|{~¿|+n[OC{WwzS_?u}H#FiFiuuzߐFi'\-v8K#4HqWopFi'n;杓4H#4K/x_^|7+}_=[&{ o]>a?x|7G2|xџϝ|3'~{w{ᅽ3zpj4?~OGg_y_=Sxg{}_|;~C~cG?kk?{>ߓ4a?p1iq.}/%?>5LNn+|K̋_G-gOc|?m^z߯o_/x ~?{o}˗L#4ƽõrzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp\^.\/ ˅rzp}mvXꍗmΥFi[7_?x iyl74H#4>vW}at;+r;+v^{xɋp0={ø0={޳-wø0={ø0={qK/8MH#48OW| iyko9I#4Ҙ3w'xr_yyB?'e;Ṁ|o=Oٗ&%___}~?oί?Ǜ>?'}y?՟>~zpn|m|G_i<>zg~=|ͧm[?7δɿe}k;oO^>]7O?ѩFOw_gO=gn?W>џԗ_{?s~w׻[WC^y?o{7>1S^Y?}w}kg3^z?|w}Hٸn3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6n3 6'/\FiFo|݇7F W>x:H#48OK^yr;+r;+w˗.z髾r%/^xqø0={ø0={ן{{˷߽NGø0={ø0={m/]4!4H^~=~O~Ηgw_xڗϿݿW[/U_gnxƹ=IO]5 ΍mw}WFFirzϷ/?E?w_zyw?}=Gzt=u?՗o~_/'ߜ_oڗS#4=n~|;LN'N˟]G?~ҟ'O>mW+ƿzls/9#!gG|y6^?~OWGF'8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8{:Ξ8;/>'bΤFi};~Ciqp3ۍ,4H#]GqX-+r;+r|מ+7^={ø0={ø0zg|t0={ø0={øw NH#4>_qyBiq⪻wNH#^'x:NTiq^coͷ~?}C8ğ}}W|Kz?yKz?^K^_mkݻ>/_#?+~~'~/<85HOַku/.^v\<;~U}ۿG>щx?j曾ۻ>7׼?w63ivjƙ3w_+~gowya]>zQ^?u~;7ϜLLiFo|݇7F W>x:H#48OK^yr;+r;+w˗.z髾r%/^xqø0={ø0={ן{{˷߽NGø0={ø0={m/]4!4HqWopFi'n;杓4HD}|ꋏ{tFiFiFiFiFiFiFiFiFiFiFiFiq>H#4H#4H#4H#4H#4H#4H#4HMOnG|xs_{1?໿_>!FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi/\z\iFo|݇7F W>x:H#48OK^yr;+r;+w˗.z髾r%/^xqø0={ø0={ן{{˷߽NGø0={ø0={m/]4!4Htgo*=WW|ǞZ{p.4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#46~6H#4x>o!48OZ\qFiy._ʣ8navXVnavX^tkO_/yƽqa{ƽqa{vܳs]t:zƽqa{ƽqa;o{ iF |⊯޸ZVnavXVnan;xE=}Wn 8o{ƽqa{ƽqaszwa{ƽqa{ƽq︿&Fi'|+z4Hǽs:J#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4؜KۜK#4H㭛Ѓw4HZVnavXVnan;xE=}Wn 8o{ƽqa{ƽqaszwa{ƽqa{ƽq︿&Fi'|+z4Hǽs:J#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4؜KۜK#4H㭛Ѓw4HZVnavXVnan;xE=}Wn 8o{ƽqa{ƽqaszwa{ƽqa{ƽq︿&Fi'|+z4Hǽs:J#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4؜KۜK#4H㭛Ѓw4HZVnavXVnan;xE=}Wn 8o{ƽqa{ƽqaszwa{ƽqa{ƽq︿&Fi'|+z4H9_zyNTi Jq<gO<9QmFiFiFiFiFiFiq8{q":85H#4H#4H#4H#y©FiFiFiFiFiFS#4H#4H#4H|܏iFiFiFiFiFiFiFiFi9 9Fi[7_?x iyl74H#4>vW}at;+r;+v^{xɋp0={ø0={޳-wø0={ø0={qK/8MH#48OW| iyko9I#4Nԗ_|wNGiFil}~~g~~|OۿqßoܺqF'|++?x.7ykFiFiFZO?k.|ΥFi|Օ7ΥFiFiFi~W_oLGFiFiFiFiFiFiFiFi9sxH#4H#48quW߹=Y+4H#4H#4H#4H#4H#4H#4H#4H#4Hcs?gO?'o|4Hęudz|^ z >rKƙw?!oϳS#4H#4H#4H#4H#4H#48q>~pk_}f^uk6I#4H#4H#4H#[/zzDovqf~<3tmw I"c66lL4&  J F6ڒ*HUkw |,bX"E,bX"E,bXTsik3E,bX"Ez6?6^OE,bX"E,bX"E,bX"E,bX"l܌%E,b17;æk)E,bԡ#C{ E,b;sڭt-:vNEݢni8iupg`:b,ʂ,ʂ,ʂ,XJFr#z=* * * * b uE,bMbX4u8Ý6'"cN?=XE,bXbӆul߶3<[oQX"6K4o+/窋EݣLkνSMLװdG6uBWSG" __??~郼?ph~:qrRI]uߺ]sf E,b^ɥ>K^mbY/XCL/4^m꺦qrRM5,&~~^mbiXZohbbX4"-ϱi$_.7MW"6^y6{=_/WM/䞇^`/Ģk}N.7!>' X"E,bX"E,bX"E,b[ٴa_}_}_}_}~_իWwߦuKEl/>m>[os/eW_j<{mx#M]8gWS4MMEPz=,jX4MMװԫ-bQf'{\}\{ݼfwo^~b^ɥ>K&"MS5,{զN E,bQ5K>K6HLR^M'zD/}>KM~R&N{\ԫ݃pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,b>b';/o~zw~Gb,5Sטџ;껖qddx~FvLU,N~·=_ +81߭~ڢן\c?{WA^~U-t? /m>pul\d_oea6V䥟~n5&+W^̽x7_7抻e>c1 Ł׸yV[n<˸T^n^^~=^~{|22{%+k8֭t}wxrDI^'\Ӽo x!\o_˻^m1|h랹s.x3Gxk9zd++}#z;žIӛcwª77sWڻo{t5swwcKf\¡W4uɁߝ^R.N9Cƫ;\,{/?od͟'E,&7\q%< xi^{oY6_#^~U;\^<΋_o?劋50 y惏|dѿ?S|~|w]w7^{{6P~kV8MxKy~[of.;tnlܸ?>Nu0p~jX$ clyx79Gx`VnE,Ǐw.=bX"ظ?28ӸsN~Gb,5Sܳ%]"RXLwsoⓙY>{Wt\v5\b?'?o_X|7>1hEZ[Ӆ_qUҙ\x59fOyUwk1w9>'Y=w<,u<[-?xa/E=Ň7s9-bX"E,bX"E,bX"رm_|ロ}k}-7n`FRG,bX"6M\k02vR=ƳO_~J. Z./_}Uşw'<;~q~| '?ếN*[˗s0?p;?~f-MCmXĢNZd^~}| ^ˆYbSMlo\ۇfʑ7X?}{LK| ׸D1ŚrϏ_3e'`#Xu%;msC3D]b8Cͭ097Á?㌿>G+Ǜe y˕?|,kz)srtO^3.ս)'?>s O {낫y# ˯W>9}ں)>|Z,80>-bԋ_Ncf|?w </B':feyu0o/v33,gj ,;g9S["E,bX"E,bX"E,m n~;[nF<X"Mq|˿~--bzgﻍ#ڟe;G(֏/sn糲fqc~s{7q(ϗ,o1G. g24E;tgXw 7=&;Kxq,<}7W16y9W(/9wlnOplkt2Z&X"6" ._~;Ʊ֟ؽSyo<Ɩgoᜫ~^|Nzr Mq^|N~e߾cMk\}]M'E,Ǐw.=bX"ظ~-v`||﹇u5=r~!MçW/dQ["3Gq˥wgv9팳q\ȯ?bosݹg?=(unKb,7ĝ38o_saq/v+ E,>y!.:T8\. Kyq\x+x,ί~g}BxS "M|T.|>4.l>4KCU>S=bX")Ƿpŷ2x|"qXҊ+LO}qq7/di,~~]cM/ZOno}:gw9=!|_|P["uLίosgv6|>:c|Oa*flopƩswn[S8_No}Ow>GDX"I-|9x?SF:]M8t 0x>?{#>'}AV_u8r` \-&o駞WSm~~m8nbX"E,bX"E,bX"E,bX"E,bau6K,bXbnvMR.XĢCkG:bX"Mvld-[[t-:vNEݢnqf 191uUYPUYPUYPUYXeG8e'{TeAUTeAUTeAUTeAUX"M>ݽ :"hpp;mN.E,bQǜ8~{vX"ŖXF966}C1MWd}~t??q把D"E,b4Ìg\$q1F9>1͢D. s3]qFG[ ]X݂QFG815lE槧)ʊX"E,bX"E,bX"E,bX"E,bXmp3VX" ֯\'ES!t5"E,::[hi[t-:vNEpbrb (* * * `*>pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,bau91~y`{|=>XyּˮOvP'4uE,bX"E,bX"6uL,8{9]=+ȔjjX"E,bS"EX"ElX"EbX"HD,bX1uD,bX"E,bE,b:"E,bXĢE,b1E,b:"MX"1uD,bX"E,bX"E,bX"E,bX"LN`Ƕ-]>Xyּk5wٱm v55E,bX"E,bX"c2<-\!S["cX"E,bX"uLX"uL,bX1R}=>suD,bX"E,b"E,X"E,bX"uL,bX"MX"E,bX"E,bX"E,bX"E,bX"E,.7cuE,bXΰiZʅybX4uhH^C,bXĢÎܾvvNEݢni[t-wl!&'ذX* * * * ᣬ\^~,ʂ,ʂ,ʂ,ʂX`p`ubXĢçw251ASX"Mpɥ>E,Ǐw.=bX"55_~_~_~_~_~_~_~_~_~^C,bX"E,bX"E,b6o>+~4E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"h/////////~!E,bX"E,bX"E,bd5xo%bX"E,bX"E,bX"E,bX"My]uXLE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXmp3VX" ֯\'ES!t5"E,::[hi[t-:vNEpbrb (* * * `*>pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,bX"E,bX"E,bX"E,bX"E,dGX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢiNԄX"E,bX"E,bX"E,bX"E,bX4MC E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXmp3VX" ֯\'ES!t5"E,::[hi[t-:vNEpbrb (* * * `*>pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXmp3VX" ֯\'ES!t5"E,::[hi[t-:vNEpbrb (* * * `*>pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXmp3VX" ֯\'ES!t5"E,::[hi[t-:vNEpbrb (* * * `*>pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXmp3VX" ֯\'ES!t5"E,::[hi[t-:vNEpbrb (* * * `*>pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXmp3VX" ֯\'ES!t5"E,::[hi[t-:vNEpbrb (* * * `*>pUOʂ,ʂ,ʂ,ʂ,(6P!E,:|{'S4uE,b!wڜ\XĢ9q{b#E,b w"E,b %E,bX"E,b^WX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b:߫-bX"E,bX"E,bX"E,bX"pwK,bX"X]bX"E,bX"E,bX"E,bX"E,bX"E,bX"*IDATE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXX] nX"a "h?đ!X"ES[ٹ} :vNEݢni[:8}CLN3ae@UTeAUTeAUTeAU,V%GYNY UYPUYPUYPUYPe:"ESOwdjbE,:?NK}bX1'c],{"E,EƏc ?>dYC֯>dGg',.V1E,b5&1~K}N.Y541gfPL,bX"E,bX"E,bX"ElfR^M^E,bX"E,bX"E,꺦qrRMjX"E,bX"E,bX"MjX"E,bXĢN}lZ-bX"E,bX"E,bX"E,bX2q8;wlcG~݇_!}ua݇l\]l, :"E,b5E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,.7cuE,bXΰiZʅybX4uhH^C,bXĢÎܾvvNEݢni[t-wl!&'ذX* * * * ᣬ\^~,ʂ,ʂ,ʂ,ʂX`p`ubXĢçw251ASX"Mpɥ>E,Ǐw.=bX"VOo坷^gٽ=wgNɞ;ٳ{'o&Nkby>o}ɿmcٲkYzla~~u<6ʦ&cbX"E,b:&E,bX"I5_NJ߾;YʩxaՋ-bX1E,bE,btio}w ˗?=dMG`E,b:&E,SG"E,"6L2+qź&EbbX1uD,,{W4E,bX"E,bX"E,bX"E,b͛];ٳ{'{vdٽu}K/[o,{"EljMG92WX"uLmX"cbX"6uL,bX"E,bX1E,b:&E,bS"E,XĢE,bX1E,bhw?l`:5E,bQE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXX] nX"a "h?đ!X"ES[ٹ} :vNEݢni[:8}CLN3ae@UTeAUTeAUTeAU,V%GYNY UYPUYPUYPUYPe:"ESOwdjbE,:?NK}bX1'c],{"E,bqZvpaX"6Ko=~/?{Yw7YZ֭y_sNJ&~v[pblaNL!UOO1_T"RN3P`-2?yaOЕ4S'8>:4]X4".G{Zc~c .Kx3s&ctxYdQ{ifNp|tc,$"E9'|_> ~~ǥ|3^扛cMC,bb~##CuD0c̗$݂ f36rc'(rWobQ,N33uOLѵX0c̗4"o.UMcX"E,bX"E,bX"E,bX"ضe360337̝w[oYE,b ݣpO'#If9q.3NMp##L.`݂QFG6q4EH,⊹i*昙`r|a'gJ"^d~8c#ÌOҕHy&022Jf''8(S ,]"ݒcsbjSN0#ǘY(5+G&(ʊxbc#G;\QX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"l܌%E,b17;æk)E,bԡ#C{ E,b;sڭt-:vNEݢni8iupg`:b,ʂ,ʂ,ʂ,XJFr#z=* * * * b uE,bMbX4u8Ý6'"cN?=XE,bXb㆏~GbY>~)~Z>{_ o]yg3xxLOy{\yy\>><̪G3ï8;Gi<\Ewx1Ʀ̱Yvc 5/HUPL㉛/?|~&"oy]x.gzߺv1z{y>?|v SG"NPuEL}y'~DU"+wƝN?k-' 2?8N;&*\w\28Yv>OxJE6ַgX9g^ObCDzKgUX"E,bX"E,bX"E,bX"E"m͛X\\ok_1s>=bXĦ-~_?p9W>n<\2izyOtWVϥ駞wXyzcor&^>YGuCxGo7v_rpp̹WŻ]~pu\q*QWlyQY~\u*vt3+.'λ釬|k~@k^ nz_M<4ο^ Mt?eqsѷdgW9`Ӈ?۾Yg]O_tWE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,.7cuE,bXΰiZʅybX4uhH^C,bXĢÎܾvvNEݢni[t-wl!&'ذX* * * * ᣬ\^~,ʂ,ʂ,ʂ,ʂX`p`ubXĢçw251ASX"Mpɥ>E,Ǐw.=bX"ش#v}aX"X]f;ϿpO~>̭W_a:/o''5Nؿ\vc|:^Q!nowIx߹YGXuyUY.Et\{7 ?_ 8\kιy.Up۳3>1_.7>xy7av\}Ma0iB,bX$!Gyg7qDO{Շ˿/SgΞ&I&ӎd=9Lc3 162W %Ǐ$@%y>aX"./{ŽţXzSx+~ {'\~au./]7^{>_zk^8%2~y?A{^hVݰ~4S-bX"E,bX"E,bX"E,bX"?]i{?OSy']E,bex;<7ek\;?λr^}~׼/'\;[g$v|O ϟ侏)Џ<#oOLo4(zz 'ڇo䶏 9-w3{/s|NrswxM'R/M#ǣxG?!ϟַ՗Oq/9xxß}I>ǿ}r<u_aǤ_>u>޷s7?Ŧ7ɓ"{ůo۸x-;xSͻooa+E,b3k/Wo{}{#Ex[ً%үǛ~k+>;:X" zu?An~g^L,bX"W׼Xbjv/s|' /py#_.Ԙ+g};+ͧC[go>P/x}>N>cOM'jX"E,bX"E,bX"E,bX"x/|5cO?4[>1xtN8v!\Å'{n}7?:>eQn?^ƌ/߹#/ W>2=zAV?_yS'=󦛸x;$x[h^^}f= zfaމ|ouoOqE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXXxlQk"E,˗8A E,V'ۥX"s]>~96zfb^YجWެiww8yγs!20i,Lca X4N#μw wva X40i,Lca,;X"u;_G{g?5?|O|^!NL3"E,bX"E,bX"E,bX"E,xӟ<~~~__77YV<'OgXf%?Vgwy{f|{>~>qn>=z?AN{f>O'OYNr9-?x>sv/rnr^xkS/2Z< [#C̯Ut|?3WYgom,?x'{ۻ+maX"6|_<]>7o?ť'?1G^k|}wßQvVE,]w_#>#maoF,bXyy;[?2O*#>?> ;xWw0o٦?37?n;ɑ_2\{w# Ry]uo3_.'oK=w_- O3"E,bX"E,bX"E,bX"E,XDz~/ڟ۟xo?ep[1͕ >og_m=ҥWY?S>/~WnzpzE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b >uX"E>8\!E1ߜbTbX"u]Ǐ^=fb^YجWl+6ӛ5'yv=X0i,Lca Xiܙ۹w.Lca X40i,e`wbXĢᙧrqo:X"u'Of-E,W^~g~B,bX"<3>8?ɏ9iK%E,bgWx?Z~3ɧerϏ8P^/7P#ƽ_FnOr8䡧V\C,b9f4{|[p|U֧xMu ̕s̽wv>osrod?g;Ώ80["_pō7M7M7n:1["1?w?!q;{T_w{-3y).]3_r`uyb/{+{??ȧ?x/wWL{/[oݯ"~凼x-E,bX"E,bX"E,bX"E,bǎ4 ܉ob98293)?p޻bs q^Vs#d+ۼʑ~wjV _{W™~"1Ù'ছG>7|_;u)#e9o}^ta?Qn6W~uK|3{y\r=.skϑ/RmȻ?yڋkrs(^{s/GV/2|ozGxW/3~qY"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"uvźF,bXĢ|dXĢauoN]*E,b:GXc^YجWl+6z͚vwǏqa<;b,X40i,Lc4r ypn0i,Lca X42syE,bQSGGC,b:'qzX"s+/ijO?v!E,ba]~~y;ߺKRgbX"H²E,bSLMljo].gﺅv/3"Y-׷e6u&E,bV\_0[Ģm H²,\߲ yy;G/\V"Ebۅ[oe[E,bX$fY/lk-b13-5"123["123[sn٦֙e6Eljo,Ŝ,3E,bX"E,bX"E,bX"E,bX"sx~ă?C|~|~|[q. E,,35"Rg9,l,lS2XĢ֙e6ۅ efE]*5fRlyYj-, "svp}2S#b,3sDleĢ֙eH̲,\߲fYfjL,b,35&1˲p}f-JE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXXxlQk"E,˗8A E,V'ۥX"s]>~96zfb^YجWެiww8yγs!20i,Lca X4N#μw wva X40i,Lca,;X"uor_kE,bX"E,bX"E,bX"E,b8,_ПwL,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX\vK^3;wϝsg9w,Ν3\z"-sB,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ba]GX"/_+"sX8SlJ,bXĢΡkw9֫جWl+6zfb^qzc\;Ρ40i,Lca X:;wq;7}.ۅi,Lca X40 bC,bX9p40i,Lca XXvw1!E,y(sE,bQp1No\Xbyx'."E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXXxlQk"E,˗8A E,V'ۥX"s]>~96zfb^YجWެiww8yγs!20i,Lca X4N#μw wva X40i,Lca,;X"u$e!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXB׮X׈E,bX/q჌bX9N)K%E,bQе}sl+6zfb^Y8Yp1.gCe` X40i,\FΝy;︝>p40i,Lca XXvw1!E,y(sE,bQp1No\Xbwg~]J,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"EGoE,bXĢ|dXĢauoN]*E,b:GXc^YجWl+6z͚vwǏqa<;b,X40i,Lc4r ypn0i,Lca X42syE,bQSGGC,b:'qzX"?/JzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2\tq?_3E,b%?|qB,b:Չc<9v"E,vazzfb^YجWl+67kN?ƅz Lca X40ȹ3/psb]40i,Lca X!9"E3OuE,N8͚[bX"CǏq#tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6<=Sk,QX"/_+"sX8SlJ,bXĢΡkw9֫جWl+6zfb^qzc\;Ρ40i,Lca X:;wq;7}.ۅi,Lca X40 bC,bX9p40i,Lca XXvw1!E,y(sE,bQp1No\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,˗8A E,V'ۥX"s]>~96zfb^YجWެiww8yγs!20i,Lca X4N#μw wva X40i,Lca,;X"u8\!E1ߜbTbX"u]黥a>'׹N'9:S'qұ x`HYLf81 ƀ Uڥ-J3*jkiURT~ߵ{޵.9~7m?|||||||#yc;{Cnsv\qp1.8bO{[nz8b\qp1.qNS-K\M{ٳZb%z1Og^_[b%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%^pރsK,q5<5K,WSanm:~lllllllۓG䉇yqq1.8b\'? _n&=b\qp1.8aÇ8MK,q59sgϺj%<9yym%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%xy~%K,T1{+K,K\M#=lmmmmmmmOg9|3:pb\qp1.8wO>~rM{.8b\qp1Îpj%XjsΞu5K,q5Ǐyr>K,K,K,K,K,WުXb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%79K,K, M%Xb%Xb%Xb%Xb%Xb%Xb%ۛ\K,K,K,K,K,K,K,K,K,iroUK,K,K,K,K,q&VK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,VǝKXbn?cVXb%]G{tk#ggggggg۞湳gCxΞЁb\qp1.8}pu薛ors1.8b\qpv<|TK,WS>wXb8~̓זXb%Xb%Xb}̿޾^Ӈ?pE|oGӯ~~?[7ՉXbjrroU'bV{ɽ K,Klq\[ՉXjjrU,WʽNĂj[^M%8V&WXbzozNK,qj[\&WsNIqj[\M&,ĩuor77a%N{Մ%Xbݙ_x􌫽=W~vs7*XԺZޛ\MXbSjzoroKZV+{{Xb%Xp5MVT\x~e_ػm{f{+:K,ZMVX4jroroU'b}W=~{ K,ZՉXbj97ݿ}/_nwN\&W[\&WʽUKlqo5[K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,Kxoq%XjǏyj뽕%Xb%zבtٶٶٶٶٶٶٶ'3>䉇yqq1.8b\'? _n&=b\qp1.8aÇ8MK,q59sgϺj%<9yym%Xb%Xb%ȥ']lSa? |ĕko#?/z;=xA{qw8Y\wyz`81ģ'|=ywϺ Xbmwăz;81'׭;8rOdSqy>z߉'\]^p~옏;ÿ3w鳦8x Wb%Xb|Ľ7쥅K37׼ϟdzz;ly;I/ƩK>~Wn8bѧ۞x>u/%Nzuуy;=tpϚ"|>ص,svO>+}|[W7~ v>7.wmg/ x8pt_zîK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,/^8ouܹd%c?zoe%XbuG6m?|||||||#yc;{Cnsv\qp1.8bO{[nz8b\qp1.qNS-K\M{ٳZb%z1Og^_[b%Xb%Xb%:zn\w_{=W՟{ԟ~/oW{{_=/zUWzk+^wrq\FzK};ӄ%}_kW~W^?xq5c}o/^ꗽ~{<4gϽǫ^}=s ?^ |oȹщXb[g;׽W5 Ow.=_F.<7?q|kꕯuK3{{|k}?vqzիW«Ynw5a>wˮ[~KWz͛_k^距=k=_|}^+}w]e|k^f/3s'ϫ^}╾?ϻۥOW\/}vg'og7|;'w?׿-᪗{~8iۿ_{WJxU Oy?[.Nzu_~׿_rzu]t!k~S\,K,q5ջ֦G϶϶϶϶϶϶϶=9y!O<|sgxmÎqp1.8b]>io:_t7^b\qp1.88;>ti%XbQ;{TK,TO?kK,K,D,-i;C~oo7|?_~׼kpֿ齾5]Oo=1?ٿ9xI_<3Ʒ]'/Uӏ\F\&K,q1k>v!^x'uo̱_^zSws;o}n^W~)}>mwyAo~k~ Un%o-|f='p?7W!/3}NO=;K|~[wy!y:MN2{̏]fO^/m<[woxOxۯywy׾͏r;7g}{|OW}5.y;>zIwOg/ͼ鍿|K>7+?N{͞8{zuɍ|᭳r!/m_ŃO]tg֗\gOO|/|/s}?w x+;[}W!O==_^淏>i;xO>_|>O X"YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJdi%Xb%X =x;,WS>~S\,K,q5ջ֦G϶϶϶϶϶϶϶=9y!O<|sgxmÎqp1.8b]>io:_t7^b\qp1.88;>ti%XbQ;{TK,TO?kK,KܹxGڭ K,'{>N~u_}O^kv1]g7>Go8+?/y[?Ǽ]}=~7tq,n{uof?>1o~[܏t\3K?#?_K^o;_y͍z񯟴s|뇷_o'<qfT/ګ_|GNĂoƧ}Ӿ{S[ڹMGo^?-.̟G{oz/y>Ʒ>'{iωX4<_Fx)43?>}S_m_wyϹ~v՞ĂE~:/D}au;Ӿo{̦o{[<%xo}5n>ߺ}~۷yio3~맾yWc׾sCtŇ}h\OKO8oz[/M>4aS/[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmn[nmnѭ#> wK,Kxoq%XjǏyj뽕%Xb%zבtٶٶٶٶٶٶٶ'3>䉇yqq1.8b\'? _n&=b\qp1.8aÇ8MK,q59sgϺj%<9yym%XbwÎ;$qo5Yb}W=?pv.7пY/?n#?zS>q!/ν]nXIo|;[d%vix̏=\˓<~⻮xv<ǎͼt~?7~B:ٝO{Ϗ׼#Oy'|y=׾~宧\MKg^o<;: /w}ƻ݋}KWѿz1{~{Gǯ7Ggq{㫾쿽_x~'^s͇<>|dvXb}޽OjxЏŽ'y՛z_5oI<_#|1|=u_[[恓y g#ӎ`iz~Ϗ=/{ŻG}Ǿ\_]OOk/.zϮ}^~毶yv{7|;Ă%7q_z׳xyq} 칻|*>yWZ?3׾|v/zo=~[xw[}ۧԓӳw_??W|ćƺ]OUO=>~W{t\%\YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYs=p%Xb%^pރsK,q5<5K,WSanm:~lllllllۓGjto,K촒7|+~ÿ~8s~߳WCgs;Z|{?o y?y[sw?;W%n~ԧ?[x~^ßΏ_c׼~ I|G>.{}]zҝ[z?qgxi_~~O+_᳣i_x|ӻO}Ư|VlϾJkUox}YzO-|~Q/ur"vyW~gw΃~e9)^wቻ;w~O '}O]wOxy'+k~?_yv ~o7>qi7U^G>mߺ|k>=ߺw>iw};tʯ]~۷yir"Xpw>'7~#׿]<>_xCo~9㡯|\S굾檷߿3ǾW}ҏ}~;O^{_=ԽzЇ.=}F?G}^#.WK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,/]8[G\Zb%X =x;,WS>~S\,K,q5ջ֦G϶϶϶϶϶϶϶=9y!O<|sgxmÎqp1.8b]>io:_t7^b\qp1.88;>ti%XbQ;{TK,TO?kK,ĩ3Ow޳K,Ă<yic]=غc=8:8.yq3?+7|G}Yy̞2+/7|`)XԸxO73C)oz7%ycϚT>桿So‡hwx }ϟߟxM~}xMo+v%8ug叿%?<㝷g/8uǏM_w7w6O8]py)Ngݺg)^8xo?Թ'v>v>v>v>v>v>|Ç<1ϝ=9;.8b\qpw1㧽|-7zb\qp1.88xXb%z=G}YWS-WS=q'3/-<zK,K,roWXj5%ZMj-yܛʽ K,roK,Ķk_zrjIo?=&,ĩu^}/W{+W V%N.{yrXb[/\^^^9K,ir {MXprU,q5_NW}azUK,q&׾py땫K,i [*XpooX4M}+W%V+/Nir ^j,K,^sU,.*jr"&׫ɉޞ/ VMK,4^ﹿk׫:K/\^rrE\ir=WW/{8&'bSzor"N.ߛK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,D%Xb%^pރsK,q5<5K,WSanm:~lllllllۓG{=K,K,K,K,K,K,K,K,K,K,K,uSqAd%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%wސ,-K,VǝKXbn?cVXb%]G{tk#ggggggg۞湳g䉇yqq1.8b\'? _n&=b\qp1.8aÇ8MK,q59sgϺj%<9yym%8}in{Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%wސ,-K,VǝKXbn?cVXb%]G{tk#ggggggg۞湳gCxΞЁb\qp1.8}pu薛ors1.8b\qpv<|TK,WS>wXb8~̓זXbSg{vg%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%X"Yz K,/^8ouܹd%c?zoe%XbuG6m?|||||||#yc;{Cnsv\qp1.8bO{[nz8b\qp1.qNS-K\M{ٳZb%z1Og^_[b%Ngy%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xbd靇7$KK,Kxoq%XjǏyj뽕%Xb%zבtٶٶٶٶٶٶٶ'3>䉇yqq1.8b\'? _n&=b\qp1.8aÇ8MK,q59sgϺj%<9yym%8}in{Xb]s颗.^xK{y/]<屢tpK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K\.Fw.]^pދ{y/^8 x/wK,K,ĂSK,K,K,K,K,K,K,K,K,K,K,K,K,K,q ^pދ{y/^8 x/.FK,K,b%Xb%Xb% ·_K?#׾JVN, 8X;"h$pwhazz(͡5,"Y_ﯸj],U$&wZ./` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` .ӥO㯿_|W>+'rlllllllllllllllll`ll_k8_><=?8ӳ 6` O;ݍy<={a>x_<۷^u.]e\e\e\u}֋WWO]e\e\e\eK/nt 6`S}~Smϧ=\_` ?ϼzj 68=y{ʟO^uɫ?y':UO_{s}m 6`NNO\llllllllllllll͗]}|{?w 6` nW>_?llllllllllllll??'~?w]}чx}ue 6`>#GϿ-lllllllllllllG>{?w]?7_~ӧgllٜG~6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 7.f 6`_{ 6T}ml|o޹nax{<={\g޾t2O.2O.2O.2O} ?^ηz2O.2O.2O.2O.<]zqSmxlSl_{q>'NO.8]>G}vsc 6`<=?8ӳ 6` O;ݍy<={a>x_<۷^u.]e\e\e\u}֋WWO]e\e\e\eK/nt 6`S}~Smϧ=\_` ?ϼzj 6xk6` 6|S` 6ਜ਼_}w^_y6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`?VUUUUU|?o` 6`/Ϝ6llllllllllllll_eUUUUUUU;~o=lW/}_}llllllllllllllx7+1_\_` 5yϗs=llllllllllllll`ll_k8_><=?8ӳ 6` O;ݍy<={a>x_<۷^u.]e\e\e\u}֋WWO]e\e\e\eK/nt 6`S}~Smϧ=\_` ?ϼzj 6xk6` 6|S` 6ਜ਼_}շߺ뗏y>l| 6O?뫧6`Ovk^>yl 6` ΗO܍?͍ 6` O__ٍb 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6goUUUUUU͗_?# 6`Oo |v}\llllllllllllll_eUUUUUUU;~o=l6|П_-?|slllllllllllllx7+1_\_` OǷ7?-Slllllllllllllal_믽|l|WO6` 6x>7\xw7zؿx{<={އǃw.n{~3ozyt'yr'yr'yr'e>[/~^]=u'yr'yr'yr'yr.}ө6` OGO<|x+_'6`S߿zzly»=ax{<=><sqGy֫ӥ<̓<̓<̓<./ٰllllllllllllll0lq16l|W+ΗOlϧ{l 6`S}΅ww{{ax{<}xWKyr'yr'yr'yr]f?C_x9wSyr'yr'yr'yr'ҋ۷zTl>χǃ7W6`?w~3` ڻ;y7\ ߼sw.|΅>lSt|>y>)6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`;~ߗ/%_K|G/^˾nmlɫgzz)` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`_<ܟ/}G/^?zɗ/%??O+l<ӧg|z` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6G^?zɗ/%_K?O?llS=llllllllllllllal_믽|l|WO6` 6x>7\xw7zؿx{<={އǃw.n{~3ozyt'yr'yr'yr'e>[/~^]=u'yr'yr'yr'yr.}ө6` OGO<|x͍nn|vs㳛g77>d 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`mڛkonڛkon}vs͵Smllllllllllllllllƛkonڛkon͍7מllllllllllllllllڛkonڛkon}vsՕllllllllllllllll o\ ll^==` 6T߼saax{<={޹wţϼ}Ue\e\e\e\ُ?oo{ue\e\e\e\y-O` 6x>շߺ뗏y>l| 6O?뫧6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 7.f 6`_{ 6T}ml|o޹nax{<={\g޾t2O.2O.2O.2O} ?^ηz2O.2O.2O.2O.<]zqSmxlSllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllal_믽|l|WO6` 6x>7\xw7zؿx{<={އǃw.n{~3ozyt'yr'yr'yr'e>[/~^]=u'yr'yr'yr'yr.}ө6` OGO<|x{~p|߫gl<<5>S<56` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` ΗOWw.,` 6㯿^q|b 6x>{~p|߫gl<<5NO?w[ff a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lͰ6f a3lyz{~Tl|W+ΗOlϧ{l 6`S}΅ww{{ax{<}xWKyr'yr'yr'yr]f?C_x9wSyr'yr'yr'yr'ҋ۷zTl>χǃ7W6` 6w.] 8wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wn܍qp78wnWo޿Ky|:` 6㯿^q|b 6x>{~p|߫gl<luu[VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVmZϧ 6` 6|W/` Oulϧ F<{axxm{/}[:O.2O.2O.2O.~чs~|۫.2O.2O.2O.2Oӥoy:l]|6`S}polllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll^==` 6T߼saax{<={޹wţϼ}Ue\e\e\e\ُ?oo{ue\e\e\e\y-O` 6x>շߺ뗏y>l| 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6㯿^q|b 6x>{~p|߫gl<lllllllllll}ۤAy 9cfgɆ@B0q0~v!dHxr  C iR%Z.JՒ,rJy~}v~>FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi>J#4.7oe//iFi\>{=Kw[n~uۺmyUoxM^yyy<ϓy|4H2p{_bFieׯ3O۾~uۺmw[ׯ]֋7<'{{///<ϓyJ#4.7oe//iFi\>{=Kw[n~uۺmyUoxM^yyy<ϓy|4H2p{_bFieׯ3O۾~uۺmw[ׯ]֋7<'{{///<ϓyJ#4.7oe//iFi\>{=Kw[n~uۺmyUoxM^yyy<ϓylMk73ߗFk}wiE?]v>O_xHxOo/_koz|A||׷73M=~׿]Û7ޛ|_G{ou߹7 ]>|u_Uͷ<'H[_o}UKFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi;oԓ;߻+4Ҹ ޼+XFiqk>/mw[n~~kW 7z yO_xH{;p};nֿO+}soV}o>[g~oL'_o|w_?{k/3{wWއ+oN?wξ?}޿?W [O|/7o7oׯY*4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#wyۧ|]ie _ٿ"4H#g_gv}n~uۺmw[;_ox<+O8O<ϓyO_xH;<'>B֋u~|'U_/Ͽn}!۷OOWv_|ڧy?-7gGxM ?܏w?#Ƶ?ӟ߿%5O}~ݷ/y/_Ti\.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.e2p \.J#4H#4ymzq{wFۛ7|e4H#4.~y%n~uۺm~^W<<[̏[;~>o|S1w^yO F|_}79-w?c_ҿio_{w|ԧ?=w^|Oc?k//=/}w~/Ͼ ٟSo3ɵ_>޼`/?q{%o}_y;麟+o~5K1Oq^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^YܬWn+7땛zfr^__o|U}iFi;oԓ;߻+4Ҹ ޼+XFiqk>/mw[n~~kW 7z y5߼w}ȧ>cH#ßseNw |^G>Ggww~g޺ro}χ_w?Su/]~oWvuz?~_No_>G?Sn^7o^7rW~_}Ril[Oǃxt~_^=w7ް {g~֟7|}_Y1o_!4woO~>k<_O~O7||_CO}w/a~/ܸۏ>??o-To G?'~q]7fp>读|Ϲy ۿe._~|_wwwoG ~'rn=}?~wF0wއ?Yׯm+4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#y\y4H#4ymzq{wFۛ7|e4H#4.~y%n~uۺm~^W<<|4H2p{_bFieׯ3O۾~uۺmw[ׯ]֋7<'{{///<ϓyJ#4.7oe//iFi\>{=Kw[n~uۺmyUoxM^yyy<ϓy|4H2p{_bFieׯ3O۾~uۺmw[ׯ]֋7<'{{///<ϓyJ#4.7oe//iFi\>{=Kw[n~uۺmyUoxM^yyy<ϓy|4H2p{_bFieׯ3O۾~uۺmw[ׯ]֋7<'{{///<ϓy}7zbF4Co2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce |G*Ce 2|^x3=Je ἔ;;rV*Ce ἔWo]Kw{w<{wxp{o郏ݼћƇi4OyhF4}O?'{4tue)2Tp^ʛكK 2rvFo}7zbF4Co2TP[W?y}_G 2TBe 2TP*R2TP*RiP*Ce UiP*Ce ad 2,|r\}nG?T*CexeW*Ce ]חP*Ce 祼zW^rؿx;ax;ǃ[W7{O|4>4OyhF4<' {'=ܳϸ{y)2TRݽ*Ce KO>[oEe 2,o]g?3}٧}xz?ȗ*Ce *_죓~PV}٧>c?8 >3G*CU >N?WF~Ư a;~w?P*C#/_(P*Ce _~LR*Ce8/eﺾUP*Ce8/[Wnw<{wtue)2Tp^ʛكK 2ry|}Q*Ce ]S>+\j_~_?g{~SU2,Kzoog{߯'{?w~O>{|sKf>/z7i!O>ԛ;_̖ K=\.w?UP2yETP*CeϽ|gzP*y)ww|2TP*y)޺r8ax;aM޾y7hF4y|}Q*Ce pwOhrp~Y}_SE}S?gdp^fw~t2ykO/S|˯7Nj9ӿh??% C_~]=]*}~/xɒa;~w?P*C#/_(P*Ce _~LR*Ce8/eﺾUP*Ce8/[Wnw<{wtue)2Tp^ʛكK 2r}S?gd-9 +UÿuK._샯?o}U~ϋ/[{& ?^tdX*ηrx~2TʐW/x2TP*×_|;ïTPK߽㻮/g2TPKy֕ۯw<{w<{n>i|hF4SOzgq}}1OyhF4o'~O' pޭO' K=\.w?UP2yETP*CeϽ|gzP*y)ww|2TP*y)޺r8ax;aM޾y7hF4y|}Q*Ce U)~k~|gRѿgP*R~zGc~'~O@VZr2?_ [ Kd|ϯ?/ڒa;~w?P*C#/_(P*Ce _~LR*Ce8/eﺾUP*Ce8/[Wnw<{wtue)2Tp^ʛكK 2ri|hF4SOzgq}}1OyhF4}7zbF4Co2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce aT/08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 N|,3R*Ce |G*Ce 2|^x3=Je ἔ;;rV*Ce ἔWo]Kw{w<{wxp{o郏ݼћƇi4OyhF4}O?'{4IHi@f`N էsTWiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii*Ce 2d<2 2TplP*4ͭ>uyTP*Ces7yvvcm7vۍvcm7춮M_>+w3 }g;Cy4v=뙗^|w3 }g;CN]8?jKe 2Lcz4P*4۷nɥP*X}2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce !㱷ߔXe 2Tc{pUPlntwӤ2TP*4w[Onnnqguoή^w3 }g;CΣw{Yϼ ./O3 }g;CwUX*Ce aˇՃTPܾuӝO.UPJ_}''2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TǏ=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8ۃc{pl=8aЫ 2Tʐox2TP*ñ=k*Ce X6niR*Ce a˻x-'vۍvcm7vۍvcݸۺ~~7}sgW Cw3 }л=?g^z'Cw3 }g;}wq,2T0oX*Ce Xnߺn'*Ce c/>xϓ˓P*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP=}sb>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>/Kmn~_e 2T>Sc2TP__nnnƝ3?;zE]w3 }g;yg=ҋ/<w3 }g;C gWc 2Ti,WR*CerMwv[_?T*Ce+}o|{\TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2Tٽ\?ƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾiƾi4?>w>syTP2{MUP*Ce8^MPe aMww=O.O*Ce 2T0V3TP*Ce 2TP*Ce 2TʐXF 2TP*Ce 2TP*Ce 2Tp>} ޹W}2Tʐox2TP*ñ=k*Ce X6niR*Ce a˻x-'vۍvcm7vۍvcݸۺ~~7}sgW Cw3 }л=?g^z'Cw3 }g;}wq,2T0oX*Ce Xnߺn'*Ce c/>xϓ˓P*Ce c>64?~ccP*Ce 2TP*Ce \?g8 2TP*Ce 2TP*Ce 2Tko\+/{)wW_y}2Tʐox2TP*ñ=k*Ce X6niR*Ce a˻x-'vۍvcm7vۍvcݸۺ~~7}sgW Cw3 }л=?g^z'Cw3 }g;}wq,2T0oX*Ce Xnߺn'*Ce c/>xϓ˓P*Ce\cc˓O*Ce 2c͓KI~G?qɥo43Tq=yr雯/=9 aryy雯/=9 2Tko\+/{)wW_y}2Tʐox2TP*ñ=k*Ce X6niR*Ce a˻x-'vۍvcm7vۍvcݸۺ~~7}sgW Cw3 }л=?g^z'Cw3 }g;}wq,2T0oX*Ce Xnߺn'*Ce c/>xϓ˓P*Ceȋ?og_T>[;og 2?^+W3wo|]Nߚw8T?K~n8t_z;/7>˜2Tko\+/{)wW_y}2Tʐox2TP*ñ=k*Ce X6niR*Ce a˻x-'vۍvcm7vۍvcݸۺ~~7}sgW Cw3 }л=?g^z'Cw3 }g;}wq,2T0oX*Ce Xnߺn'*Ce c/>xϓ˓P*Cexxmu9SM/wO?+}9+/E2T~~~?'¿񃋝|WW/}oqO=?oG3>o?wӳoh+T*õ7x=}ܻ{ǫ鏾Q*Cex7eWk?k{?3'_k?JaS}o?eqwI~ům'w{ж>{iη̷&GSp+^}eO>+/{oTP2{MUP*Ce8^MPe aMwwSc2TP__nnnƝ3?;zE]w3 }g;yg=ҋ/<w3 }g;C gWc 2Ti,WR*CerMwv[_?T*Ce+}o|{\TP*Cw֯M^y;o_g_|ط|}ǾPV ?_[?kvvηՋ{?3~gsW>zCwxwշUs[~q<ݛ>"*õ7x=}ܻ{ǫ鏾Q*Cex7eֵם]߽/;cz|O+/{oTP2{MUP*Ce8^MPe aMwwSc2TP__nnnƝ3?;zE]w3 }g;yg=ҋ/<w3 }g;C gWc 2Ti,WR*CerMwv[_?T*Ce+}o|{\TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2T^;M˿?W蛯UP2{MUP*Ce8^MPe aMww?'ѣAeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL>ܿIe !㱷ߔXe 2Tc{pUPlntwӤ2TP*4w[Onnnqguoή^w3 }g;CΣw{Yϼ ./O3 }g;CwUX*Ce aˇՃTPܾuӝO.UPJ_}''2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2T+G~g^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WK^wݻw4 2T>Sc2TP__nnnƝ3?;zE]w3 }g;yg=ҋ/<w3 }g;C gWc 2TO-;ښ%a܂,mtBH1c]iN%ipsH 㒠opͻZoos 48'iA{iFiFiFiFiFiFiFiFiFiFiFiFi9⺾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_u}/庾\חr]_^/CiFGiF_Fi߾~aJ#4H7ӛ7Oo|?~z_^ꇯ~q|}>>w~>˟Oc/_~|}>>wqq_9H#4΁v8H#sO~~r}}Fio__~FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi_/i9O4H#4΁ۯ?o|?~zӛ7?~~W>}>>wqÿO'?Gq|}>>w~c 4Hoos 48'iA{iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFGiF_Fi߾~aJ#4H7ӛ7Oo|?~z_^ꇯ~q|}>>w~>˟Oc/_~|}>>wqq_9H#4΁v8H#sO~~r}}Fi_ߋs iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFmiFi?>>Kiq||?)4H#s~xz7Oo|?~zO~zgq|}>/?ɏ/~3|q|}>>w?|H#48oH#4΁>EiqP?_q9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9pFi_/i9O4H#4΁ۯ?o|?~zӛ7?~~W>}>>wqÿO'?Gq|}>>w~c 4Hoos 48'iF^/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;JAIDATs/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;s/;ss iFi?>>Kiq||?)4H#s~xz7Oo|?~zO~zgq|}>/?ɏ/~3|q|}>>w?|H#48oH#4΁>EiFÿ].ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvx^]/ޮo׋zvϿ0J#4H?w׿_H#sw/?LiFi_|?~zӛ7Oo~~<_կ|?|}>>wqχO~~>wq|}>>+@i9w~.@iq<|O/H#4H΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8΁s8*4H#4/}|4H'~SiF淿Oo|?~zӛ߿W?|+>wq|_'_g~q|}>>wg?~1Fiqݷ9Fi}4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H?w׿_H#sw/?LiFi_|?~zӛ7Oo~~<_կ|?|}>>wqχO~~>wq|}>>+@i9w~.@iq<|O/H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#_I#4΁o}g0Fiq~o~Ooӛ7Oo|?ɯ?~O^/Wqq|}>>w???/?|}>>wq㇯iF}\i9'?H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4~K%48}?ÔFi9pGo<ӛ7Oo|?~z'?y_q|}>>w|?ɟ?_q|}>>wُr Fi7rqFw"4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4/}|4H'~SiF淿Oo|?~zӛ߿W?|+>wq|_'_g~q|}>>wg?~1Fiqݷ9Fi}giFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiׯ󿤑F>_~H#48n7?~zӛ7Oo?x'_|}>>w?ӟ?˗|>>wq|}?W4H#sƿ].΁4H{:ÔFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFI#4΁o}g0Fiq~o~Ooӛ7Oo|?ɯ?~O^/Wqq|}>>w???/?|}>>wq㇯iF}\i9Oߟ/7H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4'.48}?ÔFi9pGo<ӛ7Oo|?~z'?y_q|}>>w|?ɟ?_q|}>>wُr Fi7rqFoǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|<ǃx|z~>Giq||?)4H#s~xz7Oo|?~zO~zgq|}>/?ɏ/~3|q|}>>w?|H#48oH#4H}o]eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\eqn\7?)4H'~SiF淿Oo|?~zӛ߿W?|+>wq|_'_g~q|}>>wg?~1Fiqݷ9FiFu9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9p9pAFiq||?)4H#s~xz7Oo|?~zO~zgq|}>/?ɏ/~3|q|}>>w?|H#48oH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48}?ÔFi9pGo<ӛ7Oo|?~z'?y_q|}>>w|?ɟ?_q|}>>wُr Fi7rqFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi߾~aJ#4H7ӛ7Oo|?~z_^ꇯ~q|}>>w~>˟Oc/_~|}>>wqq_9H#4΁v8H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#vsդ:kI!꤀T!@۠i{o9W:8͗8ڇKm}X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX#gX"G+_}91,C>O}[ٷ}[ٷ}[ٷ}[ٷm}#"E=/Ϳ?zX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"8ͻvyrX"E=—o_)gy,dVmeVmeVmeVme[E,bX188uVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr\g:+YuVr1E,bXĢ˷|ȳC>O}[ٷ}[ٷ}[ٷ}[ٷm}#"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,|W_|Ny<˃gy,dVmeVmeVmeVme[E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bz/߾S#Y<˃gy,>:ٷ}[ٷ}[ٷ}[ٷ}[8B,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ˷|ȳC>O}[ٷ}[ٷ}[ٷ}[ٷm}#"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,|W_|Ny<˃gy,dVmeVmeVmeVme[E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bz/߾S#Y<˃gy,>:ٷ}[ٷ}[ٷ}[ٷ}[8B,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ˷|ȳX/~sgKӅ&E,bX"E,bX"E,bz/߾S#Y<˃gy,>:ٷ}[ٷ}[ٷ}[ٷ}[8B,bX"E,bX"E,bX"[kXb#o X?--?ȿ_;/?A]wbEv IŪxoHI*\:dJ2é/(HK2CW@Ì$;Y8Hw3"Rg `C$h|k}1#k4{o~yw|C?(2"(2"(2"(2"(2"(2"(2"(2"(2"(2^y{˿K[?"|}'O}[/dEFQdEFQdEFQdEFQdEFQdEݷy[NWO\\\\\\\<>y]}ܽm}iVڷվmo}[7.|+__{žmo}[jVڷնt"(2"(2"(2"(2"(2"m/U2f[tοoU{O_O_k/=n/2"(2"(2"(2"(2"(2"(2"(2"(2"(2B}/0o[ƿ|ӺQ|G 쓧_2"(2"(2"(2"(2"(2xgyӶo}[jVڷվ^Og/{퍯bVڷվmo}[j[_wZSFQdEFQdEFQdEFQdEFQdEFQd_'kٿ_{zU2f[ 0O{yͿI7'EFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEF/dv~??7^_gsΛ}[jVڷվmj|<կ|ko|uڷվmo}[jVҽwԚ2"(2"3 VSjj5ZMVSjj5eۿ_{zU2f[w=S/=Kӓ5;o~GO>Ljj5ZMVSjj5j"(2"(2jj5ZMVSjj5ZM!Lxe_?'^d?/]>]>]>]>]>]>]yz}>7{MҾmo}[jVzo>]W7ۋ}[jVڷվmom};jMEFQdEF}=======~_ ۿ_~/o=UEFQ3o~-~myw{/׾7=_w|cW>}}}}}}GY>jdEFQd'>ӏ}}}}}}{OgjM oGYQ|G 쓧GރwsΛ}[jVڷվmj|<կ|ko|uڷվmo}[jVҽwԚ2"(j/>{u}Sox~/xƋ7^<ox~/xFf__/~vQ(j|}oů-W{s?~w~ozpx֗?ox~/xƋ7^<ox~?z"(2}}}?/xƋ7^<ox~/xƋ7>j~U{FQ|G 쓧[yƋ7^<ox~/xƋ7^<>s?glK5CFQdEFjz{ק+ק+ק+ק+ק+ק+ק+OO޾wG<3wi[_ڷվmo}[jVͧ3_ʗ^w{{o}[jVڷվm/ݻ{G)(2\ԥVZZMVSjj5ZMVS?_x_ݿO<ū(j|}oE<;_G睻wO_|Q7'jj5ZMVSjj5j]O~f(2+ִZMVSjj5ZMVSU_{|sH+o/>y:~jj5ZMVSjj5ZM3z^dEFQdEFQdEFQdeɏ EFjZ>^.2"(2"(2"(2P#'K_/}KuQ|G 쓧_2"(2"(2"(2VG>.(2"(ZM}σwrztttttttǞ|7mKڷվmo}[վty_no/mo}[jVڷվ{w5eEFQ77ZMEFQdEFQdEFQdEFno/~[?٭nEFQ3o~-{~w~=y;>z^dEFQdEFQdEFQd5e}5CFQ=ؓ~"(2"(2"(2"(2rng~[?m2?7^_g|^"(2xgyӶo}[jVڷվ^Og/{퍯bVڷվmo}[j[_wZSFQdEF)(2"(2"(2"(2"(2"(j|}|-~/~˯7'EFQdEFQdEFQdEFQ3[֗?Q3dEӏ=no/2"(2"(2"(2"(2"(2"|_g|:/!(2"(2"(2"h5]}'4EFQdEݷy[NWO\\\\\\\<>y]}ܽm}iVڷվmo}[7.|+__{žmo}[jVڷնt"(2V=͍VSFQdEFQdEFQdEFQdEFQdEFQ }7fcx?n/2"(2"(2"(2w߲!(ZMϞ~?t{{QdEFQdEFQdEFQdEFQdEFQdoG?򗿐QdEFQdEFQdEFQ>|^"(2xgyӶo}[jVڷվ^Og/{퍯bVڷվmo}[j[_wZSFQdEF)(2"(2"(2"(2"(2"(2S1?'7?̥UEFQdEFQdEFQdEpoY_D͐QdgO?(2"(2"(2"(2"(2"(2?a~Wv菿g~[EFQdEFQdEFQdE>(2"(ZM}σwrztttttttǞ|7mKڷվmo}[վty_no/mo}[jVڷվ{w5eEFQon2"(2"(2"(2"(2"(2"xo|Cyr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'??2CFQdEFQdEFQdEFQ3[֗?Q3dEӏ=no/2"(2"(2"(2"(2"(2"(?}?=o:Γ<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓ؼIDAT<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓<9̓y~OR3dEFQdEFQdEFQdc&(2"h5=yӕӕӕӕӕӕӕ'o߻{~w޴/jVڷվmoW噯~^{kطվmo}[jV֗ݽ֔QdEFjz>j(2"(2"(2"(2"(2"(2f~gg,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,OϾVS͐QdEFQdEFQdEFQd5e}5CFQ=ؓ~"(2"(2"(2"(2"(2"(2մo,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,G(ZMEFQdEFQdEFQdEFjO?v{i2"(2Vӻo>]>]>]>]>]>]>]yz}>7{MҾmo}[jVzo>]W7ۋ}[jVڷվmom};jMEFQd{"(2"(2"(2"(2"(2"(2tiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեUV]ZuiեU"(2"(2"(2"(2w߲!(ZMϞ~?t{{QdEFQdEFQdEFQdEFQdEFQdEFQԚ.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.ҪK.Ҫ!(2"(2"(2"(2VՇ}rKQdEFQ}t듷=;o֗mo}[jVڷի}We^jVڷվmo}[mKQk(2"h5h5eEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQdEFQd5e}5CFQ=ؓ~"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"(2"h5]}'4EFQdEݷy[NWO\\\\\\\<>y]}ܽm}iVڷվmo}[7.|+__{žmo}[jVڷնt"(2V=͍VSFQd?nVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmW(EFQ O EFjzcO>ۋ"(Jyվٷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmoW&~SEFjO?v{i2"(2Vӻo>]>]>]>]>]>]>]yz}>7{MҾmo}[jVzo>]W7ۋ}[jVڷվmom};jMEFQd{"֟|珿8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8Oxw|FFQ O EFjzcO>ۋ"ݳǎ8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O8O[?'8?{tc\dEFQdw߾;o9]=q}r}r}r}r}r}r}{w}co>sΛ}[jVڷվmj|<կ|ko|uڷվmo}[jVҽwԚ2"(ZM77ZMO;ozsVUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU۶zp]oϏfݷ/f(2Vӳ{^dŧ3;ȳOLUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUQ,h5]}'4EFQdEݷy[NWO\\\\\\\<>y]}ܽm}iVڷվmo}[7.|+__{žmo}[jVڷնt"(2V=͍VSFj߼ύ1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111@ty&-˟2Ǟ|CEFw|c111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/K{{(O>|^"(2xgyӶo}[jVڷվ^Og/{퍯bVڷվmo}[j[_wZSFQdEF)طշ?T31ލ1/?3{{{{{{{{{{{{7{IFQ3[֗?Q3dEӏ=no/2֟O@]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]ëW1޻޻޻޻޻޻޻޻޻޻޻;?o?Ax5Yx!sΜ9uTuMtTwfLWc̀XmqYf1WF8! B$NJ)2 EF./3Y>=ϝ.ѵ\^T0LSTZ38w4E1ɘdt2f:3N\N8s$\89ybhH1b @)R _KNI1b @)R a* е㏞]k )5wqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwܼ;;;;;;;;;;;;;;;;;;;;;;~&KҶ;;;sM~||iКC ͖STZK\GG Orwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwnwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqww~<׹y&;;;?3Pѵ\^T0LSTZ38w4E1ɘdt2f:3N\N8s$\89ybhH1b @)R _KNI1b @)R a* е㏞]k ) wqwn7o:;;;;;;;;;;;^Z2#t{wݹyn;;;;;qwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwܝ m;ܼywqwwqwn޼˗& )˕ՎNZ+VjZRkJZ+pFw 7kJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+Vn޼X.sMjZqwTݩRkJZ+zgNk2a`* еgNqi&L'c1ɘdt2f:3.ZRkqO|L)Z+VJ99>.ZRkccJZp||Ls|\RkB9>9.Z+VjrL\9/(Zq/g9ũP1}O|L)Z+J9R*Vj-RRkB)z= sթRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRsҳmKZ+V^xwoͿ[nƍZRkJwKL֔G:Mh BW/_Ⅷ8::T0UN?xW.PkVpw~Ν9>}{y3jZ)R+VjR8>cKJZ+s͛-gsǿ~IΞJZ+VJ)Rp||Lj[~=wkJZ9{)RkJcjm9;dpVjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRk͛\?x:~&VjmE/ݩRkJO=3Qѵ\^T0LSTZ38w4E1ɘdt2f:3N\N8s$\89ybhH1b @)R _KNI1b @)R a* е㏞]k )SJ)"/}5-gӼ_砛qӟo|[ٌOk~齷gM>Ŀ|ռͿߝQ|>^2;'_`p{y+^ qT^gGz^gW<W5|莿gЭ/~7zkW}5ǵRJ p휯~c}yw_wms.iO-R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB˗m[jR1??'ӟ4z+9gJ)R(PJ˗& )c?_{9=;/ '_tñK7g-}x^;>v??Xqo?|s/:Dz|7e?ߟBWn?&W7x'ɍ ^ J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(,VJ)R(pM?$gϜFeGsezST0LSkϜLNL'c1ɘdt2f:sy:̩Wtv3y‡ʟ~g.?>;|U7~<:~o?6J)ҙw~k,_W^ok>e]}_n3~?_7Y:x-R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJs,qwJ)}ϩS}σ>s=GR J)ܼyO>3Qѵ\^T0LSTZ38w4E1ɘdt2f:3N\N8s$\89ybhH1b @)R _KNI1b @)R a* е㏞]k )S!7n׾˳Cݓ|oO?.u_{Ygʷx+ >+OϽWS_>=?k:==7s{F[+}{~O=}{~O=}{~O=}{~O=}{~O=}{~O=}{~O=}{ƴ=}=}{=}s|˗& )6^۹*·vK;j^{=_:y9ֹy8䖏~c{~O=}{~O=}{~O=}{~O=}{~O=}{~O=}{~O=}{~O=}{~O=}{~O=}_ZޠB==}{~1}{~O=|=s]k>ϕ%;LST0L5>ssgO3_d:3NL'c1ɘd3N̅\?x' )R H1b @Nqm)R H1b @NwrCx?z[G//׽\Ɖo|WmaKuti>o~__N:\|=&>auxH>xu7~ϯpWg]w~;;e3o-qыvt]ˋG?&y\ ‚.=G_;|gw̬t ̟;{^y g;֗o}lu||ϒ_|îZZZZZZZZZZZZZZZZZZZZZZZZZZZZҳ`vt]KJDvv8wrNt]K׵t]K׵vsS5呇N-)е˗x)1Ldzi‹/u-]ב^)yŻ ÎCkxo~|Y>W}/~K|KwrWgnȀ7_?M-3Ysxu-{#s'ά|;]]`c7r'?>o^q.1w7g'ыhW[_ko8_ҝ|K_\Σ;xm8͏|ўÖk麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖CZ_Z/ƍvv<vt]K׵t]ˋ/?gNk2a`* еgNqi&L'c1ɘdt2f:3F+K~ozx |י_k㉇? -~齼ιgp#\8xϾ|2͸ď=_||=>V>F]/~^+懿"`[yd\G=Tw„+z'9=x^?9y釹\K->0?X#mѿo <Ԕkxl~ ˇ|{yfq*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))]ײ_c!mkܟǙͮ?om~أt]KkJkJka=gNk2a`* еgNqi&L'c1ɘdt2f:3}n{x7iFLI4|{>v~=['^@TPZK\w%Wcg8s.r'nK|k~U_^?Ahe˅eo)?MO[^2?uTPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAU/b)Ȏ{Wx_* f>._`*I>ѻy^{?5IeoګħrWWVG?z+= Cd";T~>._`*s]k>ϕ%;LST0L5>ssgO3_d:3NL'c1ɘd3N̅\?x' )R H1b @Nqm)R H1b @Nϕ%;LST0L5>ssgO3_d:3NL'c1ɘd3N̅\?x' )R H1b @Nqm)R H1b @Nϕ%;LST0L5>ssgO3_d:3NL'c1ɘd3N̅\?x' )R H1b @Nqm)R H1b @N{^3ph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fp}~ ^sThMyӄfKk`*tq%.^xCLS!ņf40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40wC>$`*t1~c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xr1L֔G:Mh BW/_Ⅷ8::T0L"73|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3| C`*t1~՛}xJ#vK/݂4nx嗎}ii[_:>㭻H<|xn;/Wٳ7FFic_{v*.nxvogFinұ/oRi\nn/zMg*4.3^v+wJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H2K>nH#4H2i=rꊛzfr^YܬWn+m>铗/sirm|}?ޓvmqο/}#7&Fe?:w?5-w~[O?ގ4rE/xχʷ_t'=?i??}⡯ϺrE~aO|G/~qe4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HL}Ti\f~W.?nFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFie|jsvFieӞ{7땛zfr^YܬW^۬;}'/_uN_q߽miiii#O<<#4H2qp2#4H#4Һ;}{?hqKg\ݫԟ~{ݿ{O}Q7ۻ|߻k׿w?;]p5{w}rO09lN~_{~ܘ\in=p{}vY\v?~⒗rϽ|{kO||7˿/I;w~wo ~KWL_}ï|~O?{~?/̕FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=ptәJ#ˌׯ]H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Ҹ̸zOm.H#4Ҹ̸wsqfr^YܬWn+7땛k{OKp'O<89888888gw+w88888888p'gFi\fp7\fpp۷&i=^}}~:7HϿ=܏{跾_s~/_zv1S~ї坾?S/^߽}4oyǫK_}?_u}#wo;^V14z|/}w|9.q~W}=׿_o W< ~禧?|K-WgПyG~͟ҋߛ/~z_ ~w~~?;>5{k?޺Hxt覷oMH#3ѳgn:Siq^ViFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFWO\UwEiFN{3WWܬWn+7땛zfr^ymvI|䉇#qpqpqpq4׽;}}nuqpqpqpqp<}4H#ˌΟˌ4޾5յ_?S'27=ںv7֟?6-⍫_?6}wgxӿGGW #|]^e/7Ƌ՟z0ͯz{G~?OW?׻WGnL.GQM[ݷ? >? m喗ssxz+}+ʷzS~#{|ؗs>??JU?#k~+/no?eFoߚڹ}9sSr{;)NwSr{;)NwSr{;)NwSr{;)NwSr{;)NwSr{;)NwSr{;)NwSr{;)NwSr=/wnH#3ѳgn:Siq^ViFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFWO\UwEiFN{3WWܬWn+7땛zfr^ymvI|䉇#qpqpqpq4׽;}Ų| IDAT}nuqpqpqpqp<}4H#ˌΟˌ3{ַ;#yk>o_x[}Hs<[^olL/|'|+~y'?&[;ۇG~#{痝/-s>+kE[׼Wt_q\i2]vY.eq,n]vY.eq,n]vY.eq,n]vY.eq,n]vY.eq,n]vY.eq,n]vY.eq,n]vY.eq,n]vY.䶛ǿ~[(3ѳgn:Siq^ViFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFWO\UwEiFN{3WWܬWn+7땛zfr^ymvI|䉇#qpqpqpq4׽;}}nuqpqpqpqp<}4H#ˌΟˌˌ]~iwEip? ?k^:Sg.͗|OG3o\w;O{_? ?}?-o˫Y<'|˛vEOO_eï~~z^ Mm?w[osH#<~;/~Sz>?___o~Ɵ}>7__wwՍgG篽/-}|g__oo<7|ʡu7o<7|n._(~ѫxpstxi'~weWVx4H#`ɯcW}qewۯ>W>o|[4νO\?0 \sԳޢgyYoܾ7/Sٓ{_g}RiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=ptә:S={3F_ˏmFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiqq%\u]Fiqq9zuzfr^YܬWn+76kN˗|9Oxq8rqpqpqpoM<}ݻWw=v[qpqpqpqp'O8H#4Ҹx9o̸x9o<2#4H#Pev].8i]iuYpn,v.Pg2#4eFZg". Dgp,g"˂s#4H#em e|G}/k}iH#<.\ie48\iugw2Pi\f\4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48S={3u>zMg*4.3^v+wJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H2K>nH#4H2i=rꊛzfr^YܬWn+m>铗/szMgL}Ti\f~W.?nFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFie|jsvFieӞ{7땛zfr^YܬW^۬;}'/_uN_q߽miiii#O<<#4H2qp22qˌ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H nٹFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=ptә:S={3F_ˏmFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiqq%\u]Fiqq9zuzfr^YܬWn+76kN˗|9Oxq8rqpqpqpoM<}ݻWw=v[qpqpqpqp'O8H#4Ҹx9o̸x9o<2#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgLFiFiFiƙ3G73ѳgn:Siq^ViFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFWO\UwEiFN{3WWܬWn+7땛zfr^ymvI|䉇#qpqpqpq4׽;}}nuqpqpqpqp<}4H#ˌΟˌˌΟ.3H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4NO_c_8 x/^pދ{y/^8 x/^pދ{y/^8 x/^pދ{y/^8 x/|+OzMgL}Ti\f~W.?nFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFie|jsvFieӞ{7땛zfr^YܬW^۬;}'/_uN_q߽miiii#O<<#4H2qp22qˌ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H4~?Wqc?erarararararara/}ɧ_-3ѳgn:Sgg8tH2kWrqw4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4.3S4H#4.3#g\YܬWn+7땛zff>y/<9GN4N4N4Ni{]wn4N4N4N4N8y iF/?獃/?獃]fFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF<{||ݱǻcw={;xwݱǻcw={;xwݱǻcw={;xwݱmg>}UUUUUUUYÓܾL=ptә:S={3F_ˏmFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiqq%\u]Fiqq9zuzfr^YܬWn+76kN˗|9Oxq8rqpqpqpoM<}ݻWw=v[qpqpqpqp'O8H#4Ҹx9o̸x9o<2#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Һ,87H#4H#4H#4H#4H#4H#4H#4H#4H#4He }}SK~?\Ŷ??<>>oyș:S={3u>zMg*4.3^v+wJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H2K>nH#4H2i=rꊛzfr^YܬWn+m>铗/sKg[FiFyxipۺ+4H#4Һ..TiFiFivұ/tK[sFiFiFiFiFo.|mieY|c_~ؗ_y4H#4Hv+n۹H#4H#4H#4H#3˲/|~sMg/~ș:S={3u>zMg*4.3^v+wJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H2K>nH#4H2i=rꊛzfr^YܬWn+m>铗/s?Y?Os:9SiFgnSԧ \ܼ/~g FiVgoJ#4H#4H+W?GڵJ#4H#4H#4H#4H#/>FFF?v?~C|k qnFiu~W/ؙxaMoSiFiFiFiq&^y?vYU_ğG/>)wۭ/tC;q'w~[KǾK~鋟w8:rGϞq8L=ptәJ#ˌׯ]H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Ҹ̸zOm.H#4Ҹ̸wsqfr^YܬWn+7땛k{OKp'O<89888888gw+w88888888p'gFi\fp7\f\fp7wFi}k_O\~\_>S~ӟ?|H#4Ҹ'/=?!Ǽnx+G}Zfmso2-LzE6[޾}4H#Enm~}~?ow?6oy-Hcs方=۷l"4-o߾ei|Wų/΍/K_#_mi޶^xx7Y)?7O&H#䶹}ܾeimn۷̭ܾ-4+O\.ˢ2\Koѿ}ܗUUUUUUUUUUUUUUUUUUUUUU՗_~~S.]zׯ_ƍ}B=>/|ș:S={3u>zMg*4.3^v+wJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H2K>nH#4H2i=rꊛzfr^YܬWn+m>铗/sqqo߾>1_g}/}s~ .3H#y|?z4>_}طO|o58W7vuOG|[;G_G^B"7p~/;n>/ ~%>yoGի߯>38W;{OO[u/|᣾^+g|Ǿ7Wų/΍/}p_o+yw'C?w_/?a_?_廽-{x+7/797wx{ҥ!+O\.ˢO{̗TUUUUUUUUUUUUUUUUUUUUU՗_~~S.3nյ?nnዮ _3ѳgn:Sgg8tH2kWrqw4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4.3S4H#4.3#g\YܬWn+7땛zff>y/<9GN4N4N4Ni{]wn4N4N4N4N8y iF/?獃/?獃]fF\?iy}^*?Go7gϜ.zJ#4nǾw{'<{V_o#?'C'tg_F?| ;OY{f fMfW7! l:qE8MӴm@1lۖ||QaS>>UV]u"6y'~{߷I廿gG+Ern~ϟn;|<«5!ɯ| qwS6s^>k};o=ŻG9լ9^ᓿ| >?+~[o=~eZܽ)~~Ͻ%~G~~7{/?^?%N~Iwo??|W?dvu> X_~nk;>5ҫ|?Ƿw_{o}ʖ|rrY-bsß??#~'?Ž6,V771^?W? }uky?Wiq>8֋OO~ \y/o `QčWWWc|p<_y>?۷xty^ÿǏcw-W9wt|+/gn]|<#V8!>p\S~=~gWWg.{㕻_}Oї^awOog7oQNn5ElWoǿ?/~w_/x'qz0W1oG8*~__MS{OW~s|9pяpr xn7^|/_sշ!U ksv gYcN1n*7^|E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5uxUE,bX\?||ÿG>|ÿG>|ÿG>|ÿ-ug>Ebt1].Fy͛x|bt1].F] OO[5"vKp箝srj E,.?7^c?O$M}_SG/v+obƯē;ᥓ~=o9~yS| >׮n'#WX-~~pL,ևv|߷~x%xi~[ /||ŷ؝c~_7?{|sx ??/"6ǫsO:/|uǛ??ܺ%~O嗮~o7n'wxo?^mx?<?<'K||Ͽ˟?}?Ǎ+u??ˍ+"nt}෸yd,?^~w?-wFc4{t-<̓t-,2FӵU ksv gYcN1n*7^|E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5uxUE,bX\+O/9~no[_ _y&o*+|?gϸug>Ebt1].Fy͛x|bt1].F] OO[5"vKp箝srj E,vY>bUHFO7)GW":ӏˏhʣw>˝_qַ}3~˿>W̓1~ >O>&CzjK<ϼ6Hۯ]~/? {/W8!u'~eOt ?ɷ|yϽ/O2_3X-bsoV[ڛKm|{K~G5+6ݿċ7>!~ǹ~{ofo0/r__Mxx㹏K0\Ex:oquu;|ӟMruy>rƋ/ _۷mn/%ݽwG5f9;yZƬ1g'P}֘Xj 7_/X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"^~:o*GW"E,O~˙/y=b],q߽p3n]Oѵ0].Fhz&{1'pxbt1].FEӖu E,bq箝s5\kܾZC,bX*^s|㙧?˵3NOSG\{H1E,b!CbXz%ba=@>@zXX!!E,ba=E,ba=@>@zXXE,ba=xzXX"C >xX"~>H!z=|-E=l!Cb!CbFx:oquuW|77_y6Ŏ/S}/rܻ{wc֘5jƜ }Yy6wnⳟr3n]Oѵ0].Fhz&{1'pxbt1].FEӖu E,bq箝s5\kܾZC,bX1]qۼxy/< XcbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bFx:oquu;Gwo]K.UN?4o}뒷oT-1k3r5f9;yZ"WkxG"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,KyW9<"E,bqO}=7uyW|X{m/7or|3[={ƭ=)Fbt1]<[o}?ƻ].Fbt1Zxzڲ!E,ܵsn_^r5bt1].F-bXj ];%WkZsι}9sX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bqm| o?̭˙[3//}[3.g.=7^SI<1k3r5f9;yZ"WkxG"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,KyW9<"E,bqO}=_׹wwof|w|?wn[|3[={ƭ=)Fbt1]<[o}?ƻ].Fbt1Zxzڲ!E,ܵsn_^r5[,>O|n4>O|n4$ sv gYcN1n*7^|E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5uxUE,bX\S~׿uvǟ_k#GZWbܿǽwsoߺdԟp3n]Oѵ0].Fhz&{1'pxbt1].FEӖu%E,ܵsn_^r5<9gv~83|>S)N> {St-.Fbt1x0޼w'81].FbtѵpؽM,b5fѵƬ1Ŏ5&E,bX"E,bX"E,bX"E,bX"E,bX"E,bXzȭ=5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXװa]úu 5kXp=|X"_  bX"k̽oKX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Xc޾}ɽ;o!E,bXܽ6_xgxgOygOykϞoܿGWn] bt1].7o] G.Fbt1].^{eN?4o|yc;~|cq9_0w;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc*W/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;Ŏb|c1_/v;W;. b|r`/v;. bǼ1w;.;._e;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc;yc/v\//v~Ǽ1w~Ǽqqr[3oܾ5s[3oܾug/9;y^ybt1].Fy͛x|bt1].FZ+/s瘶O1m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô0m7L vô}/<9^{ejbt1].FŃѼMcO>bt1].Fbtѵееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееееее0].Fbt1]<[o}?ƻ].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1x0޼w'81].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt1].Fbt`4oy=zOp8=5_FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiQٮ94H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#zvק???zv?>}={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{={l޳g{/Ï?'9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5kפIDAT(SK(J%tEXtdate:create2015-12-03T10:28:20+00:00z>t%tEXtdate:modify2015-12-03T10:28:20+00:00'tEXtSoftwaregnome-screenshot>IENDB`idjc-0.8.16/doc/prefs-general.png0000644000175000017500000156217712711160237013470 00000000000000PNG  IHDR/gAMA a cHRMz&u0`:pQ<bKGDtIME   JCIDATxid-;Ivv&s&l2;MwfgKm"d X-JEPtGE_XY UU邒"H, [ݾs-r˿ժ?_<3LLhfG3ϣLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL<ωS9q<'Nĩ8usyN:ωSNG3=4C3=4C3=N:ωS9q<'Nĩ8usyN:ωSLLLyN:ωS9q<'Nĩ8usyN:fvVr-r˿{np?Ͼb?ߵ_0 0]}wUһ}mG 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 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ΫxG_Ͼśt^ _ozxsۿo^ȹ!7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mxoz^8p{oz7=Mx7=Mx7=p{7=Mx7=Mx7=Mx7=Mxozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozozs+>gLLLs[@՜?Nϟ[G_q.q'$ۏ6x};4.@+uuuu?XqJw)SZ=g[Gc~<5c~cZoqF[BG7C~ i ޝ͟.?юg>n6~~[o["ӿgo074G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9Rdw3~RWGx-ʝw#oqb^ iNo&k[^שw<2uo/x9_rѫu*wݏxKJO~*QƏsoS7x pUt? {_WM 7pUt?  y-:_W1x<2sοΒTw8y*PyюGF;ӏ~*r_&v4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9hv4G;юhGs9;ʝ\X!EX!EX!EX!Er_8Nk}'.}ך/c? t{ϼyob=2_oJcO)v}nY-hy2ۏ]\_aʓ/ܤu1D9tuxdg{w>-;M2nyx~g>?CqsVngW;4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKcݏˁ_\,g uķ³3W_5sG7/IM{gsx]Wi]\7x9gޢ9+.^+7x?vS_7x9gޢ9~╛\r ^:恣w7M9|5x ឧ~* ߸y䙷s=rO+Wn×f<۔{kni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pKc1ni 4[-pCk>4444444}c 1{G|2G?5_ys#-hIi ?܊ϝ>» )?܏ޣ\{Sbxhljs<~@cgޝMnIs=hC'c~w!z?5M[on:ר6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C};Ͻݏˁ_\,g+q[^ӿ _ƵOŊo3cP?t.`C}>Iu$| p˧|Q _kE ]/-U?66]`^-7.9{j~D7yOp=z;WH~r6e5拴Ïyo6m+_%Do+޺'ܒdƃ8>s>~&O]6\'_)EQl?LK >pG `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Pl6 `C}>Plѽ׹ <xGk5i{Z=J?>po}N EՇ/s֣;uӏ|2m#+9>Pcw{X})o?U'ަ17΄K~&|piw6|Gvg[o[߳__oY]_?nnwP믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5Z}\w9k^~m\~k:#W)u?>?/͗ʯp_r}qS~pC ߠ_S믩W[׻\;z֟">P{o۽11>g}'O'㡷׼R7soK~3AoP: 9Yp_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5ZM_S믩kj5׹~hO$DO$DO$O^.(wR>wZMvʉ33TM)?3g|%GyZVݦy=GG?k+33󃛜<Ƿ߿AgMnqGF;{:gI_;nVgxNvE~~n~(RVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE[QVT{+ފjoE嗹/Yίc5^۽-\s{5} /V|q%y%:ZRΰ|{]Qs7#[nLXsobD9L g[S(uMnqG3ʳ׹jͭ/={έvv;?gpI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\R T%pI%\r;u]W^|/__bɷjwvэ|˜U_p}߹7Y+rw2_?H(ש#^}s^3 tI9\˟O ./a_0&<󱫔Myes|cޚe^z{};wBsosɷ1zOxg!/>uW?)ᄋT NwO;)SW+?)SW[Oxw1.o3|cf7?凼U~4brOX>GrףrowA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w rwA]P.(w {:7o/K|j]K#s>bה s nWr1]8wϽ _ދ | >;]p|6hͷ|5_·_{=|ZM\^ę簟xʳ)wg[>g{3J9ΜRgηЩ]ng~OIuJ,(u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS8U@ĝz|0+F|K\A~LŌg[|M3K`Zo`ǔ:sJ91w7M;sJ9ΜRgƩǯ"tt{N3ԞaWᗸ>tob>r7wor=ԙc=6x2w<qǃ/rg ~}_3Q)ufXO7Fz|OÝW1fp_h=Gsk|;|;1G.sǃw<"_kNcop/qǃwz9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u:sJ9ΜRgN3ԙS)u攻K \!w?p˿]5qk菿'+ėk?RgN>woqw˿]5q w9{|:ZGԙsW!'O|cN>w?ьoxor3w)w:sc~&|8>:nϰ3yaN؏X?ޟUp3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 }}t}tݞasGG픓l=Wִosʻ·g113 =nϰfv{ݞagccc =nϰ3cNcccgccc =nϰ9}t}tݞagGGv{ݞagGGǜ>:>:nϰ3cc =>:>:nϰ3ccNccg113 GGG3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϰ3 =nϸ=lU>Wz7 hg/v 8{}XP{:=ފ3>|懜8{^@;{g/g~gTI<{=]R{nɟ+g/v hg/p>ߏ\9N?&gkiϰ3Nw6s96XAXAut'^zN؝t؝3Nc)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vb)Vbǜ>zν|:oq)R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R RNS믹9鼄^p/a0K% {׹Vb)Vr_:uSN:/a0K% { ýI%aJXAXAʽ?p/a0K% { ýI% lc Rz[dZo]%~'~_Ct?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At?At'k|]N>~ ݿ'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~5SNsGǜ>:19}tçGt?At?SOcNsGǜ>:19}t̩ OOkOcNsGǜ>:19}t̩SN>~ OO8_?%Ny0É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É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É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É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ȟu[~A~_ DRHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ ERHQ zE̽C_%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I*ƚj-? /PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()lnVC_%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PR@I%J ()PO]/u랳^g}9眽~- 8A@A"8%aI:tNw]]UߪoUA}?OC!ݥzX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"+1Kus{$E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb%fyis}[["E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX,/-rsνakkX"E,bXb%+fuŬbVWY]1+fuŬbVWY]1+fuŬbVWY]1+fuŬbVWY]1+fuŬbVWY]1+fuŬbVWWJD,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb%fyis}[["E,bXb%[xuf# ^G82L/pdz# ^G82L/pdz# ^G82L/pdz# ^G82L/pdz# ^G82L/pdz# ^G^`z`:+1E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b]w9MbX"E,b&y$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$Nk$$}Eڝ.E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b]w9MbX"E,,Gs_g:?LԡzFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF$/> 'g96}/xome{{OϾٳg??c,gϾٳo?'os[?291;l{>i~Q6vv8{-Ξ},O5Mh+6epa]Ksr)E^ѦWmzE^ѦWmzE^ѦWmzE^ѦWmzE^ѦWmzE^ѦWmzE^ѦWmzE^b䫼N^ѦWmzE^ѦWmzEaanFF+6Mư>o KeAY)~h+6Mh+6Mh+ڔeNNO1uU.~h+6Mh+6Mh+6Mh+6Mh+6Mh+NԡMh+6`PzWm^i+6Mh+6Mh+6Mh+6Mh+: =ʢMh+6Mhi59tq"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX,/-rsνakkX"E,b b*o&o&o&gϒǹq?,~$9w>63}{qz!n~yԀ7M^?5ŃeOE%z 7?W>L-T?jr#Soo[o[or[,K~烔6EEiQtZ^>o|~'? OC?+VAӢ(:-NӢ(:-NӢ(:-NӢ(:-NӢ(:-NӢ(:-NӢ(:-N^f^Z.uZEEiQtZEEi89{[):-N^gÿ㻷}۾M}x ,9x0j(:-NӢ(:-NӢwO绿gnkWN/(:-d7IDATNӢ(:-NӢ(:-NӢ(:-NӢ(:-NӢvZ,a EEiQtZiO,vZ&G/5;:-NӢ(:-NӢ(:-NӢ(:-NӢh:ÿWN-(:-NӢh//qT׉E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"XY^Z;n{w&E,bX"V/8wbkk-W9;֟qg9u3lnmor秹_;>|_/q^E 'X/gn;v#~p&[[,zt;-ڭ&VN+˸k*_7xyo慥eZ,7h[Mڭ&"ͥ4ZMڭ&%ZK,7i.fyyvIդDkyiEZ&VvI{y4ZM">C&^h)ZK,7i.fyyvIդjn5鴗9Si/n5i[yߥ;? Sɗy3˴h-/tfsVIդjn-\:p3ݼrou.P{3si.wpr7i59z~n%^<ǁ_ŧ]q<.w|S^ɍmp/\by~?\|/ۿz<_yG\yyCS'hh5i5i//1{b''h//j.Zn[>;~87^ή+/[|&~ѓs'^Ev{̜nY江ʇ}E/c5n-4fwM|kyyNX> 17\x>|wqd4Sw>W|;ԎZ\\q'h//j.j.j.^>c߾]e>w|S~_>r:\Ҙqo;^I~ ,ݏ_rբ۞߾[>s wLE{yVsVs)MOﻀ >oOQ/~cu:.O1//￀ ^sE\kJɟ+/;+^8}}7< :CUpCY^:"E(?5~MZKi5,/̟wn/<?%|? ;{L|}W^o_>“W^翻飿?qŭx٧x~O䙟̇<x?LᙇU2=?/xuyN7X^:iZEfdmVs,/-m?p?%.cx/?3 ^{;> usu<4;p/^t c<ןrsws?syWk;;w7x? .{?ԣ=|L!v濾3<;߼]\=4/ts,/fy4'Q?"KY^:rs>|?||rtqG yЃz{ȷb9C\> r]z|\rnfL>{>?.dߡ9qb,/fy4KY<5ϓQ E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb%fyis}[["E,bXXAyf3lYg3/ǧ$ y~W^X?48o}9s3_xdwS aMqlӏs>K3T:{~ϑ?~~G__~}omyf3lmnO\\`ۿ˯K{.Fz~\qyXO_,O2~~).̷yS/[>ʵ7<*{>~5_Y\}y}õh<>8ӳU>ј}_Z.#x-xINϳxjS,x ,gWhoO<.pzW\/'&ݻ3c<𣛹3ᅣr;.SY:5yOͳxjS:9˓Q E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb%fyis}[["E,bXXAlsfc566`]{|#WpUkO|'OtXOoo熫kڏ_E^K]_g 6Μa]_纬nګ#|?{+yab ngy__]rc\s>}g__bes3kllyfv??8ga~n 7_3c,'8u6W\gqKS_bύsGn|[nϞsw\CGq >+.=*膋x燮+7o۾}ix<1f.x9tb٩:=~}Wp10 s3,e=( 'ga/O7\|)^p.{_,g'ʅ27??_{?&>y)/;>5g?]/fa~nfS{Q"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX,/-rsνakkX"E,b Gb56X_cc}uά Y<~g&4y]VV8sf54&p8 kop}56Vԉ9 gά2/=SO5:Ye-%'N2Z]ec}UFY?;SO?+'f9qljUN._g}c568sfV< 'gOpr'gGm/xv~;^t#3s>9oҋ>unz۹ֽsO|Y͕￘;(>r/d# 星>ミ?4/WCywss/c:]w7>ϳ8 ]wS=̗/~LO~~scw+Wnycs.+oo^;/2}_=z1W6NnL}NΞ NΞ`1jOo;o{sşF?Nn>^'wpwyk9Ϋ/_3 vݶ#Ǐ[;/ߵgg99sg4'A,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"J"wq;ܻ6E,bX"*xFX_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[c}m5X_[cccN#ifNL3s|ǘ=q —^J㟳ÍnA2 p n༖KyEilMfd!J'cg7cuV`|:t:W=;N{:tW=;N{:tӁN:K~?ӁN:tqtq:tO=N{>|:tӞO=:aqϧO={>|:tW{>ӆOӟ.=tOÎO=_|u:W_ltӁN>|:t:W_|:tqqW_|u:tq:t:W{NÞO={:ts:ttӁN:8OV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjB{|}}.<KV Z-ZhjB-OF"bX"E,bX"E,bX"E,bX"E,bX"E,bX"?ts:8v;NÎatq:8v;NÎatq:8v;NÎatq:8v;NÎatq:8v;NÎatq:8v;NÎatq:8v;N{ֿ\?qtq:8v;NÎatq:8v;NÎatq:8v;NÎatq:8v;NÎaӆ?wg8;NÎatq:8v|:Y_'̧atq:8v;NÎatq:8v;NÎatq:8v;NÎatq:8v;NÎatq:86'?~KV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Zhj½U}?`BV Z-Zhj|OyE,bX"E,bX"E,bX"E,bX"E,bX"E,bXƟǜ;-~qro9[-~qro9[-~qro9[-~qro9[-~qro9[-~qro9[-~qt ^~ǜ;-~qro9[-~qro9[-~qro9[-~qro9[-Ö_/?k??}cro9[-~qro9v/WٟGN~qro9[-~qro9[-~qro9[-~qro9[-~q߲ /?1[Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV |G?-Z-ZhjBV |gX"E,bX"E,bX"E,bX"E,bX"E,bX"E,zߍ?1Î~qro9[-~qro9[-~qro9[-~qro9[-~qro9[-~qro9[-~qro9v_1Î~qro9[-~qro9[-~qro9[-~qro9[-~qxӁO~qro9[-~q?r:8[-~qro9[-~qro9[-~qro9[-~qro9[-oO~L-y{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7x{qo<ǽ7jBV Z-Zhj*__w~0jBV Z-ZhPg~?B,bX"E,bX"E,bX"E,bX"E,bX"E,bX"=o o/ o/ o/ o/ o/ o/ o/ o/ o/ o/ o/ o/ o/S^_x{}^_x{}^_x{}^_x{}^_x{}^_x{}^_x{}^_x{}^_x{}^_x{}^_x{}^_x{}^'?_y{)o/ o/ o/ o/ o/ o/ o/ o/ o/ _~ge+v5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnfY۬m6kv5͚fnf:ijBV Z-Zhpo|{;?oijBV Z-Z3?/N,bX"E,bX"E,bX"E,bX"E,bX"E,bX"w>/|_x~ >/|_x~ >/|_x~ >/|_x~ >/|_x~ >/|_x~ >/|_x~ w>/|_x~ >/|_x~ >/|_x~ >/|_x~ >/|_x~ >/|_x~ >/|_xq} >/|_x~ >/|_x~ >/|_x~ >/|_x~ >/|_s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙rz9s^\/g3˙7/bfBV Z-Zhj*__w~0jBV Z-ZhPg~LX"E,bX"E,bX"E,bX"E,bX"E,bX"E,zsy3y9<jBV Z-ZwZhjBV Z-X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"7_~B-ijBV Z-[;wΏ~[Z-ZhjBV jϿC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b/xϴZhjBV |G?-Z-ZhjBV |_~A!E,bXL=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=L=X"=faaaaaaa"E,bX | |BV Z-Zhpo|{;?oijBV Z-Z3? zE,bX[/X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- V傿X{~gO~ɏɏɏ/^O#VE,bX"7_~B-ijBV Z-[;wΏ~[Z-ZhjBV jϿC,bX"oom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xom` 60xomoqo˿L=qٟ oq?s9o۬_ǝX"E,oZ>jBV Z-ZwZhjBV Z-X"E,?XczL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=czL1=3M/d᷿5_3?y3N=Ͽw ?7KX"E,oZ>jBV Z-ZwZhjBV Z-X"E,?A,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bcK~{~g&z½U~__1տg7&E,b/xϴZhjBV |G?-Z-ZhjBV |_~A!E,bwϿzX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX+Œ_w{̷_Wƿ"E,b1~3/V Z-Zhj½U}?`BV Z-Zhj/="E,bQ>XbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b3|}嗿X2_?>?傿o׿Ww777&E,b/xϴZhjBV |G?-Z-ZhjBV |_~A!E,bwϿzX"E,bXb&į"y~MFŅsԟxŅ텹x`imlF{ӄ4H#48ܿg.\H#4H#4H#Ϸد+>^?qw_ ~w|o|ӏ?k ~~'~' ͇yo~ӛY_?y^?OGCoe}ӿFη=7 g"{__n=ѿϷ{'~M&xwiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiƉzu_8]8Ox^o}o~ى`?zkvU_}~^#4H#4zW.q~܏qp?8Go\o O>8~܏qp?qW.;MH#4H#{^}ͅ4H#4NNTi}}?~ħ?}!OrI~eu_v坷^7S^~ַ|??~{^}?.oZ&؏̧q,W=;ԏzŏso1uieH#<~ɇ|߇?|m_[|ߧO_/}_kwFiFiƉzu_8]8Ox^G??|?_x8\8w͏|{4H#4x^)qp?8~|q}#785H/oQ~?x?o?o;GwW.O^iqM/^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-]WK׫jztZ^-=_| `/4HDy/.'|Ϋ/|?|sӅϝ|֓g?g^||OM}MiFiM\p8~܏qp?>؏޸|1ǃqp?8~܏pg\vFiFe i8__3o$Ϸد+W{[o|o_}~_'|_ /WO_|?Ooڟ3oa? }џLU?ǿ??o>+ww?{g^8sFIq|Եy/o~wO>鯿|sko7[{ӄ4H#48ܿg.\H#ӄ7/y<9Qi}}~ŏm#8k'~ѧK}㟭gx?}o%[>ozՋ%GW/|0ח??zK>W_.S#[?>K~g;|緼xv問~O~_?o>W_348Ox<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{<0{<0{<0{<0{<0{<0{<0{<0{<0{<0{<0{<0{<0{<yW {;NTi7o\Ӆ󄯼zׇ}?]5Ɵ~'䖏W?O՟{ܽ/4H#4zW.q~܏qp?8Go\o O>8~܏qp?qW.;MH#4H#{^}ͅ48OxniFZk^6Nv~W>^xuwsw~}?O/ÿ㍋?/_MП7|o}v;=Lux7~wc?nuKFrϳ_osO޿S^K?7ntqf ~NS#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#P_|9_H#ppWz{~m{M>z%W|{H#4H㭗oz8~܏q~{ӄ4H#48ܿg.\H#+=fiFiFiF H#6H#ͅM&H#4H#4666FiF iF H#&H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#/>wnvF'}t<+]ҋm[>M>z%W|{H#4H㭗oz8~܏q~{ӄ4H#48ܿg.\H#+=fiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiqHDy/.'|ջ>^z\{?}'>qw؏޸|1ǃqp?8~܏pg\vF\ԖIDATiFe iqzڹ,4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4s޹}yBi7o\Ӆ󄯼zׇwK/;~೷}W|o7}'n襗|_my;wK#4H#^˟r~܏qp?w>}Ó?xp?8~܏qpNH#4HpWls!4^[^;xFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiy;o;OH#ppWz{~pq|-x u+=x}iFi7rS}~܏qp?8`?zG~ox<8~܏qp?}riBiFi3m.ykk4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48Oym iq޼qN]zU/x.W_񽟾O];^O~ŷܽ/4H#4zW.q~܏qp?8Go\o O>8~܏qp?qW.;MH#4H#{^}ͅ48Oxmr{aFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF _|9ܾɯ<㝻Fi[/O9ݏqp?8;yx<~܏qp?88}e iFiqϫ\F Wn{ɯ<㝻Fi[/O9ݏqp?8;yx<~܏qp?88}e iFiqϫ\F Wn{{_}~O<}w}x꺏^z?gs4H#4x^)qp?8~|q}#7;4H#/nftw?>%FiFiFiy;o;OH#ppWz{~pq|-x u+=x}iFi7rS}~܏qp?8`?zG~ox<8~܏qp?}riBiFi3m.ykk4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#xؿ/ O~_=UiFi?|;ş7~ɇ <`|ߛDދy~; iq¯~#~w=鯿I.s\\H#s>ǿ~g}KޙN4H#4H#4H#/>wnvF'}t<+]ҋm[>M>z%W|{H#4H㭗oz8~܏q~{ӄ4H#48ܿg.\H#+=fiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF~?|wwGS?SV+K~W<̓4Hąt7w7^xo_-gt3OGo۾{w?}~?WO}/vq¯~|?_-4g~G]4O8~܏qp?qW.;MH#4H#{^}ͅ48Oxmr{aFiFiFiFiFiFiFi:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNTiFiFiFiFiF'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉ:Q'DuNԉJ#4H#4H#4H#4H#4H#4H#4H#4H#4H^݇mG>{Ͽ䳾Qi||ܻ;_mҳ|M??//x7G?zїoӿKG^~qF'.|y}?'3Wć~ŷ>Ntssw?]Ï=~;FiFiFiqHDy/.'|ջ>^z\{?}'>qw؏޸|1ǃqp?8~܏pg\vFiFe iqzڹ,4H#4H#4H#4H#4H#4H#4}_;tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'.N<]x8tqʼnO'~yu/^5'zYzwS#4H#4H#4H{_}~O<}w}x꺏^z?gs4H#4x^)qp?8~|q}#7ٯksp>|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|ˇ|/kd#E,bX"E,bX"E,bX"E,bX"8qglfs=ooy[ٳg/%.^@,bXD,ɅgwC?=;_A3Wgw[ƛ_C§VYSWJ6E"LX}y+^l l]p+-oqn\og7}k 6Z"E,bX"lYfXLcF?49wk]bp=c}pSĈ[rˣ+<8ƶOp];E,bX?ItmC6tmC6tmC6tmz2\9M7vtmC6tmC6tmC6tmC6Mӻ3X"E,biv l:#ln̈E,bX"E,bX"E,bX">tgv/a |^cOP_#E,bX"E,bXwsϲ@)~_6>G,bX"E,bX"E,bX"E,bX"E,bq#u??Ǽ]ⷿ}u~أ{E,0>{7^>Vc3H+| ??_|ؽ|SlpacwpŇ_9Aն"L >y3lѧ~G~ye|^]'/0O[7n{lE,bX"E,bX̦Ϟe6 4f4\a{MÙs%*3go w8O!<̓cl{ܵX"E,NkMM6tmC6tmC6tmC6w-Õt mA6tmC6tmC6tmC6tmC¯p ~e>gMn䶯s'O3E,bX"E,b12>{4"Әpa6 gΝ{x`Ϙw徥3ܽ?1dž 7\sNkbX"8urĮO65]е ]е ]е ]۰޵ WsӍ7;]е ]е ]е ]е mSL!E,bXڹkB,b1#r23bX"E,bX"E,bX"E,1㕗_B)R J)R(PJB)R J)R(PJ/=R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R JЗB)R J)Rp? Μ&E,bX"E,bXbi'V(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R .]#EN:I,bX"E,bX"E,bX"E,bX"E,bIױ|O/R(PJB)R J)R(PJB)R J)R(PJB)R 'wA_ J)R(p~AΝ9M,bX"E,bX"Ү OPJB)R ŋ\x/֜R J)R(PJB)R J)R(0oo0/R J)R(PJB)R yK\x`k^(|N)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R .]#EN:I,bX"E,bX"E,bX"E,bX"E,bXlfyw/_ꈍٔ4"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX̦Ϟe6 4f4\a{MÙs%*3go w8O!<̓cl{ܵX"E,NkMM6tmC6tmC6tmC6w-Õt mA6tmC6tmC6tmC6tmCv͜2_zGxyzsJ遞23`Ɓ?s˸첿+x |NzJ/k7uʼЗ|>g>/P2S23ϙi>z\ϙs9M~AΝ9M,bX"E,bX"ҮXY`>3ϙK}/]_͛/gu})9RzX; wog.̙s9e"g^%}}͛;?Y~-Os?{.})@)=92g>/=e|>g^ =З9ys9|ΥydS'E,bX"E,bX"E,bX"E,bX"E,bXLascƅ .ln1X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX̦Ϟe6 4f4\a{MÙs%*3go w8O!<̓cl{ܵX"E,NkMM6tmC6tmC6tmC6w-Õt mA6tmC6tmC6tmC6tmCYsq^缱9K{ٹi[?f23ϙs9< Μ&E,bX"E,bXbiN=||>g>_ 7 ^oV_~| .ѓj,c.:ės.Nrpnvxl^"I^zaQ(=ݵ/]b>3ϙ\|ݬy+½n|'﹑o|!&@N/^^>yxdo\'?O=`σ?w_.{;}%>׼c<v7|S)__߾y>+Cß5#.>ľf[[[lmm< Μ&E,bX"E,bXbiN=[[[lmmV9mKV 7~|/S_G7_>s5rg$oѱt5|O~Ofd_pB"_|䊏}b)lmm5g~/۹ט^*_dC_|g5g7.Ooq'G>/W]7Huu|Wɫvdk|_\w+?%>sw|8EN,ç>>vG?|oraO\r]9-bkk .C>uX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MÁ}{=lbihg03sK TY~Ϗ䕷pB\xw?~o?}Y2gkkq5SG=2|[?h╟}eάof//\87q{`>}J>|7=!ؑk"PxwO}NLhp7?ue}r||g .xC7om[[[lmmËribX"E,bX"E,v bkk- 1}C񟾅|zE!{~" ޸б͓߮[e^̱eN ?|6>}KtZŭ9[[[lmmƅ~mK7þ:Pʿ,"@_w~V\7׾y}/ˬdo݌7.oxvw|ϑ`'ƻgĝ_3}'= )+Kc36GWypmv2>_X"ũ#vmچmچmچmچern7ݱ6677چmچmچmچmhwmg: E,bX4uXb49tGܘX"E,bX"E,bX"E,b1y~>^zxlnn&[j\oϲg9tx/~|i>i^^#>~M/ 9gg^ÍW}S 677ٺT]㉽ϲ白Z>W[[.?7so^A:?oxeomu_Oq"&/󥿿Ń'ٸxz/< |pҜK]gⲷ?/ˣ< |ە:.]@7|*Ņ 677`ss Ν9M,bX"E,bX"Ү?.]dss 677ܼS˟d׳ϲc_?e̞~xeo/M$[1_{ϫ;x+G??ڿŋ\|.^`ss 677ؼp K}W[*~O~i׹?~7_:O!\_~&x7sƛf#7_Hu(?ٿoG7x)S~os_kyeO?kC/?Aw .lnlnnt~AN:I,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX̦Ϟe6 4f4\a{MÙs%*3go w8O!<̓cl{ܵX"E,NkMM6tmC6tmC6tmC6w-Õt mA6tmC6tmC6tmC6tmC nx߷8RCS\t pef7Y{u< sz"/L\uWUNs~m3/w۟24 g٘MͦfSf)ٔ ;sX"E,bX"E,b];yQ677Nl6e62͸1⮯|Y|M07c={a>^x{Ww5w _{rz|=ị8|}Pw}OSMggW9vϦfSf)9r)o/;;ν_ 7.&[͓q;h.\⅚}]sϽ:ΞdxiF<ySGy*C\grmgriO~nVe}og>Q^y%k}7$ fSf)ٔll6e6"MxxAN:I,bX"E,bX"E,bX"E,bX"E,bX"HD,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX̦Ϟe6 4f4\a{MÙs%*3go w8O!<̓cl{ܵX"E,NkMM6tmC6tmC6tmC6w-Õt mA6tmC6tmC6tmC6tmC-Ͻ!Ӎ /Snq$lnۿu?6dμ8W~k\7暛c _~ nWϼӜqxk_W?.gC~[կ\~jr?ޏo|_X:2ILbm<3E,bX"E,bX"Xڵ׎ƌ$&1I0rg?[}%7?q]"rS\޿o]w ?Oe6'=k|~5}gg9|_ae\|<֧Sok^n~Skx{.=Ĩ]\?$Y7|*5\oկȯ?v>#ћ0?s૟Bȧ=C7qk^ǵ:Z=_ ߺ ol$&1Iz`qӧNX"E,bX"E,bX"E,bX"E,bX":]5 md#E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MÁ}{=lbihg03sK TOS^}+8qk4A7s<{Ujk4jYn~qߝ|/q^ݘ彿GwNv|su^)~r]<NDwYy7xI{dGϜw6{Kgp-+g 8O;aWW|QaM&H ҄< Ν9M,bX"E,bX"Ү M&H y~{wpg։_テ;1f'۷?u^}Yz:WY,gօǼQNxiV6 MZ^_~}N_5NW^?{qp3~z'/;2A?H0E,bX"lYfXLcF?49wk]bp=c}pSĈ[rˣ+<8ƶOp];E,bX?ItmC6tmC6tmC6tmz2\9M7vtmC6tmC6tmC6tmC6Mӻ3X"E,biv l:#ln̈E,bX"E,bX"E,bX"<9{zGԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMM[W4uESWMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԌϝ3E,bX"E,bX"Xڵïdkiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii96f/8}$E,bX"E,bX"E,bX"E,bX"ũU~AV… ^= 3bXL#^Q|&1csZqp/g=|sW}\yv<7'W}O+#>r,^1f>/Ǚ O\,W ̍+wO|mӷ{6>r,bX"E,b12>{4"Әpa6 gΝ{x`Ϙw徥3ܽ?1dž 7\sNkbX"8urĮO65]е ]е ]е ]۰޵ WsӍ7;]е ]е ]е ]е mSL!E,bXڹkB,b1#r23bX"E,bX"E,bX"E,1/;~S늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺늺X9|3"E,bX"E,bX<xn5꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+꺢+F<Ü9:E,bX"E,bX"E,bX"E,bX"ű?.\{^={ڹ/X"ogu9?{'?]{E,bX"E,fp`^g2Xb3=̦̹\{sܷtw'Fؐ[]1=~k|M,bX"NصIڦkkkkֻqntǶܠkkkkmj޵4"E,bK;cME,fpAYfscF,bX"E,bX"E,bX"E,^?y~g4r,bX"E,b12>{4"Әpa6 gΝ{x`Ϙw徥3ܽ?1dž 7\sNkbX"8urĮO65]е ]е ]е ]۰޵ WsӍ7;]е ]е ]е ]е mSL!E,bXڹkB,b1#r23bX"E,bX"E,bX"E,ba3/|a%\5<|\Xb //p?ϋ_W_;,0Wv."xxm|S7Y"E,bXb6 e|,iE,1 lΜ;ϵ.18P1>}Kg{)nbĭ nc'殝"E,bq]۟mjkkkakoMwl kkkkڦ]ۙNC,bX"M]s;քXb6 Ge67f"E,bX"E,bX"E,bX":mSS_ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc15ڦƚX"E,bX"E,bXhNTרTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژjmL6ZSTkc1ژmSaME,bX"E,bX"E,bX"E,bX"E,bTK;ws\ G̦!E,Ώs׿WMWy΃(yy}4}3Wk{?/|v/3w9 6g ~cXL3a/ۮJ,bsavn"ܶ>!n|߱>`sr>t?}_ǿ1o0E,bX"lYfXLcF?49wk]bp=c}pSĈ[rˣ+<8ƶOp];E,bX?ItmC6tmC6tmC6tmz2\9M7vtmC6tmC6tmC6tmC6Mӻ3X"E,biv l:#ln̈E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXZ]_>Ž3_ŋYfscF,bX"O?kӈsGpt'/߿{ N^bϞ1ZK'XĢ9vou1,5G^e|5vo/>WO SwO'̞g^rZ"E,bXb6 e|,iE,1 lΜ;ϵ.18P1>}Kg{)nbĭ nc'殝"E,bq]۟mjkkkakoMwl kkkkڦ]ۙNC,bX"M]s;քXb6 Ge67f"E,bX"E,b ? þ_xݶgO˶=i{$ ߍ n7Z'! `qbG `,$hQ@HiFh>~>9ƆiqYsueŌoy}K;r˛>/z#o{p[tçnnmK#4H#g_ZGmqpqpqpq4zf픷|Wܵwwwiiiim8yFiFi/t`%iq1x1wwH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HL%/]hrIiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\x!776\H#3u̚+.f wpsk[iFi<Һ?8l;8888883k曼=w4N4N4N4N8l3H#4H}m.I#}ǏFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF39|͍ 3HL]?ʲϝw{7} _:=Gֽ3;鞇O{ږFiFϾ:N4N4N4Ni)o&k888888888>qp4H#48l_p~KHbGc,FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiŌGrscŌ48SϬbs緼%Mxrycguo茷=Np7FiƳ/{pö8888888xq=v[n+s;N4N4N4N4öO<#4H#4\:4Ҹg wpsk[iFi<Һ?8l;8888883k曼=w4N4N4N4N8l3H#4H}m.I#}ǏFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF39|͍ 3HL]?ʲϝw{7} _:=Gֽ3;鞇O{ږFiFϾ:N4N4N4Ni)o&k888888888>qp4H#48l_p~KHbGc,FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiZIDATFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiŌGrscŌ48SϬbs緼%Mxrycguo茷=Np7FiƳ/{pö8888888xq=v[n+s;N4N4N4N4öO<#4H#4\:4Ҹg wpsk[iFi<Һ?8l;8888883k曼=w4N4N4N4N8l3H#4H}m.I#}ǏFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF39|͍ 3HL]?ʲϝw{7} _:=Gֽ3;鞇O{ږFiFϾ:N4N4N4Ni)o&k888888888>qp4H#48l_p~KHbGc,FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiŌGrscŌ48SϬbs緼%Mxrycguo茷=Np7FiƳ/{pö8888888xq=v[n+s;N4N4N4N4öO<#4H#4\:4ҸgƆiqYsueŌoy}K;r˛>/z#o{p[tçnnmK#4H#g_ZGmqpqpqpq4zf픷|Wܵwwwiiiim8yFiFi/t`%iq1x1wwH#4H#4H#Pwv^wwOG]}H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸX.4ҸX.4ҸX.4H#4H#4H#4H#4H#4ҸX.J#4H#4\ܩ;=ԹFiFiFiFiFÙ{ow}/?MKFiFiYH#4H#4H#P~ុ!H#4H#4H#4H#4H#4H#4H#4H#4ҺX.4H#4H#4H#;3H<Ό4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hb#bFig\]Yv1[xߒ\pWە^Z,eyQ/-}G<;SgL4HL3uH#ԙ:SiFZwxG>s#PgL䳏y8 ԹFZgLiFiqԙJbǿy'#o{-ԙ:iF3u\gvAFiqԙJO{Go>pnƙ:Sg"4ԙ:SFiqԙ:i:Sg*4u\\Z/'(3HL3unƙ:Sw<~pw}q< L3unF3uԹFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF39|͍ 3HL]?ʲϝw{7} _:=Gֽ3;鞇O{ږFiFϾ:N4N4N4Ni)o&k888888888>qp4H#48l_p~KHbGc,FiFiF3xo_y{٧cK'N_ uv˧O}WM+7}?~g7x)N| ?민jZiFZxs'}1O9tIdrS8~̵_b{Wy]/}o*o}N_詳㖯gOcZR^ճk8~ܵ}ųnO%|Ǐy7'iq^sѵW_> ǟ}+~襅;<{zsB^}ٵ<š/BFi$/cZŋ M?_§z+/ً۾r?~7M#}1O8m6'=mF;myv;/9^zȵ~{=v9~^u/P3l}=R{is/+/J#=Yϝ= qxѓǏ©u/J&^9 ǏnnO^xI?oNs7^<ǞӾ:LB/}qO_g=?<э^Ӿp'N4q󬧞? NKgڶ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4.fYH#4H#4H#4ҺX,Ny?q>>.7{k~}_]\uoy=z9}7zկ]&>}et޿|[k5ÿG74ҺG~^?+}-~9/qѓOSW+_CϹoYk?_xǾ䱭{g]ukrx5k^/;k_zy_,:̃.?ߟ~g|C~W׽J?o瞼^;}e_]z~75'_H#s'V\V|k|?O>?MK o?7wk|?C?zE揽+_:篼νȋ,4f\xo W5wǿ/MW_ݿ׿>ve}G۾M:?ڶK~~w]Nk}Ywշrw<~{;Ozbx~ʷ;-?ߺϵU׿׽wc_|___y| 7s+~~\Ky+Oy /=|/_}y^,iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF39|͍ 3HL]?ʲϝw{7} _:=Gֽ3;鞇O{ږFiFϾ:N4N4N4Ni)o&k888888888>qp4H#48l_p~KHbGc,Fiƙ:Sg*4HrO}=rOywg]K/8mna__%?G}9.G=]iG>Hqw~ѯ~ݾ33g7=C3nn|u>po=2'sǽ[O9.vI\qK/MqۻKϾ𗮝ܿy]|?ws=!]s#˜OwO8,v醇zn3ޯxg~KW_ާ^0ѿ ӿm7ki1?=Mӷ~]>?k~{_OWI]~\>3ᢑFis~k l[|۵{b|zoc^{˾S?ɗ|ʕƦG䷼cS/|g}¹ƙ:838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383uH#4Hb#bFig\]Yv1[xߒ\p{|N4R)b N/?75Wޫ??^_']w/y5ޫ~bF-k|s'g~/~q/]|+7/,\;'_k_k|5ͯY_ Gݫ-gw_>s "4R\L?֯<} Q?_kw^>{/\x;Sӿ+.W3 'j}ϛ5]>}' >?Y\zg쉗#WrNgW~Х_)\\Y_}#^X,g=ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲ+ˮ,ʲp<}ꤗ.NH#4ҸCnnlFg5WW]x7޷#ܻOnx9yw>׼uI<|>ֶ4H#4xuqvqpqpqp/NgNy7y]{pwwiiiiqgFiaK\F3?'swg!4Hi}{{Å ,fiK{ji>QՊb}/}G}.o?bÿ'c7>?CW[|,?կ}u׷soGS<|ix yPiq<{^:ぇ\>tCO-ԓO_^>}ȕ']:k緜7\;?%;z_=O\uÇ<o7z_\w₏-gwg炏?eO>vU~K} _/沗>?#^X,i/y6ϻyޭnmwk[}͟ŝyWo/\?|GOK#{?oy:87Һÿw|Y;owzc{ _7OQ/>N[?_crG^7o''~:]{eW{6o?~?q{pnq sg}Ƀ\ 4HbCO=s.fƙzt8{͞czֶ4H#4x)=8l;888888ѓǽ+}MnpZ:88888888ط<#4H#4ݿwfGi\xiW˥4H#4Һk>#̳˾{?;#fQ7;_e~}k'7\Q?O3w\qس~+#^{O~iqfǍοҭ\sGoe~|1/_^#_^Ƕ_u^K]?Lp_O[?L[}_W^i.{^Ə2/=xxC48_į|c~|y{>/W\{nͽƓ/?w>~wn~p~_ʼ?>!z/[o6GiFZ睓>o3Jcs>'.C|ƍiZ?U_ ?~_GM?𕝸|?U7nc'?p\W~=_>q씿yf{[/[lm_w6?|#~ mvQ¹FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\GΎ4H#=ιFg꩓>A3y:g3)޷5{^{[H#4Hӧܷ4N4N4N4^FOꫮM7j4N4N4N4N8l{`ߚ4H#48lw5iq1_\-H#3ӯZJ#4H#. srr4Һ\.\Ε\V^jJ<^ŕ878KW^Z-\PiFgpZyʋFKW^t9WyŕV yxq¹u\ s#8eξsw-㡓g\.^jJ#48ϳ/Z87V+/]\yijr3Z΍\i/tqLFi\.tq奋KsuX+yv@i\V^jr4Һ\.tqr饋+sFi/ŕ /έ4V+/]\8ϳKW^Z-\i]-.4H#. TiuXxKW87B].^jr4KW^\΍<{qwW^\-Z.bvnpZyu1ϮsjpAr:'|ث|.z#Ge4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4GmvFi\x'徵mqpqpqpq4zrW_uoi VKqpqpqpqpa֜gFiaH#GjFi~=RiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiƜ?/~?w;FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiֹwɿw?y\?DiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFilv|6;H#4.f<n;bFiN̓]xvc+nCwA3y:g3)޷5{^{[H#4Hӧܷ4N4N4N4^FOꫮM7j4N4N4N4N8l{`ߚ4H#48lw5iq1_\-H#3ӯZJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4GmvFi\x'徵mqpqpqpq4zrW_uoi VKqpqpqpqpa֜gFiaH#GjFi~=RiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFift8{͞czֶ4H#4x)=8l;888888ѓǽ+}MnpZ:88888888ط<#4H#4ݿwfGi\xi/H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#46;>~QiF3z 7ϝs1#4S'}Ƀ.f<wϡup;;z#gS^Ioks׃'|^7Fi3Ooaaiiii0\?W]nuiiiiq5iFiq>k6;Hb//Z.Fgꫧ_CO{qFiFilv>婓;ǎ챣/{;ǎ챣/{;ǎ챣/{;ǎ챣/{;ǎ챣/{;ǎ챣/{;ǎ챣/{ˮ?=q'c8~Ǐy1O?c>u­M/Lٹ 4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HcّFiq1㡧p93HL=urg|'fGiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFift8{͞czֶ4H#4x)=8l;888888ѓǽ+}MnpZ:88888888ط<#4H#4ݿwfGi\xi/H#4Hcv.SO+N$&1ILb$&1ILb$&1ILbDZ{?{YU}?7G}5W˥4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#͎xfGiŌzs\H#3uynlymswyo|?pk[= /߽ͭmiFiS[{qvqpqpqp/L'׏{UWvjtqpqpqpqp=oyFiFiϻ͎4Ҹ/xK iƙW|^\-FiƝ]~ }CUUUUUUUUUUUUUUUUUUUUUUUUUUUU}Cxu?X?G.I#4H#4H#4H#4H#4H#4H#4H#4H#4H#4BiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiu&H#4H#4H#4H#4H#3FiFiFiFiFiFiFiFi4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#͎xfGiŌzs\H#3uynlymswyo|?pk[= /߽ͭmiFiS[{qvqpqpqp/L'׏{UWvjtqpqpqpqp=oyFiFiϻ͎4Ҹ/xK iƙW|^\-FiL;}!x UUUUUUUUUUUUUUUUUUUUUUUUUUUU_|>3}#G^//ݻKk񑵇}I#4B],VK/..87H#4H#4H#4H#4H#4H#4H#48=[۶FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi;[徵mqpqpqpq4zrW_uoi VKqpqpqpqpa֜gFiaH#GjFi~=RiFi߾=o.^Ϟ?y>3w._]|_sݿw'Z-}>;ip6|x/z~ڑFiFiFiFiFiFiFiENxw긘FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFZW-otΟ=FiFiFis6_.iFiFiFiFiFiFi?WgoK4H#<{g?mYiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF?͎4H#=ιFg꩓>A3y:g3)޷5{^{[H#4Hӧܷ4N4N4N4^FOꫮM7j4N4N4N4N8l{`ߚ4H#48lw5iq1_\-H#3ӯZJ#4H#ٙwܡg|7TU{W{k_졧~ٳ}뮻͍ wg=gN#k뿓FZ gח};{_}>%grp\\Hb1\̮ W˅˹H . W˅˹Hr1\,\-.3\.\-3xuoe^{~Biu]. W i\̸Hbubjp1r1\,\-.87Hb1Z.\-gDi],fW˅J#yv\Z.4H#4rp\ZHb1Hb1 8ϸZ.}w|ɏ\~۾ߎ8ϳrvAFibjp-q-YK΍4. W˅Hbbv\Z.\87B].frvAA3y:g3)޷5{^{[H#4Hӧܷ4N4N4N4^FOꫮM7j4N4N4N4N8l{`ߚ4H#48lw5iq1_\-H#3ӯZJ#4H#ٙwܡg|7TU]mү]>oa_3O~o77}}KW}#/w.zIY{_4 |xٻ-o=Ck_}Qw]~wzz; fޏyگީ[~oc6/x~C_y?O߷-gnG7]MkXH#g~[|_vk>|_: Wߺ/|kϸg^zoy_o]pn7+fow~yZs|K׷~K>H#\_}˛'||utq߹k>+/恗NKa=o76GU.?CH#4g~~w~ K?C-ow<3_>o{;} 6ݿwחg?nx7}>擾>}oHcW|/WoЕqYl_C';|_S[= c]~H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4GmvFi\x'徵mqpqpqpq4zrW_uoi VKqpqpqpqpa֜gFiaH#GjFi~=RiFi߾=oO~^u~F?XUUUUUUUUUUUUUUUUUUUUU7/C<~wrK].K.Z-]:yG'嶏}*?ٛ=zais{%=89zΛ>?wOv s_˷>o?]'}on?n/{{??|x~1?]/˷\7c~y i.ۿKs?~kb%ֽ~_~ {ѝ~m';ӷ|?y}\v9s?;~-ֽڙ/w{h^!]mg"3;yk>}^<8Oۼf^'m???=vz7t߫= /o{ϺXTi~\?෿uXwڿ^[~槿vnp_{|۾:?gw|+~c}{w~7; wx1Οz_e_{;nֺx_vnFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFilv|6;H#4.f<n;bFiN̓]xvc+nCwϝ6G~} N6ы~狟G_x{zYW7/˽{;yi>FZܯχ~x٬fqGo=5my'3_w|/vuop{SWzo[Cy|~7k{χ/G#~o_o|ћ>_׾gscy~;iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF zfCi {%33?v \]kaՇ.%w}O]'{s;?wyeMiFixu֜iiiiܙ׽[}=;֦88888888͐FiFUg!4gx䢯z٭͹4Hz׷6FilL~_㾥꺏=_g>>?wTUUUUUUUUUUUUUUUUUUU՗NcG=I?wԅug]xY{օugEڷҸ9/%|ml曳׽}GMӟս^^}??8c9[{GΏ_r#?}ӧoOw/ 7V^/|I#?ؕg><0K#+gCAwYsNۿtگ|ןvof_?_~x!?/xb5[~օg'o|e)3;zO~녳v)7~IW;;~ꦛ馛g,qqw??I?w_'W~ai;;_{ϽC~c'|oՍ-o̮W>?޻g.?&<so|aozo+לSg3>_unrg[9_nώQ>~WOy+>gm<|7g}>_ GshM6|~7ԟo.WOt7tg7M{1wC~KM}÷z%o矿,FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFif#ِFiq>Åuyi iqF=Ǐu>+WW偃ZX>txɝxS޵w>v;vz]^YFiF/^8}{5qpqpqpqp}=wuoVvώ/4N4N4N4N8y>g3FiamՃlH#:+^vks.48^/.Qgi\[]qc}rc}rc}rX[uƺz٧u{4f3^_쵳Gow~稗^9쭿A]V=g|{xyE?e&k/_3vA?c9K.>C~gG<8k\;{/xǞt^9siq.ꞻ>/^._^/,3;}7GGcOܚ{tGz?-w.;o|;s?zǞ|K˗|+W>E_]S_=?Wzk^~CwK'??Y_\]˷_~!?çp)?K?C/}̃}/~ާy~i1Ǿq=KC}-ߜӟ-- ^|3=xyO:y? G94M}~??'t~ٵ+c7z>v~ tf+?|cҺ9wNFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFif#ِFiq>Åuyi iqF=Ǐu>+WW偃ZX>txɝxS޵w>v;vz]^YFiF/^8}{5qpqpqpqp}=wuoVvώ/4N4N4N4N8y>g3FiamՃlH#:+^vks.48^/.;QO7S_:n=u_7?E⌸r>C/Kη]O_o;Ki8]9?|Ͽw_/_|?{;~g{ ;?~_cɇ#s>tw¯{OZiqu/~ÿ;˗={g^z/k^X_쯼]G.7/O6_z=g?q'ƺɆg?<1o~+>}c}o/_iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil6Cy=uѻ8]ycgckx7߻5iFiطqXsqpqpqpקsg^nm[[N4N4N4N4Ús6CiFiV=͆48ᩓre6H#3 o^ڔFiF1ͯ[oo޸SRUUUUUUUUUUUUUUUUUUUUU_:ycGqּ|ܽ__wя~Ot>e_>S}CiuuǕ%\W\Ym#drmW.]t5 ʊHVV\jW^K^F"\[Yq#F3|咗/_ʊ+ndimqFW1zK/yڪi;,y%.8Mf}pmu4gN?}ʲW/_`iNWrKWi$+K^tѥ\߈4ByE/_0Fin1\sE/_ⵕVWM#\[K\v͕k+ol1ӚW.yʒVVɵ7!n +^|+W:NBFi+K^t519 ƍqamV]r˗/7ᴶ8NH7VlF1j!n ׼z/_qemӚ`3|咗/_qul#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#469͆4H#.sNFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF zfCi {%33?v \]kaՇ.%w}O]'{s;?wyeMiFixu֜iiiiܙ׽[}=;֦88888888͐FiFUg!4gx䢯z٭͹4Hz׷6Fiƍ?[o=rk^tѥ˗|Yw1_~K/yE.9XCIDAT_r?r}4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#g=/ H#4H#4H#48ck^ﻜ:kFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF zfCi {%33?v \]kaՇ.%w}O]'{s;?wyeMiFixu֜iiiiܙ׽[}=;֦88888888͐FiFUg!4gx䢯z٭͹4Hz׷6Fiƍ'v'|7UUUUUUUUUUUUUUUUUUUUUUUUUUUU=K>{WWyE\K._]re\˗x ={=o^FiFiFiFiFiFiFiFiFiFiFipksFiFiFiFgY#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HcCOlH#48sϺ|48?wǎ:ᕫ+Aw-e:΃W碑y};;^sg.I#4H#/Ú8888888>;vogǗtqpqpqpqpӧ<}OS>}ӧOy)O>ӧ<}OS>}ӧOy)O>ӧ<}OS>}ӧOy)O>S/Ծ~]1?\x sc.<#o._]rFFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil6Cy=uѻ8]ycgckx7߻5iFiطqXsqpqpqpקsg^nm[[N4N4N4N4Ús6CiFiV=͆48ᩓre6H#3 o^ڔFiFiQ.]#ϸ}rnܳ'=}rnܳ'=}rnܳ'=}rnܳ'=}rnܳ'=}rnܳ'=}rnܳ'v=rأG{a9#=zG=/%iƺ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#͆G=m!4H| =ҒHz;|WxݵG};^.zk9|wz{&4H#4^p:kN4N4N4N4z~ۭ_vkkiiiiqXЁ}fH#4H#ڪِF3|tه/{w?q޻vxǮYow+kH#4H =o4N4N4N4Oμe6iiii5l4H#48zp> iq>S'}nmΥFgKŅ罾)4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HcCOlH#48sϺ|48?wǎ:ᕫ+Aw-e:΃W碑y};;^sg.I#4H#/Ú8888888>;vogǗtqpqpqpqp;vogǗtqpqpqpqp~yw;}p>~yw;}p>~yw;}p>~O~]棏|G>m}>ȷ}o#G=+_v}ƺ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#͆G=m!4H| =ҒHz;|WxݵG};^.zk9|wz{&4H#4^p:kN4N4N4N4z~ۭ_vkkiiiiqXЁ}fH#4H#ڪِF3CiQϟ;cGoy࠻V}^r+E~w>睏]|~W֤FiƋ{`^aiiii\Fϝyoշݳnmm:88888888k: iFiqX[}6H|N.ʩڜK#4Ψ. {}kSiFiؘ|znoPUUUUUUUUUUUUUUUUUUUUUUUUUUUEU}g?LzKUշ~3'O,#xMiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF zfCi {%33?v \]kaՇ.%w}O]'{s;?wyeMiFixu֜iiiiܙ׽[}=;֦88888888͐FiFUg!4gx䢯z٭͹4Hz׷6Fiƍ?[|tه/{w?q޻vxǮYow+kH#4H =o4N4N4N4Oμe6iiii5l4H#48zp> iq>S'}nmΥFgKŅ罾)4H#4fc_/,RUU߷q?o'Og?wopc}ݻ??xn߸O|O inLNêښ4D8FiFiFiFiݜ?LmFiFiFiFiFiFiFiFiFiFiFiFiƆ4H#4H#4H#4H#4H#4H#4H#ԍ}޿_3Fi~a?zJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#͆G=m!4H| =ҒHz;|WxݵG};^.zk9|wz{&4H#4^p:kN4N4N4N4z~ۭ_vkkiiiiqXЁ}fH#4H#ڪِF3I/^ /^xçu{4BݸzGfw_xy']ں󙛛s6ڜ97gΉngΉ4Һ9治̟3WWx?X[sqnnν9||׷npH#[nqH#[nmΜips48 ifnmnz}kg4H#̭Moݜ|s~o=Z[s8kfnmmz}sHl[^tk>sH|>ss>wkkӭ9g367ڜ9#:C#sl6sks[s8GWx3g4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#469͆4H#.?tG3/zimxG}~Nu|w=#?|a=7뫏GiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil6Cy=uѻ8]ycgckx7߻5iFi˯0tWY63̚LsΥn!`hLp;vX8Fqʒ%fٲ%{Ur?yܻ4N4N4N4ޘFϞ>vN4N4N4N4ê.9H#4H#uYYF38'OBiq^pczsc]iFiovŌb1X.fg\__x\z_ߔƍu}k΋ +/w?+?+x?y;u^w<8>rev^}Ώ{o?YWo/??xg_>Ayx'w'cc);y'=o~:_cyóȷ~#]*3qo}ϟg}ꩇ7)?{~z#^|cVvn{?n?v~fwy[O_|?]}a?x_; bO÷=~ß"9؏ FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFif̓YFiq13]rŌ48Sϝ=#\x5oݱ}Њ>}]'/G/3rWJ#4H#/sê8888888xc={w~o{]nl;88888888߻<#4H#4ݷgfMi\x< iƙzy-?͍uiFi1k;- UW['n-~s_'UUUUUUUUUUUUUUUUUUUUU} =٬0k7 vì0k7 x)\z_ߔy+/=Wnyo3KS=3۾+E˷ݟ\/wɗO޻O[foy ~/}>3kvsW1]җ|/s[?ßή?7~Ƴ?}܏mws~>;>wɕz=?澓}kWvx3~^|џ^ni5O˿y+ҏ~u-|ڼY볯oq|gJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HcO٬I#4Ҹqî\bFiΞC.f|>|h.{gwN{og+VFiƋιw aiiii1=};n7ݽ.76֝iiiiU]rFiF۳d&4.f{?zn=O<ޥ_{]{>_sw~iA{s~1{_W']~뇧- s~?x+s#7^7N3G;o|Ư~C~鑽>?/o?soy_?zJuׯ?~ ~oߋ 7_ncᅬ_mG=w4qmG?޾s)g_ņg_[_YO}V+/^w܍y{ǃOvstGn/rԏwퟭ87U_Oʯ̫3Ճ~m7l4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#46k͚4H#9ʕ+.fƙzi9bWy}^ÇV|+޿>yѯ<~/?z/~w~m{rmUiFix{pViiiӧ|rcciiiiqXu%iFiqX=K6kHbǟ䉗X_H#4K{lYonK#4H#Y|noOw=9bUq''>g UUUUUUUUUUUUUUUUUUUU/Cfp8:^w\itaՓ'^ɥ'|Mi;ʹy7\{S?z?z̒o7}O~A/w~o}fYo_m|/|{|p_o._?Տ_ܹaMNs#O#v?x•?S^N{|^y}='N'%OL7z¯}⭾{~U_z%/\#;|J#]sx/<3_z_Ǯ=9O{\]xlsW|_:=ܷ|;+No-p~?s9{ǃOz^Ϭoϝ.{/zU>oշNן;y~3FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFif̓YFiq13]rŌ48Sϝ=#\x5oݱ}Њ>}]'/G/3rWJ#4H#/sê8888888xc={w~o{]nl;88888888߻<#4H#4ݷgfMi\x< iƙzy-?͍uiFi1k;-7Tuҳ~wKg>x؟]_ხݘ|'oz;^Wc3GUOt'7q1pˏ~Oo};?{Nx3OCyܼws~_:^Gt}>g>'>f~'}ޏzg>ouϿ\Yy?g>i?_۷zϼ)ņqʯ|?su'}[>{-^ʚ'e?C7g_'/ k^8~ŧ}-;<{g~GuO]*3k^y_~Oݷd熗w<>=G?q?OO?3/}o}~7o/\;}I/yͿ= }cGvܯ9?O鏼7_zU{z4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#46k͚4H#9ʕ+.fƙzi9bWy}^ÇV|+޿>yѯ<~/?z/~w~m{rmUiFix{pViiiӧ|rcciiiiqXu%iFiqX=K6kHbǟ䉗X_H#4K{lYonK#4H#Y|noN~'_^x:q?# ?O{|[_/4B%z{>ɣ/zF]~C{ʸ ?`9?|ɉr+7ҫά'y'~w՟s~tR^:~zx;|}?: pS] 4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#46k͚4H#9ʕ+.fƙzi9bWy}^ÇV|+޿>yѯ<~/?z/~w~m{rmUiFix{pViiiӧ|rcciiiiqXu%iFiqX=K6kHbǟ䉗X_H#4K{lYonK#4H#Y|no񆪪/Ç8^wc]'>ǽzW^ 4u}}k77| 7gbv}4.8s#Ɔ b]_ nn@y͛vsݛ 7έ\iu]+vs6.4Һk77|mcJ#nnƺ H<޼k7X 4H#›77|mc8ϳ776|mcܺX̮ϕFiٛvsÛ3bk77|7nέ T8ϳ Yt%\fy _gr|ٕq͙H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#͚?e&4Hbgr劋iq;{ڣGk޺c|O^+ˏ9흻_vcg=\[FiF/^8ޥ'Uqpqpqpq4z)6tXwqpqpqpqpVݿwyFiFiVoϒ͚4Ҹ=y%7H#3҅[~֛H#4Hc&w~![>o_~Urɫ_?ӟ%ϝ=g<Ϟ3?{sg4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#͚?e&4Hbgr劋iq;{ڣGk޺c|O^+ˏ9흻_vcg=\[FiF/^8ޥ'Uqpqpqpq4z)6tXwqpqpqpqpVݿwyFiFiVoϒ͚4Ҹ=y%7H#3҅[~֛H#4H#k7F;}|`vرvl}`vرvl}`vرvl}`vرvl}`vرvl}`vرvl}`vرݯ}x!q#Nw}k]ot׷vz=Ot\vCiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFif̓YFiq13]rŌ48Sϝ=#\x5oݱ}Њ>}]'/G/3rWJ#4H#/sê8888888xc={w~o{]nl;88888888߻<#4H#4ݷgfMi\x< iƙzy-?͍uiFiFyvqgpgpgpgpgpgpgpgpgpgpgpgpgpbvݘ iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF5fMiŌv3HL=wGr1׼u>w/_C+>w{W?=s;wx={\*4H#4^pνKO8N4N4N4NiSqmmw4N4N4N4N84H#48^wߞ%5iq1{Kn/Fg =77֥FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil<)5iF3.?sؕ+W\H#3=rŌ^ܽ|݇We}_y_~_i;-qڪ4H#4x9.=8:8888887ѳOyƺ88888888K3H#4Hz}{l֤Ō'?/Fi.XFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiYl֤Fi\̸aW\q1#4sgO{!3^z[wsu>O_=G9흻_vcg=\[FiF/^8ޥ'Uqpqpqpq4z)6tXwqpqpqpqpVݿwyFiFiVoϒ͚4Ҹ=y%7H#3҅[~֛H#4H#4HL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uBFiFivfMiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF5fMiŌv3HL=wGr1׼u>w/_C+޷o􏿰;};wrcg=\[FiF/^8ޥ'Uqpqpqpq4z)6tXwqpqpqpqpVݿwyFiFiVoϒ͚4Ҹ=y%7H#3҅[~֛H#4H# \>}\Oo=㗾s/~w~m{rmUiFix{pViiiӧ|rcciiiiqXu%iFiqX=K6kHbǟ䉗X_H#4K{lYonK#4H#͚.zNw=]t#;Nw=]t#;Nw=]t#;Nw=]t#;Nw=]t#;Nw=]t#;Nw=]t7;:>O{:>Owϒq5iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil<)5iF3.?sؕ+W\H#3=rŌ^ܽ|݇xSԽOW׻_vcg=\[FiF/^8ޥ'Uqpqpqpq4z)6tXwqpqpqpqpVݿwyFiFiVoϒ͚4Ҹ=y%7H#3҅[~֛H#4Hcn~z^{M777tssM777tssM777tssM777tssM777tssM777tssM777}O~~xLUUUUUUUՙzzscCiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFif̓YFiq13]rŌ48Sϝ=#\x5oݱ}Њ?_x訟qO}~O/{og+VFiƋιw aiiii1=};n7ݽ.76֝iiiiU]rFiF۳d&4.f/os'_|;wx={\*4H#4^pνKO8N4N4N4NiSqmmw4N4N4N4N84H#48^wߞ%5iq1{Kn/Fg =77֥FiƬMC>o/ƿoOKKn߾bvzW^KOH#^k71 nl,iFiFiFiqf_㧼͍FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi9+g\w^,XiFiFiFy|ԟ_.Tiƙ5W~c MFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF5fMiŌv3HL=wGr1׼u>w/_C+޷o[޹;-qڪ4H#4x9.=8:8888887ѳOyƺ88888888K3H#4Hz}{l֤Ō'?/Fi.XFiF6QxCUoN}oy~?<ꖪQ_x}{c^x'7yU_</_+۵ח_V^]OpnFiFiFib~/k|ӋBFiFiFiO~y^<5`f̬5W9{gٹmsQ1wQC`HbQ/IGmE5 t ͵FMW}ߪUUc׫FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFilJ#48#=|48\98W.xŭK^^Uo[:-=ֽ+^wq=7uiFi..u֝iiiitK^sU]74N4N4N4N8q iFiqX_si߂ͦ48#±noͥFgԳOloI#4H#ٜCz=owy7?^&}*>wYS'O?Oo=}-}MM_z-o~寿tu{ 11kd6'aaL"tsM6n9Mn^ޛWs/>1MH656M77F7q}5766FƸ4mH#4f$Ҙ͍ i1q}5i6H#͆4;MɦښӴ!4Ҙa}qM"dÍa5iC馛489M4f7^}̿Gґe:뭛48_pH#iL+ ya>s؍q}u766uS[QiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil6}h6H#4gAϯ:!4Ψ'W{gx ^q뒻׼yx`ۖy}gqIg>_t׽'}.4H#49}Ņú88888881k7ܴiiiiu/.8!4H#4k.[ٔF3|_Ww3NQ~ yC.:M_z6lo5y)_Y=Nx^פq{~~qg_^S_ǽ/??7~[~/?C~;>u<{҂ xݧօG疫^W>vx߸c__-o~_9O}^?w~wy܆[ >]~o|Ě3#W{;>55ws-w|n/o^_⧮V!8ceo GOK/~|/q<~#o>peg YOF?O Χ'?>~oӏݷRgpϟFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFilJ#48#=|48\98W.xŭK^^Uo[:-='~]yº4H#4xI:N4N4N4N4r%*pӮrqpqpqpqpݿl4H#48ofSiؑg|QH#3ӧ||QwFilN!_uUUU8ǯ^-4ܑg]>􈯽vѭ;[noښ5w{{-}_g|х'_C?x7i_=\v#<_~?z\{^v'^O~~<3UWɗ>'wOzx+&/ޒ/9 3?}S~N ~}F}yggsfɷK/zG zuݧgO/|Ƿ_}g?ȫu{۟z}O{7yQZ_{}FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFifӇo)4H|ˏHzr帇>|^.{y;Vm霷w{V^Ew{o H#4H']\8;888888|Mnp{{iiiiqXw₳H#4H㰾ҾMiq>cGcGޚK#4ΨgOGޒFiF9ycˇ|UUᅣ ~+1g?UUUUUUUUUUUUUUUUUUUUU}ȳz/yO<-c>زO<-}Q[o4:xgg>z}1oGGu{n?<;g5_x㖙[?G~GY;gK//=߼~gs_{i񈛳Wӗz_qy?3/ߎ_pF]_|K[y]W}o>/{E|G>~HoK֜5H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#46>~MiF3\~WWϐFgԓ+=3<ukyw_XFiFϜ>^aiiiiܘFW5W_nu[N4N4N4N4ú͐FiF5-lJ#;/;\iqF={/?4H#4Ҙɻ~}[>믿W>o]8"CUUUUUUUUUUUUUUUUUUUUUU;<|ӧV<_8=G#>9?z<c񾅽I#ܰŋ/3?8>r7}~ڝ5WW~ү܅'뷾,$=wO>=|_=_X2xytNVzk-χ=?|]Kmw8?I}]w/ym{²wٖ9Qz$;9~Kzf6‰']OO?+,Tlxл٦'w?w߻6ovC:n_xMlH7|ѻrqg6Ԟ{_\{ʿ} 3Gƥzٖ]y)u5oCiQO+%w/y-x㞓^ϊ}kw{Ox<a]iFi;[H#4Hc6'}l<=?-xiϜ>k>wY9x&z_zEܘFqϞ94oakҸŚOu]^˿z=s◾ȹcG5/-|v?+|n8>V=Q'\g<_[ݵמ:ko|ⱇo?=pyowo{3?ZӇWI'{=7ky!zG|Ӈ3./vy;> }|ou޷o=??ꔥ8grfnQSϾ/ܸǟz҇'G#oW{!yםQϯo|M~?o7tcz/R1X-{<~2}i~;pzԚS ~? w3O??1я<ʪzЏc󋻝u=w߾&3⅕'7z{ҷţÙGnȫ+wngKOڭ`u_x~WO\pIDAT/~WٟohW~o?{U~WOz7Nۜ7O1gY/|^&ɫšh8?}ۛ?}&Oʛ ]~]xW`/H W_s/mqƆg]_~ɛ|'ƍ;?|?yɗ~o~ȣl8x[{{vRiX}~So~c_qo\#oO> _ Zs[{2t{_o3/ȇ}5wwck|>|j+Wxo}'νO9f{J#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HcCٔFiq>Gz~u iqF=rCp>s\[ܽ{޶t[;{Nz=+^wq=7uiFi..u֝iiiitK^sU]74N4N4N4N8q iFiqX_si߂ͦ48#±noͥFgԳOloI#4H#ٜC몪>wYxq}s/ķ\r27k /}߾&48Ψ3J#3*3ꬑF3"Ψ4:Ψ3J#F3H#uFQgTgY#4ΨFiQguH#3:iqFQguF:Έ4H#4Ψ4H#3:iqFQgTiuFQgTiQiFguFQiuFqFFgTZg/{~MiF3\~WWϐFgԓ+=3<ukyw_XFiFϜ>^aiiiiܘFW5W_nu[N4N4N4N4ú͐FiF5-lJ#;/;\iqF={/?4H#4Ҙɻ~}[>믿sG]pWνgɏre_Y=g򾅽I#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#y7}pNޚ54H#48ٚ9#H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HcCٔFiq>Gz~u iqF=rCp>s\[ܽ{޶t[;{Nz=+^wq=7uiFi..u֝iiiitK^sU]74N4N4N4N8q iFiqX_si߂ͦ48#±noͥFgԳOloI#4H#?N}_]UUUUUUUUUUUUUUUUUUUUUUUUUUU<끇p;{s/3=cO>~o_{MiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq>~iO FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil6}h6H#4gAϯ:!4Ψ'W{gx ^q뒻׼yx`ۖy}gqIg>_t׽'}.4H#49}Ņú88888881k7ܴiiiiu/.8!4H#4k.[ٔF3빗ϺY_9/칗z峞ϥ}.-siqK\Z>ϥ}.-siqK\Z>ϥ}.-siq?]?tqaqaqaqaz`aXFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFifӇo)4H|ˏHzr帇>|^.{y;Vm霷w{V^Ew{o H#4H']\8;888888|Mnp{{iiiiqXw₳H#4H㰾ҾMiq>cGcGޚK#4ΨgOGޒFiFiQi}>a|O>q'8O'}>a|O>q'8O'}>a|O>q'8O'}>a<>yy??|c1Oxil64H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#ͦfSi 9U3q=| Ͻr+n]rw8z9o79xǽv߼֥Fi3OqXwqpqpqp7ѕ/yWv88888888g3Fia}ͥ} 6H|ǎ< ǎ5FiQϞ>ˏ%4H#4H|;[^ζwŝm/l{qgۋ;^ζwŝm/l{qgۋ;^ζwŝm/l{qgۋ;^ζwζ;[lo;[lo;[no͝QMiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFil6}h6H#4gAϯ:!4Ψ'W{gx ^q뒻׼yx`ۖy}gqIg>_t׽'}.4H#49}Ņú88888881k7ܴiiiiu/.8!4H#4k.[ٔF3|^.{y;Vm霷w{V^Ew{o H#4H']\8;888888|Mnp{{iiiiqXw₳H#4H㰾ҾMiq>cGcGޚK#4ΨgOGޒFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFΨ4H#4Ψ4H#4H#4HJ:|YQiFi16niFiFiQg3p>3*4H#4H#4H#3*4H#4H#4H#4H#4H#4l1MqF5H#4H#4H#4H#4H#4H#tcM"4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#ͦfSi 9U3q=| Ͻr+n]rw8z9o79xǽv߼֥Fi3OqXwqpqpqp7ѕ/yWv88888888g3Fia}ͥ} 6H|ǎ< ǎ5FiQϞ>ˏ%4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#[:ٗϝF晕H#4H#4؍5Ϭvܜ<G}g~g~WM+4H;~㆟y#^qٗ}Y#4H#4κgOx٧}|gGz~u iqF=rCp>s\[ܽ{޶t[;{Nz=+^wq=7uiFi..u֝iiiitK^sU]74N4N4N4N8q iFiqX_si߂ͦ48#±noͥFgԳOloI#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҘǏWY9Fs-/xq{q>{⎯l=Gifl׶<|x_̅g?>f@i;;[lom縵kݙ㬑lΎ]vgF}EY}ՉW5s/mH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4lm6Fip_]u>CiQO+%w/y-x㞓^ϊ}kw{Ox<a]iFi;[H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4nxwGέK#NC|=~r7*7}=?Y#a}ޛSݏwr>i}reՂS} yܗߜZ|w^ܷ쫙5|YxM;O,:nm;W<xݕ_߼lA6{W+;p{E}?!ϯ?\q_9}߽m~wK뷯_os6=1kowr_zC?y؟}~{7xCO?W^rmΙ<_WMyiRg_7uυ :ҡ=~گkntϡ[g4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4lm6Fip_]u>CiQO+%w/y-x㞓^ϊ}kw{Ox<a]iFi;[H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4 ?foum۫Mm~t mb00&bP먉QEAHrTICԺr2x$9XXGgΌ43s|ko]Fom};=gǏsا׷2!4=k_~3^<}^ۆ}~?~~?u#/C/s/^>K~w x[OO~g-{ȟO>oWko/>}~g̯<?Goyi_zzv?/mQxo>~ ~O|{o_Gݷ}?}>ȃ~տi|wW^oVwݼ?g>O}Ͽ>e|{ћΤFik]/ ñ_kYׯ~?~~?w/y_oE?>_\yOO?eo7>#o_]}'[7oMzٿ/ڍwɍ;v}O|ɵ_?{wOmߟ|k7҇ͫ^^=>3o<3_3~ƯpH??Տ/ӭ7G?x~O~~_w~c^g~_1_|]O|}k[?S?|qr4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4+/}4H#7H^r7_{inyߓ|myO|ç.\ؗsW| }w|[}Eo:FiFww;yp}y>z~x=Oε?߻h={?{gp9O}߹'=fb{~{?}?|k^^<]_y=N4H7~ߏȯε~gwk /Cgsӓaus5?}?-'?~/ƿW~=?=Oi4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#]җmJ#48 ޼qi 4+}W^=yg/Wn7|uxᚏ}?wŇp}G_3iFi{W=y3~ay3g~5_OW{|?y.v䖗6~{߻SG#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4+/}4H#7H^r7_{inyߓ|myO|ç.\ؗsW| }w|[}Eo:FiFww;yp}y>z=&G#c?|??/Ͽ]sc?w޿I>[zo޹?#?S?__ymgg~߻ss×Ϗ~y?}_85H#;ɿ?ε |W<V%ܼ_ޏA_~{/~ďQG?_wO?}G/_;~:5H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#]җmJ#48 ޼qi 4+}W^=yg/Wn7|uxᚏ}?wŇp}G_3iFi{W=y3~ayFi;gݾs}b|o߹șm6޸~sqыgn޻i4r̫7Ko߹>7xO}w߹띳n߹>FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiW^]iF_՛7n8 Azo'/>M~O]/\/].޼u&4H#4^{=~wayNH#{oxH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4:FqPFuPiFiqPFiu8 NG*g[OƴH#4H#4p8 48NAqJ#i4puu4H#: NTi: NQiFi1*QG#cH#i4pH#c4p8:i: NTiH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4+/}4H#7H^r7_{inyߓ|myO|ç.\ؗsW| }w|[}Eo:FiFww;yp}y>z~8iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFillsWii_NiqP^웯4 >{ϼrӧ_S |KW}+>>;>ŭ>7oI#4H#޻sϻߝy<=w;~ay|9@iFiܝ‹lJ#Ko|ҷ4H㠾޻~4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48ɿqFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFillsWii_NiqP^웯4 >{ϼrӧ_S |KW}+>>;>ŭ>7oI#4H#޻sϻߝy<=w;~ay|9@iFiܝ‹lJ#Ko|ҷ4H㠾޻~4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#]җmJ#48 ޼qi 4+}W^=yg/Wn7|uxᚏ}?wŇp}G_3iFi{W=y3~ayM~O]/\/].޼u&4H#4^{=~wayNH#{oxH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#46wK_+4H4z 48W\^qx[xg^/ }k>>e|{ћΤFik]uOpǾtՇC_Ͼ_z/z֙4H#4x?ݙ~ay#~ay>e|{ћΤFik] p'^c_]/\g/nyLiFiUϟ{~ay{ϼrӧ_S |KW}+>>;>ŭ>7oI#4H#޻sϻߝy<=w;~ay|9@iFiܝ‹lJ#Ko|ҷ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48 ޼qi 4+}W^=yg/Wn7|uxᚏ}?wŇp}G_3iFi{W=y3~ayM~O]/\/].޼u&4H#4^{=~wayuOpǾtՇC_Ͼ_z/z֙4H#4x?ݙ~ay#~ayǏ. s]>O?7nsǼ}g孏o~>һx񝻼ps%OvE,bX<>n|]qǾqǾqǾq_;~=S^{1c8c8c8c8}[78X"v7o`}C,bq෾o}X1s]>O?7nsǼ}g孏o~>һx񝻼ps%OvE,bX<>n|]qǾqǾqǾq_;~=S^{1c8c8c8c8}[78X"v7o`}C,bX|5OΓX"g{w;<9g޸>ny!W޿KwϹޗ/{߹ ?{_k7Y]X"ŃsǾqǾqǾqǾs<ܳ<굗8c8c8c8cط+>u E,bXlW}7"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"g{w;<9g޸>ny!W޿KwϹޗO?7nsǼ}g孏o~>һx񝻼ps%OvE,bX<>n|]qǾqǾqǾq_;~=S^{1c8c8c8c8}[78X"v7o`}C,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bqܿwO?Ó3/{߹ ?{_k7Y]X"ŃsǾqǾqǾqǾs<ܳ<굗8c8c8c8cط+>u E,bXlW}7"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"̚IDATE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"g{w;<9g޸>ny!W޿KwϹޗO?7nsǼ}g孏o~>һx񝻼ps%OvE,bX<>n|]qǾqǾqǾq_;~=S^{1c8c8c8c8}[78X"v7o`}C,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bqܿwO?Ó3"E,b_֍ط+}7}7}7}c/xgyk/3FqǾqǾqǾqǾoW|tbX"خs oE,bX"El~dkxrǜɏ~# Ɠp< T!IcGx“T=a~#~T'gG?"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,Θ'wxrϼq=;+o}xC^޽Njs/yE,bXWuc8c8c8cعw YzˌQƱoƱoƱoƱoݺyX"E,ܾybX"E,b=ڵ?Ox'ⵧ ?|7_|/{߹ ?{_k7Y]X"ŃsǾqǾqǾqǾs<ܳ<굗8c8c8c8cط+>u E,bXlW}7" G]="ѓo2Ok~_/_??ϙɿSnן糫'?]>|2{|?ޥGFWY~z"XbzkokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokokoemE,b3|a3ogy[7޼?|+w;wy\{K~&+bX"x}n}7}7}7}7>v{^2cǾqǾqǾqǾqvGnp!E,b1oX"k|3'g͏4yW!uUw?"7O~wxտo'o}?W|?'';~7_oַ2wy}}xrr\׋)??Ώ'!g;Ɲ2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O|~O_X"g{w;<9g޸>ny!W޿KwϹޗ;o._3pyRxr*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FQŨbT1U*FO?ezX1O #y6?{wV퇼^y>/{߹ ?{_k7Y]X"ŃsǾqǾqǾqǾs<ܳ<굗8c8c8c8cط+>u E,bXlW}7"O{}~~QO8cbI^Ҟ ~ yɟY~{{O?Wyg]?O?'g;}?䕿x>8$__bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"r"g{w;<9g޸>ny!W޿KwϹޗW7M>(&/wⷾσu#_p}mb.wkqZ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX O Į_:NȄNgN(efJ3!c;cCHQp rʅK0ѝjŞ.-6'Z+jֻ~5LC,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɺ8շ]Mt]'WzݾrvϽz/|/|Fz{პy飞xrw=H,Ydɺ^JÃNCxt.3K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒuqo;w8,Yg}78O}퍻};}{V_zf_ƍ>>=G={,Ydɒu㛽v镎NCxt=qÞ~>gǏ:NCxt,Ydɒuxp+/&KٮN_{Ǐ.%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Y.v7{Ng%,ݼqoFgɽ>^zq~\sK/ ߸_^g^'{%K,Yn}|.xtk^xxxtko+Wnܫ77n>虗>g/wރdɒ%K[Kt<>=G={,Ydɒu㛽v镎NCxt=qÞ~>gǏ:NCxt,Ydɒuxp+/&KٮN_{Ǐ.%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Y.v7{Ng%,ݼqoFgɽ>^zq~\sK/ ߸_^g^'{%K,Yn}|.xt=qÞ~>gǏ:NCxt,Ydɒuxp+/&KٮN_{Ǐ.%K,Ydb{_|/B///B///B//Ʒ駧g%K,YJs.]̒%K,Yd ]̒%K,Ydɒ%K,Y.vfɒ%K.$Yd3ɒ%K,Y҅$K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɺ8շ;]Mt]'WzݾrvϽz/|/|Fz{პy飞xrw=H,Ydɺ^JÃNCxtt.vq3KY:Kdto'w?B%K㵞YO_%~kݜ].t_ţ.Xg8Y%,]Jg8Y%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Y.v7{Ng%,ݼqoFgɽ>^zq~\sK/ ߸_^g^'{%K,Yn}|.xt^|W_N|nɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K]}޹d:K7o\onr>ko+Wnܫ77n>虗>g/wރdɒ%K[Kt<w.?JK~}|W|G{?'pw{'?wq^z?{t_ܙ%~o?#j;'OswR?Cg޷zWޟSO럴yuAԟ3?G~wJ?7|}s}'K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Y.v7{Ng%,ݼqoFgɽ>^zq~\sK/ ߸_^g^'{%K,Yn}|.xt$KY?GLs??jBonʟ_}CzG~ۏeasK}?~7}_S{0:~J?o[_[}[Wۿ,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɺ8շ;]Mt]'WzݾrvϽz/|/|Fz{პy飞xrw=H,Ydɺ^JÃNCxtvfɒ%_#?_zO]s?{=`?}_'./_{C?77~oڿnp^z'Ͽ'%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Y.v7{Ng%,ݼqoFgɽ>^zq~\sK/ ߸_^g^'{%K,Yn}|.xtѣG_/;_ţ_?_M7/??_x?_ԏ~ϏO^,Ybg7 _k׮<ߏ_̟?~_꥟_jok7;׮w+xCgo;?K~+%Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɺ8շ;]Mt]'WzݾrvϽz/|/|Fz{პy飞xrw=H,Ydɺ^JÃNCxt]өkȪL5PҜyJPA1A$A 0@ {G<ϳFPE,bXbdƍٟW#۶'bX$yGYz9Kz]NfۏyKYY̧8GWLL|ɭWewb <~\~5-?^ s#ϭaͲG_S.䮥qX!_~4]QLNbٱk(GnS\w=>`vuFꩧXe>.>>~"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ES262BSXĢ}{h0<:=l:0Ɇ=c=ºaVbŶAn`~o:򭧘E,bX dgvʢEUTeAUTeAUTeAULU%'Yp\NMUTeAUTeAUTeAUTeAYصE,bXIzE,:x1:X"E,bXtw}ľpyvpfOnE,bĴN}bރt|M==oyh滼aMٻ,6`x+<,xA\O:8߿=>o/iMOr/NחuMmT>=-bQg.)djg'G6a6|GYWǩi~).}|n$wlzm'&-2=Ig2ﱧy()X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"hp`^FFhX1|oMG'M&ٰgGX3C6-,M'XVu36"E,b3NYʂ,ʂ,ʂ,ʂd$.˗鴩ʂ,ʂ,ʂ,ʂ,(vvQ!E,b5IOw4ES;FX"E,baMsWkl|-6yɻɻom`bbvSX":gg44M4p~LӮ-avvNzw_z {Yfg41M 3mf: &Ģi9?ۡӄX"tX"u]iimfgg8?ӡӄ" NmXuL3v$t: E,b4 33iB,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MMb:fp/$~zYcYe%Y˷bުn&Z"E,b1tf])UYPUYPUYPUY0U d\r2:6UYPUYPUYPUYPeb.:"E,bQ&š&hw}bX"E,l,ellQFellQ*fg:1E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b!cb: N0mLawg;Xm[XśN|)flE,bX"CgٵhQUYPUYPUYPSU@I-\+/iSUYPUYPUYPUYP-v좮C,bX"Ek.ib}G{9wN!E,bX":4uhԡCSuL,bX"E,bX"E,bX"iMX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,beldE38axtk{t` {X{u=ì1Ċm,2,t[O1oU7c-bX":3ήE,ʂ,ʂ,ʂ,JOh.X|N,ʂ,ʂ,ʂ,ʂhkgubX"(ZtwaMX4u;ct E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX4u8/c##4uE,~طã_æl3#f!Vldlg,zyhX"ЙAvvm,ZTeAUTeAUTeAUTeTU2E ptTeAUTeAUTeAUTeAUE];X"Eњ kXĢC^nE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢÁ{C,bQ ž=4u`6dÞ1a]0w b K ds?7`S[DX"E, k;eѢ* * * * ,Z V._FӦ* * * * ,ZE]X"E,$=]X"MrvC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"MMb:fp/$~zYcYe%Y˷bުn&Z"E,b1tf])UYPUYPUYPUY0U d\r2:6UYPUYPUYPUYPeb.:"E,bQ&š&hw}bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"hp`^FFhX1|oMG'M&ٰgGX3C6-,M'XVu36"E,b3NYʂ,ʂ,ʂ,ʂd$.˗鴩ʂ,ʂ,ʂ,ʂ,(vvQ!E,b5IOw4ES;FX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ES262BSXĢ}{h0<:=l:0Ɇ=c=ºaVbŶAn`~o:򭧘E,bX dgvʢEUTeAUTeAUTeAULU%'Yp\NMUTeAUTeAUTeAUTeAYصE,bXIzE,:x1:X"E,b kbrёs b>7!FΝed,chzX"E,bS'4uhbjh(E,bX"E,bX"E,bX"E,bX"* $XĢibbXĦ-bX"MX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,i$#>7! 1|nsC;YFGE,bX$CSMLSGx*JiibX"E,i)bX"E,bX"E,bX"E,bX"4UE,bX"E,bX"E,"E,bX"E,bX"E,bX"ES[" E,bX"E,bX"E,bX"E,bX"E,bX"E,:ؿ:"u@?_CS aӁI6c z+ tK6x o=żU݌ME,bXb ;S-* * * `*?ɢ `et:m* * * * ʢŮ]uE,bXĢhM݅5M,bԡh/i7"E,bXXo*k׬b˫YjֽW־5X m$MSX"I5^<ȷO1YN3̓7竱"E,bX"E,bX"E,bX"E,&>hImLpiQ[&(N`E,bXBS &E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b k7^cU{y5^^ͺWڗX*V=w~X"i9Wk}SM̻Y&]PL,bX"xw y]"E,bX"E,bX"E,bX"L}=o}Bi-bX"E,bX"E,₳N"E,bX"E,bX"E,bX"WS",E,bX"E,bX"E,bX"E,bX"E,bX"hp`^FFhX1|oMG'M&ٰgGX3C6-,M'XVu36"E,b3NYʂ,ʂ,ʂ,ʂd$.˗鴩ʂ,ʂ,ʂ,ʂ,(vvQ!E,b5IOw4ES;FX"E,b;Ο?9<ϟ' o|St E,bSOcKq%\|̽av?|uo3iӮM,n9?;&Ģkf:mf:0ih"bp~C6E]p~C ؉\pImfWɟvtMc~ǿŏx 뚙v4)tsۜb2̶C,t8?;lM鴙0ө:gg441E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXt;>syΟ?i[5l&}wNX"6f9ss\=7_s \w=M"뚙viu]3i33lv-bQ't:0;ӦX4M gڴkشm0;"E,bXĢÁ{C,bQ ž=4u`6dÞ1a]0w b K ds?7`S[DX"E, k;eѢ* * * * ,Z V._FӦ* * * * ,ZE]X"E,$=]X"MrvC,bX"E,v| _㽍os$vC,b ßm[UMp_?|5x%֭ɇgײQ3=~]Wxl*y5xtރ<{-Nk/cIdT ŏУxga&dO|g%Elf1tC3-/%o ŏ#Ova&A{N](ꚩ|s̟7%k>o({ϻw ׷30p/?Ccыr"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,> =t?M6WWWp|lf ]oo'Kx1*Oq`}W^XC׷Mc;b9+˂524<Φ5/aR{ mm`# LLԢu^zG|8]G/?q/~җ~)SOqh,zAf =)N[kVE,|e$:9oظSAƧ[? 86ZP{vopǵ70͌7mjXS=1?ʃ??\T識z/x^}=A6|K_#ئvoałyl'^AIDATK1jw_yʷ8<8cbX"E,:ؿ:"u@?_CS aӁI6c z+ tK6x o=żU݌ME,bXb ;S-* * * `*?ɢ `et:m* * * * ʢŮ]uE,bXĢhM݅5M,bԡh/i7"E,bXbGG333?;q-vo/? =Ǻ5qׯv2_5kX5\E|=T0] n{Xƪg`gLg%ElfQZmXm_˼o_5wdc;xkez^g?KoTS|~qüy\n]b7_+YUvek`ٚ,p-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXݟ?_w}EANX"6fWrh19>tqﻝ>ȁ7aCNױ~1h{651^xq%˖~=so/gX\9f6:p,~Z+xটqK3U ߰5x&.=q?ǝVEx\_ʓ[[~~レ\v57ܻ`/7`xcys8=9M,bX"ES262BSXĢ}{h0<:=l:0Ɇ=c=ºaVbŶAn`~o:򭧘E,bX dgvʢEUTeAUTeAUTeAULU%'Yp\NMUTeAUTeAUTeAUTeAYصE,bXIzE,:x1:X"E,bXU/<wÇ+dbbm[@t ElfQr>?:CiS["0wݮ9whW_t'_#rm?}ɡһ4;_~ ^ 'rE^> 7:6{/䗿/?ŽKᢛlL3ʖǞc#7qXao3c|Vav8}n "E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,~_w;}(˒;/gIwGe&Mg#Oo#~?·8rM/%sdu'W?;F33Cm.=_;_?O]Ux/GlEٵz~zs3 {Μ,[}3{:u_Dա3 xM"6?̂+M^_qLVoι=y+d%}>|#f\;i[]E_j116F59?աC4-|?F,bX"ES262BSXĢ}{h0<:=l:0Ɇ=c=ºaVbŶAn`~o:򭧘E,bX dgvʢEUTeAUTeAUTeAULU%'Yp\NMUTeAUTeAUTeAUTeAYصE,bXIzE,:x1:X"E,bXܱ^}_\xDD/^}C 3/ƹdM6v /?|7 mg0[{X#FFobqWp? 屟_ϫ} o>Ý`a獧/pbx?7o/+aΜ+O;vW˂524 Stzy7nQؽ<?J39sGq-O2]7xj˿W\y%Wι9WM~Yn{9ҦE,Ls͕7mye7y9nYW$[Yɑ}v8uwVlbA^;xӦE<ř䁛 ֥|5p}? vɯpQΜ/φKj4ly1_3R^KZkIhz[vɃ{9p(Cv L9sƧDy};ws<ΒvQ4 8>dz9>.M"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,> >̙!nFp Z->跽t"4x)~p6ML=ywՏ8rMb0[yj6ox9|>[~w=r}Nϯώ]џ_{3y l3IOsou]w3RNSxe,X!MCmlz>>5A{~y=veK[9=9 mT㧎o>Fc,,v馡۞ yupqC=;;;ws*mX"1=pя/㪻ppԧqϯ)잫빝֋びxq~}|vr> wDӦSsuOaߦ\_:w%w.AxLn]?|\5yo+NswLEw7' bX"E,:ؿ:"u@?_CS aӁI6c z+ tK6x o=żU݌ME,bXb ;S-* * * `*?ɢ `et:m* * * * ʢŮ]uE,bXĢhM݅5M,bԡh/i7"E,bXb|^?M7͛ض¯\¥]/n~sswwM×E8t0n[_3g74X(̹K/_5qշ\YvgqepϮ[N{xO)&ܾ^3K/K~q>CuE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX|z>`ppo7xO8m/36El:lx}3u&adxv~1N|7XĦeO~Oz,z>v?Ϭb0[] Ż']eWepQf^SdiS[x1.bk9_gWqO~շ=E !>|v.\r/5Ǚ:+Oe^sofӊ8ΦepvC,bX$&8{9t G0YNqNRLXt Ŵp9G8t SORNpzp)ڢS*:5xYPeEb'9a<ȱi<5AibSL 1tv"QSw9t ߝUMS{3?paNF1JFNȡ9{b c&*F;¡9v4Ŕ-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"|ʇ[63118gbbq|wNX"iehhiXԮ:8U1SgTpv`VI,bĸg}ɡqѡӜ6+FNsnt{s':8uJgk&*8;0X5v3g=Mk,g 3mS{=5|ǙcC972mb OOrɩi₳J)Ξ8tG9zɊXLC말#Z9t'F)r9mbX"S]Z$8osN1L4uDkGcpFƑM,bOS 8u]r;13|{Cw?b(GOwqn$;}_sQG&E,bX"ES262BSXĢ}{h0<:=l:0Ɇ=c=ºaVbŶAn`~o:򭧘E,bX dgvʢEUTeAUTeAUTeAULU%'Yp\NMUTeAUTeAUTeAUTeAYصE,bXIzE,:x1:X"E,b k~>C6&y}wb;o7I7hX"Mԡ-bS"cbM:MXĦES["uLmuh"uL,bX1uL,bX1E,SסCS[ĢiP"uBS6uD,:"Mԡ-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"4Cwd;o޻o[l|-6&;w|TUnjbX"1uL,b:M:E,buhPĢ#b:EԡCSĢ-b:HLX$E,꘦MX1uL,bX1ES[Ģcb:CS:"i0kA=rfl#@29dh%4jvRG Dq箪7 O\ׁ'FyyAAFiFFTioooo7߼^w~{qooooO~ǁ4H#4Ҹ>Ai<|9^~NiFiFioooooooooq]H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4x~~~~~~~~~c\H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4쾾gٯG#4H#4H#4H#4H#4H#4H#4H#灟~嗞HA}浟ο+ꟾ/?_g?'~GOH#4HygO꾭꾭꾭7c\꾭꾭꾭꾭n?q 4H#4Og6F_N櫗;SiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFp\G#4H#4H#4H#4H#4H#4H#4H#4~˟՗_zH#~O<#;ҿ?~[ok}W_?I#4H#_ϟ}>oooo7߼^w~{qooooO~ǁ4H#4Ҹ>Ai<|9^~NiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi<_ܯ@i4xr7_qH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hyg_}4xP߾yk/>ǟ?ʿ/ˏ~߿O?kǿч~4H#4onooo}|{~ooooϟyH#4H#;?ӿFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF?/=ƃk?'w_G?W?}_~[7O^??>Fi/~>p[ܷ}[ݷ}[ݷ}[ݷo^/;?|=Ǹܷ}[ݷ}[ݷ}[ݷ}['?~@iFi\чl 4W/?w\4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4x/W_~y 4Էo^/>{ʿ/ˏ~돞}?׾?Я~FiF[?m}rVmuVmuVmuVoyrVmuVmuVmuVmu[3iFiq}zG>4xr7_qH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hyg_}4xP߾yk/>'e_W?ʿ/?Ͼ?}go>Fi/~>p[ܷ}[ݷ}[ݷ}[ݷo^/;?|=Ǹܷ}[ݷ}[ݷ}[ݷ}['?~@iFi\чl 4|Ο:OiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi~˟_4xP߾y}潟>?|?_??}O_?I#4H#_ϟ}>oooo7߼^w~{qooooO~ǁ4H#4Ҹ>Ai<|A=<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<侭꾭꾭꾭~|z9徭꾭꾭꾭>gH#4HΏ>|fi}}.1FiF[?m}rVmuVmuVmuVoyrVmuVmuVmuVmu[3iFiq}zG>4H#_?7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7~sߜ7?H#~O<|z~䫗/|^zW/_ 'g?q}z'4H#4~>侭꾭꾭꾭~|z9徭꾭꾭꾭>gH#4HΏ>|fiFi<c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9c\q9.H#4Էo^/><~瓯^zW/_ _|᫗/?4H#4onooo}|{~ooooϟyH#4H#;?FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiƃk?'>ڿۿor|zW/_ _|᫗/|𳟸>FiF[?m}rVmuVmuVmuVoyrVmuVmuVmuVmu[3iFiq}zG>4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4xP߾yw_w7WΟOzW/_ _|᫗/|^p|~קwH#4HygO꾭꾭꾭7c\꾭꾭꾭꾭n?q 4H#4Og6FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF7xkoW/_ _|᫗/|^ΟO~NiFi7o}}[ݷ}[ݷ}[ݷ}[=s}[ݷ}[ݷ}[ݷ}[ݷm}<Fi}H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HA}浟}_9> _|᫗/|^zO\I#4H#_ϟ}>oooo7߼^w~{qooooO~ǁ4H#4Ҹ>AiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi?;iFi߼'muVmuVmuVm׋?1.muVmuVmuVmuVɏ?8FiFקw~3?H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#~O<|z~䫗/|^zW/_ 'g?q}z'4H#4~>侭꾭꾭꾭~|z9徭꾭꾭꾭>gH#4HΏ>|fiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF?Atفw~T*Jc;Ib6k/^! 0 ^lYz |_lܨl$h #\ݧ=\5H0==9ysJzI#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H# k \ =ۻ<98W+xpt?xs-4H#4}oziqFitFitFitFΓ?G~I/yyyyi۷\FiW^eHiFiFiFiFiFiFiFi]4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HBo7s-Ow+xpr8^9<9:\K#4H#{۷^royyyч佻zesFitFitFitFito|-iFiqo'}'̏<ԓ^.4:O4:O4:O4:Ox㫷o,H#4H#͵|4H#4H#4g>~Io+ v\\4ҸP*N_1_0p]p]pҺPFi]K#?~?)8. u]p]p]B]מߝ}ԥFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF{w}\{Ʒwoysp8^9W+xZiFi|޾x<<<<>'}'̏<ԓ^.4:O4:O4:O4:Ox㫷o,H#4H#͵|4H#4H#4O~:{8s?=?;g>G[]k__~;7}Oa}x'o}_ {Ͻ?>?\7~Ҹ,z>=cy?x/޹7~~[ie׾s|?#O}_?.DiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF{w}\{Ʒwoysp8^9W+xZiFi|޾x<<<<>'}'̏<ԓ^.4:O4:O4:O4:Ox㫷o,H#4H#͵|4H#4.uJ#|?_{_~+~~So}?w짿eo~7py=/[?|>}'}&vv}wn4Co}q{e{ggo7;~3{?_%{piq .TiF{w}\{Ʒwoysp8^9W+xZiFi|޾x<<<<>'}'̏<ԓ^.4:O4:O4:O4:Ox㫷o,H#4H#͵|4H#?{O=G*_w>q/k~c5~>__W닧<~'~w]/'>wyg=x7_~__W?>9ş{?~_ٟ.w_a"2~OWG?_ ,}~_O~k?[|z?_5u^zڸPy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yNy8yN=>?3J#4ҸP߻o3{ӝxpr8^9W+Ow7H#4H{itFitFitFic~駞rٜyyyy_}eAiFio}[6FΓw_| {H3?O+^~̯?_}_S ?OE|< {O_'oE>g';m}Ÿ_Λ^g>~~OO!Ҹ.?m ˊw~0?G?G>7sN>ow?Σ2ŗGkB}<|qay͵4H#4޻}%yyyy}8O޻O<y'\6itFitFitFitFWorYFiFǛk_y#iq{Otm.TZ?\oOk~i6ΏÏ|/?st|7Wg>/}_}֏g>xy{OW?-~Oo{~o Wm_~Wg_𽛸4o/~~'ݹ}Ǿz׽O?Gݧݿ?g}WO/;zzYf?w}z6Ҹ.xl^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^˶y6/eۼlmm^es[go~Bƅz]|5o?[W+xpr8^ysuFiF{o48O4:O4:O4:O{w#O?<<<<4[. H#4Hxs+/߲y$4 <mH#^/g?,>:O/{c7~WW^ϧ?w~~Wu:kxw{ǿ&??__]>tz~>Ziƅ?}_W_~޺#~_+~~||w/}/~7{|2{_'?hqmFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF?/4ҸP߻o3{ӝxpr8^9W+Ow7H#4H{itFitFitFic~駞rٜyyyy_}eAiFio}[6uape[Fi1'>|(4҇>&=zdo>gI?/yv~HCi2^onnG|??ɟu4H#4f惯xdi+^4:O#͓=fNmfNmFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF?}iq޿w7xu|g|{;xpr8^9W|goFi޽[/97<<'}'̏<ԓ^.4:O4:O4:O4:Ox㫷o,H#4H#͵|4Ҹ.x<wl4H#4H#4H#4H# ;xxLJ 4H#4H#47}OJFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiuuuAi\7^s]_x޽xpr8^9W+㕧;_|YǛkiFiw{KN4:O4:O4:O4pwx1?SOzl<<<c~駞rٜyyyy_}eAiFio}[6uape[FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiuuuAi\7^s]_x޽xpr8^9W+㕧;_|YǛkiFiw{KN4:O4:O4:O4pwx1?SOzl<<<͵4H#4޻}%yyyy}8O޻O<y'\6itFitFitFitFWorYFiFǛk_y#iq]x;xViFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq]}'}'̏<ԓ^.4:O4:O4:O4:Ox㫷o,H#4H#͵|4Ҹ.x<wl4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Ҹ.Ͼ.H# k \ =ۻ<98W+OxmZvʜ3ggzN5qI-6Y⒅ qI`LhDP E(VYJz*((y}=~>n.6\lx~w~4H#4xţ}4N4N4N4F>W]88888888}{v;H#4H#޽4Ҹq7\H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hr]H#3>Ѓ.g:n.6\lpsbņ ouޒFiFx=tiiiSÇ+}u^zrqpqpqpqponiFiq޻wۜF3.?RiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\{=qiq=rGz['[|vS<ņ 7n.6\lpsu[H#4Hgö8888888xj=rW_uok\WN4N4N4N4ö<#4H#4[{nHrg\pZJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#{x'w9#4ԣGCq{wv{ʃpsbņ 7n.6}ZiFiFiFiFi>_kH#4I#4Hc<4H#4H#M"4H#4H#4H#4H#ˏygWGFiFiFi]?W]O8ͳ4H#4H#4H#4H#4H#4H#OzW⫯0FiFiFi/3_WiFiFiFiqn̴Wt"4H#4NÖ8I#4H#4H#4H#4H#4Ҹ}?e΍4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4.g|὞8~48S9=rq->)bņ 7n.6\lV-iFi؋GݳNaiiii<59|ȫ7\w5+qpqpqpqpavFiF-{iiq9b3n.^-FiFi=9 öð0l; öðtG?YDi]fg"<^zj4Ҹ\.Y}}rDiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF3>^O?rFiGчt9Iwsbņ 7n.6\lx~w~4H#4xţ}4N4N4N4F>W]88888888}{v;H#4H#޽4Ҹq7\H#4H#4x~#UUUUUUUCϹ^-FZwǽO{g 1}oOmi;x=~7|8kny_|/mr+{o[ߺ|枯~{9[|goyWJ#x)_{u-SG77z7̍]|>x8+{ }/8}_G?}}WH+_}o|h]>pm7~z[|}QZg&_|v|zonǶ:3~rorc'Sܵ]?n8pl~aԫxgoЇq8ݳף[11q>(P{9Kʱ|莛}o}v^]c{}b!_{9]oC'&Fl{G|ÞΜ}'}1Voݛp].>E]鸏ݻ'iܻ&gN1r[|猾蟮[?S"4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hr]H#3>Ѓ.g:n.6\lpsbņ ouޒFiFx=tiiiSÇ+}u^zrqpqpqpqponiFiq޻wۜF3.?RiFiF.yx?6zj)4Һ<-~+:S^qܿ/?zu^z{>wg=p><}K.cw{7K˯+.q_ /_;_]yG?yg V_:-4N/o|_zþot:?rx}ǿ싼K=YW9|pnoG_q^19|ѻ//r/=|?^r+:-\؟{}ȝ_[ O~]{ rK=~O_}V?{x٥>Ᵽwy>=~'|.wE{~^v~:7Rܙ7ϋ/{}3WxWx>_nvjW]>ygK/?փ<iu3.+z~?w<{n97W!ovgYWՌ9yxW\~rewƻ=n>>yw .O>q{Ĺu|?×^۳;=]_|^q^|{Ч{e_v~;{=w?GN}.Y}^|~ࣟ'>g~UFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\{=qiq=rGz['[|vS<ņ 7n.6\lpsu[H#4Hgö8888888xj=rW_uok\WN4N4N4N4ö<#4H#4[{nHrg\pZJ#4H#4H]?#UUUUUUUCϹ^-FZwǽxuO}=eYɗ/W#qv?7W?z_}O&<+/o_K:x;yɷ|y<[zg<C/]> ~%>Pi+{}W{owO~֟=迾ݯzs}[{Owm_t8}.: >?\o=_}}NY)/o?߇NW[-^{st|ő:ygw|W=Ͼԫ/x ?‹g~?~z^Ȧǎ>J)GK?ƕ;O_{G|Cǎ;vԻ|_8C_??x̗_}}w?s#|S?}|oyio<[|y|ğ>?e{䔫~3g{_/z}ǟ:[<|z^s>?|çOW/kvi9s1žxϟA_G8|̭.O+O_g~{ꔿ=X_wz p{O>q׶|zλ?q{o]e7_~v?;|BZ󼷞/g^9:'~u9ps> ǎ32FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq9c.gƙza}A3non}Oy~7n.6\lpsbņw:loI#4H#^u/|~~ҏ\J#'~_OYo={_]6ԫ>CVoo>ʯ'.\\ή;}_׿^fj O/^&g>)*wxޯ|"?=GO\nۓ/ӿ~7??3;~}ox퍾MoMWFZ˓+=ܿ_󾛮 ?ϼ77o77/>» >w>ώ:]s/7=z>ǿYO u>u?}_^ïy?ͿFM_~o}{n]e7_~v<~mgsgom?/q՞}?wxZiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi匏=ǏFg#}]θu;ng=\lpsbņ 7<]갽%4H#4{{v8l;888888#yUW뮽z4N4N4N4N8l{ߞ3H#4H㰽w9-4.g\׫4H#4H#4]>^UUUUUUUzm>Riugy[W\]>wg|\_gy%y_qvX9oՏ{KGy߼N/Ͽ~Σze~l}^gx/^OK#n9z_>ϟؖF繾vxGY>kG}؟<:7v觞}_MSy{ x9[9֩7\a#~{9,H췜]Njv.~8s/|㛽'|1q˕o/^YW#ny~y{??~±}}rkw~WqHq/s߹ay'n7o<+O?מ>{jm}]~MO?>mOO=džSHzy߼K?[ {+/r8}dۙH#'_w?y~^}Λӛ/^}~w/YOui=]|'|jFO>{??zz*y_^>E}_~푣.Sj__8ӞNëx'O'6|䖛wosIiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF3>^O?rFiGчt9Iwsbņ 7n.6\lx~w~4H#4xţ}4N4N4N4F>W]88888888}{v;H#4H#޽4Ҹq7\H#4H#4xv{UUUUUUUysWKi֝qo^x]|m~)_^xx9?~|//w|b/7rYS?7ߞݾٹFvozٙgxy_>x_=xY^tŞ;Mzn_O ui=?ΏP4,</-~W]w}R?/|{?rWs?/wx-_5s9ϋ/_v?zǞO]#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#{x'w9#4ԣGCq{wv{ʃpsbņ 7n.6O<p'WSHOy_ߛ~c<{|c7]f|'—IOvzG7?{CGFi= 춿3}n~GTN{~]8΍:7nCM#4Μ_n:Ryzg|܃G_{Ǐnć=b9?)nG=Ex'>KisOw7޶#n:&뵧3?s~睗H#4:g{G7yM?pOyӞ?+I=ϽW#O87}UH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Ҹzq3HL=z䰏>Nzm쾧7^?q=K"4H#zzz5;izzz9^έr3Z΍4j9;7H#4.K׫ٹ\VWWK׫%uqDgpZ^^ήWs#<^Y\/q&Ҹ\ή+wKWsFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq9c.gƙza}A3non}Oy~7n.6\lpsbņw:loI#4H#^Nzm쾧Ѓ.g:n.6\lpsbņ ouޒFiFx=tiiiSÇ+}u^zrqpqpqpqponiFiq޻wۜF3.?RiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\{=qiq=rGz['[|vS<ņ 7n.6\lpsu[H#4Hgö8888888xj=rW_uok\WN4N4N4N4ö<#4H#4[{nHrg\pZJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#{x'w9#4ԣGCq{wv{ʃpsbņ 7n.6)bņ 7n.6\lV-iFi؋GݳNaiiii<59|ȫ7\w5+qpqpqpqpavFiF-{iiq9b3n.^-FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi?Axa?:mWY2 a od!qBq" YbY,r(yΣ'"ś,}NyFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\f|^reFi/]rqwG3Ox~{zfr^YܬWn+7緷 |>p8o\4H#4Һ?΍4H#4^vчLqooqo4H#4H#4H#<7;7H#4H#4Hkn=|PiFiFiΏ|x]iFiFiFiu鎫l4H#4H#4H#4H#Kw\}QH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Ҹ#zˌ48S/_c?25sgzfr^YܬWn+ooyvwFiƧ]qpqpqpq4zoosqpqpqpqpv=u4H#4867eY7miFiF>C~_Noooooo/+=2K#4H+ןOs#4Hþo+O7'6iFiFiqOm?7> ΍4H#4H#“~o_}qYFiFi.|vpnFiFiFiOgsEiFiFiFiOg'ŹFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiqGN{iq^t~eݝk9|<-7땛zfr^YܬW=w;H#4H#O?uٓǏ9N4N4N4Ni v-t4N4N4N4N8zqiFiqmnH#ˌ뭳n-H#4H#4x}#UUUUUUU^{4H#0;mKki$=Wx]o+W<{=ç~crl#>:;W缶3Hw|O?s$4L;v|agşw~kq\{}k?+ymgᴻt4^v}_z'/> W6Ho8+WH#^W;'\ӏe1ӎ׮x i$ww~4xcu'מ+`?w/}۝qw04;^wqع+W1µ]H#s< vM#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#ˌ?rګWH#3>C.3\{ο??\qgvg![4/)/ǾWs [=~~]~'eO?8:888888קK/xۭxӝw88888888멓ǝgFiawN!4.3κYoH#4H#4HGNz=xIiF]=?~j[~M>w~y^Y{;^ahn\Fia_+rq/hoz_/Cx;O?Ư}fva~^w/o}^Ѷw|{ڧg7gK~ ?<_R?򕇽tq9~}7?ow}אָX"{ˮ}Ç|rgvھőS~mٷq';_'KuWozݺv[K|?orϏq/=cO\FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiqGN{iq^t~eݝk9|<-7땛zfr^YܬW=w;H#4H#O?uٓǏ9N4N4N4Ni v-t4N4N4N4N8zqiFiqmnH#ˌ뭳n-H#4H#4x}G}Ӫ{a/^xEiqY?_~E]:Ϳ|۾W ;.k}~~_'+ ?p? <#7Gy>QiowwWyyfpnFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFW\qFgK}\fݹwyr^YܬWn+7땛z-s4H#4S=y4N4N4N4^F/]mMwq{N4N4N4N4îNwFiF8q4Ҹ̸:f"4H#4H#wG9'[FZ~/_% |ϯֿ=ͽ9Vww=?oy=;-<7{G]|ٛoowH#4|Ջ^׶_poO\=g?{}+~}__믽ܾ|w?z1_U?/O?_^m_;֣_O=xc㢟}}^oM~ԙH#·A?{ث<~U~ey_OC.3\}[ _ya?G7{]yo[^OϾ޽WKwܿ?yw}S_Tiv[/}'2__{~'ۏ77Nz7W/=W7?oznF}__oǎ'2_{ѷʛ?=_ԟ?Weֿcϼ~_Ǽ:pn⥓ʟ7w__#|a]? uW/~gwA}yǞtgw odןޏg=Ck~_pɹFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\f|^reFi/]rqwG3Ox~{zfr^YܬWn+7緷iUUUUUUUs/<"43>>?>L_pY+/=%!ݷW_?GwӍ>O׿W>>U|c9p_mUx3H ϋ7U}]xo<u}W7'_ ܻo/|8=]oǷ7U#{?&sw|-Ļ7~ۼ9x#>}`{vю3F?|}6p.<~f_W|z>]/?;J_w䗽4\S]<|M/yvzvo!Wڷ}ܽiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFW\qFgK}\fݹwyr^YܬWn+7땛z-s4H#4S=y4N4N4N4^F/]mMwq{N4N4N4N4îNwFiF8q4Ҹ̸:f"4H#4Hcs}د͗<~Qw;z͗<2K#4B]fieƙuYfs{[g~<272#3,-unuYff*4x#oŽF*<72L{i]ٽevoqoF2-Pi.sqq8{ DieݛF.ނs#ˌ yƽٽeƙH2BqH2-/ FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFie9+W\fƙzE{!wwy];緷ܬWn+7땛zfr^y~{ˣ#4H#4>eO?8:888888קK/xۭxӝw88888888멓ǝgFiawN!4.3κYoH#4H#4pF|>?wH#4H#4H#4H#{q_u+4H#4H#4H#4H#4p7=}etnFiFi=?_7^ܽH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4.3>i^2#4˗.̸s#ܙ'^xnśviiii]O<<#4H#4;>p iqquzEiFiFs=sřJ#4H#4H#4H#48;؋qiFiFiFiFi^ӗriFiFiƹW.?- 4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#ˌ?rګWH#3>C.3\eO?8:888888קK/xۭxӝw88888888멓ǝgFiawN!4.3κYoH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#ˌ?rګWH#3>C.3\eO?8:888888קK/xۭxӝw88888888멓ǝgFiawN!4.3κYoH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H# })_C~/>eO?8:888888קK/xۭxӝw88888888멓ǝgFiawN!4.3κYoH#4H#4H#4H#4H#4H#4H#4H#4H#4΍48{s#'Yr?O=}=giwӻʚZZ<ZHQZH9R5iI  De@͛W DPw<ϳVB+bX"E,bX"E,bX"E,ʳ_2M,bX"E,bXĢ<%OP"i"E,bX"E,bXĢvW91y"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b3}bX"E,bX"E,f6E,bX"E,bX"E,bQ{_p mbX"E,bX"ʂּBkd> ,..{KضCzqo#},.,X"E,bX"E,bX"E,bX"E,bX"E,bX"ES=8=9ISXĢ86;iН:>4vNEݢni[t-FGزiEwX"E,Ng+eѥ* * * * cGXl)ZY* * * * ʢK_oubX"(Sփ5C,bԡ=2D=lC,bX"E,bX"E,bX"E,bX"E,b͗ ENM{E,bX"E,bX"E,bXĢ+ΛatE,bX"E,b#}k󦥴k4>= X"E,bX"E,p.Gy(X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"El/z;E,bX"E,bX"6MٻqfbX"E,bX"E,bX5ScqaX"E,bX"E,bX"E,bX"E,bX"E,bX"E,:I:"uıqISY6o\AFG[t-:vNEݢn16:–M(S"E,bq=[).UYPUYPUYPUY0]?eK9oRUYPUYPUYPUYP]z{X"EѝbǶb!:QfbX"E,bX"E,bX"E,bX"E,bXlɊƢ+~"\3 1uLSMS1uLSES1uD,bQ14CpOњib"c"M3L3c5^$"2/G9P[1uLSĢc:"ES 2XsN41uL,bS1uD,bX"6uLS"c:&HLSHLmX$ES1uDSEl:E,bQ m[b"El:#b:cb33}>?t:cbX"1uD,b:&uLS1s&YfcbX1Eb:E,bQy0 _˓/>’Ɏk&yY8 >|o?ロ7x*Y~=~;䛯|E,bX"E,bX"E,bX"E,bX"E,bX"E,bX4u߳ӓ4uE,ꘉcݽݩl޸Ci[t-:vNEblt-6PtE,bX z{R]* * * `*96~˖rު+* * * * ,P!E,b;Ŏm=X3"M#Ctڣ6"E,bX"E,bX"E,bX"E,bX"8y.ESWynzѩ1^~Q/}.^yϿwSް-;o+n~5~_=_z+/8ʴg8{Orݜa{VkniF{{͏>c:o[.]}3Ig7]ŗ]-wʕW?Ak wpݿuvKv< F/y~x!_~3}g'UhRqt{<&'98xLsnn >ĉY?Gg'@,bX"E,bX"E,bX"E,bX"E,bX"E,bX"M$Mb:f8{w朗Cw,7g c#t-:vNEݢnia˦ )bX"8q|ޞE,ʂ,ʂ,ʂ,Jaj fʂ,ʂ,ʂ,ʂ,(.}=uE,bXĢNc[ ES(s E,bX"E,bX"E,bX"E,bX"E,Nu ddEc{^⶛1zf;={Ǹs(ﭼXyk\̯ÆoW_X]f{sMaQFvkpkOĭ<̦p&v۳pCw/+na;%=拹oŻh\~̲_O+ҫOqjb'}|^}Ϋk{$Ei>٧Vi>Goѝ.gֱglz5z\>a`wZM}Ƌ!f(/#a٭u*^ʛa_g'/cn |p My[{=_aq-nvo|n?|r EUZ#:?{lum~ΦmA}#=`9| 瘛e9fmm?7,1n},.,X"E,bX"E,bX"E,bX"E,bX"E,bX"ES=8=9ISXĢ86;iН:>4vNEݢni[t-FGزiEwX"E,Ng+eѥ* * * * cGXl)ZY* * * * ʢK_oubX"(Sփ5C,bԡ=2D=lC,bX"E,bX"E,bX"E,bX"E,bS;9YX4uše9]ɚ=!wsob~8K~u8u^(cႻ5Y1sƺWs= xk.3a~v YO9;5'xXz^~DžznFvŝ>I3_S\yk8Yu?c>㬺V}u+gf8{?\_W~R~nZ;ONZxf[azZ'CK'yշbF"G~Ļo־] :qm\szvnnK:5 xGufqM08:N5L5L5L5L5L5L5̑: 擏X\X E,bX"E,bX"E,bX"E,bX"E,bX"E,b{vqzrE3qlwԡ;u3|h:vNEݢni[eE,bX8>AoVʢKUTeAUTeAUTeAULW%Ə|R[rssTeAUTeAUTeAUTeAUE:"E,bQtرkXĢC{dN{نX"E,bX"E,bX"E,bX"E,bX"g|].MD}7ݾ#gxy1Ls7a'yxLΆm/sۍO3:p|>u=o,n侇_y3c bx\3v<ꇜ,͹ ^{Zs~oIJo+~̟>|k+~]K^f{Z!fyƪ`=&\(CUM9!V/-+nC|e|i~I~Yp?'ɽ^_Pǜmοm_LQ[f[ϲ'+c>l~'+#7r~c_?ӕ|tGc9GnaOP֧7q/Wʻ^h5Iʇxy;wX z{~"} w^p[P'/''ˇǘCmQy0]W^{ذ9\'g/>f9KK _l޻WО``?ap`qp`qp`18Ç84xO>cqaX"E,bX"E,bX"E,bX"E,bX"E,bX"E,:I:"uıqISY6o\AFG[t-:vNEݢn16:–M(S"E,bq=[).UYPUYPUYPUY0]?eK9oRUYPUYPUYPUYP]z{X"EѝbǶb!:QfbX"E,bX"E,bX"E,bX"E,bX̜;.ga|>]̒U;)}w1LsE7~h?Y:/qO1:pM;s(ok٫5SXaWGx޻x;(Y'x7q38~wǜR~?_/zks_/֛>7>{/N}gp}ӱyK?8 njʉn/-yxsCwΫ ?T(\č+#!}rz~ѥEӘOk-t6q.'y=|11/?b1^=9n!a=sq E,̾u\u|<^F~}ob-[_X z%#gyG7?ȑM!=07vOٰ䗟Ɇٱ2ʂּBkdXx੗9x?bڇcwosrMͧ`ɯ6rc ?ρĢNq$UttUr)΢i䓏X\X E,bX"E,bX"E,bX"E,bX"E,bX"E,b{vqzrE3qlwԡ;u3|h:vNEݢni[eE,bX8>AoVʢKUTeAUTeAUTeAULW%Ə|R[rssTeAUTeAUTeAUTeAUE:"E,bQtرkXĢC{dN{نX"E,bX"E,bX"E,bX"E,bX"9~}JϾɊ8ijKeq!]:l{k~o cē35c;xΧ8S2]پۜKxM;;M,bSce\prsKt.6ʏ>>j:ˏ-k?v/.o}|.vN^yoO~tMNgZ08Ntޫ/>~s8jMcqaX"E,bX"E,bX"E,bX"E,bX"E,bX"E,:I:"uıqISY6o\AFG[t-:vNEݢn16:–M(S"E,bq=[).UYPUYPUYPUY0]?eK9oRUYPUYPUYPUYP]z{X"EѝbǶb!:QfbX"E,bX"E,bX"E,bX"E,bX"aRt(]gEv~m=۝E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢC]C,bQLg4uNe dltNEݢni[t-:c#lٴ;E,bX"'O۳RUYPUYPUYPUɱ#,_V\,UYPUYPUYPUYPeѥE,bX)vl!hen!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Es${?K^ҷmo{/}{K^ҷmo{/}{K^ҷmo{/}{K^ҷmo{/}{K^{' g~g~g~g~322DѝšA3"E,bX"E,bX"E,bX"E,bX"E,bX"E,bԡ.NON!c&wN:tβyz 26:Bݢni[t-:vl@ѝ"E,b'JYtʂ,ʂ,ʂ,ʂ/[yV`nn,ʂ,ʂ,ʂ,ʂC]X"E,;`X4uh i27X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX1uLS1uLS1uLS1uLS1uLS1uLS1uLS1uL,bX"E,bX"E,bX"E,bX"E,bX65X\gqaŅyY\gqaŅyY\gqaŅyY\gqaŅyY\gqaŅyY\gqaŅyY\gqaŅyY\gqaŅyY\gqaŅyYXga~yYga~yYga~sc43M,bX"E,bX"E,bX"E,bX"E,bX"E,bX"hпg''iX1ٻ{'MSgټq=Çni[t-:vN[6mNX"ʼnl,TeAUTeAUTeAUTetUrl˗-U+W077KUTeAUTeAUTeAUTeAYtC,bX"EwzfE,:GGmE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"4OdbAdAdAdAdAdAdAdAdAdAdAdAdAdAdAdݢf5hk0aF[Ìm 3nqce$E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"M$Mb:f8{w朗Cw,7g c#t-:vNEݢnia˦ )bX"8q|ޞE,ʂ,ʂ,ʂ,Jaj fʂ,ʂ,ʂ,ʂ,(.}=uE,bXĢNc[ ES(s E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXX38cլ[ukWnj֭]ͺYv5֮fլ[ukWnj֭]ͺYv5֮fլ[ukWnj֭]ͺYv5֮fլ[ukWnj֭]kk^WM|e3l[6|e3l[6MlݲϱfE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ES=8=9ISXĢ86;iН:>4vNEݢni[t-FGزiEwX"E,Ng+eѥ* * * * cGXl)ZY* * * * ʢK_oubX"(Sփ5C,bԡ=2D=lC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"UUw:{imiiiiiiiiiiiiiA6 ,.,nCf+X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b{vqzrE3qlwԡ;u3|h:vNEݢni[eE,bX8>AoVʢKUTeAUTeAUTeAULW%Ə|R[rssTeAUTeAUTeAUTeAUE:"E,bQtرkXĢC{dN{نX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bQסE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX1uL,bX"E,bX"E,bX"E,bX"E,bX"E,bX"e0:2 _ֿùss|||7;7G4|7||7;w7Gw,MbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,:I:"uıqISY6o\AFG[t-:vNEݢn16:–M(S"E,bq=[).UYPUYPUYPUY0]?eK9oRUYPUYPUYPUYP]z{X"EѝbǶb!:QfbX"E,bX"E,bX"E,bX"E,bX$a?7YX"E,bXfvE4ű8U"E,bX"E,bX"E,bX"E,bٚ"E,bX"E,bX"E/3-bX"E,bXfvE,bX"E,bX"E,bX"ulMmXĢ,y%:cmۻ077_4s=wW_}7|_5o~giX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX" f5׬u]{鞵׬veH|[b"Zk= `$ @JskB"~y>}!I^4H#4H#4H#4H#4H#4H#4H#4H#4Hj~гgθZ"4.'OZ9~̣k.3|b>s1ߩ˗?pZyN/|~|?.7ΝsDiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi?gϜqDi\RO8#s͍ss9G\g.3|b>s1yt}{asCiFiKD.KH뒺H#P%Fi]R%uI\qW'/@q[\Uw?y{?k}_ϫ-9}G }}/TUUUUUUUUUUUU|?.K/>ַkOя~Կg{wq%H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4={挫%Hzqyh%nns1\g.3̣k{H#4H㩧Nk}æ8888888x~=q7\+nF/888888888>k%H#4H㰹wlI#%מp1_wJiFiFiFiFiFiFiFiFiŏ|Kie .?D^X'6Ӈ>莏׽%/}K}^b_7{]8_W9{eW_q<w^㟿~gߚ[K'e/~W-widz'_k◼Ə|ܖӏx's'?~O}E/{=>yn%F胷w\K_bzri[{K__^s/W'~?|>+[ڂi-[_~3/}xGK?7<1,ccx{͎/5~qgݻ8j7|ԯ|m/u=/;>||+}K_.ԏO~˥q[\Us[}_Kf~-tbߩN??ջΑ7?nߩ˗n_Xv Ox/>{C>}{~tιZ"4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hj~гgθZ"4.'OZ9~̣k.3|b>s1wn=}n6Hsso?o>vGg}_wس' <}ԛyڑo5~_?Woy~5xG]{qiYwnկ|z~w:Ww'N5=/ɻշh]xՍ;8w|*Ё_\퟿;~owo|=w]㽇zmq6/8:W->?/;x=߿k?g]PUU繣;{>o}3/_ .|m~ V^r{…V;8wiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFWK=siqI=y⸏<77y]wxc]_s1\g.3|5N iFiS'ݵ>aiiii[_"q~~{}~8 W_ c =^/-K!?7݃sk^sk߻'NnzzW\W^v  ^G OxGg~;[rp[o W/sm/wSW~#^ H8lz-_tqt^CW][yo* zv着o=~yyo=veUUUUUUUUUUUU|?}kO8q>;|v#=Oy~ƹsH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸZ3H#K}}q{#|b>s1\g.3yw:lnH#4H#:鮝9N4N4N4Nicp޾4N4N4N4N8l.H#4H#{i%48_{| +iFiFiFiFiFiFiFiFig?M/z8W/n|~ɷᓮ_r= }/{e)eo,eQ{OZ׽ oǿbw|9|qO73FipO*oaXgv?>+|^Z~/Ov>N?V|wo?ZI#μ庿uoȵW_׿ǿc5?{̷wؾ{_|µs^7]\>׾/t{n/_. Wo>Kp~s^ͿriWn?ꛯ6᪑Fa[osUs~9S}>cSUwN U'}>}7/_3O>~耏:>~耏|ԓOGw9WKFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\-qzWK%>>WK8=wÏyt}|b>s1\g.3G׼;67FiSOtMqpqpqpq4z1o~W|Ӎno_pqpqpqpqp6}`NKFias=ْFWK=b4H#4H#4H#4H#4H#4H#4H#4H#4H㳋|ß}g&WWJo}`'Ws{?iA~կws/}{IR6ޗۓ>ox?y_{;'uoӷgF4H+9=W>>wW'|Օ#'=ݾ剟?}{{gav{V+iq^?w'foOq>/o{螿Ǿ}ݫk |}ow½_{m{_yMoodž?;sW}WnN{n=?xWvxoЕw8?y'<ߺ.oO\m{q_wk~7޳4I#魷|ѹv~;}ܦO>My}sŏ~fl[~>{}wUUUUUUUUUUUU~MOg=9OnMϜ~4ymnlsDiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi?gϜqDi\RO8#s͍ss9G\g.3|b>s1yt}{asCiFi?<;lsOz/?^zW=_ƚ{Go)K%W>;ɍ#~Sd7?x씜G_ŵu_co]6H#4n{/?7^W{'=׾?;Sgޯۜs_Ritڽ_z䥾=W}Nͻ|/ Uo>ݫGSy ׽^wy O/ x/|w/ꆏ|w|>}>)/7}˥r_}7sc~n+w>踺旯}W>\lMo.Uz^#/^Z_~'\G|/ORos1\g]_޻tܐFiFO=u];s6iiiǼ^qM7}iiiiq];].FiF ܿfKi\-qVH#4H#4H#4H#4H#4H#4H#4H#4H#d˭i4Hc&aas1A7ڗkoקlFiFiFiFiFiFiFiy[_n۳e#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4æEG窪^|oϝ}33=xQ_{{w}3>{Ϟ9o\-FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq?3g\-Fԓ'C\-qsuG?5|b>s1\g]_޻tܐFiFO=u];s6iiiǼ^qM7}iiiiq];].FiF ܿfKi\-qVH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#d#y]A4H#4H#4H#4H#4H#4H#4H#4Ҹ5ڇ̵H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4æ_ʗf^|og=OySyi?vȇzO3O{Syix8j4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#%AϞ9j4Ҹ}4H#4x꩓y4N4N4N4FO? o N4N4N4N4ær4H#48ln6[Hj'\ݾFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq\} KWTiFiFiFiFiFiFiFi V^XViFiFiFiFiFiFiFiFiFiFii|g=Ӟ~iO?Ϟ9gN{=Ӟ~kG9K*4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hj~гgθZ"4.'OZ9~̣k.3|b>s1s1>WK8=wÏyt}|b>s1\g.3G׼;67FiSOtMqpqpqpq4z1o~W|Ӎno_pqpqpqpqp6}`NKFias=ْFWK=b4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#VK/^|˗.zE/_K|颗/]^t˗.zE/_K|颗/]^t˗.zE/_K|颗/]^t˗.zE/_K|颗/]ŋ^xK/zE/]襋t.^ŋ^V6[6[H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸZ3H#K}}q{#|b>s1\g.3yw:lnH#4H#:鮝9N4N4N4Nicp޾4N4N4N4N8ljAIDAT.H#4H#{i%48_{| +iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq?3g\-Fԓ'C\-qsuG?5|b>s1\g]_޻tܐFiFO=u];s6iiiǼ^qM7}iiiiq];].FiF ܿfKi\-qVH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hj~гgθZ"4.'OZ9~̣k.3|b>s1s1yt}{asCiFi}4H#4x꩓y4N4N4N4FO? o N4N4N4N4ær4H#48ln6[Hj'\ݾFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFWK=siqI=y⸏<77y]wxc]_s1\g.3|5N iFiS'ݵ>aiiii1IϚCJ/:t:6c: ,-Y9 8R$$*<[ڲlSoUHesʡ纤FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi:<ߐF7kW}< }AY\ӓ'OO<=9xzrK>C.g7FiƗ_ ;3ױu,cqX\q^szsX\:ױu,cqc9sۆ4H#4Ҹt[HF__/mnI#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Ҙ_?ՍJ#>Soxv>?W._ӓ'OO<=9x%{!H#4H/]˙X\:ױu,c]}{W=p}޹su,cqX\:ױűxmCiFi\n{-i׿g|z;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧wy;O{i<흧O?ooK#4n׮Oy>>ܳ^|ӓ'OO<=9xzr˗|쑇\nJ#4H#/t݋w,gcqX\:ױ:vEn_ymױu,cqX\:r iFiq9 6FilnuY\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1\pu 1ܹ:ױu,cqX\X_!4H#4.g7=q4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸQ_3O?g7osz%OO<=9xzrӓW._Gr9)4H#4u/^xܱu,cqX\:};]:ױu,cqX˙6Fi즻'.ܒFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF7kW}< }AY\ӓ'OO<=9xzrK>C.g7FiƗ_ ;3ױu,cqX\q^szsX\:ױu,cqc9sۆ4H#4Ҹt[H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HF~<ݼ?=˗<=9xzrӓ'OO^|y4H#4K׽xqr:ױu,cqXSoxv>?W._ӓ'OO<=9x%{!H#4H/]˙X\:ױu,c]}{W=p}޹su,cqX\:ױűxmCiFi\n{-iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq^vg~ nчK<=9xzrӓ'\c>ܳ^|ӓ'OO<=9xzr˗|쑇\nJ#4H#/t݋w,gcqX\:ױ:vEn_ymױu,cqX\:r iFiq9 6FiFiFiFiFiFiFiFiFiF7o޹}H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#>Soxv>?W._ӓ'OO<=9x%{!H#4H/]˙X\:ױu,c]}{W=p}޹su,cqX\:ױűxmCiFi\n{-iFiFiFiFiFiFiFiFiFiv泻Co_=;5H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸQ_3O?g7osz%OO<=9xzrӓW._Gr9)4H#4u/^xܱu,cqX\:};]:ױu,cqX˙6Fi즻'.ܒFiFiFZl7|s_?zN6Η?~ͧ{c;߼F+~=?'zN6}yϩ4B=|盷7iq 7"4ns߼FFZx?~׼վ5o罵mox|[#n>߼}sng]qT[F[| ooSi6}y{ÍH#ۆ7oFFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiƍzUy)7ܹ:ױu,cqX\X_!4H#4.g7=q4H#4H#4o'?zso%[o/_./=Gg/]7xk>٧ykIo|>ԓ>_Y~O~<}qWVsӗ|<5goܰ{+駞 _9;k~/SO_|lF\y/})|^f -i/\7oŎW|+w~I?܉F׼O僗~boyE?ԓ~+/xxKZs~_ůίIhy}.7 _sn;/n~K>3?ᅗ-_y+>3?3_7oB֙/>g|yEiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiܨׯ]|ó7|}gr'OO<=9xzr+/#ݔFiF_~/+[_kuG}n/G|^~M~&/>;^>+>_wy?y?~䏾'7WЏy__Ǐ7ow^3_;|ק9wo|/~{?eO?kO3׾s-_Nz)iqq7yQ3|{[|^/] Kqk}}ѷ3>_:?/zsO׽^Mbǯ=/gWe/w#^پ=?zi/}[>|Í/mSn/!l/ț?uC{>u'>/[ukFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiܨׯ]|ó7|}gr'OO<=9xzr+/#ݔFiF_~//wW'~_>G~wÇ__~W[?=-yGߗ;n7~.^^⃟x5?gO>_ڻ7;W~|O_/o=뮻篿GNN}~؟|Gvw=>9;/>_z/N?|}{oOU)ng_^Z~s_O5?|kuya_|}]w}}η|K;ow?{%{nx_ϻ˻^ԗ͓OW/^D77^~ɧ|<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy9O;i<휧svy&_H#4n׮Oy>>ܳ^|ӓ'OO<=9xzr˗|쑇\nJ#4H#/t݋w,gcqX\:ױ:vEn_ymױu,cqX\:r iFiq9 6ƍz; _=rM<6i+~_Gk/?_/}kÇ_NOzEozu7}x~7\{_|_ Oo./'x5?g}?w-wqg?{~5Ƨ'p_˷ν>w^^^|?W/?חoo岿+?K/M{~6 _˫~/x+_{ϛ?w)roSw=~~'^yYgέȋ_}]wy|v]zտ}˓?׾?gW 7Í/7,?y._ 3^ o|%zԯ>~;[xHco81>ܳ^|ӓ'OO<=9xzr˗|쑇\nJ#4H#/t݋w,gcqX\:ױ:vEn_ymױu,cqX\:r iFiq9 6 _<=9x!4o|?:ug?>t钟/{~kW?~G~C~/ozҟ1_7_C;3̻~_ӟpy]>'~7{}7>.G?='~۷CnmKO|[>V' ֿ~O~%w_xO~O|sk}ޟ-^TY_qW'>?WW/淼{?I{ 'w}?~뫓y]zmoe/x-}R?z{yGs_+?-?O}zpkƍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7FݨunԍQ7Fݨunu,~OoFƍzUy)7ܹ:ױu,cqX\X_!4H#[ς|SZY3kf:U}{zMSӅx)/ׂ/ ^x nD%d !{?ϓ~;=O#֦\FWKώؘFiqŖw#Ge#Lŏu?8;9Ł{vS{.%_-_cY*zd]~7ӷs n|?g?Sg}]7]=8O}3Ó{Lpy}o .'_nw ѹcƯ>O|ogϻyq-޴kw~O\iϸzٳF6|OO|k>i/>Oq7ݸ۾=>z>/?'Nڎ>u^o.oO~w3ssGm <~7zӧ>O~օxIWcO"4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸzϞ%HzIx6y={s1y|cakSiFi|[{qrqpqpqpONpqggiiiiq}k.H#4H#֦\FWKu1pg{%4H#ҝH#\QW;+qZyE_ iq\yE_Hj{K.wVHjtgKpggpgg/]ζw^re#ҝFZW^t/e#K/wVlq\zE_ŝwV.Ύ/^襝+"4HFi틗.mwF_tK;^v{YiK;n/+K./tٺrEFZW^t/e#_tK^ViFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiF%uI]R%uIFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFFiFiFiFiFiFiFiFiFiFiF%H#4H#4H#4H#4H#4ҸZH#4H#4H#4H#4H#4H#4H#lFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\-УxWK%<%nm{xao\g.3|b>ƺ{֦4H#4ܳݷ4N4N4N4FO<]7xmζ88888888\.FiFM] 48_?bJiFig1<{x1x1x1x18rأO λH#Kŋ;^㥋;^㥋;FW+FiFiFiFiFiFiqĝFiFi\-nFiFiFiFiFiFiFiFiFiFiFiFi%=Ӟ|9/tg{岑FiFiFiFiFiFiFiFiFiFsC"4ҺZ-^"4H#4H#4H^̦OϏs.iFiFiFiFiFi\.nY4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#%zϞ9j4Ҹ>u҃vĭsw9u|b>s1\gX{vڔFiF{piii詓'ܽ/[vqpqpqpqp|pߚ%H#4H㰵k6G]7^I#4H#4\=w G?pϏ~~;w]gRi\Riw~~Kw;nۿ⾃3'pȡuGpH#4H#4H#4H#4H#4H#K.x#Ϧ.iFW|␿\6H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#;|+|GwK#4H#4H#4H#4H#4H#4H#4H#4H#4H.|7pHM͞H#4H#4H#^g˟7<9=[಑FiFiFiFiFi\1yj=go}ũ\6H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#%zϞ9j4Ҹ>u҃vĭsw9u|b>s1\gX{vڔFiF{piii詓'ܽ/[vqpqpqpqp|pߚ%H#4H㰵k6G]7^I#4H#4H/~~xXUUU .O|~~lI{>6g^kקCGY7tCe#4H#4H#4H#4H#4H#4.O{LpH#4zq'Gm4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H Çӛ']zbsrH#4H#4H#4H#4H#4H#4H#4H#4H#4Ҹ\pHw\\6H#4H#4Ҹ:qx]}:p=.iFiFiFiFi'?!^{5=FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiqC>3g\-FӧNzîy#=b>s1\g.3[H#4HsϞvÖ8888888x~=uwez;;N4N4N4N4Ö[sDiFi6ݿw4ҸZ|;+iFiFiTUU~ɏ]􊗿O~#wzO=]Wy-?yV4ȅM?c_Uoy;n}o}_{=ɳfG^}uo|OLj^{?ٿ7gw~|կ~c'ϼ׫^zWo}>?M_~k#_gtOGk^W_n8N/ԫ_zW]V~8..i¦O6{}̏㛮—?#o~[|o~ζ^8{=ϫ¿zG >Ě|_?t{fSiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFiqۻ>᷿m_՟w'OA{\Ͽo½>W}>Wʿ{gf4ҘsOw}[8+o_?/W虹Z?W^)?k~o}k>|?ꃿ?ڗ竮?}o޷gܚK#O/m?;C׿q>]˾Gyk?W{=دo]M_C}[ۿ{Ri\R~~q|w~;u/}[G_Zo= _'_3濾ɇ_x;^/o˾ʿ<}׼w֓~u/ #~}948i;_iW޵~W}_?;ֳ׼w= WKj{?m=WgxÞ>=_=^wtq[U蹣~kΣ]n/?Օ7z'6}ʿ'K?wkrH3}>{۷.]~{}oz~{wkw:Ǿ߼^֯LFy{Cq?wn~;?wilFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi=gϜqDi\RO:Z9gǎƺ|b>s1\g.3o{w;lmJ#4H#={}k8[N4N4N4Niuv-l;88888888[>oiFiqt5 Hj.lFiFi{-x+ܳgǏ+~J՟{'Ofsf|W^)oyۼG/_U_~wJY;>{oXj%c׾>>:3~}< 츳~䀏+o7G5w3ozk \_w~wRi\-/x?g}oW\'7}|hn+W<6s7w}ӎ/yt۽_g~_qkЗrK}۽\?t^}>S/.GܻۿzlxuMtקoG|?n]pIFz3O~/qz}~>_Xxwo~ߔkIDATuW_1^\N>W'&\5R<>p}K~Y]-_K_;]蹣~kΣŷ>wO>o^r ⯞=]7\o{Kӆ~Zl¹j_xm_̝|w .׽y'?_ ܏~mwȟO= _s1<)4H#4>i=8l9888888S'O{ ^vۭ4N4N4N4N8l5KFiak{l.H#%׏oFiFiƽk=?c?*O>{ӷjK3s7}ʼn|ș .7W?<;'~|};cc6gxk㆕/%WߝTW >u߽#Mܽ~GO}߫)}c|?w|?O>Kǽ=io;;֋'٫.w}ͭՎܭն۫-ic?~?zGW_w=/ ;\<^F>uxvoM> 埯pg҅7/?j岑Fz:o|F_v?;u/y9n]}M~w.~=y{<sz{GAyVI'PDđQDeP%0,*` IZPkT֪V?ykO|#~q8Q"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"5aLcfME,ţڱYV+lڰ\u{].^~y^۸buJ,bX"LJKl{X* * * * d^>Cri* * * * b[hX"E:ykXbք~ΜX"E,b7x]`mm|;_W^ݸGsX"Wvq篤u`w'ggl̺=ïsgcxfs/uq&?rXMz꫟?mY:.!]8{~zzk/n=O7`lxw|x>}'8^[#hRsg}e3gVVoqwʮY"o?5~LSq_sͥe^asmy6kyEzd;?V%5Z8;λ>fγ\<};_?Χ9|l ~+l;㗷ďL1;_v<Gwr߼Eo_?.WKs /I5kEl۸䞗v082+ꎛoX"q3vs-,O 3[ss3_{9z'̲w}OtvxsM?"ݭOsWz ~/+ {{~n/|j\\)WK?8yoƓsf4Y[#> 46[f 0Xn=k4ӯ Ng~CiE,۳o^>s캫\˶S5+ orM_8.6ǁ]/swZ׹s9p2,jNķ/;OfX4~5?|W?`UF['>ΧϹ_ɲ8|ۏqxtSshןZC.~ \r/XĢq_ӟ^u'/@UwEͫH}_?)>.F{t'ޛ~QƝi-CwR7tgg/܋BUgɳ<)ML,b۟}|3rrQ^z^rvq^zZYht6y\y|"-ן{_:EЏy1kĉ^{_ħyb6~0Ճ).iϟi85'e_ٹD,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bYvd8&1E,5TTeAUUH"^Cu%bj겠*Kkj5b Hk48t (&GY/sgШf*ʂX"ETSUYPku-V#XhFZ#kUAUuZ]cX"QZUP%ZF,b* bְXk5TXkX5ZP]cXkMSe Fn|CNk"E,bX"E,bX"E,bX"E,bX"E,bX"*977m`nnM X"E,bX"E,bX"E,bX"E, ̦W6}! X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ט.󗹍lzc+1E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,fMؽs;Yb&fi(vlcք 6@g/{].^~Kץrpa6XX"[^,Vʂ,ʂ,ʂ,ʂ*Y="E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"5aLcfME,ţڱYV+lڰ\u{].^~y^۸buJ,bX"LJKl{X* * * * d^>Cri* * * * b[hX"E:ykXbք~ΜX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Ŭ wng23kB,b,-e׎m̚:]aӆu<^~Kץu{].SbX"8>\b*UYPUYPUYPUYPW%Gp}Gz3gNSUYPUYPUYPUYPl2GӄX"E,)sXk"&-pX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,fMؽs;Yb&fi(vlcք 6@g/{].^~Kץrpa6XX"[^,Vʂ,ʂ,ʂ,ʂ*Y\b*UYPUYPUYPUYPW%Gp}Gz3gNSUYPUYPUYPUYPl2GӄX"E,)sXk"&-pX"E,b kXeut2eVˬNY.:]fuF,b}t'B,b˅X.ĤBL 1)ĤBL 1)ĤBL 1)ĤBL 1)Ĥ˅bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&X.ĤBL 1)ĤBL 1)ĤBL 1)ĤBL 1)ĤB,bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRI!&bRBL 1)ĤBL 1)ĤBL 1)ĤBL 1)ĤBL 1)ĤBL 1)ĤBL 1)r!G޲ ML,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX̚{v&1&"MQvƬ 6mXǁ^.u{].^~K\b*UYPUYPUYPUYPW%Gp}Gz3gNSUYPUYPUYPUYPl2GӄX"E,)sXk"&-pX"E,bXy6Z[CkkHkekʋ/?>=#x=,<ˏ}_>)>Oя}ѢajX.V+Ué5F+55Nae Uu^w?xmVhf4]cpp37]M>)V 1alX&kWr5cZX©ihfƩ"3Vpju7p'̫GWOŤjX.hƤl3Ué5F+5JhfRs+*1ZMŤj3VJ3֌V8Ua1g,jŞw~-7}VVԌWr=cZX)x*FA6;ƨUr5cZX)xZtt7?-Lʰ\63BWjF+5U\͘3˰\Jhf"VG-7ps,a*zri+55&e +i0)ԌVjƫf10)hfR3Z1)rٰRX©RϘ3K3^ԌWJ=cZX.xf4]TٰRϘ 5F+5 zƴn1ZԌWJ=cZ7,WaRJhƤlXgTԴfR3I0gTtJhfR3ZqlXgTdˏqw`S%JhfjVzri&S=Gr'1qaVӺaRJh*aRSӚJheSEXgTԴfR3I0gf<9[tML,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX̚{v&1&"MQvƬ 6mXǁ^.u{].^~KO(M,rrʔ};Gg7nC6r駯A^y/}W_⡇ױuINԜ\9Rsr*vlGg7?9~yjv'K+W̓GOow9| ~oysӒ}y__g;9v9v~z~w鞬??o1m^ye=yq~Su#M+;gWplyѴw;x~a"NԜ\999Λ_gxGyM:4td;׿|>k^|s'5_?O~u8<99:7^O-_9><~/~>'Np|eѴda~W9^me0'F'xGy;Ǘ/_݃NԜ\9Rsrd̎u<<&v:`\EG/䞇#NԜ\9Rp>8?}I^xc/ǫ|g66Wu53̿<? Q5[{z}5vrr27ÏsthucKy3wUky>E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bYvd-©SxW8z0gNψE,^Ā~mnY+Ĥ`e>|[[ ?%jl-\tWMՋﶳ8'kNOnow߿7+]w?̺?v|[ڋ/IM/wW׳a>M|u\u7ۿŏxSk\8>8F˸;Wvpx<敇.2_v.Ի//p]ws sE-/?ǸGٴr7o7=._sԶ}pm7?}H^="?ύwm7^-1<ɻKn;ywYm$N.W_^a~79|O} ^r#_thAN?go}1+ ý7^ʗo[~pr'O~W?]w|k/:+[au|;Ʒǝȅc?۹[w1v,^p>]nƷ#b)-=|\x]; C9|jOt7u7_;Wu{;+?`Þ-?p;sG_گ˹k}6wX\b*UYPUYPUYPUYPW%Gp}Gz3gNSUYPUYPUYPUYPl2GӄX"E,)sXk"&-pX"E,bXlyu~{8z(u]s-pg3xu9̙3bp"/Ygɳ>'f {?|s:tN 9VZ:Ƴ߼;:xU'a"\S5vZ|?ph8~y`@"o| c۱!z޳|p|%1_?eW/\}^uQ1ews“@:8rb89rチ+ _cqqcs W v|/>>v.䁯^%}}=|kg{==éiᣇز=[Xw/]8}_]r,{uz䲳«ɍWpeɆS'k{}wN1Xsd5NL*5ˇn`\{eY81b\cw;?r}_snLJ⪻xW1>[炛|ro¾"[_~ξEWea &5'I͉SGy躋981ݿn=6>S/hf8NjO~<0<ėoz݇᪳EZ?nM{q`^u5<wgB}jŎ ? _.ۏ/M_;^8r=opq_}]SռeKO"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Ŭ wng23kB,b,-e׎m̚:]aӆu<^~Kץu{].SbX"8>\b*UYPUYPUYPUYPW%Gp}Gz3gNSUYPUYPUYPUYPl2GӄX"E,)sXk"&-pX"E,bXly ~{\tE<6mՍ8z0gNψE,^Q]\󵟳yAv9t{[\tdJ⳾Gxosda<>=^{#k,[g]+ O,[g}WM9~d16<]ܧ~o=~ru|7m,kX^?ݿrcos'nOU<ǽ=Uql\rTSM󭧷px_^g]şzSNLją7olJMo`Oqمa5*9zox3=S???};l_p%Oe/{{|_r#w]9.;+loO0Ƿ=Orwq1Z.#|oΉJM[n'_-q`P v]=v,k]/Z`i"[λ'O{& VFoqmd O;Usr%lnesNn5@oΫ?G?q7˯Ze_seя~ -;p~]|\#vnx.>O7?h{/_!?pje̟.W(ÅO~|[y2/s=&%N? '~Ҳ9y|7_5<gb*96.96.96㕧 G?ŗ4>g~ĵ7=Ļꬫy㉻?? oc[ykXsbR_^sncsɕ<^'k_'+:GG?>I_?yW=޼hbbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbք;35!hbk6fMXi:trpa~Kץu{].ymz)E,bX.eub,ʂ,ʂ,ʂ,ţG{#=ș3ʂ,ʂ,ʂ,ʂ,(UniB,bX"95bYz8szF,bX"E,|5vFs?|(xu9̙3bp~ڽ`o0Z '+㢳c 㢳գq7dREoK\7{ÓqҸoj|rEwo Zظ+S|{Y8WȐ?{Kr}{K>y9?'\;94;{-^cv96.X '#G) ݃ܳ}'/1 fMS7߼[o<ID~7|c[8t :[lM_'_ M{'xw .ԗx|#}r9yϏnzu]EX]Ŀ~9^3,+N-7'_g/eĀt-,{[νǶ38Usl7w%oOqҾ ǎW}oy}ql\486|>q.o=Nt6?ι~?wWsνr>\x/7z=G99.|țۻo{q>ٗ [ޭyWrUO-r}n•<^x{\;eNLN;~9.=+r|#}rsbG7w?p3\t|ȿ|.9^qlT881-7_c-|rsGX^c[9:9v=n>J{kC ۯ/\¥_?/NQ}n8˯ϝ?@g{_?9_W_q-<ʫ 8!]K/^p7x'ၯsW~˯8p~~՜K9;.ٱ1r.*.znoٵx7_~K_p5>C*Fq7 ^y?<2Xx, G]ʫ/~k#{G\{C<+?u?Pm~t \t\z5\y=n~vs+JU{9.l>V% /lϑ'}\~\z\rMz:'Jy/KO"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Ŭ wng23kB,b,-e׎m̚:]aӆu<^~Kץu{].SbX"8>\b*UYPUYPUYPUYPW%Gp}Gz3gNSUYPUYPUYPUYPl2GӄX"E,)sXk"&-pX"E,bXly 0hγl6c61X,rX⥹N/s/s/n]}.-޺)'W98 WY-gv|m^ݼ]!GG N28wx]9H{NY<?㹗6[p`h?ş^Z6C, hoÂ#v6:Lpm/vG N28*>ܳ?}gtoKUoM]5t:QqṼ2) p@ 2Ȋ ,!,"yN!yVU׷?Y&g*e>4|d+[O,Y˯e353|u^>̉Sg8nSpdb6{(O>z#;񷙜xc$>}ZaƛoF<-媯Lzi/>[v)T?qv=Cnݯ119SrrVrrVrrV1ʾy-jLI1+)fՆ,֜JLE1+)f%əbV2YmX>09SQJN4,]gljJYd䙚JE1+)f%'LV*N*&5'g%əbVRJ&+533+$?CjLI1+9yfRQJYI1+)f%Ŭ䙚,]giJYI1ԜbV1Y99+)f%,֜bV1YmX>jLLf*mL,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXtm8t`gWVX1K_kCv۶ptpѱEEEEEEEFع}+UF,bX"O-gUISW4uESW4uESW4uESW75wq;ܜM]M]M]M]QW%{mC,bX"UswamXtm.a<<#E,bX"wsy9wΟyy9wΟMbXleNJ&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬdib;_3/ϼ|3%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdVvr-Kv3X.Y:S2L,䙊ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+J&ɬd2+*VJ{_.7KΔLf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%YdV2Lf%3%Y{uN"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E׆Cqve E4)8%6kرm G[`<\d<\d<\d<\d<\d<\d<\dtl۷Rk"E,bq{v=M]4uESW4uESW4uESW4uzS3)Np{9M]M]M]M]uUw.6"E,bQk<{E׆cl;bX"E,bX"E,bX"2=oz^@?z^@?z^@?z^@?z^@?z^@?z^@?z^@?z^@?z^@?z^@?z^@?z^@?7Oȶ珰?z^@?z^@?ήе!hc&D׆r;m0c -sVrX"E,NZbϮhꊦhꊦhꊦXoj& vuw9++++JEۆX"E,rv 0\8xxyG,bX"E,bX"E,bX"EtZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMZ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bѵЁ}]YkC,b,M  9vlaF[`TE,bX>Ğ]OSW%M]M]M]M]Ly랻bssNSW4uESW4uESW4uESW4uE]ݳ E,bXTޅA,bѵapX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,6:++tmE,ژI/ѵ\;ǎm[8:8"""""""c ܾ\#E,bӧسiꪤ++++֛Iq;︝ws]lniꊦhꊦhꊦhꊦ{vѶ!E,b\ݻ6E,6 0csX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E׆Cqve E4)8%6kرm G[`<\d<\d<\d<\d<\d<\d<\dtl۷Rk"E,bq{v=M]4uESW4uESW4uESW4uzS3)Np{9M]M]M]M]uUw.6"E,bQk<{E׆cl;bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"p>ήе!hc&D׆r;m0c -sVrX"E,NZbϮhꊦhꊦhꊦXoj& vuw9++++JEۆX"E,rv 0\8xxyG,bX"E, bX"-bX"E,bX"E,bX"E,6l[ZX";X"E,bX"El.&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX "E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b&l[ZX"E,bX"E,bX"E9oi-bX"E,bX"E,bX"E,bX"E,bX"El.&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bѵЁ}]YkC,b,M  9vlaF[`TE,bX>Ğ]OSW%M]M]M]M]Ly랻bssNSW4uESW4uESW4uESW4uE]ݳ E,bXTޅA,bѵapX"E,b ke{gwd޵ݻv{Nv];yXohcbXĢZ9;7y&d E,bX"E,bfo|geZX&Ls"E,bX"6yGOLE,bX"E,bX"E,bX"E,by2oM,bX"E,bX"h٥#22E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b}jgeôm۲9E,bXĢM؜6yGX"EӋ}v?+E,bX"E,bX"E,bX"h6-E,bX"E,bV+ K+8&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,6:++tmE,ژI/ѵ\;ǎm[8:8"""""""c ܾ\#E,bӧسiꪤ++++֛Iq;︝ws]lniꊦhꊦhꊦhꊦ{vѶ!E,b\ݻ6E,6 0csX"E,bamp`ߋ<#"ā/q`Kā}/lʼkE,b3oK'kkkÎmKkX"E,bXtm.6:CqӇ/'qL,bX"M?G^/pL,bX"E,bX"E,bX"E,byܟaEX"E,bX"E׮7\qdE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bѵ/'ukʴE,l0{k?%1E,b6u\[x]D,bX"E,bX"E,bX"hʉ<'"E,bX"q]o{6"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E׆Cqve E4)8%6kرm G[`<\d<\d<\d<\d<\d<\d<\dtl۷Rk"E,bq{v=M]4uESW4uESW4uESW4uzS3)Np{9M]M]M]M]uUw.6"E,bQk<{E׆cl;bX"E,b3O}<}ʼn؜w"9߭[_ѧvcl4;IUΝqzyӳ bzK:=enچre SX=Wᄬ]o1jX.siΕ5E,bQ.ﻐlu -?82NX׉Ebܬ:]ԩӼ]$"EܰvvsSN:%My٩efo!Zx9˺D5ͷY_9+SN-/1[9˺D,bxۜ;{eNOgT:]ꋿVZ^ :j89d W6̩%NQ$B%VW8rӧT"P}˜Z>{js+NqiΕ5EAuv%f+o!DlTosNO)DoNq2O}7Э>%}kgp2O(uڈϿtz>>N͆Eќ[al,Zr具3̖9˺D,bX$bz38==Clxruef+o!zzmή2]ԩS]++?GiʲBVWx{eT:ިy)N-/v2_?·.="sg./qzX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b  ]b6fiRppKtm(αc3:xxxxxxx;o*׈E,bX%z*iꊦhꊦhꊦhfR;n]}s++++d]mE,bXĢ*xn. b Å#؜w"E,bXgv}<}ʼnl;b؜Vrm|'篛-N<5|?w1~w?*r%z\s=[5K>o3xx߻/37}EE[KZb3|/ys洡ͳ2~\sʌ|qϵ~#.z}]}!ミ^z ,؏o;ޏpϷRskC|'ެ[:߻ܳMޗ??~.x;X68|冯_~oq|=T'^[.spun׀˯<- >/')|.ą\w=8zo~o;傋!¥~.|Ce#%Wy߾O~vvf~o]r5<ٗ>{svCE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXtm8t`gWVX1K_kCv۶ptpѱEEEEEEEFع}+UF,bX"O-gUISW4uESW4uESW4uESW75wq;ܜM]M]M]M]QW%{mC,bX"UswamXtm.a<<#E,bX">(NgsX|ֻG>r?/=?{ٗ?=W||)O<*guVU_G;dVoh7e*7 8r_sgoזy q5WؘqG/OI 7^7|b8]ċ\Ϯє ̹//^bcZġ-_o\'9ql|?~`t_~*nѓ-нdӬ7gyoW[K7GƋήlz>},wyy~_q?/N3~\q<8^z/& O>GvR7|>.6?*x s|ϱoqMŷV~_y|nh}q?1\`XĦ>׽AfgNrpvgK<{?E<8Ӆg?BS_p*9pUfolknw{F}E?lM~}?›M꫿x[>ſK>֡_epv?u}ӷ28btw_+M\xݜX7El:?.+|$ś8pUV ~s];8y`/Wbmz ?6eu\~?zd^y+>q3z+orǖyn8w%G^f|?|"._x9ʷ/߿x[~?t79s0?FE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXtm8t`gWVX1K_kCv۶ptpѱEEEEEEEFع}+UF,bX"O-gUISW4uESW4uESW4uESW75wq;ܜM]M]M]M]QW%{mC,bX"UswamXtm.a<<#E,bX">(NgsX|ֻ"|.v&,{g m\ٷ_/ڞ{qx9'\uO8~unl9rg ߸+7\GYq++xIp.WO]{?~%1vk7\r x }V9EUne mn?<\cǯ-Ӷk7oK?Oppe/t#?ytW~toY[,Ksu7_wnxon:_|2oxpuK?WI\u x%Ϳ{7}9_y}f^~;o9ǯ:~v56'+_Ğ]OSW%M]M]M]M]Ly랻bssNSW4uESW4uESW4uESW4uE]ݳ E,bXTޅA,bѵapX"E,bXo8qyG,b [oqw+l]Ǿ.bu$W~z=~K<OK.?"%~&^k[\q--GFw7xzvl+G$"Y{[>~9^:nq~Ͷ/ȏ}/oo|eVyr/O/k.& -: {KB}ϱcS|Ϗogk|g|\s7Y.ʯGzv{nﺍk0ѓ,;9ڴtE,1^[~s :~{}էOoK}S+_zv<3cu}_E~?mO`֝)NQ8}:v-NWs/ G>Oж֫3yΗ~#/xa8r߼ ~oDs1w]}1wxbc⭗OʠsC\[yEl6zw~/NmtjhONѵau>94}nSu.m7sosG/s8mPG<zc }j:Ysm8\ty<ʷ/=BӜX|vog_O]s7E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢká8B׆XĢY]ʵsضÌ-0.2.2.2.2.2.2.2:[5bX"8}j=J+++b'y=w朦hꊦhꊦhꊦhꊺ*ٻgmbX"5۽ kXĢkp16E,bX"x|`OmFq8X"6ze.}x]| Vd7}yc`;p5<)=<>ΥC[?| zͶ_ދί/n㋷OqK<®p?̿Wِ}Z~gyrŧͶsqŧM|_~t1x/'7+Ƴ g8oS_hy_|B.=xf'C]W}_Cs#l7򳇶ӟGy_ͦE,bѬ}?my<{|7_c?\/9N®^7-;ރְ߲os7pa3[]?㩃 MWv/[<ȗ>o20W^z+p~~)_SO_O8~\E߳!x|/rc[x{yЛ, }a]粏*th;3U_?<}/+*;{ {< o8>7_߾w;Mi׾w}_?)ozK?E^L>;¯>q./+~/2GƧ/^gէ駸Z"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bѵЁ}]YkC,b,M  9vlaF[`TE,bX>Ğ]OSW%M]M]M]M]Ly랻bssNSW4uESW4uESW4uESW4uE]ݳ E,bXTޅA,bѵapX"E,bX8RwgHCW+?yO%1M~g2㙇~ώ}GqWO'm,,m"S?ǵ_7^5_X8_=҆;o˯,_?o}oMI7_O}ΐl͑g[_˯ݿ%_>d#E,6o+?%~ VEѬxp՗qMO9#߾*.:6g*vSo>ˏo+=qW+bq5[_}Zng憯sG-f:/_s5L֍ nJn8<9l8nZX&~nܕ\eܚa+v#u۱Uey5&'s=S4ht_+.,z{nc 1O2<)dX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,6:++tmE,ژI/ѵ\;ǎm[8:8"""""""c ܾ\#E,bӧسiꪤ++++֛Iq;︝ws]lniꊦhꊦhꊦhꊦ{vѶ!E,b\ݻ6E,6 0csX"E,bamʡ<ر}+OmS۷m<}OmƎ[y9¼kE,bm99soΙ[ZX$f>oi-099csŴ y|9]h-b3ZX 97l[ڈX"hۖs6̻."w-]D,ڄs6-mD,b̻."]ҵ&mmE۶ln99gkٜ6]ҵMw-E,ڄyZ"S?Ϗyw6;歉E0ZZ6as>y漥i{?35FĢm[67ߜم֢Mw-E,bXĢm[67ߜ3mw篛smE,bu7옷&hۖ97lvE9s~s:shR-~՛ϲ׿fǼ5h]KkѶ-s6-El6Mw-E,ڄyZ"E۶ln9?bbyKkZXt]Kךt]9ִ 󮥵E,ڄ|9]h-b3Zt]9]L,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E׆Cqve E4)8%6kرm G[`<\d<\d<\d<\d<\d<\d<\dtl۷Rk"E,bq{v=M]4uESW4uESW4uESW4uzS3)Np{9M]M]M]M]uUw.6"E,bQk<{E׆cl;bX"E, 6f)ʼn'S8Nq8ʼn'S8on"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b8τ|V~ T]K,bX"E,bfSGwp_O<2iC,bX"E,bX"E,b~o=9E,bX"E,bX"E,bXĢ:6ڜow?qeZ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXtm8t`gWVXς=C^Wu{n>Ugġř%""NUBa*"!Xb|IB&Hy?;h/׻_/#}]θv;oէ>\]XqubŊW+ؿϻa}MiFi}4H#4H#4H#4H#4H#4H#4H7\?}3k붑FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi匏>Or9#4ԣGȃq}w~O}XqubŊW+.V<wq4H#4xQwqXwqpqpqp7#y5W-qpqpqpqpa=w:H#4H#i)4.g\{~H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48Sg"4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸчS.gƙzay~3o{`>W+.V\]XqubŊ;nsX_FiFO?w;N4N4N4N4z!j_r׹4N4N4N4N8gNiFiqX_];m6匋}ORiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\Cx)3HL=z䰏>u48S9#r3y>qbŊW+.V\]X}umkH#4HGݽnaiiiiܘF>\Kn:iiiiu<#4H#4k޻kͦ4ҸqIWZJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#}O:rFiGw9VsubŊW+.V\]x`>65iFiy4N4N4N4nLGk%7\[N4N4N4N4ú{vtFiF5ݵfSi\θno-FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi匏>Or9#4ԣGȃq}w~O}XqubŊW+.V<wq4H#4xQwqXwqpqpqp7#y5W-qpqpqpqpa=w:H#4H#i)4.g\{~H#4H#46ygg!4H#4Ҹ9<ǎ 3DiqsFig4H#4H'NvؐFiqsFiFiFӎH#4H#4H#4H#4H#4H#4H#4H#4H#tӍkgm#4H#4H#4H#4H#4H#4H#tZ;鉣|a}4H#4H#tqׇ6H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸчS.gƙzay~3o{`>W+.V\]XqubŊ;nsX_FiFO?w;N4N4N4N4z!j_r׹4N4N4N4N8gNiFiqX_];m6匋}ORiFif'>-onߺoFnߺ=θFi|ȊW{}S=3n:7H#4H#4H#4H#4H#4H#4H#4lxA>&FiFiF?ԟ=b4H#4v8?.ݻՓk4H7];ynHgSJ#4Hqz[*4lC\]XqubŊW+ؿϻa}MiFiRiq멧v7;mo? g֖/Lukt{k˳g}q{˭H<Ϟų۞ݚiZg^ nmmm_^5[/}ڏf_"8ϳg}Ki"C{?aKٳ۾xv%έ_y?޿ͽ^w'tn7N{3[[ٳqf>7fgų[Zr7?qųxv˭_Zo]WTiqų۞ݚy}~-\.={vnętI֭K noomn΍nm-ųn/F٭%H\]XqubŊW+ؿϻa}MiFiot3.=pOb>VoY?~{yc\-^y{5_No8O 7|tǃ87J/y{'_˾#GO;3zK>?7H#E^w?aa?Wϋ/7ϯ{W/w|ٹ?_:q;~}wɏG9xb_~}__vO=G_F~|қ{ʣ]?.>e4lzڵK./~{dž~G=z7{}{=vj[o?ay:?橧~ԿtxƟ~_W>G/_ɯ=3/|Gy?٭yà :os_g]nyM+3 ({_?_O\~y_}'{e8&FZ7</zM[c|Կ{E~OV6wO߼/z~ {{櫷 .7z׿7s^ʏ~塕.S7S֜4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4.g|<}iq=rGkg[}jؿŊW+.V\]XquפFiǏ{ݎú888888819|kڗpunoo988888888ٽyFiFi׼wNMiq9bߓ.FiFi{~y?􀪪v:Riuk9>w~o<|k,1w|ޛoso_|ҥow||/O\|;݇H#E^w?O?yW^|ҷ7?;.;n]?/_?+oGpk^ݟc^O?7\z|y9_宜^/}ě~co{>ួO|ox=º4Ҹ7s|[W}=x)w/k ^N9zƹuN?>z/~-??g_M~oWnʷ]!y{og"L'WFvnx>^͛?}_o?{W+.V\]XqubŊ;nsX_FiFO?w;N4N4N4N4z!j_r׹4N4N4N4N8gNiFiqX_];m6匋}ORiFiF]>=|[KiFϯo\{ի|Ç^p}e/o{w~s^x]V/NOs֭w_W|q>>x{}ۅ_~k,ngV탿[^.^zWk/U鼋/x /,)[?O7]Mw?KǎW_o[~̆O}?t/}\?W<#/~%:|']9{?|;y7?G&O[Di\kU8>~g]uX{?{^~G^xձ3~ÿf/ڷ~{uoڟ?tk4t.?ƮU?+vqowO[7m7{~;}]5>]>:兯_8_쇮͵ί~Է]EW7p7]Ϋ/uo?>rRic]]Sr'V~_ӾK}Qv 7{Or9#4ԣGȃq}w~O}XqubŊW+.V<wq4H#4xQwqXwqpqpqp7#y5W-qpqpqpqpa=w:H#4H#i)4.g\{~H#4H#4x/PUUUUUUwCZJ#4Ҹq9l~>~wz=g9o~8;vO~C^wysXō}~{mxc7wN_]מ?blޯ}w}} O鷼ݯܷ[.zȯ|=^_-cǻ'[/[g@}ҋ_iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\Cx)3HL=z䰏t4HuWןyG_s~} y=w_oo=x%7}?tj߾rk-Ƃ O׾˾+Oྻ9»)/W<8nom˯?vlxW>^׋s#E^w={nҋ?O{ly_{=~n&Ĺo٥o=o|ao%~{۞7|=ۿ}>q9up {c-o~ ;wOyϷ>}Fi\__< ۟x_ugǽ^}_|g򚷟;.-g?/zO|=]zW-~'6'{vɵ{{0Tiq^Ξ3ΛǽonC^77q\.iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF3>>u48S9#r3y>qbŊW+.V\]X}umkH#4HGݽnaiiiiܘF>\Kn:iiiiu<#4H#4k޻kͦ4ҸqIWZJ#4H#4H=?􀪪v:Riq9ox;e5|앾C_ϻd÷wW_wv~7ʗ}_'nc/_veoFv\=O쉣JN{MWzվy[}_Vy77{k/sy~ĝ7]{/+xg~?ۣ{nG?vշ<= /|य़ɧ]*3z쇾ot_|}/߲㭞'7O_7ox_k+&u.k>}~{ڇ~e/~| ]O>+sFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq9=S\H#3>.g\_;㝷S{}.V\]XqubŊ]w氾&4H#48~;v֝iiiiC^{վs{{iiiiqXw3H#4H㰾潻vlJ#tu4H#4H#4w.=~Ǐc?~Ǐy1;OnW=RiF6GϜ<3СÞg°>./|.9g6nn8>3g|I?uLpƆ4=rЃzg}ٓvcS{צ fF<>~3to&Od3'O:LH&_8yaڰC6mH#K6\7༏Б>s'Nd' ɣ>9ϝ k.Ϟg+._vP=}|gp}ڔNpô!4H#tӵ'<~┛4MO}賎iO1^#=x';gO:eӧ<6qZ;gLc5?3qzYzC{mF3lqsx㇟C9O>{isә8y#|ٓY,|gwmܐNp$4f|gC84H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸчS.gƙzay~3o{`>W+.V\]XqubŊ;nsX_FiFO?w;N4N4N4N4z!j_r׹4N4N4N4N8gNiFiqX_];m6匋}ORiFifǏx~?z~?=.gFi֙:SFi֙:Six-qZ.4H#3uDiH#48SgL4uH#3uDiF!H#3uDiH#4ԙ MiFiFZ?y~þş/\FiFi:Si=7zɍ-H#4H#3uyYwޏ}ݕ$H#ԙ:SiFiFi֙H#4:Sg*4H#4ԙ:7DiFiFiƙ:SiFiFiqԙ8iƙ:Sg"4uTiFiqԹFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi\Cx)3HL=z䰏H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#3uz5y]zjڔFiFiFiƙMo<:7H#4H#4Hy]7/]u"4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ҸчS.gƙzay~3o{`>W+.V\]XqubŊ;nsX_FiFO?w;N4N4N4N4z!j_r׹4N4N4N4N8gNiFiqX_];m6匋}ORiFiFiFiFiFiFiFiFiFiZ5WiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFË۞ݚiFiFiFiqfFiFiFimpvH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4.g|<}iq=rGkg[}jؿŊW+.V\]XquפFiǏ{ݎú888888819|kڗpunoo988888888ٽyFiFi׼wNMiq9bߓ.FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF?AxgA)g׾9]Ϯ꡺{w]8 wwUiFiCntlqp688g.u\} glqp688am[69MH#4H#ڪ[7o9%4'\޳ەn,H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H|Gwlѣ'Ɖzw> VO;n٧w=,/+K,/wamUiFiw+K,/+K,/s{xqX[FiF>M8k88glqp}6z~/R_wWp688glqpܶeӄ4H#48u&SH|=]Yb.4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4'|tv=|Bip9pmv}z+K,/+K,/=}oVFi#e=Úqp688gl\wwUiFiCntlqp688g.u\} glqp688am[69MH#4H#ڪ[7o9%4'\޳ەn,H#4H#4SZ=>zj}gZyj}g6FiFiFiFi|r1UiFiFiFiFiFiFiFiu;H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4:O.J#4H#4H#4H#4H#4H#4H#4H|\̑FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFibH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48=~ iq:x?|µՓ}]>w+K,/+K,/s{xqX[FiF>M8k88glqp}6z~/R_wWp688glqpܶeӄ4H#48u&SH|=]Yb.4H#4Hc ;/oΛoޛoޛoޛoޛoޛo-lt>!4H#9eOSԺ9nsJiFi]e7t[H#4H#4H#4H#4H#4H#4H#)ikyJ#4H#4H#4HcsJi9eiFiFiFiFiFiFZ?4H#4H#4H#4H#4H#4H#4H|omw+K,/+K,/s{xqX[FiF>M8k88glqp}6z~/R_wWp688glqpܶeӄ4H#48u&SH|=]Yb.4H#4H#l]w/x :ࡃ/x <~\iuc~oҷgg38޴|r>M.s <}^z-:Nb>\L85:p>M.:&s4Nb>1OFi8 _y||{它s9F'p1ܘOΧJ#4R_[{|4>߼?wD&'|rN'9F |rNFi4XL.89>/n|.ńS# b>D4]'Ti&\.8iqzzM5?a7]-~ir1Oi|b>9i|r1\'|r1Siu&T'Nyxi\sbir1ܘOΩip[鵿(s4]'Di&\'TiqpNqp>Uir#;g^|>O. Fi'^p8.ӄb>9:p":pNqpN|rc>H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H|Gwlѣ'Ɖzw> VO;n٧w=,/+K,/wamUiFicwy?b.4zz~۾{uʱwS.=Sy_?lGw}l~R9u}<ݏܽ:xpNnO>SO>˫TWC[9H Os ~ouSVwmmGI:QW޿AxPiqb n] ~姷ssG;wϮ|t6ر˃GG|5i8CK>m[NZ*4H#V=#n۲Ňzzz_ u}>VlGک:g7g|yuDe}CKsC{5i+|>cGNBk/+䧾7̡Ǽc=.~̇S{_pS;vy)'~qݺm^^)k ro򡣆ʊ;?S{m|}ē{][?sO=ݏm<>Hĺv->1w=/~Pi'/q˦}q=?/K/]>؃޿e;85vv=-;/N8qc>/9zdu =ۃGW%kڷ 9}-o󉥃FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiGOH#|!wwO{\Y^reyɕ%W\Y^reyɕ%ۻǻڪ4H#4x!lqXs688glу{ekʍqp688gl-&Fiamխ7ٜF.^7siFiFi޻}dvUUUUUUUލ\i_e]}Oow\xnz[9w?QA|_9? 쩗s~~zG>gɳοwo˛wz]{~/{|;??w/lkS/_o./_#'>%\aoxxn\~o>̥9>s~'om[QA_|q/֏x/ɗמz?-?5wGcuoo?ʛw3rw^~|C~S#\̞_>bci1ʏ>דK3?K}Ї>{{'s?긘bϽ"o}ENk_O=]?o~y䄏3{/>cOcnyS/>wgiq3~+>OWrr?^qw=c+nO#S^|_o֗u_v<~ߋ>t<묏x3G<~9y)W=_<:Οs.va~Oyޓ'{?S_bG~F_oy~w>|=~;{puG\nKC'|/_+?3/G~{\=^||c~_w/np;wxdaoo.׏qu'?C{_Wo{µ?mg|G^ys^pw)齮NLu_=_>p~]r~3k?71~S/z7?GpGVum}ͧngy}Gx'Gf=w_xWG5Wο7O?9o3G㏸cFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq>;{QHD=t;~k'ӻ|nW\Y* bIDAT^reyɕ%W\Y^rey;㰶*4H#49|-q֜qp688gl^~٥rcclqp688g8m& iFiqX[uM6{v׍\iFiFnٱ]UUUUUUջwc1Fi==?\yϻow}w}O-}wz>C]PӋ1w]޶a|ɭ{=7?wNO՟iuz~w:;5Һ~K?~O^p'?}>r=OoCi_]o}o|w<4^ >OWOyOGo{ wѽ'y776;=xb݉H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48=~ iq:x?|µq>#> yIyIyIyIyIyIyIyImkH#4HÇܲa88glqp6F]뮹*7688glqp6Ú۶lrFiFUndsJiOg+{X̥FiFi{UUUUUUU;=/|}M'.={{Y+Y{Ϝu7zэ Ǽm'X&Y{܋v>Λw>⋇cyV)NkOٷOr|q? unW+ɥm?{'^a:z^ ?c逇^3;wˆJ#Kw_v<'w~'-.?k/<=Ooc_rɧӿ8-\}޵EO=s=Kz}usk~^WحC;^WgϾ >S׏"b|Kιwb_?,ܲ"zz9/=߹}Ǯ <W?t|ׅ~G;C/܃?gg'FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiO?z48Q<·r>ɏ~Ϳ_&7zM7˛n7/o_x7p?\[=)4H#49|-q֜qp688gl^~٥rcclqp688g8m& iFiqX[uM6{v׍\iFiFnٱ]UUUUUUջwc1Fi==?g^/{^}wxg=[љs7~G;w~o_W\eUxO޼KksE~oxɇ7>ȏ]erůyӽ;]crj]7WSoy7=q2c~-!~/{/~yU&FZYO>vW_}¿e3///&c/x}v}ځ|.r+G/|~Kzŷ._~bS 4~܇~~_{/_5pf_ػϼ~ y?| _?y|ڋx_R/l/<Ҏ۽_o~Ë?^?z-S~_oå~Wȡs}'7i3?|ŷ_q}yeº}Gҥ[p_U>vg?}O7y.#G?su_ /҇o۟zw|' <ߟ=dS~{OzϿ/+G~>7<:Eox^>_Osm>wjqʚl?cxbpOx>=U~SWBf>Ow}د\u?}oW=c{ <#uyՍAo?ˏi儏ǝ^K}ǹGJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48=~ iq:x?|ǎ[kyi7 䔳qt\[um'7^ǥFi#e=Úqp688gl\|Ȭm^wۻ=6;{{_>)4vx?~]~??g_{{kr8ө|wl+dOwޏsépۃ\x_9UͿ k뮿}7o_q?fowܽW?}w=n^w:j>t׽y%~m<鉵MXI㩵n&Μs]]^nxq>wjq)}+oGywoCGy^o!_[SN}W;um=N4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H# ݱG:F'ꡃC'<~쨷z|wWOc{e_:7p'K#4H#Gr˦{5glqp68>=x`_vX8glqp688kn۲iBiFiVݺy)iq>ݮ,uc1FiFi9g7^ ] ] ] ] ] ] ]뭿ɵUIi|WOګ} 78sF76NTi/i_;鍹ɩuccJ#{}zY̑A4y􆯽zW7Ή4H#|Ժ;HbJ4M>kՍs"4H4ꫧ=19n,Ωi&XLNs4sO>knxz19iF. _}^*ń _}܍I?y/xW}9FW_=.J#WOnqjqzv?󯜴.sTiu>ӾvzÍ9Nirc>95Nbrjؘ;oWOsNbrj],Ω4ҺX̝Sbrjؘ;'1wNλ}g}W{޹Ƈ9͑FisDꫧ}H|>brjsDӧO OqjFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiq>;{QHD=t;~Ǐ[oir1;Qgk'={e_:7p'K#4H#Gr˦{5glqp68>=x`_vX8glqp688kn۲iBiFiVݺy)iq>ݮ,uc1FiFiiB3g\_>s}}iWOo8QiFiFiFiFiFiFiFi1!=Mo;o޾z+4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#i\ͻwTiFiFiFiFiFJ#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HU~3|n+:iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiO?z48Q<·r>cG[૧O;Gu1Snzf/~ћnǥFi#e=Úqp688gl\;{QHD=t;~Ǐ[o7|z׻_y7_\{^yٗM7\H#4HÇܲa88glqp6F]뮹*7688glqp6Ú۶lrFiFUndsJiOg+{X̥FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiGOH#|!?vn?k. o?gϯǏ+/\=q\iFi=x`_vX8glqp688kn۲iBiFiVݺy)iq>ݮ,uc1FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF>cǏu>!4NCᇜOxQ}-^Ɔ\gIO?W^#\=q\iFi1Wo矈E,bX"6ut1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]L=&E,bX|b~/~?X"E,bamb.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.;{M,bX"?__"E,bX1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O'|b>1O' `*]kӐ"" LJ5K-|}/ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]ٕ]O oX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bŏ ^B%tEXtdate:create2015-12-03T10:28:20+00:00z>t%tEXtdate:modify2015-12-03T10:28:20+00:00'tEXtSoftwaregnome-screenshot>IENDB`idjc-0.8.16/doc/install.html0000644000175000017500000001231112711160237012537 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Firstly, open a terminal

In this section and on the remainder of this site there will be instructions that are intended to be entered into a terminal. Those lines will be preceded by a $ symbol and require the text that follows to be typed in exactly as written apart from any text appearing in red, which will have some accompanying mouse-hover text.

Install and configure links

idjc-0.8.16/doc/prefs-bindings.png0000644000175000017500000137430012711160237013635 00000000000000PNG  IHDRӒgAMA a cHRMz&u0`:pQ<bKGDtIME   JCIDATx#}if"u^*e{%\vK岱]g[-٦MIf7Ş&AP@h l 59!d^)dzsssmvۿo[{/?`y,Q< G:G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(X8q'Ns8y'q9N<lj(GH-9[?wt_0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$t^g|g|³W>+Ox'<{ ^o a|$0>}<{<{ ^g|³W>+Ox'|H #Gu ^g|³W>+Ox'<{}:kr?<\o_xsCϿ[t^!.}7=M||9 q.O]9{#KMx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mxx7=]:]:]:Mx7=]:Mx7=Mxxx7=Mxwwww7=Mx7=Mx7=Mx7=Mx遳7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=MxޥIFŠ?M|y<=<=<=<}{<oz8;=w>W|y<=<=<=>_zyG!7=M<ɷt;Ot;Ot;OtϗOC֜hv9s[/mn?zߴ_?r$5ɰo?~?1~g@kњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IF`=ɞ_C|c/lx|58;8; Ɂ$uqOc<:PqGkњd&g'g;|ȣyt!iM2Z$5hM2Z$5hM2Z$5hM2μ!>&_mW7|CL2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$ŌJo>rތs/so89s Oͣ/liM2·Ň<'F ν܋ ν܋ -x}?m#G[ywp7{qx9^\pfG&Tz+\x_z_~?{9sqOs)/|3qqw3\(]?>Ow9s19i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=h(~=~kz5ONyro㣏慔| |?I7(>:<g|;i ?9īk<|ㅏh^83hM2ZŌxOsŌ$u1xl?$=uŌ$u1=xϙIFkњdiњd.f99s15hM2ZŌ3=xObƙIƙ{=33ZŌ34{=qƙIFbƙ{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i=~ mNW~@^??';vjMs9>s:_wԾﬨ}gE;+j]qrwy߷(S=]X{<[w<5O}ʧ4_m !}:]so4{NK~Əo4G,?|3qگ~;_#]3|_kpKc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;}''c~ɕ_海zS_ly)uͷIg,f+hũ:Onq}s#^J2\Io}%<ԻI_@N?p:{'a=/&gcʽϼRsmW$oN}nQc>c>c>c>p ׸N>?pWsxk<5ѽ}|p (Sю.=;-ޤL}O^$ ̥i^8QAcxݏs$G{'_?;g>?GGdo?sg?˿fԇQnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-o~{\~?*B_-/OEo3o\彟5'~!1μ5|.oJ]Dsoc?ᗿ h]#oq[߼ŷ_Ac񣛌޼w/׃ks-? |ȥxOɧ [ _soSp~gd-obƜ|O]/x!9ަؙ<.\[߼[|r7οÃ農f$޻qFcW4{s7ƅ 篬;/xzknԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pcÏ_ӌӌӌӌӌӌӌvov5G /XOW}G_v#V|yq6O9?އ{x|D湘#Ï(?7npg'{j w1Ynv~wG?C;; `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6\!oگQ[\W/yu꣏_|+Xy2U3^? ߻Ʒ!o3vb7?̅޷cK=.}oCm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j-wOs9i4{=xG{߳pMmx9>ǯpڎSOqe3/1x6Pܠ6P/yZ ނ{׈9pFsSm_~:G(_kOIm6p:\w7shwTk _}E~C+5Պ3/(~[Tk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jMsqWr:_*B_vR&O~]狥WI~ n.ngΔP}B_߾߾5jϾ̓(~˗ޥ\g)j'^Ow7k0l08 O)t Wһ|*_9{w~2 6o~Ft_(هJkϾ=g_52_lk|*o6[%N&ϹZ sWgSN>&_mk>^mxCKO_/J7q}Tk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jMosopw=NN뙄rIܩTk5SNu1㋵x-_ƔssK _zeS9 5]XN YuϾɇ%_^Gss9Q}O߾E nܽgqG;|&]yeo.ߧUk/~__;೟,=*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q(8~++$?Mƛ|_/sgu_E&9V;2_Rΰy_Q魨nrk{7Q5[s[ڜǂkU{ok/%|{\F>\0O;W{|{ůrڇLn &_|uY\c?&ss,~\!.\M\Ϲũǯ5g|^s<7GѸ}5k9\W7\z{Ź oc`vgNF\]L/+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Ѕ5_{" <–WFTH*tH*^+_31NqTk*NJo\ŷЈsWuNTG |.ܩ󔟛Q魨^X4^מzS\]I?>w7_ kN/`oЅ5ފbgo{ŏ8.)?b;?i/?;|~w;;_pA9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R <.&痜|M4?{ _xe}{5~{ok/%{ g񗬮˟<㷋C{-J|;Wr|??OWkl/{ο=s7؏80Ͼw6?m]>y?9Vk|\ϸyzH)O7*N]N^oQ|gC1y_/Wy㟡c&pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pIzM7ߘ'|_/X+K yNkߤ PxqnƅW֜9?eͥ{ywϝ:σrߡ-Gks[zn˿p?Ӊ1I9.9.){wYO4};s'ߢ ^y2F/Oga?!.|:ֳ2Sf~\~cN-x/~#O,9xS%3oc=>e\_|7οy~z_WyAz—Ͻٗ>G?EZs30Sf~\~cΣ31\|۫Wx]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u J>x_e3/cy˘g^>. ?ה D9Ï8?}t}+}+]N7.s:\S町 ﭹ+|x/?6&Û(_yoR.p3~}޳<>r{F3ؙS u5g"v뱗[udQc^+g _"z2|+A3ؙSlkOy>.N{N3ؙS8Ufė[װs9 ,*w?w=qc/Uo|w}35bgu^G#z2w7k|;ec39 |Ž]Fenɽ|;ec78;ec3<:X]gb7W+h]]N7/qףD©bgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;sNw<˗徧̧?????|}b<_S̩O=~=~=~=~=~=~Y ,=Oؙp͗<gS}} ={6 ̧g_RRwI39ߺm,8N{ӞS ^u |?PR/Vz=ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip78u8:Sop )kW'CNT9Qr:DuJ 7)u8VK}~=NT9Qr:Duȉ/ϟsx8%]X}ϕˉ!'CNT9Q|xk<_s{Ӟq ~}޳_`)vb)zUgT{Yt8937;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H:}/^O\kJ9u>R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R Tkzye31\h^:E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ.shʡ*rhʡ*rhʡ*rhʡ*rhʡ*rhʡ*rhʡ*rhʡ*rhʡ*rhʡ*rhʡ*rhʡ*2A9c+&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b6׸xӝӯX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ژ;{/qmmlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mϳ1.E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5n&tq"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,G~_?3eMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMvdMq_|'O=ٲE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bƭě6N~X"E,bXՎcˋ Ǐ-0gO0{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =z =%s< =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1xO y:Ύ;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;nc;|wCt.{I} =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =>$9-E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5n&tq"E,bXbeiyrRНhyk麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖W'flóO=I]M麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖k麖kyk9qbFxfuUu-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]u-]jҝhY[[ώ]Ƀ{Av>ٹ ;wd}sAv>ٹ ;wd}sAv>ٹ ;wd}sAv>ٹ ;wd}sAv>ٹ ;wd}sAv>ٹ ;w?'{zh7tBwծZZZZZZZZZZZZZZZZZd 2?wUbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb+fc}[o7ym>:E,bX"֫<[bYYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg aY3{}&5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5v0۬Y? 8nYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5v0)Kn{3oʟ_lQf_omĬ5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5v6F͚SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOl*['z6kzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4S1Nox?a1c                                      ^ǩZ9a~=̚SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSO{НX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"[1kzMo׉E,bX"^^uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uU4M=JꪤJzO?8M=JꪤJꪤJꪤJꪤJzfST%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uUS6*****i)W{4****************************?_/ .slr:M)ʆIèl'|hT-^=gr r r r r r r r rk=ᶻ897ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7ȩ7RɡłukzJ]UI]UI]UI]UI]ͦJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJꪤJ;1#E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b6׸xӝӯX"E,bal*T嘪ScrL5Ԝ5꒺ScrLU1U9*T嘪ScrLU1U9*T嘪ScrLU1U9*T嘪ScrLU1U9.טK+L U9* ˋCzG=PcrLU1u5eYsb6SQ^>prBU1U9*T嘪ScrLU1U9*T嘪ScrLU1U9*T嘪ScrLU1U9*Te/8F9*T嘪ScrLU1U9N8z:*T嘪S6 U9*4uEYLT嘪ScjJpbV3KrLSM٬KrLUi)zJ]1U9+NNNjfuI]1U9*T嘪ScrLU1U9*'l6tBU1U9*T嘪ScrLU1un^4˿lakv~w,49g|_z/|/OmFl?gm?fX/rۍyqzԿp򵿐?zn5ɟ֩?Sokt'  '_ [Փ~5U~x鄪ScrLU 5fJ]1=.K/JIA9)('夠rRPN IA9)('夠rRPN IA9)('夠rRPN IA9)('夠*y?%դrRPN IA9)('I'ǴSN IA5Y=WcrCǿUIA9)N6XzQ~vwǞg}c{rB]s釸=6N 1}>n|뛷݃L'夠rRPN IA9)('`Z ٷA/SN IA9)('夠rRPN I?Q^{uo{qۯ_IhU\7;j£{xylC}׏#%_9><Ƚw%7_>sOXh+=`isϱG???Dkt[b2Z{_=g]1-1?{h?KIsXŁu_zֱW2rRPN Id4d/½ rġwpG1դrRPN IA9)('夠rRPN IA9)('sU\ƍ?ɸ7?Qs|/s'C^ůxIY0)Fbĸ1.Fbĸ1. &?^dc1.Fbĸ1.Fbĸ]~?5x4X-2k?w4O3pǴ~Fpq5 M=73/Ey_7ﺆ7k >v\[ʔG˿z?ͣLbĸ1{n_Tu^ڷ>x bĸ1.Fbĸ1.Fbĸ1.Fbĸ1.F vq//2.Fbĸ1.FlxGN̈E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5n&tq"E,bXXD1,QlS(FL&osᅟd瞗ؘLǙG)6qѝ\s_!Xy>)]qw3_XY1^=w#|x+vs^=r37qq?{vяseT,Ͼ.O^awsѶ?#s݅r՗}YS;s /ce3x;9G.<EN1Z1Xgqx'z1XQl6O]zG /᪋#~puh~l>z]\\XY:~_:>oq9{{,lSl6|v>BybFk=aǫx\yx;O|<;Cl??xxag}]gc39sdi.}'ylw~rϘz?{yFquW/SG8:hMGW˟OS7-?Q5hqq}߾]p5|1)yi9%?=\rx :çw3ιyQqoͷFX[nkO^_2(oQ(Fk֎{3bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb+fc}[o7ym>:E,bX"֫<{cˋle1[_68>㕅%/]|&;;o=̱G9#ov{_ͻyyw/;<ʓlS\7yܯ3/pxnn~`{p1?7\z17!oX_ec}b+<^lQ^~x?+*:Oۿ>o^q&g.W环x_^{~u 9Wa}|;/owU_Yٝ_ ?v?c?s w.|Z]z~\p=~t;eu*5ľ(Fklto|R֊!}\߷s~{pge4Zcc}bci1^{3/*l3˯={n9||9_z/n>{p-Y=oy_W\39֏=z7}=;*Ǐ>ʟN㓎N#~p?qͷŅ|OsCGx_r_ayk?v)w=L?1.~VFK[7s:/=!nVWY= ~ԳwdM[>1~1֏/`߸><~)n"n,v|++xbcc kǏS>-_Wvbim+_aH׷*E&;{ϮǷ[7)W旃Wru&Wm?dzgvr;/W^O}w~bv7֍W~'_u O/ϝǙ/~8 kWX;1wX;WO\Wt?×O~YՃ>Rϝq=,X;cGͷ7c kWX;~z|/ֻ2/쾃 ?q1k<~ϗ9ya n5FK{gGeum 9po2+_a +KGӟNqS{~Jvk|O2=_~7I\/?Rvvp{?Σګ='n۶]WÑgsSԛ%慼}\Y/J\}O1)-yqk&Wv|+ooc=/0{W86> %9/3|r/cem#G.`Ï~?yVϳ/s'or;7z+_a kW8Do#t'ZbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb+fc}[o7ym>:E,bX"֫=p+K ,-96.}yc(V /টʻrkĝ;wq]g ,/ʃ\{o4o{{̵m_cS;9y//cxإk>ϕ}gOՋ.kw2ǖXYZ"_>{"+K ,-ze~vͅ\pcˋ,-p|eyg]`qy{ u O'3Ͽ+?y]y>;wӟ/;J>ux{89//3?_^~}#}gm_x}}sϼ'Yؿ{~M y.b+K[Z`eicˋ9"+K ,/ 7^~k%û7<.<,,-rlyE֎^E]Ƶ>]%x0ǖYYZ`eyg;+,q|eӻ~-2Ǿ_~E9zYܾ{23?0`yyzܻ[|ʋx/>%--p_N^;ž,oN+/.g輏KG|\p֗yxR~%6/\.9W'瑕En*߱kګ~cV~_z oy6yS^EϿ_<Փ0#yM~9+K-}|伋w⟾;x|X[gp k}u&QWq|C;%疏r_*.<}\qϳ8+K ,-}{;X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"[1kzMo׉E,bX"^1揾!ˋCV\q'=;}gp'õ|Ͽ,{~s7w+ #K,%w=<.="{$}'!{nzyzicKC^ypOvS{3#ǹ~_^byq␕t{,/YY^#7{O<=]>s3yO,,|O8׾Ɲ<̀}Sl'7|O\c} wp; s[r9_w5|+COٽ{_=gJGamwrzOo_-y߹A,/-47^~!_̭,8dyqGs~'<7|ws#|}g?<+C44;o{~_.+K,Y^2?xSk#4d:;w>wWYo*t³fi+/˜b/˜qVWyGok:/{~}#<2BGs?4 +K ,/YY^b/93_?g;gO}_{+{xb~ѥsx=ͷ>ɻ>Yx &z9ܱ`O#qoqaX^8dyqp}>Lw%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b6׸xӝӯX"E,baJbiayYZgy(?|7]a>.!_as[ͼ`GWp/GWp/4?xO|gUG_>z%|'׷Wo1//-q|%~s\ˏy󹋯ᗎ0+._:+p?G??='!W_qO汝p9,/γ0_wvbniyYZgyxޯ;o+n|t_g鞧Y\p߿-\tŭ<3w}?&~m[9W}G=␥y晟;®?<ʩSxq,L1 Y4fnQnI#&[f҈fN:qb: L-&)g4FQBi3^|zq/\y|Y4f'OI#MҰWsS4M><|y8qǑ#G><|y8qǑ#G><|y8qǑ#G><|y879|_y_ -|.-><|y8qǑ>y2:q:Ca=q:}=Cз/_o:Can"ݾ^q:CǽۿHo=Cqk/ҷ{ 0t$@)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @))y'xۻyR2)R H1b @1\Oqo=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞsorC^2t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Oyro׷|Ov<>ٴ[n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{ni/!)fg^y==p;wܹ{ws=p;wܹ{ws=p;wܹ{ws=p;wܹ{ws|S/ =p;wܹ{wxcOko0ǯ^2t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=}$@)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @))y'xۻyR2)R H1b @1\?I6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6m; Cooooooooooooooooooooooooooa|wy=}0t{n7C6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mO‡ SAGW_Gq#?xs ݞmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆmۆ#~i4LSa4e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e4TMysmC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC6mC/<5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5q{M^5qM)R H1b @y<<av vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm?Yvۏnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v G|y>gm?naݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v v}>c* `* `* `* `* `* `* `* `* `* `* `* `* )o>~?x~vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰnm7v vnaݰn{ n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{n=Cg ݞ3t{nx})R H1b @y<9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r9r>ytt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9oOG^:p9r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r9g_ ST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSTg'7GΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:r>9OGΧ#ӑt|:͑́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́́͑=^')>)R H1b @k}z gL)R H1b @ v yggvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgvgBFLST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSa4e쎗B ӟsR H1b @))y'xۻyR2)R H1b @1\m7a* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* *<|?bb @)R +/'m~iJɤH1b @)R pa0`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* bb @)R +/'m~iJɤH1b @)R pa0`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* {bb @)R +/'m~iJɤH1b @)R pa0`* hZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkʲ̘ 51t|x{}Ygy>~Y~ccFSLSTl7/Å)R H1b 5E^y>O=o{3OSJ&@)R H1b q4LSTɺ.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.̳c* ~B\z|1=zģ?K'>y M1L=|v1\H1b @)R \S䕗ԓOw?4dR H1b @)bnGT0L<_%YfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevefevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfgevYfg/SA}|a]Wy4r{›oyt??4n^ )R H1b @k}z gL)R H1b @ v h ˊ{^p/^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/^<1{^p/ f/ {^p/f/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^p/ {^gx o,3{a f/^p/ {^p/ {^p/ {a{^p/ {^p/ {^p/ {^p/ {^p/ {^p/ R2^yAUYw'O/yx#>La* {bb @)R +/'m~iJɤH1b @)R pa0`* yRJL)&WnEɥPJL)R2dJɔ)%SJL)R2dJɔ)%SJL)#הiL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ9qĽPJL)R2LhpWrɔ)%SJL)R2dL dLzK.R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔq/ p!@)R H1pMW^SO>ӔI1b @)R na ST04QJ9g |Wxk^YׅeYu3s93/3˲PJ]f;˲+>ҙi4LSsݼ@ R H1b @y<~WkWt'GU~=HMry=Ye(Yy?cw~/6cOG?e(HF4_ᣟ~heHF4ϿǼx,Z2֫|C{ Wwww>{S^ב>ҙi4LSsݼ@ R H1b @y<#Y!뿝?g}__ɏorxU?|"k|?~?}W*+W?#;dhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh4_ī>hhh8w˟2?C?̏/5|׿0o~7o~׏˿#|w?? |9?ŷ~O}7o=_!>wL222222222222222222222222222222Rijyl04r{W~G'>hhhhh W{03u/1#*|p:ǯG|3/FT0> p!@)R H1pMW^SO>ӔI1b @)R na ST04. kg|'_e~i<+Lzy7~'/$'1x)V;QST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0Lg 3T0lW?.~Gw~w{ǀI~1~{Fǟ}sמ]?ۼ%k~zÏ~՗fW_^x=Oo=14b* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* h}W|/ST0L2]gg}g^7^'WŻ;?On.\??ws kǾ{9^'fGw4\O}'_¨`* `* `* `* `* `* `* `* )^,xw?Ox~o}MFSLST0LSAn`f4G|1o>~ǯ=y4n^ )R H1b @k}z gL)R H1b @ v h <;)RCwO/g "~o?-<[bL"-?! vzo G{xos")R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1bpLH#"W|??OM5?s/~g\$_Q#ʃ[e}s_v>/ _ث]o7E/omxk H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @WygƑ)R )?9|Og׾>s7;=^c};g#ɷ/?ϿC>ͿEo_{W}S{ǿ[>z%@)R H1b @)R H1b @)R H1b @)R H1b 5Wx;_+oտO_x n)R H1pMSAn`f,N&F3n[_7G|3/FT0> p!@)R H1pMW^SO>ӔI1b @)R na ST0rp/[?;/A>K{~_Ηqz#Z,oQNjw~ofٷ7μ'x?:~/s{B bÅ.p! 1\B bÅ.p! 1\B bÅ.p! 1\B bÅ.p! 1\B bÅ.p! 1\B bÅ.p! 1\B bÅ.p! 1\B bÅ.3% 1\!p}|o?|u_Oww;>~$O|cx/\~hFE bÅ:w,}~OxWi|?N~-r:_|o䓯._<{t_U|O'-O|7?)ܒ….p! 1\B bÅ.p! 1\B bÅ.p! 1\B bO=[vgFEp*"::v!:nWݺ.gQ l@Ha kHJce@҉H+a쳴2ְΧ?84q0iL`8XMϜwۿ_gL`84q04[}t钛7ov횫+/W5'5'xq Kootᜓ'24ZM4ZM4ZM4yCGו+jjjjM'\oggK~y务a|؇|O ool??}>_Mo}ox۟>W~_7oΟi~7b?j諡j諡j諡j諡j諡j諡j諡j諡j諡j諡j諡j諡j諡j諡j諡ơj1qtϞ {{{ʏ޷OwoMo~~fg7?v乇>7oMoz;_}/? Si2WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_C?WC_ }5 ^W{{/ {|yiZ+?9O[ɭo-?r}ٳ_[~ַzq O8]>_L4TC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_ }5WC_M'㕗_2j諡j=Ga'mti'>yw:pcz?|I9Kootᜓ'24ZM4ZM4ZM4yCGו+jjjjM'\oggK\E_4?d镗_09쟿fr_׿o/P;g~c_1~G^=_|˵jעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_Z }ʹC_}5{3ϿpAI1=WrQ.'ᱯK}z||Sw>ci/J_kעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_}-:wEϽhעE_C^+wG</Y~FVC<_򁷼ɟngcǏ=Kxyw'SbE_}-ZkעE_}-ZkעE_}-ZkעE_}-ZkעE_[MZkעE_}-ơٳ^엏{[oCC_slǎ|ò=ō͞͞.sSqFiFiFiF=s;p}r4ZM4ZM4ZM4ZMiwϱ~򌻞8cg~YϿpޥ==/]8䉧L`5Vh5Vh5Vh5b59{wБueiFiFiFiF8x /Iݫ^]jYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mmvͮ6fWj]mt܋7{k:GO/y;'ϸ=vG ]ٳ҅sNx4Vh5Vh5Vh5V(VgN;|^W\FiFiFiFi4gNp͞͞}-~Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Yg|f1Ygf;vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vY?o?tʣ%lo%zѧ_v9vOq{ۏ>λtqcg λtqcg r}_s&\{_C" :Gq?kwO\,f~vҥK"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"z7{k:GO/y;'ϸ=vG ]ٳ҅sNx4Vh5Vh5Vh5V(VgN;|^W\FiFiFiFi4gNp͞͞͞˗.7oz͛7=䓾888Cy]wa·7}{?~Hy-{{|ȝy?Wvۭo㙦.<}W/ _yzҍcCv;>__ڦ;{w;?x7pe:ßխݗݿFw|#w|+s˂\qw5\=E{?7:oop˞ַyǏz7;wz;>7Vxmx<~/sw +?pw};.o{y:n'{˭#Ox^.]"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D밿ٳ^;)><]<9U-{g_mw>dlۻ?gjG?#we7+ /o{ y?G=Oyٕf37W}'|Ҝ }3^}>ե{n[G|ď?~_|v_ <'._>Cisk~'c_Ϟw֏>N}{W]c毶r|ټv`O\}?3gßݬ;}ykt针"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D^͞NyS:?~=κ3z{ug=y.nootᜓ'24ZM4ZM4ZM4yCGו+jjjjM'\ogg͛7xǼ=qIzm~a0M׿:Wvy뇝:~?{nsmvsw{?౯? kW=_瞴Ks]/ڱSMpώ{WOVw~v%\7Oܼ<]<ؓOz/zOܹonຳ}oX9}煗v}ҷ?y߭>vqvg{&x<4??r{?ԙOzПӟ?aXq?L}snOx7\??%ڞŸG_z\tID!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BDXfzC<\vVW}e?cgw=qڽκ賞K77{7{^pOjjjjjriá#ʕVh5Vh5Vh5Vh5q.^ܷٳٳsEpMox}+}]w^rﭷʑ}>y'Yy/̑'|Miw>&&^o}y|ssȗGq?^ sytsw;>x~rۻp}A{n^xO9%8*\;?" _e7|O__rǟ?={|ȷ4?iG}>i_=/ /}z:/}qG?'?uǝt针"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D^͞NyS:?~=κ3z{ug=y.nootᜓ'24ZM4ZM4ZM4yCGו+jjjjM'\ogg͛7xǼ8z_СCxppeo:p zLJ<{YvSxg>I쯼-Ѯpm͕{G?䝟;W/>o9^5Ow_>Sg]~oO? } 7 >3?n~ycݓҥK"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"z7{k:GO/y;'ϸ=vG ]ٳ҅sNx4Vh5Vh5Vh5V(VgN;|^W\FiFiFiFi4gNp͞͞͞˗.7oz~7~s=ir\.=#r!<8Ygwi拏.x{Cw?u#78OwW-uĭ'\?䍿?5'3]>pm_-ʋo~;>9g//z|;~|#};~~C< .]$"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"agovS}.ydxx+yԫ>wϱ~򌻞8cg~YϿpޥ==/]8䉧L`5Vh5Vh5Vh5b59{wБueiFiFiFiF8x /|"y7>?_7x^u{׽u:u{qM7p7<87{UW_{nܸ 8p5]k8tk^k7o888p ppkz׮]su7o88_{իW]~pn7]Wz 78ykWzuׯyU]7oUWo8^7n88cnN_ի] ^\qҥK"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"z7{k:GO/y;'ϸ=vG ]ٳ҅sNx4Vh5Vh5Vh5V(VgN;|^W\FiFiFiFi4gNp͞͞͞˗.xꩧʯC9tC9tC9toqYO}kU .2o'TԹQc}85ΩTGIlcDlWąF 6"**(*Zw5SX5{UM~w5z9csCADj֦lʦlʦlʦ퍏9b6[ŋlʦlʦlʦlʦYs8:]'`4.^-[x1l / / / /kM+877' RMw|eVnoWc :~W9aSlƳk|iV}a|k[mV@@@@@@@@@@@@@@@@@@@@@@@@@@@@ɡcEaDѷCݸq~xoDFaDFaDFaDFaDFaDFaDFaDFaĄg9rRFaDFaD1O]yR #ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"r8֑v[̸Y7(ܸosqWs6h47p8:''{XW6ueSW6ueSW6ueSW6u%Mmo|̑˝aZ/^`SW6ueSW6ueSW6ueSW6ue]zp^Ap9:?Gn{udd+Vb ,Yyf/\ t6g?_ʛy'V>mԬmڶm ضmڶîp'|lNusmk۶Bk۶mk۶Bk۶mk۶m+ `۶mk۶ mk۶ `۶mk۶ `՞<+޻CFaD}N9㋖ԛ0}~~oDGF~~a߷#~o߷#)ήm|mGϺȌ[uӁ\]=Ww1l!OMssr"ܿwu5kSW6ueSW6ueSW6ueSWYy֭ 6ueSW6ueSW6ueSW6ueSWլunnp9tkϟ]`/~m_|EߪNOOoͿq޼y^ .|3z΋x󣻽ݤӾux-X vm}~ŝp"{='O'|lv|d~7G}Λf>uONW{|\Ro&۸ѳ-wyõzɨt9z.Y[rm[OszݿwVvm]K88(=ꈋn{Njg`y^ȕT/]avr_Y{9]n͓ӵny!ܰا_;ln\q]wK~ƃ_}Wӯl>\swx9h|w3z~\Ѕw4-XaĄg>vMK|~N;ٳ?:59a?x7|oΑM~tr̈gN}uUWy=s;O~U˟pgj\qBk'“uʫg<}𹯬~{+~~Ou3 #ˆ/u;}yW{cy专c>hOyc'}޾s-~gI79x҉3ݺn[~7uzW䡧O??/_wӯxo<~x}Ͼ3n{t|[/m3>s~m7-X{NX]]/<}hӻ~|p+n[򗿲Nŷz~.l.ݾ>>/cg#.\_O-.n>v7􉷝* K}7Ǘ<787;]=f/C->n??O?{ߥ_,]ON8>QX nڝۛvߧ_[{l7F=~aUۗǶx裃83p}'y#jڮk,ˆ0b3 }魾w/O~~#vGūq?ŷ_}>pݱCgnw?ot7?gpꆻ߹正0"ol#[U޲EK|f?:+o#p݋|w{\&:=ۼs>{>O?tSuﯼm'Ag׶l>ඣgzd-Ϻ@}Swͮvrǘkw\'GAp99߻Ǻ++++ij{cX z++++jփ:77t8:A X׵_w~.\n/u~3͛իpႀٜ̻1_Zoi;il)x;^涗s7ӻ?sFKvs~2nE+ո//Mfzts;oq=;trRw|9n}c}mn{y&X?Ovّ|ɯ]Kn{/zp,s_|_ζE@ht<.Yrxfo;xQ9;'gֲ]ߟk[yE/Q>69F|&yŃ~4n[/t\CLLu.rq'=?߳ׯSYħ|~y6x~93pwwmt5p|W._|o<-'_tڵHI#W_KwOw~=1# `~{/?6978:۶-pt,Ż|'V>W\OD{x?ϬYO_.}'\3'\p1fӶҶ?y䝗ݰAow>3w\u'ۂ3]wFg[}ϧF#w}&=?XaĄg>vOOM;99D꥾sd{]}"|c #~/誻T8ϻw{p_zuٝ'yW.{Gy؇Zgw^rOvܰCLL_t='='^p̑[~uMY|ׇz+~pc}zpW>?uc\?q #ˆ0"r8֑v[̸Y7(ܸosqWs6h47p8:''{XW6ueSW6ueSW6ueSW6u%Mmo|̑˝aZ/^`SW6ueSW6ueSW6ueSW6ue]zp^Ap9:v|ͪVU~3͛իpႀٜ^Ǿw]p}>ǽqg;pܘ~]y3 [lօ'-ޱ#_;q=-~鉃K]g#xB}#\޿Oxs;{Vv'Y?.}eO:9o6 `~{h/'m_oo~M.qN >ewoXO{Ǯ_5o_LCN; ~ki[N>b]󖽉瀞}qVFrwn[wYosb~˕Ĩ'%s'a;h,ˆ0b3>Q'>qgv٧}k\k5Ng^ w̃o{]+]Q~ȍK=7꫾=Yti}'K=~{5?{|9o;zfbˆ9şgvg}]0~7o׷qt+o+?1=oGi{;?{|=-aA'&#ˆpzzᠳk[G6pѳn=2gtp)fWU;]c̵z.xȓ}s8蜜c]ԕM]ԕM]ԕM]ԕ41GV,wކukxM]ԕM]ԕM]ԕM]ԕu5{:tA{n/R?O>S3۞{ݯF| ޵7^뫼c+~;qo篼w -~51kK]k/+ez_dvïwU7w['Nʚ\pe^q͎lJ@@@@@@@@@@@@@@@@@@@@@؛\nq;ٷ8w=ЎYO{˕wo.km^q/zcy{g~/[ŷ~ ޳◿rk}ӿڟyGn_e˯g^?^߱oԃ%o+e1'[{_xON>>?O西KZMGxL9q[ݷɯc҉8t xuK}C§zͻ?r?aDFS]:ێu>M~w5z9csCADj֦lʦlʦlʦ퍏9b6[ŋlʦlʦlʦlʦYs8:]'`]7q͚5O~ӟԟ?'?'?>)%q|̹s;wΙ-9LyVU- 4VKgffvSN9:z^FgO;zꔣLgD_rѕw䨧O#ˆόv)Ovll3NLMVWaDӎ:i{aDqzFaDNOO9tvmn;z֭Gfrn7}j+wvWeyro8t{Y+++7>Ȋ۰n/^++++f=ssCs8tWy9o<͛y7ooo/'N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M~w5z9csCADj֦lʦlʦlʦ퍏9b6[ŋlʦlʦlʦlʦYs8:]' G7pn߾۷}vo}liq_~qsMk B+u֮:J[{~76iݶEaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDF0"#ˆ0"#ˆ0"#G{˗_`DFaDFaDFaDFS]:ێu>M~w5z9csCADj֦lʦlʦlʦ퍏9b6[ŋlʦlʦlʦlʦYs8:]+ `0pnnι9望snnι9v]' mkuvE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@lήm,^gDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDF}'&&#ˆ0"#ˆ0"#ˆ0"'&&tFaDFaDFaDFaszjᠳk[G6pѳn=2gtp)fWU;]c̵z.xȓ}s8蜜c]ԕM]ԕM]ԕM]ԕ41GV,wކukxM]ԕM]ԕM]ԕM]ԕu5{:tAp80͙R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R,K-¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,¢(,iϝ;pٵ#Yqn:Pqߔw]窝1]=m<Ѿinp9tNNfmʦlʦlʦlJ#+;oú^xlʦlʦlʦlʺ :BSUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU5$ `۶]:ێu>M~w5z9csCADj֦lʦlʦlʦ퍏9b6[ŋlʦlʦlʦlʦYs8:/9UUUpp8t8:Cásss˿OkUx&ʿ{~=f|Mt[RCJE'4&mG=qevYv̸iOٸc;ppd<=wi]F6ѵmtm#]kfzʺkkF'umk]F6ѵm͂춸81&d<8`jj_vg;쳝}>lg}/~/cg >;' g($D-..$H"$H"$H"$H"$H"$H"$H"$H"$`n#$DI$DI$gGI"$H"$H"$H"$H"$H"$C[umwԖ6?s؝;gm1Ǧ>e7?YKc`2+ޥmtmk]F6ѵt)֮M-/Եmtmk]F66 ۳d<"8s+֭[+x#_رy;{;~'wz'{ǖ*XؿIO<'v$H"$H"$H"$H"$H"$H"$H"$H"d0n߷f$DI$D`ܾΫV[aDI$DI$DI$DI$DI$DI}Lƃۺz;jy9Ν6qcoqnj՛wଥűx0{v6 ѵmtmk]FukXqצOF6ѵmtmk]hmqqb2Lƃxpri>}??ؿ|;7tnɚ5kYʕ+X͛=e5?pSv_|7d>lڭ_G8Лqw9ϙn:햋8;v՝>sJ vǭXZZD2Y񭋮run^{]B?0 DI}oCI{I$D0 DI0^I$aXXuϾI$a }/`ܾoêܿM00 a$D}H0^I}{0^I}Lƃۺz;jy9Ν6qcoqnj՛wଥűx0{v6 ѵmtmk]FukXqצOF6ѵmtmk]hmqqb2Lƃxpri>}ڗ%>s=ӧر/~ gΜGWWVX{)Sx Qp]͏Ùeok9Ɍ.SS#uy~]삋/w;϶xasQ;痿+͡OFv o} ]oynN x~pEV^qGsWҫ}M>y//Խ\r%F7x?g겋/tu?GT,--I"vUz頥O?|d<*o{u/;I=>m};^;yC9 c?/to{oՃ8l핾sw\{Ͻ1{Bk}w?]sw <{ $zц}߭7_s;Ƹ}߆UW[F }w9?v}౟߿džv/櫜yVߺ#C7ѻ⢕nweO}Lƃۺz;jy9Ν6qcoqnj՛wଥűx0{v6 ѵmtmk]FukXqצOF6ѵmtmk]hmqqb2Lƃxpri>}ڗ%<.g}}kN8ڶ/|+s=iso|ip~[sOo |k;tݕ?v[/yv̥+w_~[#ǣV_ގx魮6C[w<7 phx'6>;~>s>}ڗ%<+Wzgwy9?A۶/Xb{za_8_KVYGiMk߽?{`,--I";sОMx5]Ҙ Eo)^} ;^3Z]߸~<}7kչ?~{._z7:8S.=˾σ~ܽ2_:NLU6<Ѱs{I}*?jL;؟l\ue=o?K\vμ:IDAT`WΜwl?X_=[W?mZu~{I$1n^?۶-{m~;wڰcM[}3Vo~ށ&d<84WٽK,F6ѵmtmkZ3S֭]c]6Z^>k]F6ѵmtmm8nnv}ܵ68y=poX/?׷.`y?*y)X:`텫l~uݳ}_5.lun?}`6]q~C3 H"x0u[zxQxܶ}Gm;o3ݹsֆ3nlS6z86&b]fA6ѵmtmk]Hךn+ڴI]F6ѵmtmkm=-.NLƃx0N.-ӧOҗGqm} _b s>7Cguw9t ^㙏ď]r-^;2^u_qǍi7]o#or.S {^xW34~/}/~h48mffcδ'Y79НOgtwCŏV^㩃񻟹L 9} 8'^9v3>xʪo\73~s~mf?k\[ã#=??cqx-~_Er;.ֽ9[{WyW?6νVO7Ϳ]h/7Kv=r}W]ohAI$1n^?۶-{m~;wڰcM[}3Vo~ށ&d<84WٽK,F6ѵmtmkZ3S֭]c]6Z^>k]F6ѵmtmm9ys7tnp?gdlHkͧm"ڗ׸N4~»~DI}Lƃۺz;jy9Ν6qcoqnj՛wଥűx0{v6 ѵmtmk]FukXqצOF6ѵmtmk]hmqqb2Lƃxpri>}ڷ-6m/__˿K//X¿ރ>Μ>zӧ|^?w38TO>YNOF5{wgNyg|^gp맖}iu p>]^g9O?Y)ggΜ٧X^gsgyN9ÙgX^ԩggZ^D=udy'>sgprTwҕ27O-//Ϝ:,--I",,hNI$DqǎsbH"$څǎ9~b"]p1Gwb`4Z%5FǏ9zFH"4;D ǎshi;I$c.^9|܉cǜ5Di4m' ';vԱcǝ-XXh Eӕ~zJ?H:cǎ:v$faAvH"$>&mG=qevYv̸iOٸc;ppd<=wi]F6ѵmtm#]kfzʺkkF'umk]F6ѵm͂춸81&d<8w+VXb+VXb+VXb~>#T_WXi8|iM?t-|rҒ$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H;3owz8C"$H"$H"7t=-nr+{:}"$H"$H"$H"x0u[zxQxܶ}Gm;o3ݹsֆ3nlS6z86&b]fA6ѵmtmk]Hךn+ڴI]F6ѵmtmkm=-.NLƃx0N.-z7ڵΝ;ܹΝ;ܹΝ;ܹӞ={>|Ӌ~OSw{){cOҒ$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"^{ m$H"$H"$^cڿo%DI$DI$DI$D}`{|mڲwgs ;fشۧl1c88kiql2LƃCsŞݻ͂mtmk]F653=e5Vܵi哺ѵmtmk]F6fs{v[\`2\Z$$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HXGI$DI$DI$E'H"$H"$H"$H{`{|mڲwgs ;fشۧl1c88kiql2LƃCsŞݻ͂mtmk]F653=e5Vܵi哺ѵmtmk]F6fs{v[\`2,-NZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ}ĉFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4FFhd4Ffd<޺{=_o9 cCI$DI$xl#$H"a<6 $H"$H"$H"$H"$H"$Hzxl{I$DI$DI$>DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$RRRf:#>ȑfRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR27SJ)J)J)J)J)J)J)J)J)Joy)G6n^?۶-{m~;wڰcM[}3Vo~ށ&d<84WٽK,F6ѵmtmkZ3S֭]c]6Z^>k]F6ѵmtmm[/x-..J"׍漾)+۟iH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H">co~Wno:4'޴i]K"$H"$Hb[kVQDI${|x$H" 9?f}/$H"$H"$H"$H"$H"؛/#%DI$DI$D{bk_37j%DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$1??Y3®=e-[s}7}4;9>zK/w/SJQJQJQJQJQJQJQʜCK/w/SJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJqa`{|mڲwgs ;fشۧl1c88kiql2LƃCsŞݻ͂mtmk]F653=e5Vܵi哺ѵmtmk]F6fs{v[\`2Am?UW]o 7npEk+Va'ODz\z7|z7r7K"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"ahwU7lh;щ7x*>{}0 D?DIǝ^x+osĜ=>u}0A[n<2>I$|ݻal00D{00DI0^IàxbҼWkxDI$a0 a}s[0$^? a0 >Da0 a}$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI+(eΡ^r÷柾u_MΙ-f͙UJQJQJ1;;knnܬR2kvvV)E)E)fggR2kvnܜY((eܜ9sJ)J)J)fg:Hy]'`zvN)E)E)f͙37;9>z]ǿgzn쬹9sssfgRΚ-J)J)fgg̚377gnnV)E)9sssfgRR9rd<޺{=_su);wC9s 8|b wq'OJ"uq˹kۚa"rlAI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI }pe|Oǽ:LJ޲U1m،~׬<߹߹mvp=cO=}}e%;p|گ~|?8l4woE«o߰u?㿺i#>j}"v?s;^|tns~o{c[3=.qw.r_yk~̾rwzāV ?r5\y'-k6tI}o-y߱{<2ߜ>ƎMf˺k\pYצ6.t=o9DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI+(eΡ^KݻO}[Y&x.uQcEݕC^9c=c]U;H#h2{AP^AEA PTQBDDFQE[}9z 9#'CvXo/u}RCvy]}6~=n}t7-qٳ oo/صwO(-Kou,˃Jwh^zvb̽ѯz?=J)J)l7us\rnX>NN׶۫uUE|'!mC_xq^xC_}ɣw\~oݏ۶{]|ˮpU*K15,bՎcVwŠٳgtmk]F6ѵmͤ7up`j805hO~W6}t}./K'Om:L6C=̙3H29[4'}/:DߗDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$D~+\o~Owl]`#'w^|OG|n^摍vSN^eyeǾp%|_]+n;;qW^Yo[;>P"dG=y\V_>xO={^s9hK~pwwg{;fk}m~۞nәڰ>^gί/+_"ojpԺoq {sG~%oָ/r'1yjWΧl޶Sw\ʅ;ڌY~eڳons>No|v`ЗDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DGUJQʄÇ>peWg*[ou{vgdW3yں_rjC\t-Y?=MhJW[cvm{Ѷ,Rߺoo˼ֻ}'oԵ ֟=rf޷־C=uŊ{aoyCJ)|r.ֽdߘz#vw,\[V[pV^6X7pK]%Ͼu~s.ۋ.\׶ծhW8!;-v fvmX:]}{7!{>xŕݴI+?c]/,vorpgnYCJ)˘>+:<1 viY{mC|MV>k'u>/_bGfO~OZK oN=ϽaJ)J)z#~߂[qNXglxݘEkG-\3bɺ1smuhj8058Ӎpw`'9ݢWPǍ?gooeqx|[vonC_}`͟Y~{|?|t[re_|⡙3m^nwNL(/cx9ru_9<>\o3fvy3/uյ7喹.n>=4b9I|hGVlGG\n-^^=ˣkPJQJQJ15,bՎcVwŠٳgtmk]F6ѵmͤ7up`j805hO~WvUWmwyM桇rI$}9uП_\qz/ͶJ"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"Aնg͹~{A"d3w^z׾|ݶ=bb\zY ^pd8t5|2:39ۼˮo]^]vƃӧ{}{rRH"CKWo͙WpfOW'mzM}1w`;ҵқfXց޵q6wk]?fț.D7Q;nֻ9ǟ^3vC^t?;d9qг7]dck]4wrj̳w]6}9jϖzv$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$ѣGR2}'R_>teޥwrЛgݜ]~苝ӂ3-]ĄRRR^߷`vVl?-G-t#-^7fQ ׌Xne90tL O7n6ѵmtmk]F癶%Ξ=k]F6ѵmtmm&mݼQSSÁp0D۶~X~ /Ч~СC:СC^~e{ӦMC9s$HO/wᷗ^?mI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$1~ƽw-$H{lS-ŅW>:-ް㉛ov0WͿ mxC&;g_oso~K7/\i'~Z{>};ho30;hI'7].͚'#' ւ9/.tշ{񝯜:GoǺ]~_?'|ܽ~/tӽ:I;pu/.txqm3a݃^z=.̷~ׄaXq."~+<6H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"G*(eġ-{g7th|\)E)Aٿ>g.s7?٧rew^3껻~'n۟EϞ8xkret?szs7|j\{ ~qlžq#Xz˕~qW_>th|B)x{Jo/v?_71Gn vz~K\>}|ܮr/_}Q(/qمƣ80Go3o0:>;bj80-XŪǬ|ۏyfQ6q׍Yv5#3w6{;]SÁͤmtmk]F656:by-}xgF6ѵmtmk]hI[7oT딩p`j80 $Ѷ_W.];ӦMol2ODItm[ǎt$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"m:5K$DIg)MI:N8v[ǎp)ӚCx[1a8ƩSt&Ottɓ';c'NjHkN9~'NI$tIMƩSD]8ujRI'cNjt$u&Owo;qRFҙ{s਱RR2f~oƔRR9`޽8F)(/cxyzo}?8j1zhL)cFGطw;pp!Gz[gZSJ)J3zp}{ڷCcJ3:2bИRRRR^߷`vVl?-G-t#-^7fQ ׌Xne90tL O7n6ѵmtmk]F癶%Ξ=k]F6ѵmtmm&mݼQSSÁp0D/oiӦ6miӦ6miӦ6m?n8J"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"K3tuܶxɾ~"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"1wϿ`J?DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$ѣGRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR1_ҕ;RRRRRRRRRR2nblח\[}cKQJQJQJQJQJQJQJQJQJQJQJQJQJ15,bՎcVwŠٳgtmk]F6ѵmͤ7up`j805HԩSmfժU^x/^x /^ /XfJI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$hz]N#$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$9i߮|\K"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"G*(((((((((((((((((((((((((((((((((((((((((((((((836lqe_O^SÁAo-V8f{'~3[ZG֏[n̢dݘ˶s`:45(6oܠm&umk]F6ѵt 3mK={F6ѵmtmk]FLںyZL SÁ/$jjjjjjjj$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$)SSSH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HѣƔRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR2nRRRRRRRRRRRRRÇ9rxQJQJQJQJQJQJQJQJQJQJQJQJQJQJ166w䈩߷`vVl?-G-t#-^7fQ ׌Xne90tL O7n6ѵmtmk]F癶%Ξ=k]F6ѵmtmm&mݼQSSÁp֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪ɓz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zz^zzǏ } oj1+;acrԲMG<~ucp͈%]͞NסpDym3k]F6ѵmkX0iK^3ѵmtmk]F6f:ej8059]>}ZI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$D~p`[|U;Y +̖m:hkF,Y7fmwM '7hI]F6ѵmtm#]kltĂL[gϞѵmtmk]F66nި)SÁp ;gΜqgΜqgΜqgΜqY?8}$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H'H"$H"$H'H"$H"$H"$H"$H"$H"$ } oj1+;acrԲMG<~ucp͈%]͞NסpDym3k]F6ѵmkX0iK^3ѵmtmk]F6f:ej8059]?u;?|?sO-$pJUUS$H"$H"$H"$H"$H"$H"$H"$H"$H&)H"$H"$H&)$DI$DI$DI$DI$DI$DI15,bՎcVwŠٳgtmk]F6ѵmͤ7up`j8058sэ7駟Gy=쳞}Y>g}֫j֯_0et~͙/_4ۏelֆ 6/|ym#s~ݝsgN;~'_WG7~<;mNNӧ%`W[z/o4$H"$H"$H"$H"$H"$H"$H"$H"d` 7{nn` $H"$H>Koٳ[vkI$DI$DI$DI$DI$DI$DSÁAo-V8f{'~3[ZG֏[n̢dݘ˶s`:45(6oܠm&umk]F6ѵt 3mK={F6ѵmtmk]FLںyZL SÁ3+8wg}W\q9s;qn6v??6m'xxvy0</Ӟß7nonεYuusx׫nn}f#M#|3n ?8c~ۘE3ZsӧOK"_5oz6ph0K"$ph0'` $` ph0'Hph0'H?g- ` $``0^gOwi`84 }I~$D0%}p84I`84%DSÁAo-V8f{'~3[ZG֏[n̢dݘ˶s`:45(6oܠm&umk]F6ѵt 3mK={F6ѵmtmk]FLںyZL SÁ3+8w .+K.?x7Zʏ?9?`ڴiq}_q-#`n.{m7=(x/vg˘f䭑SgVk\=FxC'G{fGV굧ͽQ:|y|a}kf}R[Շ'COmМ)[k1'|c͙yXgpN?sXzc_}V\=zˑzN{~5fN~-zbңnj[Vϑާ!OYͼ67|7Vy/|_y/*5vg`<#~ϭxV\s's7r qsӧ% =0/~__={pW[_~[\i)xbϹ>3+oQ_kf;콷mذؑ+p9m]wُn_'V^?#Unvg^tv{\^Y8]^t㬛M¼n}>ּ_~pꓗv_cn16<߷}{ gqK}o'nqڵ^ͺYoJ;H^2c*[y.qò&۽Ͼw> ,zқ~׺o.݌:5xsvNtClO3ӜG8ӫqKߏ߷`vVl?-G-t#-^7fQ ׌Xne90tL O7n6ѵmtmk]F癶%Ξ=k]F6ѵmtmm&mݼQSSÁ;w\`ծj[nu~gʕm[wiӦygMǏo5?9%WN7YzdNF7&o<>m&z}76f'k9y5K-zq]u:|Xt\osW2k%zy:pҏ&x=C_nΌL|;aV~<̼ن}}q}wq`F/v->i }KnEw̚MS^Zt's]>΁s?jw^~ss%Wy/|ӧOK"__\K/qg{~ӧFˮXcjڻm3{r7]?d(mmvKى;vfwalwz~ O4|k.]OW_9~uB{Nzfl]ͻ5$N+~uFS΁4ƒ7]&z-{ƍ^sW^GMBw>k⩇{=<{E~TK"~?~߂[qNXglxݘEkG-\3bɺ1smuhj8058Uk+s,1qvܒkZCͽvy?sP}?Sn7M5쵏t^Y:20[7Ww"x7>}Z=``Џ:7\vw{1w~+xlظdЮ̾asUf^|OO5x'wu.r~m7][vϼu|ӛOxlg&gq7 ;efwΡOVy}ƒ7X.c_m鮹6wuvҎovӒ=l^ilFW?3nw5yɽOf0DI15,bՎcVwŠٳgtmk]F6ѵmͤ7up`j8058ssι ^UW]ڶuy6m87e,zC=rog눅oQSG>_aɟ 1-wx9L~U7y3cqz|a:p7p=v?}0w#y~_s%>l/s_Ig^s655ϓw̱l~Sg:9w|1^}7wv{?)o=rkt; _,yzHvnqguହpɱ=4wG׳<|%_r+ouCz:'bz'b~#zsFGD߹wLOVWUV!" Z "KjiႠ("(R`;($|'̓9^\猹|Ȉ_o}ܛl7Zsn=ӽXT/9^W,k>r׍^wk~;gʅy%Iۋi}UotƵUۜAUU'{f.Ι?^}c/8ݨ/,~LxIa_ɼ*?{)k?g?8pyrv~7^}͵:9jU| fzW®++g>Zok7^?>:iQVUiOy{UW{ۂUMsm} gwx{|pًҵ7m^U6~'^/;ǖZ@@nS[W6zG]wصڮrŎowΖ x_nSmj:=-I",r",r",r"5%Yf.,r",r",r",r"'ݿoSS]Mm6秧Tt7pO>7__GG?G?{{zz+7oެS^VUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU/_ދUUUUdx.]V/ NOO9}E?]?7U^/&/{t?\/r)_?\V?\%UUU/}J~%/]U˗~eS~w{/^dSStYlx.]VU ^TUUU/;=5 \.y^^/&/{t?\^6].z%UU/_.L;5}rѿ増._KeO/yNO/UU/S~w{/]VUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUit2̋R@@@@‰scĤ%XLN8vc&K,scg=;DDfŤ::zs NgƝ,Jlܳg;7yQ XUqlf<ǝ1ΞĤ%Yf^Bi{gώ9>euwj=cTB9ώzvlɢJ'ɢU岍n9wH:==- `Unw΍9A@@@@@@@@@l{ś<>VZUݦ*mu17w17~kw].-?Sݦu}{v[䓖EnYEnYEnYE.eakeK۳nj/\8oYEnYEnYEnYEnOvnSmjOOR>rn߾۷}voݽ{v[UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU/u=~w{;UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU8LJ>w$ ʊ1<׷ߎ XUmjr^sq7sCvWU;[1mrk;=mjMP'ܷgE>iYEnYEnYEnYR]d=֬…EnYEnYEnYEnYqjk6ݦVUmm*ʦujjʦnS[W6zG]wصڮrŎowΖ x_nSmj:=-I",r",r",r"5%Yf.,r",r",r",r"'ݿoSS]Mm6S]SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJ,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,̲,nS[W6zG]wصڮrŎowΖ x_nSmj:=-I",r",r",r"5%Yf.,r",r",r",r"'ݿoSS]Mm6M] 8::j2"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆpddnS[W6zG]wصڮrŎowΖ x_nSmj:=-I",r",r",r"5%Yf.,r",r",r",r"'ݿoSS]Mm6M] eΝslḻ1slḻ1ϝ;gVU% TVU% UeUUV aDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDm#ˆ0"#ˆ0"#ˆ0"lFaDFaDFaDFaDFaDFaDF##vں\-|hM;îvΖ+v |[w\NO5vnS; mOZe[e[e[~-YlϺ5pe[e[e[e[E>}{mjMmmZ@cǎ9w\ ӟzWxWxWxWӟ_]QvJ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@vNMM9mj )'jr''ڎa'lƪB@@@@@ƪB@@@@J@@@@@@@@@@@@@@@@@@@@@@ƺںsCqK*GGG#ˆ!vxxNmDFaDFaDFaDFaDFaDFaDFaDFaDF xמ7"#ˆ0"#ˆ0"ı=oDFaDFaDFaDFaDFaDFȰݦ*mu17w17~kw].-?Sݦu}{v[䓖EnYEnYEnYE.eakeK۳nj/\8oYEnYEnYEnYEnOvnSmj,KΝs='|⫯K/͛ݼy7ovnڴ_SSSRHh߰eU  IDATXQ:>|ޝo7}s۾1'+\z9hYUUïp*Od<'*)z*+&<~ױ*r̯?q+2>EU HYkǜkGGG#ڶ[=;⋾⋾5{u6"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0'~=aDFaDFtj}vLj0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"GF6uUlc[иw{]-Wp~Wlpj6ݦv۳",r",r",r",r) [.[؞ukV{y",r",r",r",r|85յvnSԵEQ̏>ș3g:o<|A|AxxovoƞW^U9oEcuቃ/x?̻^C Ywfۗf_wUeU6Mc4u%TumU! T6 8{f?セ/G-ʪnlƦzom_Z5PYs֏vߚ׍uS[׍M4UTu4M][Tu4M]YPY׵u]4SN߸d|~o4BTn|!׾vɩi+k뺶ikik뺱inkooGkJƦil ںmƦ5"84nkn邅`bvNgȡ!;aD;tlGѶ؎0"htlGΐCCCu:##v:C tlGFNǡG۟taDѶtinwԇۥk_T޸fzǜ}nG :-sGs޳?uV]|o.^_'ߺ7~ᓾν,y֏ΜF}>R>zyeFt3ܻ:uk|Ohw촎Sܲ|O?zθ.}:5ObCΛ9˥|oc;‘aMm]U.cn>4cnuajjg;\;[.\}mMm'-ܲ-ܲ-ܲ-\@˖,gݚ^p޲-ܲ-ܲ-ܲ-"t=NMu6ݦ6u-`Q^ynݺYfRoWYZ?Oqʕ?^@@\po}]}=>K'Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*&gx}zѝ]C_wS~WC-.Z[yOluלr7oY=wQ͘/Oydκ^79x>_}_Sf%BT5-tkh?ֿ{|;t#ysdჾ&}qsl<5Ӈ6qr^Svsc?hɕ[v{%Vf_b,xbGqlC?~1ϗ|'{&׭⁏?οg;>̧/z_.|zGgy7ܰ6?|/n#ڻIgj?<`ux{pﬥliÿqӮVooy/?[oO}s%;\V<ۃ7ܶ緾+?s[t_?_[}_ٿv q9>{t*ޝ;\no~uf^~K;۝سΛV[ ~c3~w7m?=jGF6uUlc[иw{]-Wp~Wlpj6ݦv۳",r",r",r",r) [.[؞ukV{y",r",r",r",r|85յvnSԵEQxWuVgϞ馛|U-Ÿ'rJϟ?/ L;kNǧjxQ9{M7;cm޷9?<3n5nm_ Oxη}{.?ۇVe].}~ek'Ǝmw旧jFϜo{=a5yn_ H] j'^qx,N5+<19enxel;ٛ׻m Z:X]rLwܢ풙}3RBTn\k0:tr>ɳ-}ymo{׼sƃ~4SMC/:?x|{¥>ʛ,םR.#5WرWyث~#Cg|i}>wfʺ5"84nW?z>f_|wp۾p3葷Wz<ᒗz1˃/97/[~up~%w{]f&{o<κF_yE=6۫~}fd{>pkwr1"lGcM:ӭ_;iW{K=rf?-\g-}Ӆ収˫}ovg.\/O.!?<}nw{<nF##vں\-|hM;îvΖ+v |[w\NO5vnS; mOZe[e[e[~-YlϺ5pe[e[e[e[E>}{mjMmmZ(+ݺug/ρ{{{U-Ÿ'rJϟ?/ Tc_fxw_wQ/zϜ,6ueUURV_ֻ}3}KG~|wlU|mQ~{Zቱc>vn|2vξcQn~vƲn5~[G[M^ԅ';M^;ʷ^|Y'gl7O"=?ϼסc.n_ϲj.y}gYUBTtͫoZn|!׼xݵ']8o,|EK߲߯?;zl xw\8O䁹θ!|o?}3x,͇>+p##\fg|qîڼsu 5"84o|hkhvm0]'¡v{fp1"lGˣ--|oi~{ew=.{5 k~w=Z{?U\= g?z.>,?}cg|vNLj0"GF6uUlc[иw{]-Wp~Wlpj6ݦv۳",r",r",r",r) [.[؞ukV{y",r",r",r",r|85յvnSԵEQxWuVUUUUU'?===\ XյCq|E_~y/ɥ_/:?x?/{>qs{ܧ=3q'S\[P;U #^hg- Oݳ~7m]?3\tLmđO\N׼#?{t1>>鳬>q>e%ݺpmM`j]J͔zmzƣ1>_ez쓭=s&kۏ_Kzcw=|lг|Ι?ݷ/hVĀ/c9G??>Kr潞V aDǡ|>aþwm/C3->wM>{G{cyƵo_|g:w#Oî{^7O{ýv鷫|c|m?+wv1"lïmgO.|]#_xVo~ht]>Vfꡯ=E+f_go_^ -l83|whon#.sp1"#‘aMm]U.cn>4cnuajjg;\;[.\}mMm'-ܲ-ܲ-ܲ-\@˖,gݚ^p޲-ܲ-ܲ-ܲ-"t=NMu6ݦ6u-`Q^y啾;^}=zarhh۷Ǖ+Wzy=oX5ԔSSg_罋_s0+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*<.~O~[ V_j"M8|wW_uNgΜ벧w8L[~3]=kwy=}dߞ;u׃vNf{WyIsyGz7_V TvUp;gowT^T?yſ{S~~W_{?'gYW:%w⯮|Зs";څUm9?[g npWy;;kVNԍu]:vW]}75[n3oėum3_y oޫw.z#}gm'&+kJGNxïW3mXnGGG#:v?q߹#FausoƟΘ̝2mSm8z9wݾ}}zZ_:IAxιɫs1'V3_sſvL7a;Z;z̛_~ w=G5? S_p›U-򞇞s>W!;1x Ͻ9}}>s;hw#ˆpddnS[W6zG]wصڮrŎowΖ x_nSmj:=-I",r",r",r"5%Yf.,r",r",r",r"'ݿoSS]Mm6M] X^{O=?g???__?ONOO y6a6YXg `YL:1YPOP:9>Ȉg<7>a6#qtcTŤ%ĄyQJY9:2ظye>QMXP:eNE;1Ye1Df Ύ:22깉IKpYGFFw(lb¼(, ώzvl,IϝutyY:efy! eĹxvNE;1Ye;1Ye1鹳znb,܉ɉs82:D^ Yf6Y8::jDF;`ˈ0"#h IO8}"#3=y℧sF3~{'Nt8akӧNzIaDSiYEnYEnYEnYR]d=֬…EnYEnYEnYEnYqjk6ݦk7ocOO===cOO===_?OmF@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$7߭ꙬGGG#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ-~ٙNaDFaDFaDNTއro[##ˆ0"#ˆ0"#ˆ0"GF6uUlc[иw{]-Wp~Wlpj6ݦv۳",r",r",r",r) [.[؞ukV{y",r",r",r",r|85յvnSԵYo>_z%7mMܴi6mrӦMnڴ-[x1b؏v嫯VFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDxy}#ˆ0"#ˆ0"#ˆoog7FaDFaDFaDFaD822le{rx͇tp ;]mWlbǀ˷zg˅xTc6Cpߞe[e[e[eKYwْ[ [e[e[e[e[߷ǩݦvڦvNMM9==NOO;==SSSu- T6ݮSS] GGGmZFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDvhc;ˆ0"#ˆ0"#ˆ0"#АFaDFaDFaDFardxnS[W6zG]wصڮrŎowΖ x_nSmj:zp{5=v5{jJ-ŲJEA@1 B'%AA@B " p |CH<=3denw3 }g;C[ؿφ[s?~w3 }g;CN-۹}Z泩lj>fjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj=jiih42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#h42F#KKK>:||65Llw^8珸oa8dӳK|r[ܶyg6g:3MgS۷mwˆ3 }g;CN}6ޚc3 }g;Cwn:7MgSԱ `eeEI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$D|65Llw^8珸oa8dӳK|r[ܶyg6g:3MgS۷mwˆ3 }g;CN}6ޚc3 }g;Cwn:7MgSԱ ZkN8ĉN8ĉN8ĉN8ɓN> VVV$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DDI$DI$DI$1L$DI$DI$DI$DI$DI$DI$1|65Llw^8珸oa8dӳK|r[ܶyg6g:3MgS۷mwˆ3 }g;CN}6ޚc3 }g;Cwn:7MgSԱ `qqѕW^嬳rYg9묳uY:,guO~YYY4ax; N}|$s`paSf8i+++H"f|n>N'H"$H"$H"$H"$H"$H"$H"$H"$H"eI$DI$DI$с><,$H"$H"$H"$H"$H"$Hb2lj:ppqqȦg۷,m~7=- meE+uf>Ϧ(o۪ }g;Cw3 lX5wݱ }g;Cw3ݲ۷un>Ϧ泩c+9sƺu'?K/y衇<x<x͛w}Ϟz)`vnno]uqbWs۷.hv K}3V-ŷd{֓1ﳼ1>vh>N9,דf%w^%48ZH" ؼ͛mVy'I$DI$DI$DI$DI$DI$DI$DI$DԬ]W^oSI$DI$D25+;MH"$H"$H"$H"$H"$H"$泩dbý;,Xi={ԙlj>:xؾm[6 }g;Cw2auFǏ3 }g;Cwwvnߦֹlj>ϦT;<]tUW]+tWWooYƏcp{g{5nqo۟U_sϿw n*_|<_x[ο;`~Krdgu:>p<3V.)w/S hs߾>K m\{YH"o/ܗ/tu׺曷 {,O&lf>M&$Lflj2L&өI"L&өI"lf>ͦ&H"lf>M&$Lgfje^ϽN%D&t63̦SԬk/Sl67̦SLLSDILSD&|>7MMILSl63N%dt2z?݇ݳM.EoYpnzl[۴˞V|65Ms{wN%ġntmyPoֿ-wzy/}w7-;W[~S[^z_7Sܓ~ҾWk\t+o\6vy.nu03dt2z?݇ݳM.EoYpnzl[۴˞V|65M9ˠ{'Yw _^|ˁ< 8_uy7SY|wuwW<=t5~;^ɕO⓮zl/?>>~zYǧ|羧.9G=ͯ_{W<_ޑIyMׯwj ֟w;x-Q뇏cA_M|ynOo|{.>n^uߵK]~z]}/n o|ۿ/?ݫ=ko.w%6x͞[/{^q){s.^'~|wKo]_Wgǒ3I$Sm^p;ͷ߶gϻ7:v㹥w۽c^}7m.ߺF/u]n}Y՗}cm̾׮Rwvs[/\u_|{⃷ ީpځWv%?[pwy%+q՝ngݷ ^SO,/8 |.;ռ[_osk.]}"djֿ g^m}R>̧wvy_ûb'G'3;}߸KꑘM[km9r߽/#wYuýyb~~>ś9׭~ t*dP~[6FyƵ׌#El}ғ[[k[_&7q?ec{?}a=뎵?::N&Hb2lj:ppqqȦg۷,m~7=- meE+uf>Ϧ(o۪ }g;Cw3 lX5wݱ }g;Cw3ݲ۷un>Ϧ泩c+:=#./߾}l߾}5kָY+8gcV'<#/v7|wn195t˃O=7wwXqWںwl^bwo|.XgޣXopSW_r`]h>-]kko󽣎7׻[7/,{:OUhEnn{ߵqʊ$Y[//vL&I粯\Q'} v=Gѥkpkd21/+Gb6^}؅_+G&ozpžtUw׺k]sͷ-{Kp_,Oѿ lTɠ[_v/ f/?¯lGظr>=|ʯuj_?e?~?Y;v~}6_\q뮽5|˝?r]w\z=t*$Lb>N&6ܻC/vGܷ{v%w>- nۼMq˂uvٳwJϦ泩۶eCw3 }'Coa>_o]wlt1Cw3 }g;}lmjϦ泩lJ>l<;}5kָ+<gc.ONsWzC^{.\{W?Z1/n\wfu?w;㏍.+m{7&89uߟ8 X^-Z)Xf908v/nE~fwKt>+'OZ^xK/fzbw/~dNõ;qjjwշcwW]W{e8 VO||7#վ|#'{ezcCei9yԮgha|𴋿xg:-?և ?o;6y }K7+턗7n{zG9ln[6vɏYgʊ$Yǭ^O$|g߽E W78vJ_n/`ϋ;{~Q7}}*9|=s䶵;޴iynyO=sJĮ^k+.~-t*dƣ)yEemvn|‡;n2xūWx-otWҥ?/s~ڵts}:W}Ϳ~#G-g|wm2?{/TI$1|65Llw^8珸oa8dӳK|r[ܶyg6g:3MgS۷mwˆ3 }g;CN}6ޚc3 }g;Cwn:7MgSԱ VWW}ٞx g:d4FF5k}̉&MjVׇ?&_͖}?y_b\xu⪟Vqr}>_.֯_\rq?t/~ soW`oZ|[4:6\CNػW>v-zq4ןvs>˗\pnܾ37~}9ucNבm?ѹ|ޗ.ZFMrzs1`Uv7]rνfϽ;{vxyp}u{zzGsqM8rlśt׏zWs>/ֹ쪻^'ّn~n:DIL&1MM'#}=;;\tmٸeMٻhgSm[ݲ }g;Cw 믷;6:~ }g;Cw3[s6gS|6ulU_G?77>O'>O|ݿw֬Y㗿%`'Z=VOrVIVpfU;b>Oq;N.[Μ>ɏYN̪Of+'ZVOT3+NZgOjN[]=ɏVOrVqtsfsNr`ǫlfr\[=U8NZϬ;a:39䉓NUf[=X=ıj6Y9~3꩓V3yuO5'?n΀3Nlf68ĉ3Nǎ;~SgSNf3IWXYYD`|宗DI$sÑ,I$hiɡHbpdiG:r>1>pdii#c}"7CKKKFw$X>zhiɡ?GG,w$L.o!|ؐH#G-wd|Ғ!q鼚~/n5M$ }hdtq7H#G-w$H"$泩dbý;,Xi={ԙlj>:xؾm[6 }g;Cw2auFǏ3 }g;Cwwvnߦֹlj>ϦTo_Yƚ5kYƚ5kYƚ5kYƿٻw/pzr˷ֹO"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$L E_?i"$H"$H"db:~n~<<$H"$H"$H"$Lb>N&6ܻC/vGܷ{v%w>- nۼMq˂uvٳwJϦ泩۶eCw3 }'Coa>_o]wlt1Cw3 }g;}lmjϦ泩lJG{=~a?~?>`uڼY9VVV$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI= ^$DI$DI$D21a/?I"$H"$H"$H"$&Ϧ >lzvɝO.}˂6wclܲ`ݦ]]Rg泩lbnw3 }g;C[ؿφ[s?~w3 }g;CN-۹}Z泩lj>:RH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$L$H"$H"$H"db6[YӉ$H"$H"$H"$Hb2Ϧ >lzvɝO.}˂6wclܲ`ݦ]]Rg泩lbnw3 }g;C[ؿφ[s?~w3 }g;CN-۹}Z泩lj>Zs5555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555N2Lcx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6cx<6c]יϦ >lzvɝO.}˂6wclܲ`ݦ]]Rg泩lbnw3 }g;C[ؿφ[s?~w3 }g;CN-۹}Z泩lj>MH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HСCJ)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)F%t2z?݇ݳM.EoYpnzl[۴˞V|65MN&6ܻC/vGܷ{v%w>- nۼMq˂uvٳwJϦ泩۶eCw3 }'Coa>_o]wlt1Cw3 }g;}lmjϦ泩lj6J"zڵk}S>Oԧ>SO}So~?4L$D21fSI$LLgSDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DIL&S|>7fSIdX6:pG˽$H"$H"$Hv!]&$H"$H&$H"$N$H"$H"$H"$H"$H"$H&$H"$H"$H"L&I&$H"$H"nFI$DI$DI$DI$DC?vp $H"$H"$H"$H"$H"ѸDI$DI$DI$DI$DI$DI$DI$DI$DI$DRJQJQJqAKKK,-t`qQ)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)[~[{J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)F%t2z?݇ݳM.EoYpnzl[۴˞V|65M|Ѓ>_O#<*$?<k9Dwdk/P7H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"#[mٲŖ'=FSp:_0H"$H"$Hb:ClwyW?tTI$Dk>$H"Iz׼~2DI$DI$DI$DI$DI$DDI$DI$D_7?QI$DI$1Q.[SDI$DI$DI$DI$G7Ͻڮr$DI$DI$DIO}YY&.cT]U]W캩3v:5ԮwMlV3DSW4AE{4P$mAA ⍈I}oF`.3S<$H"$HAw.s{k}I$DI$DI$DI$DI$DI$DI$DI$DI$DILNN*(=bߛ{~z?g7N)((((((((((((((((((((((((((((((((eĉݶp^mdl\)E)E)E)E)E)E)E)&FwֽظRRRRRRRRRRRRRRRRRRRRRRR'{p`[NLyziOIܽe]G~iĪMǭ6nllĄ^oRRRLL+ؘqc((ccǍLL+J)ؘ ^ĸRRRO49?[126011766n{4o^ed|ظ^o2f||ؘRRqccؘ ^ĸRR011ab|\)E)ɓ=u80|| {<'vMytu{2ͣV4bզl|3;3Tu801^ضULF6ѵmtmkZ#ǭe9]oF6ѵmtmk]hioffÁ:Á` mG?i&onӦM{0>>cΜ9NgϞD2M}ޒ+/q; L~E]edH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$[~ rż;.͙1{^_W{N#^Xg;2c^^/['=vt͏j^w-}goEn/Fہ~"Oz缾 UM]ve)w?~7-5En~/t&Ȫ,ʇ^vV9\dVݻɉHIon|wrÕ -O^u׉{<س^xN_]h=/8uOW,X;鉯9ιknK]u9rJCupL7#^xq\]vny7߶yM̵̿SK;mO[tKoOwdWoK]y+Im_[o_̻$H"$H"$H"$H"$H"$H"$H"$H"$H"$&''R2n^+.Yϯ75errQmq׵ ]t᥮_(=͏n%[|v|xG|xum/yٝ-tEs]Kcvx+\r%1{Wʘѣ˃\Wpsz_mdl\)E)šOp7]85w026n|ssooy+ͽbo}Ǎ~{Xs\z[@7V'{p`[NLyziOIܽe]G~iĪMǭ9sK<[ o,ŹxvOwK"x~n>lz?_q>ꍷvxlS=v|W`yեnxӟՏҎh/sӛ}3]$ Gzm^|fsl'yY_t]_>̙4>^mzIo~t?[vs|sk-/9nhg= ?wEgvqӯsn\x[c˅?myU\sKWƉ]OrUׯpM^pG,goM&.Xp n~b_<@I$DI$DI$DI$DI$DI$DI$DI$DI$DJ)J7qb.ĭŻg߾?|Ź^?;a7WZFO{Ц7vyS.R;c>yI o̟]=˞x>o/?Yp:y9_ywlvdw/C7yӿzyJ)F}q?I7]; ~ȉiӻ;7;<uӟ|ώO8FW,ړ{K\vsXv7;v}7'/zteL)ɓ=u80|| {<'vMytu{2ͣV4bզl|3;3Tu801^ضULF6ѵmtmkZ#ǭe9]oF6ѵmtmk]hioffÁ:Á` mG?qF;8w~zж̙;tYI$"~qЎ'nsÚ|V~"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$Hb0h|1??8~޲#| 3']_W+nˎlټ9zOn/ڵK.[nh|r'?j%~9˱3ӟ6}|B8D@ȍ׸w[>K/޾ɘvpL_s'7Ɖ_g^k/[w"w#po~`FmKqPI$3Qߴ7eV={[]V[ɰ4Gܿh[?5im;}Ϛk{33~.~` +-{{s]]uC);Z횛rt|\O{/3|xr滮r7zm}1p;7]u0q-Y`͖Mfto[~ޅ}HH"$H"$H"$H"$H"$H"$H"$H"$H"$HbrrR)E)&Nsy?կ헿؃,:o>?aw8U?{ε7PN8qb'2e:Zt杻G{z.Xp}+8ptā}\/?sO{_/~sG?qߢyV<ͱlu广wKWJ1VF}SKÇ=zA۶~3g;ٳg% tS rco=ܣ.M$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"A'-YpРI$3EqOKl2\}sSKn`|w-MN=Zrj>wEш ;W\mŗXN_-c~_I$#7^ލotK.f`8hŗnb?^zW?<;]kvU7xm&NyPr"ϽTK"d`?걛f#m|?oUOrb; CrsHΗ6Xtɟ|>=0췎+:y=Kݠ|/Y>憻]{cF3f~kW<K~sW9ƾ^m\W\sk5: ]|Ͼ;G?xޢoũ/sB<TS}HH"$H"$H"$H"$H"$H"$H"$H"$H"$HbrrR)E)&Nͧ%.Yb+Χ}v=/pϦ+((8yaϔwĮ)n{[ܵyFtܚͣ{ہcfgp&Ƌ۶ji]F6ѵmtm#]kt丕0瞵k|Y]F6ѵmtmkm3Tu8Pu80 $ѶG6nhܹm[?͙3ǝwٳH\^??h|.뜟_idH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$[~Ғnw$Hg>qa]y+}tw._^o8t_\|;~ơO[w m调㑫\p9hK=sVH" ׸wN`o֡=Xo'ǕR_~GyOxt?f {ӷܹǥ-~69ā,{Áo޳q'O߷6Ӟ5ѝm{˘6Z҈U[yuo;ptPxcVm3k]F6ѵmkܳvo9k]F6ѵmtmmcp$ڶȫꗿW_ꫯ|W6o?9s;={VI_w.&?}ujI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$D~лxCD@Xr-GMx]W9܋nE~k_59r n~_:`KWۋLw+W@?~zt?xɍWP30췎ɍWigW\[կͻa2;[q~sw53_q]Sv?v|ʱHf_[7~ c_w{_7?ezұf>ްo~+-[ek;>z :0#qE_μח{ynk{^|حwmpk_w¹sOh1[9>›q?} We}~g䓗]]O9=W]_9yუ~_I$DI$DI$DI$DI$DI$DI$DI$DI$DJ)J7~}w,sblL)E)Q_e'3Xp;9fs~Sν o^o'~\|٥οFΦu+?aɭ6{ m 9?_rw?1>yW^?s/9?Пsbl\)X\{,!IDAT/s~^z6>]-:Nk'~?[t}>)=>5v޲|2:axz7^'kȇ.ڟ7626ɞ:V>ӆ=S}uFH"$֙SMtOM7qrԩNi ggU5f0kiOv3Nn;Zg&MLMNn#vN~uJH"ӾnʹӧhIʹӧh]sW''O|uzZH"]W'MMN$3Nn;I$NvrbɯNiI$3Q|jtrR7LJ?vSgnNN&>=71W5]tӧhItӧhprꔩSV3g%h8}k]8=5Ԥ ':">c7a|b䩯]tӧhItӧhIgW&&&j)m+$H"$H"$H"$H"$H"$H"$H"$H"$H"$&''RR2ؑ#PJQJQJQJQFG9t/;tRRRҁ8tȉbtCbuˣNbq_<`9D)J)J9;62yJ)J)ʨyƼ.gܿߡ/-E)9 :~Aqq㽓ƿ)(eԱ/ٿ vldT)9 'O߷6Ӟ5ѝm{˘6Z҈U[yuo;ptPxcVm3k]F6ѵmkܳvo9k]F6ѵmtmmcp$x'͙3ǜ9s̙3ǜ9s̙3ǜ9s̙3ه~h8J"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"K3f|b׬~Α$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"d`£7^gtzXI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DILNN*((((((((((((((((((((((((((((((((((((((((((((((+>{)z7((((((((((ex9g+盿+E)E)E)E)E)E)E)E)E)E)E)E)E)ɓ=u80|| {<'vMytu{2ͣV4bզl|3;3Tu801^ضULF6ѵmtmkZ#ǭe9]oF6ѵmtmk]hioffÁ:Á` $Μ9_#x=~a?~?쩧'H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$=7o3~?H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H9|rhTK"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"IG~赗p`+E)E)E)E)E)E)E)E)E)E)ca;^\lރJ)J)J)J)J)J)J)J)J)J)J)J)J)J)J)NÁAo;m3ݧ=kʣ;'s1wm6fvٙ:ÁbǶfZ6ѵmtmk]H9n-+̹g|sV6ѵmtmk]FL{k633U@ I$DYfggΚ5;;kff`0DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$ k53S DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$1 }I$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$Q7VRRRRRRRRRRRR 'OL)(((((((((((((uS~wڰgӻO{bהGwNZ-c[~[~{W<ݿwn ໿W_~wޱϔ33Ά0sjrhygwygG{foOXF;F};MYI$N;>۶le[^~_I$DI$'TDI$DI$DI$DI$DI _{#nS I$DI$p0qÍv< DI$DI$DI$DI$DI$DI$G }+iÞ)O>]S9ik/X5G-_G @L;m6Ӻѵmtmk]Fq+oYa=k曳ѵmtmk]F6f[;pp ?w^3w\W\q+ŋ-^'sCkrRW_}뮻ޭl41Zw<Pm780wz>o W]WzQvmy׾]h0;;+d`tZvU-vazP UUC~$D0T댿Ξ+kT~`XZ@? CPp0D0TkUРߗDVgg;W?XA"o0jj{A˯߱T~pXZ:4@?D?0 PUC~_p84VI$Du80|| {<'vMytu{2ͣV4bզl|3;3Tu801^ضULF6ѵmtmkZ#ǭe9]oF6ѵmtmk]hioffÁ:Á3ӟԦMٱc_|o̙3ǃ>1^:׺wm5kZw<_;ntŒ+|sMN~ot2<3ߵWnX5haM]vI~G/aUO9Q_ǿ/`5WZzy#I?gXNv/_•KrM}=?cy{ݴz,Nڳi\kWٴ;:W^}wh>;W|<׬p咥niŌųOW[zlX~sϮ]aٲ/tM+,x[jjXMw^oтnN6]yծ]rٮ7=iu]kGMg`iGb5K,^v^f8jH]c{[]rW\Ȱ+Z~ew=: /̕7'ܷœϼD304~3l1rjҾr\h#m[su_ևg$D~߷6Ӟ5ѝm{˘6Z҈U[yuo;ptPxcVm3k]F6ѵmkܳvo9k]F6ѵmtmmcp΀OS7n4o<V4m[?͙3ǃ>箽6Ș=f|r;mv~xXsj?vyo^w0 zy_ʢ;}چY{E][\v]7w?ګn{\qvYI$_t_~y؉^^%+ />t3NK.vݽ{]Kp< Cng_.歞kѯA˯zS_z5yn]vz^vmrWѤڝk]s>z^ ox[־c'}]/nz%LVI$G }+iÞ)O>]S9ik/X5G-_G @L;m6Ӻѵmtmk]Fq+oYa=k曳ѵmtmk]F6f[;pp ?qFϷ{n{6lڶМ9s<L~ٵ7?v>o5D>|ϻ{v{m.< ~O^Wwਜwݧ -`3|s~~u.8bW~§_}÷:o׏}oZ~ݚtjbaW^mlwmBleߞ6y|fzӖ]+/ HA^+ߝw2Ol}mo;{rw~h7kf?V>moWnw!w^6`Fzʋͽ^/m}ֿ_\=|qˮ݇SClZ-{TD20l㲹ny~3Y7-X=_C_c]W'ڻM۶myÝ;J<7ӟ_7:v#-̇=} W7>=}Χֺ᭺~m,*^w?[1'~.Ypk7_fX~  oTj*Ŝԭ35瞙s,TpFF((**q """nz<ﷻFqOTO[}W"}._!_ W-;\UW?w_o|\vٛ/3?wu]?߾s_7oz5# s3 Jo~ _گ|jw?_7o{\w߾ū^s׾r]n{褣\틷~_ ߸.Οn_GgN'Gwڷ?_/󳃝}_~{0b79-[)pp>[)S~foZ>C ?x;c׼9^nW8ͩ/xww~b#|WgέWY۽X'Qg{KS=xg>;}?^{'}÷|ogtg_~8mƫc-8wJW_foOzֳ sG}sWO| ?a]/oW{>x:{=]xni[\)O<WG=/zӫ^cw£_4/x=ԁ]/_.yOw^+|[s>W'}+?O>_.|/W>z˞?`wV\)O<[_~ط.o=؁]T*\u]n;ѻN|֣uCr:wvΣƝf^nֶfmYnֶfƑrՕW8t5=yvݬm7kvݬm7kw;;;ϝr-g/~N:ԩSN:[ooͿq!Їߟ֋_yyO=sЧν+g{^7^ q{z/>o?Ow}~y)pwsO~Oo+>Sw|/<_"xѯه>c߻Ż^rsw·=o|^;/xsK_%/'W.y ^^7Ol~-g^O:;,;ߺ^g{ _7]%/~_OƧ߂5>uOőGo~ŋs^<}_}sTjg ofo]psxk/gGNۜ<|3<%/g.~ yK=Y/{w^67N{{8#7~{K.pٕ{R;_x߫_E/~>癞Wrr~ܕÛ*/yΟg+_{>Rw>C3q~yR{{Vg?/}_xs_~O};:+Jޞˍt}}ޓ>z zo9_|ػn~[{?O?c:t??O|Wvfo}_뷿?{^=?~No=œ?S䓿{O~쵵;p~߁߮~c}~O}s?~sI{Oݩ:wIs{j'=o{9{ܓ7m'?O7=owO?~q`vvls?ΝSƙS<ިT*i=c?~㏟nģ='O9um箾>r۷̣:XoSؖu1?OY=?*^EGNoUS;vcze:ԩ3RT*{{9xI7w=wpG#Ň˯u쾃G;ofݬm7kvݬm7kZۍ#?+pk{󶛵fmYnֶfmYn6땻ٳwwwΟ; ছnC9tC9tC9tCo/K|֛\7onq_8wJRT*JRT*JRT*JRT*JRT*JRK|Zv*JRT*?W·[T*JRT*Jޞˍt}}ޓ>z zo9_|ػn~[{{ST*JRmw'JRT*JRT*{{9xI7w=ww<گ[{w÷quxΝwsq٬WfmYnֶfmYkq\u]{aO>yvݬm7kvݬm7kfr;{sg;wNRT*JRT*JRT*JRT*JRT*JRT*gnRT*JRTvΞ;T*JRT*JR9xI7w=n{/=o_{9|_w<};;w~zeYnֶfmYnֶG~UW^еm7kvݬm7kvݬm+wyg;{`Y˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲vx jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+jZV+noUOӮqF/xۍ^??-G\~=xsgv>| s1|{w÷quxΝwsq٬WfmYnֶfmYkq\u]{aO>yvݬm7kvݬm7kfr;{nRkjZV+jZV+VRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*J={{{*JRT*J{T*JRT*JRT*JRT*JRT*JRT*JRT*JRT*Jĉf̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f9xI7wyvݬm7kvݬm7kfr;{nR~K/?Ӟ4O{Ϲ}~g?YrO|}ٳgU*:q6JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRTΜx?_W}wzg̏5o>bRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRS^gy+JRT*cy9mT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*ʉ'̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌sswnyn~~_ʻ>÷quxΝwsq٬WfmYnֶfmYkq\u]{aO>yvݬm7kvݬm7kfr;{nlٟo}[^Wz^K/u饗袋\tE^:tÇ;Jr7]^׾_~JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JR6~y{ů .wc3?\svonYggoJiogڳ߷ngoogٳwRTjgK=ݞJeoଳw{*?pYv{T*ڳwp?ppp`googٳwJg8Keoଳw;>|v{{v={`gT۳ٳ6~w9mupp`RT*JRT*JRT*JRT*JRT*JRT*JRT*Jĉf̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f9xI7w<'_<ݟ[{{7]}~;핗{ůsώޞJ?vﺿ/?Y?>vF{{8KoB>{|}K-؅'oS=]]|ǴRlN\ _mGGN9}=w׼ek=x6Ox嗸|wxn/ȍ׼]_"w9co{ʏw^~K.ҍwةힽRT*JRT*JRT*JRT*JRT*JRT*JRT*ʉ'̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌sswnﴏ{9_?on{5/=]7?-G\~=xsgkoO{{vRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*no~k^WC~o+_oɱ3?\ ?}{/}n_[_nrv?Ǯx7Set ߷~|{u_w}WO|{?۩Ԟӏ9swϻ沗w8~1z=na^~﨣?"W|+7ßӏ߼^馯J{+߿J/y[Ǯwo}{F_ƿxW7%-_[ov.+s_}^zϧn|?|[y;swp] Kj=᫇_%]_텾~ \v>[ɫ]x;GT*JRT*JRT*JRT*JRT*JRT*JRT*Jr 3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3\u]n;ѻN|֣uCr:wvΣƝf^nֶfmYnֶfƑrՕW8t5=yvݬm7kvݬm7kw;;;f?M7Uzszֳ|Ɵ:t萫Ujg{GmST*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JR6~yחx΃/~݁#>Wy[/~7 'άU*S7nϣ߿/ҿ™w;tWn𺗾moz 탟vɯIw|^q}[?r*ڳV{;֛_ ^7ƣ9{/gn_9ȯW3oW=>ęGv7w;>fw'zk>s'Ξ9s/~mwN_]拽ݟs\ |ꇏv=GǗK/y.}\}߷W*JRT*JRT*JRT*JRT*JRT*JRT*Jr 3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3\u]n;ѻN|֣uCr:wvΣƝf^nֶfmYnֶfƑrՕW8t5=yvݬm7kvݬm7kw;;;f?M7Uzo~/_*l6OԡC\}Ο?R{zW>ev;{RT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*OK_v[mjg%п]{W^x^?sɻotl|W?o%^^u{+^zޞʩ_M_­;b۩TN=r _yޞS'y}I?cx+׺{>Oo~\W^s_Й_gsez.[~h+5>z/mvv;_g\rU~m=훼Ωj?_<{%x+柾z/K]ou5ё3oqS_w`+.e}ܯ7BpQ~a!o9G;``coYl7kvݬm7kvv+Þ|fmYnֶfmYnֶz;ow쁃NexӟnrfOO:tW_*Oʋ.=Ɖt߭_cU*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*J=p]ޙx_^?{?/})'}.zgMx雎/z?w>>~[S_:o|I>+zG׿eG;⮏\^c'k-WǭxoAJRT*JRT*JRT*JRT*JRT*JRT*JRTN8af̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf?ޞˍt}}ޓ>z zo9_|ػn~[{?jRT*JRT*JRT*JRT*JRT*JRT*JRT*'N3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘Ǐ?`gr'piuuw<[xr#.ɟ?'OOwСC?AΝST*'Ny82ǜ8-JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT63Nz™Vmz'vucuRzNa[*=uR[O:1szU[gNrmiqcsQ'?ԩ3Ʃ㏚#G=vq'Nڦ=iG?mMRT*JRT*JRT*JRT*JRT*JRT*JRT*'N3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘Ǐ?`gr'piuuw<[xr#.3v=Tݭ=فqE(J L'1v &Lf! QAc7䢉^?}wǷ_ݍytmsxW=+>uSOlEwGϻsNSO{ŋ/Gѡ_? JRT*JRT*J{gˢRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*Jr%c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c <:txpzW<|:{ɩ'6~;O_pǣ9'O_pөEỤ̈́C/ Oyܲ/;eg엝_vNŅv-NsIW^_v~/;eg엝춞z˗ythGU*9cǎ;>>v||񱣣#JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*uhN/_vtJRT*JRT*JRԁyT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT.]… .\໛ytmsxW=+>uSOlEwGϻsNSO{ŋ/Gѡ_Ow?vѝ/n䜓/^xGѡyt嗆'>U*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRd:<8pg=+zU>Ow?vѝ/n䜓/^xGѡyt嗆'uSOlEwGϻsNSO{ŋ/Gѡ_>VT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JR98<:txpzW<|:{ɩ'6~;O_pǣ9'O_pөEỤ̈́C/ Oyܲ/;eg엝_vNŅv-NsIW^_v~/;eg엝춞z˗ythG_7np7{_??>g?볟ӧO?GgΜ_~ŋ㟽xx/˾W_/97.?ٹw^vy៿'>wx/{nM׾/porcJRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*̣Cn{ଇ{CϾg^񩳗zb.w3gn^kn7㟼'>~5_W]ǵ^!y{~~qMt|[JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*AѡÃ=pϽg_3KN=qcy;=G9yN=/:|dG^~ix~/;eg엝_v/.?[oq➻Nz_v~/;eg엝eԓg\<ͣC<:t2~my?c?7SO?ƍ`-oy'Np͹|·?xʥpů=p}{?ys[8OA7}>u'# XS}. >wm>xӇ/oٳW⮇ro^O//`óo~Cn௺_۾~U'礟:7^sO;GOz\q7?;nmܽKϸxuQ*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*GY?}ՃϼSg/9ݏ]t x9 n:^ythz3[v[eg엝_v~ipnʼn{:+~/;eg엝_vSOq4ͣCЕ>g~g\vOOxnY,s wV?pʥpK_#}㕭/;?ǯM8ɋϟ?}?mO/ x|঻|o'~ɯ~/~~x{ɇ<}_]+??~sO?s_Oy' T*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRd:<8pg=+zU>Ow?vѝ/n䜓/^xGѡyt嗆']z˿ / _X}9qs_~8 _Kou7n^??~~_?o~&7Ok=O~?}}[zM?U^w^7˷=_?7_߾gG#{>7?1<O/ÿ?q{4V n~U_x_=~~S.ݓ[=Kw>f>1+@'?~}7Ї{߯?o'ӯ^g/uw??C7XU_;|3pų|̝&~V[p||RT*JRT*JRT*JRT*JRT*JRT*JRT*JRquIDATT*JRT*JRT*JrpytmsxW=+>uSOlEwGϻsNSO{ŋ/Gѡ_to۬pů=߹[wƿ|=}yGxoO櫫^/zK/yj}tt;~g /n/}Ջ;>sO| <{|{~h?N\uS>t}~7||/˷}?.??}wͣnG}|T*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRd:<8pg=+zU>Ow?vѝ/n䜓/^xGѡyt嗆's?>}5<~;~Ļo3zśo|wΣpo[~ޏ;CKßS^^׮xO/]g|?^/{۽'~o<+>'}Ͼ םOݏ{k~v»~~77]=g;_nn~]7qW}Oo!o_uƱ?z_JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*AѡÃ=pϽg_3KN=qcy;=G9yN=/:|dG^~ix~/;eg엝_v/.?[oq➻Nz_v~/;eg엝eԓg\<ͣC<:t2~rwx[-oy-q > pcu`oYv+k:k^>Ƶܸˇvۭ]+xcm|W}+Gmk7pco\9jg[]y7\{]rynw:b7Westnxʑe_{Õ㫮Ƶ7]>nGov877NnqWx qLJnWܸQv<6WwkkƓ?iup+e77__?>WT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRd:<8pg=+zU>Ow?vѝ/n䜓/^xGѡyt嗆'Ow?vѝ/n䜓/^xGѡyt嗆'}?߻U*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT2큳~=yŧ^rꉍy?rti/x#<:KÓg~/;eg엝~q9zuիW엝_v~/;eg,~gv]' ]g? 0vu0 v m)F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@9855vS'OضBg8ɓ<]v]0 `! `0 Co!`0 0 ]g,:w-v ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1Is>~_tΝF#ONkGqܣZN@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@S}A_|q/xSuoG}m ,?pnO[s_o.ځйpw_u@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@~h<|׏|cjSyd}LnkwMz rdڥ`z;s"MhԶMmԶMmԶMm6NMNf*6mXٳglڶmڶmڶmڶmEhT,Coz;MӸl2w饗^g<ݻ=SSSccc>C9sF@褞/' S/};7g]jg}竼zOU7'O']}-N7<ɏēpƖ^'}n6}x™^ɇWg]=S=֟tnNo>i:io}ۼ{|G{[\q}j}~o-;3kÿv.xx|oo~dz`~/[|s{|}gvM ؜G{6mLJүKYGgΌzލ=a?=w}''^@Y$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbxdezsn?:#n=4Y7ܸgu\kvN~+7'.[ޙqmEۦmjۦmjۦmjۦqjr5W9izϞ=cԶMmԶMmԶMmԶMmS/z`^Gbz[ޡle˖cj?sx%ضMx866C=3ga޾y^w<1' `5wI^|:ıW}bu.7Xx]vO8>;}Wc{^ssεŅwzӍ/uVw?+r{]}??]y`nOn~Ůtvy-?NԱ>7>ͮox¯%>>ซtվxٵwĎc[1տ?+o;/Տoz5߶i'z^G|w͏cN{W~[3y7>mKxӪ _:?xu ~}/lny<[7r:~G_-xͫfewâoC9sF@@@w[oqӮ??}\5v׽M0' oye7 OVۯy!v7zφgyhz޷i_;_t/~Gt~Ѿc6ȡtW 󢯽'jOWoև}|.r~+/[xWrNoꑪq;?qvm\OKۼЉ֥Q?+osT_=57m)qrkyn xo_MW7=}Zu]\Z=rq7y;}߾mo3on_C'soԾKoΕK~#wRA|` >fBg5NnG_xm'`?ܺB程x^ ~;pvv$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$8uw|>໧mz} 'zW-7]WXܵ&Wo}-/nk_􆛽yMxíl'q7]'gG.[׮7ƼG~9QyW?2o^q7p[}[uzv~k*{㸰Grp5;>=w/Py+_Gޓ~:w|zt޾]Iww^fWɛnZ3/b 8 o=wܵ޷>:ޡ~pc6]/ tvmyMnugR÷zcGo~ߟ.7A@Y$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbxdezsn?:#n=4Y7ܸgu\kvN~+7'.[ޙqmEۦmjۦmjۦmjۦqjr5W9izϞ=cԶMmԶMmԶMmԶMmS/z`^Gbz[ޡle˖c*UUUUU .pll̇z3gH{cwŕWV>kX=؃-߹]|_>|~6k7+aӗ{W/K.LJ]{n~ M{+Vnp]/u<IxW\빏C~8wvxW?Nu۝>ƔMGqחYi[c=xKMW~S{Wt]z?'n]}9߮ŏ?s~u7p>q781[;y=)Y9׏}b  '~N~kawM>y=g+GOb-Hy3~w=xc/C' ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1I[/p[]//=ٛ/ċ.+|ė>:%}' `p=o]E|Ûᇳo6yex{-ܫ{qR7b`}t ߽گ}bxoʏ^7bouv)_{.~]8++./f];_}2ظ'=B)t[]_{E_+'x=^_[_}˗hynot'kS|O\g! ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1I;0Z~GǧNYLtb+ΝunlNL&<̩ZYs|‰qv~lNLLSnZOUtf3ZNx|b̜rimggA@>NLwfvl?s&NLwԼ  sSNNpt#ϝE[:igOx|bɩigNzjnޖNS3qrլU5bJٜԤ=1uy\c pq''&IiO[Mǩǝpbb'\hZuIO-{|>;gggMb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILɓe5Oێ̻М[gݼrirI9S|cL4,CozgN{mڶmڶmڶmZƩ ׬^ئ ={mS6mS6mS6mS6M{e-Cozm[}Q/WW966ؘccc966ڿW^q::;kfvi4X2Μ>oS/6mS6mS6mS6SYʱM{ۦmjۦmjۦmjۦmjz:[2}/ vrƍ[uֹn:׭[u\n?O|lV@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>o~OI&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&2]'~tmGzh-nWqϴvOvפp)Wn>O] 3'ԋMmԶMmԶMmԶM-mkVrlӆ={ƶmڶmڶmڶmڦ^F2 C XJqiiɥ%\ZZriiɥ%\ZZrs(#GC 8;;ԔILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&qjjʓUezsn?:#n=4Y7ܸgu\kvN~+7'.[ޙqmEۦmjۦmjۦmjۦqjr5W9izϞ=cԶMmԶMmԶMmԶMmS/z`^Gbz[2R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,8??̌UUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUUYUUU933ܩS:<1sn;2Csnuʍ{]{ʵ&owOrA}2h e9}ަ^mjۦmjۦmjۦmji&'\zc63MmԶMmԶMmԶMm6u4* e=4RUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUuiiɶm:,CouybGvdޭ2>}LnkwMz rdڥ`z;s"MhԶMmԶMmԶMm6NMNf*6mXٳglڶmڶmڶmڶmEhT,Coz{fi=wΝܹs;wsy9ϝ;s<KKKv:<1sn;2Csnuʍ{]{ʵ&owOrA}2h e9}ަ^mjۦmjۦmjۦmji&'\zc63MmԶMmԶMmԶMm6u4* e=4RUԩS{~K_ / / / / / /K.WӟTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=tgϩz?{f鬟z?-ϟSUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUuiiI@@@aO;ق Xwnna:,CouybGvdޭ2>}LnkwMz rdڥ`z;s"MhԶMmԶMmԶMm6NMNf*6mXٳglڶmڶmڶmڶmEhT,Coz{fiݴiO=;vpǎر;vsOt߾}zSUUs.5'NgUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUd}SyM`)=/>վ8q󪪪sԞvn/9O3򜪪dxew89UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUuiiI@@@œa:[ƚӾ\f) П=W?$XwA_C?k }׹qsۑysUn3S5};'\{ʕziFe-C̉6mS6mS6mS6mSK859ի۴agϞmjۦmjۦmjۦmjۦ=Q e-CΝK_]w^z˗/w^uU^uU^r%GUUUُk;|S\7nsUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUl^{շ\u7pUwo;Ӥ\}{'O{^UUUUUUUUUUUUUUUUUUUUUUUUUUUUϓ>6ѼUUUUUUUUUUUUUUU~wUUUUUUUUUUUUUUUUUUUUUUU=ϹnX3zNUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU]ZZ:goꫯnU?x釽G3K#K:ޡFJR,eh4 H;PQ)Cq49sO3GbBgߞpϖ .Ɨ˷ϰwkw9w9Ϻy_=Ӯ=]޷s\>vi4X2Μ>oS/6mS6mS6mS6SYʱM{ۦmjۦmjۦmjۦmjz:[2Yz9/Bw饗^??{aU=~7ؘ?OTUU=#ʗ7%Oy_x꼪>z{}rγ)OLIZ7<nY߽s?Ӯ_}w޳m/m/Ѵ~է~{=+Ցo{Χo{/gg|kU\>|h󪪪wզ7l~;ϫ~owƽ_+\cGM{ֺ'.ӿ,p/s_T l+?qEfo9󹪪?}ŭV{}_33>INßytϽ;| Ϟ󆋯Ǐmp]|W]g/Ӯ>ެ=k>~wsz=Ғ]__wVȗ?9qGw=߹ >3v]ɏ_qծy1xҮW~?7|>n}!^3||J@꓾q[sm+<S=C߾7>:,CouybGvdޭ2>}LnkwMz rdڥ`z;s"MhԶMmԶMmԶMm6NMNf*6mXٳglڶmڶmڶmڶmEhT,Coz{fis ݱcW_}Ν._m۪4\pcc?AukAz/15^tUwѻ޽4vM4QFhI"AJ( ""ijQ/łuypu8xx]5_-被xw/ye/{}n?}=^+齇|km{~7Okv>}[[~Ok}k+|_x9tˏ|\\OY3}/u|gß[^#_g>𺷺ߞax[}{]^wg}٭qzEnپO_~nX?Sw=>|ΟWr3_]|Kgg_5?~—r>z׼3woޕW}_wp?}ۥӭɋ7_Y_?7އg[܋|''=?7_^{~̙3*]pnӻ8:8훟_O:7S׺=O\}e>7v͇_]soWا?>}s\Wvc?op+'^<ݺxO_ەmKmͽ79'/JRT*JRT*JRT*JRrx\r͝k>wt'\uc帏|̥7=7>򛏹𪯹8<;<{qm,m7f,vn͢Ʊr.v>zgyvnbYl7f,f9wgs=/~믿g%~w 76:,_wyO~\t߸OyEW9<_a~ x!Σ~s\g<~t~\y.;|[_v;;G魯z?xg/y|n'g{;]Goo{m7|^k<yOezӻ}{YK/Գ\zEӯ~ʹw-/:9sF6#wȲ۫TO].S>|׮m؃7w]/}õpehg<wշ[vguc9m_׾ }|rʃڗJeۚ{or+Od_*JRT*JRT*JRT*J`o۹;]wI}':;O\qqKozo|7sU_sǝ9:pxwx#nYNnbYl7f,Eۍc?]쬏}r={u}fYg8xO.򥿹_]s}{}{x!xSg7\趇z'{۫_g^.O//Ͼ[/^֋\t?گ\zx)xqޥ~ X=ϟ9s.tOx~}/=p7>K.·?z WY.xI_>z/薿{ros8wx{gy=o M sO-Ŀ=o+?󈏞{[v E^_WggΜQ}}ojg?pt{>.z_{hw)+]r—z7 9\oz}៺'G.Of|Tv[~y~pWr/Wxyovyz[?k]`RޛwٗJRT*JRT*JRT*JRv9қr\xqg=ȸ[mӶvnbYl7fv};c3 |<>o?;9R?x~q'|_}o{;`+SrѫI}>x_\o>ϭv8ҳ/OyG}ץozO3s=ܓO_<||:+xw?!/o[G'?{O=sz].z_ݿRN:Au~-~~ph.{}G7;USﶎ}՟O=q߽~|mKR~ysrkW*JRT*JRT*JRT*J`o۹;]wI}':;O\qqKozo|7sU_sǝ9:pxwx#nYNnbYl7f,Eۍc?]쬏}r?xū{^;orϞr;O^^ēO_pkE~sO.'2/墷Ï1w~қ^Rg:5v^^ r_ gvz= ~sN??|׿OxW{??Gxw19sFR;'t߼ן?;?қr\xqg=ȸ[mӶvnbYl7fv};c3_Vx~amS'OZ'=-T6˓mv~qz>џ?i[N?')J-N<2|A=xc'-JRT*JRT*JRT*J`o۹;]wI}':;O\qqKozo|7sU_sǝ9:pxwx#nYNnbYl7f,Eۍc?]쬏}r2Vf,vnbY8C.yG/3OnbYl7f,v,}:<;<;<;st׿u]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]j]WZպuu]{O,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,e,eY,bY˲XŲ,N>m8қr\xqg=ȸ[mӶvnbYl7fv};c32Vf,vnbY8C.yG/3OnbYl7f,v,}:<;<;<;U*vknۭvknۭvRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*'N3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘?Ãnkt=']{)뤫<s-}c.a!|̅W}}wޣ;nf9mYl7f,vnm7=Kw>=ӶvnbYl7f,6i_6GG{OS]tȋ^"/zыE/ȋ^"/yK\}N:e۩~ۥRTv.JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRiT*J~gW*J~S88v*JRT*JRT*~ST*JRT*Jev*JRT*JRT*JRT6S8yʦT*8u O-JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*ʉ'̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌~s5wOuwp폹>r1o>«;st``Gj,vnbYl7~%YyibYl7f,vn崯qC{{{vuG?n7pn 7[nO}?>;::ngs6ڥRisU*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*J#lJng#N<+Jɓ{r{]w}ݿ|~v)ST*JRT*JeƉ{G,T*JRT*Jei|m;JRT*JRT*JRv|s޾Tjo>NJRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*ʉ'̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌~s5wOuwp폹>r1o>«;st``Gj,vnbYl7~%YyibYl7f,vn崯qC{{{f[[oy菼׿k_Z}kuY.rO? گo߫Txn?RT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRTj7~pb+s>.~O?}ѡ~qׯu.zW{9g?~?r|QT*ё#{R;J:s;?s~xv;CGGUjTj}w{l~ھT*nwxtޮᡃCGGg:Tjgp茣#no|y}=3Gv{߼f9::rx+JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*Jr 3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3sx\r͝k>wt'\uc帏|̥7=7>򛏹𪯹8<;<{qm,m7f,vn͢Ʊr.v>zgyvnbYl7f,f9w~l/}+_J>ۭ?_/gu.O?vS7nSiw{ݟ]᧶vRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT/}~wvͣՇ7t?ۅK}fu]-\''׼=/{nR6ݮ=.>_3Oe< η|v[~濿Wٟo}_o|']o{ǟmwrsď'ON.vwuW>?+C򓓋]Tv߿Ux^oylY~~^yO/\ 㒿{۴!_*y.zW~m~^A_qO_fr.vؒ]T*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*'N03f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌131{%{NS>yIWyU?[\zC. 8сÃÃGwvrvnbYl7f,n{!bg}죗{晧m7f,vnbYlӾzm* _B_׿{9yk/Wf/x:e]駟Vi_t/O>o7w=`[*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*J)8'wv)W9 p͇/ڷ|}s|O}ǎ=;7+mnǴ۩9}u{>pmO?{9;Ws|kwǯoGN=kwzگSs7<_=];O\|W8IDAT=󥻾[nOᷝҟwxГ|so7~WO=x-w/[7|W.?{#o?{>v}\p[NRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JR9qℙ13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌9қr\xqg=ȸ[mӶvnbYl7fv};c38O^O:tf{ N;5o}:];O+?_\u˙3vR988; []{|_vᥟG7q'~z7w?c?7 7sp߷?-i˜Щuo_yo7~v? ڕJRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*Jĉf̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f?`o۹;]wI}':;O\qqKozo|7sU_sǝ9:pxwx#nYNnbYl7f,Eۍc?]쬏}rҧ>>p#GO>^8/]/?]wt'\uc帏|̥7=7>򛏹𪯹8<;<{qm,m7f,vn͢Ʊr.v>zgyvnbYl7f,f9w~l/t{^6:,]v~ZR>9vy)NRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*~佷xo '{=3{=8 io9R?9y\7|!NRTv<~W?qџ%˃ꍯvgSOm%|#.|ߺ9ttpW>nsӿvg?#u;#zؗsotnu\7{ѻnvڃ߿7C'ەJRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*Jĉf̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f̘3cf̌13f?`o۹;]wI}':;O\qqKozo|7sU_sǝ9:pxwx#nYNnbYl7f,Eۍc?]쬏}rƋv*JR;qr^?}=R_?*~e7wOt<\楯x?ۯ׼x%yK泽/?7׾wy/vn'Wy~?x˼o׾ݏy`pU벵.[벵.[벵.[պpoՉ9kek]ek]ek]ek]UO=y`pU벵.[벵.[벵.[պpoՉ9kek]ek]ek]ek]UO=y`pU벵.[벵.[벵.[պpoՉ9kek]ek]ek]ek]UO=箻rw;yNwy;ӽK_u]U*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRTvW/y湯ycw`W*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JR|111111111111111111111111111111111111111111111111111111111111111111111111111111111W_p8S~{Ã^qSz{yw}]wǣ<}-M}]wǣ<}-My`pU벵.[벵.[벵.[պpoՉ9kek]ek]ek]ek]UO=O{{#xpӻow`;z]7*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*]灃}]wǣ<}-M9|s}??vY[s ^xEwơ7_;ε_x ^xҰ=~Mso /ook߹ n|ؕK Xw~;n8Zk_]۾~!*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*]灃}]wǣ<}-M[W~}}.`;?3_k3O}:~|} |S>ˏX*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*]灃}]wǣ<}-M'G}!^?o}+nw~/ꎓ熛6_|W]v]?q?|3cu }}>nC#>w/|v_??'}|ϻvo||'~_2nk|?v;;Ǘ{ѡyp87nxG?nܸG~G| ,}'N? n^Oп|E濞C?I_}x쯻;pk___G[>x?sk|ÿҵ أ_9omg#?q }G>tWo'+>]px?#;?_<>{ׇ?bΛm>şr%7ыopM|G/:C_W9~zoع|n~g9xûc_~c~#~aߺz_~w*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*]灃}]wǣ<}-M}~~o]o [_^e3}؝s;3n[ #U }>c?;pk_=w|G>Q_]v7ϝ??.\~? wg-W)tqW'KY.7nZ/v9+/қ]^|nC?W+ks}s Ϲr mҏϽwߺk_M _*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*]灃}]wǣ<}-MO׿?3y]~g͛<_=KcWO}ܯ?Ue~>{ο>_uwſy~ǻ7on| >{{}\_>ӟ>yoz?O|߁#{+{cG}uxke?'ǿp=;>桧^uqɏ?O<_~?1{_O򣮬_oׯ?/)G,-__/JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*ny`sOy+z >{O]vK}O_pc9'O_p˩gEG_uwt }~^_g-˗>kwp?=?_uo9|?竽޺e?'|_xcWoণeҟKoʗq}WO|?i~/?.c|?݋~z_?n}+:>7/~7||m_,cJRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*.nW<|ԓEwλsNSx勎ypؼ2=e{պlֺlֺlֺl..?nu{N~uZuZuZuZe{g8::t8#p {+8</?7շ}o~_?ofgƟ|ٯ}yw}KwV_1|]`+_Ǭm_}Y*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*]灃}]wǣ<}-M o^^wVG칹w<3&޹~xhukc7Qozk߼nzãnU*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRTvx_sox+SO^r};G9y[N=ŗ/:>y`pU벵.[벵.[벵.[պpoՉ9kek]ek]ek]ek]UO=myN7cJRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*.nW<|ԓEwλsNSx勎ypؼ2=e{պlֺlֺlֺl..?nu{N~uZuZuZuZe{g8::t8#ׯ_>'OtI'OtI'OtI7o_[~ȹ8>>VT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRr8vn)?CϽgN=yɽ_t z;= n9_h:+3OXWֺlֺlֺlVsnV'ׯYuZuZuZuZW=}Cp||RT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*JRT*Jx_sox+SO^r};G9y[N=ŗ/:>y`pU벵.[벵.[벵.[պpoՉ9kek]ek]ek]ek]UO=NN`waa$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$;C߻awYtsn? nyvNό>]ݴgƵ[zĕN`3{ƶ,ٵŮ-vmk][bZgΜvuyp&/^\k][bصŮ-vm-K>SupZu &1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&q~~i Ȣ;sEXp˳s>w{fg7:=3rc'',WupZٸ3eɮ-vmk][bH:s֯s̓7y][bصŮ-vmkmY\^::8uw{fg7:=3rc'',WupZٸ3eɮ-vmk][bH:s֯s̓7y][bصŮ-vmkmY\^::8uo~w} >ڵ]vk.w޽{ݾ}?'wt:'z×Cn=g|`x3nuM{f\NN\YN6qgl˒][bصŮ-vmui7_7oUصŮ-vmk][b۲sWOo|׷ɛg[r[z#>O_ι//z<=.:-vC}G?v{wKgmy_lmO<eƽ;~#?{}}`޽Iߘ,a?pߺ;n3??_׮߾|Bkr:oַݴm'kGwszu_}pgJo.,,dQ]y[~sȗ?pO_;Ƀox6'3~M?v3s'x|wuoY_=g21ILb&76w6윓$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1sNnvGq-[3=ϸqi7q햃;9qe::-Kvmk][bصE֙3ݰ~kܼɋWbصŮ-vmk][l˒ii `۶^r%>~+_>+s}߫ڶ]fw`u|ܜM3Vr-{^Pַܛz_/|է_??6߿wQo5n~.>z_ _h< x__#V떾de7o{̟~oW^g/<~cp~Sv۽7{m?#/9.wotz\Z8n/\y?sÿ7Sw=;mw\WoG~+]o-m;?zz=|W?-~+/zV{z;}ݾǞ|ܟ|G> j]~SY'>;rpx^viMo%/~mv{ťy oa.,,dQ]y?{~~_~_>/\lnO^s/s7m+mq}қ6?sf|{+_]~xdbL}˭o;wzbvIb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb9up{7l;#8|z`-މgܸ봛̸vA\ilf}ؖ%صŮ-vmk]["]̙nX5nŋvmk][bصŮ-esyyNam[/x Z_y?я~ԧ~Zնm?5k\]]Wo?'OXSN7eK^C{W1FO\z.{Lt1ozg^|6oy_{gsW_>#_i֟5oz6X{{{_ͣy53'|W}W=6?;}ngޟ_ߟzdw|VW0ڃ &19{uW^O>o~q7}c}nfwye_uow=;wK~}c^ٵz %zC~Wo_vfv$&187[w6윓$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1sNnvGq-[3=ϸqi7q햃;9qe::-Kvmk][bصE֙3ݰ~kܼɋWbصŮ-vmk][l˒ii `۶^r%>^{Ӫm?a׬Y}ꪀ0-_x.xK SN7eK^C{W1^Qg{G}wk?fɡ]|^oxyן~?uȷ^'ꧯkƫ}igi֟~e͏=gY^l򶻶~\|;]Yyx]iipxW\yW_c[[o};CuX^|Ƕ\XX0ɬ٣:9}k'L&9ZW];=> |Ǎ/=z17=Ϋ}q|^~[|L&&1Ĺٷܺy'f$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1IsZwö<~hѭx}ƍNiόkɉ+if6mYk][bصŮ-ҵΜ9\M^jصŮ-vmk][b[|n>NN`۶K.'ꫯVUUUUm[?f>WWWnoꭉ˜k]U@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@o}Ͻz| ]~z㘿vwòu=q]|}{eo<ƣsow| l/M~cupy=W:g>?l{ Btxgq gkƯlͥ:>}y^7wO)V7?ey?rݵ e#S49krӓ/k<Ͼk>~:qi~~ w[nF;m_q:-K?`YG]wudsy76ʱy'qk'L&>_5~߼_xܯ<዇Ϯw7zݝ?3Μz~ïs&d1uyh$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1IsZwö<~hѭx}ƍNiόkɉ+if6mYk][bصŮ-ҵΜ9\M^jصŮ-vmk][b[|n>NN`۶K.׿ԧsyytt:u:z!YUa{5]}{ځCz{?Ǽy\g֡O׮7:a6òug _.ɗNe ^xf߼K~sK߼bۃ08oO~~Swxgεs~=tW~~s_+_GVs~|_|֮}̦V}qyý[~i߫??O{ō{KoWO[;·x޲_;~I?w{fg7:=3rc'',WupZٸ3eɮ-vmk][bH:s֯s̓7y][bصŮ-vmkmY\^::8ul֏}c>#w|ď|#~##>!?閜z.} >|t|ϻeݵ=.:?i~wN͸xY'=¹"= 6z y Sg̬ ..{vέ9d# t_\pn~,mf][zߜzOxYnɬ_(Bܜ /.87hK/ `{~'Oxi-]/]i>B|?g'ɼ+6Xޟԉ=yz֥Lf|ݻ.?ś}7=uǎi[<;c3sʷ'8i_%zo_ٳ9[:8S'՗zŗ}ػILbϞ~^|_zɗ^|ї^1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1IL:8pEw>Cn=g|`x3nuM{f\NN\YN6qgl˒][bصŮ-vmui7_7oUصŮ-vmk][b۲sCn=g|`x3nuM{f\NN\YN6qgl˒][bصŮ-vmui7_7oUصŮ-vmk][b۲sluBP=f}i/|y%w`W~Gt}™WznyYO`'Yqvvb$&1ILb摽 x*$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1sNnvGq-[3=ϸqi7q햃;9qe::-Kvmk][bصE֙3ݰ~kܼɋWbصŮ-vmk][l˒ii `NSWWW]]]uuuUWWW]]]uuuՕkB0]veeip:ʊj# ‚333&1ILb$&1ILb8un~yىILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbęݰ;,9Zt<;{'޿g{vqn3-=vrruZu=c[bصŮ-vmkt3gNa:]ݴgƵ[zĕN`3{ƶ,ٵŮ-vmk][bZgΜvuyp&/^\k][bصŮ-vm-K>SupZupue>@UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUeup{7l;#8|z`-މgܸ봛̸vA\ilf}ؖ%صŮ-vmk]["]̙nX5nŋvmk][bصŮ-esyyN," `}mydϹТ[,9;=3޳wvӞn9豓W:8lܿ۲dصŮ-vmk][k9s ׹͛xqծ-vmk][bصŶ,}./OiՕeUUϟ? '??q/2/2/2/2?/~ѧz?Ϫ?GUUUUUUUUUUUUUUUU?Ӫ" `=}ovm `0 Co=NnvGq-[3=ϸqi7q햃;9qe::-Kvmk][bصE֙3ݰ~kܼɋWbصŮ-vmk][l˒ii\]YV>;{ȑ#>ڵ]vk.w޽{ݾ}WTUU_&۾q~e~JٓSΝ\?/gϿgUUUUUUUUUUUUU[qYUUUUUUUUUUUUUU;¨++KOSϿ_TUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUWVV i?\W9:'';̋m DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DQL'cȊ{7{z}[{>k_gg0|bf,]mg-.LL'cinw3 }g;CЛٵӊ,yjG6 }g;Cww^ܴt26M'cѣG֭[Ot^xc;%K#X~R/cxѿ=?w } ]x=W}g=#f+W^g^wQef۬\=O<З_g^ϛݵ:=Q=Oܵ5+wדg_v?~Enǟk;^nk--Skbݢo,..J"t <]3ў;>?r]n㻥h{s?bq~{>}wNʛb=eWZ~ï IDATn4DI?Ň_whY'gC1J$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$1t26wG^ܷe7=nzv֪ 3_'vZaҵ/ٶ}t26+6> }g;Cw3 ];X̒׬vaCw3 }g;}7M-,LM'ct2vxq=zs;v옟~F{w%K# =t_ԟoٷpمs3+O v{k{ngssƝ>_/u7{|V_gz+w:nZg'gXo/7>[p5བྷݰ>+El5ૅ9-;g܆-ozƿo.!7پwzs\xͯ{^Ws79?_u~>=Z>t?MOn~.Xqnz ϧDk7{gm|1tz巼-.lO}_#}Y~t>7ڣ.=,+n ;O;狼upc㯜{꾇8;!HId46N#{wμ;cH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$Hb4dl<Yqf[o~wog {Uf\~OzÌk_mŅdl:=W6m|^w3 }g;z3vZ|%7YȑÆ3 }g;Cwnދ6ZXNƦd8z?c=3?ٿ˿8_}㎳d~;8v7Mݶ} o^@3.6{ϸnqUWzh˧f?xed&lwџsO.enj-]op;tSwu:gJ7+W/68=q]_v_]jC9=]s~?ye2{h_-?;v~/}ѽ˜UgY}exEI$cCם}_~˖'+\Oڵѹ߿K336~V=dgh6]S~{y';ʃOow+cI$DFc\vR>DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DQL'cȊ{7{z}[{>k_gg0|bf,]mg-.LL'cinw3 }g;CЛٵӊ,yjG6 }g;Cww^ܴt26M'cѣG{1gy_|ћowޱn:;Β%K~ؑO\}E~〿|/v rE=Ѽ} ]x=g\wRlGos-O^yV/K_nxW.sƷ}Ggsq֙X}FQ+ԛ~r66}W'Eg┋W{?snT_Z2gy>g9sG9ws.ν9 X\\D26>tzlyW.Ny;KF\`X̊;ohqT2+zև=~/맧Osg $hdֳwFH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"(hdŽ=~l=-ݽy/qӳVmq]V> 3}ɶ&dl\ٴy}7o;Cw3dieܼf#Gw3 }g;Cy/nhaaj:NƦË ѣ?x=N; }㎳d~;8vOf>邥hfzefם>\{SFWյ<;.: b/>zy>eݻ} =:z>x#y3};sW~{>xʥl_,{ wq?.;Gx}GںۭX>)t;tϗ_x \%_^ꙏ`7֯u͍|>;a;߷gFKZa3}w?{ѩכ;2g͹K=sGn=BycN,..J"t =[<+]qOnKFog{}¾m[půO;蘭{~oԅ7>ýno3{ I"[9g-uߦx4DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DIF1G#+W{`m}ajÌVotKm01M'cʦyCw3 }'CofN+/59rw3 }g;CN{qF St26^\Gu{ꩧ|ߵw^,,,XXXuV_kK,qcG+l=r 1>vOOsIgjԟ;;2kWzxuݝV}ں;Z1鷖'4gyG/z8g9?vg9ӝzvGq2?Ώ-y EIFwɉ?K/DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DQL'cȊ{7{z}[{>k_gg0|bf,]mg-.LL'cinw3 }g;CЛٵӊ,yjG6 }g;Cww^ܴt26M'cѣG};CͿ7;w77o=ʸ|}|/gnsfkF:8t͋G_ƓÎc85v_el2{pS:W㑅#u ǾѡEgGvl};`=,8>cvn8\z#*_xrQak8αM8UQ/q̗ƓEG>cvnY1kv/s̗ξݳsha&Ck{v`1%>'8+m|w۽O273@7H"As3tQoo nCFqp߬O>>/C$D~;>Gnx|錃}$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$hx4yepߖ޼Y6̸~.+iK׾dY t2{l7 }g;Cw2fvb2Kn^ڑ# }g;Cw3ݼ7m05M'cp1s77,Ybɒ%,Ybɒ%,Ybɒ%տW{=.no; 8f}qQCX~;y˗#=^z+.|K,..:u[|͞FF$F$Hb4IFֺyN=o<FH"hd4"$H"hd4FFh$$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$b:FVܻ#۲ݛY7=;kՆׯe;0cڗl>kqab:NvϕMw3 }g;CN̮V,_fkV;r䰡 }g;Cw3⦍dl:;Þz)7pkֵ^ku׺k]{ncǎVy/~>~Uv@L~oq߆W}p,..Jb4L&$H"$H"$HzsontÚ_ƧedH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$b:FVܻ#۲ݛY7=;kՆׯe;0cڗl>kqab:NvϕMw3 }g;CN̮V,_fkV;r䰡 }g;Cw3⦍dl:;`qqQI$DI$DI$DI$1O,,.Z\\0I$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DIF#x4yepߖ޼Y6̸~.+iK׾dY t2{l7 }g;Cw2fvb2Kn^ڑ# }g;Cw3ݼ7m05M'c‚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚GL&ut]:]Nuut]:]Nuut]:]Nuut]:]Nuut]:]Nuut]:]Nuut]:]Nuut]:]Nuut]:]Nuut]:]Nu3 dl<Yqf[o~wog {Uf\~OzÌk_mŅdl:=W6m|^w3 }g;z3vZ|%7YȑÆ3 }g;Cwnދ6ZXNƦdl2"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$Hb4ٷoRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTw^x4yepߖ޼Y6̸~.+iK׾dY t2{l7 }g;Cw2fvb2Kn^ڑ# }g;Cw3ݼ7m05M'cdkqab:NvϕMw3 }g;CN̮V,_fkV;r䰡 }g;Cw3⦍dl:ǒHbΝ*7p N8'pN8 'N#DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DcYA>nρyI$DI$DI$D22n{yݡDI$DI$DI$DIFOβoq76N$DI$DI$DI#5;߻ 6FH"$H"$H"$H"$H"$H"$Hb^vCC$DI$DI$D=0/$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$ۧT{m~'ͷ޳fURUJU*UTRUfk{|̥g/u{RUJU*UTR5mo/zwm)UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UT{Nƣn+=w}־MZawYN7X%۶Z\NƦseݼ }g;Cw7k˗YrՎ9l;Cw3 }潸idl:N&$OO^u\po~O~?o{K,fD26|g~x'|DT?ySwarIN:ξj]?I"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$z^~%сϬocdb:.,X\\0"Ʀ -L Gyen~eta⢅(DI$#t`aq‚xd<}矾x46.X\\`2ƦӉQ"hl2%\zmbd<.,N,..FF‚E(LSE ӉdbaqxI$Dta⢅d;|sH¢E Ӊ(tj:]xđ'n8g'e`H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$طoR5ggY~ƹ~^yay҇{ٳ={ݻ޽{잛UUn{w{{w^i߿؋5{{ٻwYUTc+^}ND'~jL*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*Ue=hdŽ=~l=-ݽy/qӳVmq]V> 3}ɶ&dl\ٴy}7o;Cw3dieܼf#Gw3 }g;Cy/nhaaj:NƦx,}߰n:'x#Gxmڴɱc%K>|Xذ <|d:5LG;s/x n*>3%H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"K}xp{ʻ57y{s ~nvGqpnwu=Oup__u[١o{-5|%3I$?>ޣM\]࣭8k}Ѝo?b]^`ǯz5?2 ގC1ž[]o|+_ۻ=7Yyl=Э/u;7r+ ^q[]n]?7o4$H~_\և~wOtη7kJ?ns>7gm#.V.+?⻧]S(DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI۷OUW-;,kyٟ^~onw7~vj^~g5kvSl5W\׮v-w{r+xA/n/}'gK]y-6fgURUo{c}٧~^QfTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UT{Nƣn+=w}־MZawYN7X%۶Z\NƦseݼ }g;Cw7k˗YrՎ9l;Cw3 }潸idl:N&$o|c=Ow1vG1qgɒ%nFD26?:ۣ}C]o4NǺ7_랲g46J$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DQw7p;:lO?oZyNwkw-.9?0+?p2:~|[{ǭ.>T|5&D22gzϞR'+o*UJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTRU޽{L'cȊ{7{z}[{>k_gg0|bf,]mg-.LL'cinw3 }g;CЛٵӊ,yjG6 }g;Cww^ܴt26M'cX}7sgz7??SO=wqYdoÇ% p??/|xuI-(;qٙ~g}1:h=+lŃSD22w{OWOƣ.8}h:zw{>p)'7͏;]{ƅ}ctjH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$طoR5ggZvY|EF\~~W/N6o ]{nzk[v{$-sOoܜRUfĆ+G;TRUJU*UTRUJU*UTRUJU*UTRUJU*UTRUJU*UTwx4yepߖ޼Y6̸~.+iK׾dY t2{l7 }g;Cw2fvb2Kn^ڑ# }g;Cw3ݼ7m05M'cde'wy̍-L=utf?: 5o< E^̭Ol}ӝS|q3(MGK,Zvw\u_Wq`??~8I'S۟:W]M]}jo>dHF/]7&!矾c~ӗyxw;U>}<q˭yE¼?<ܧF F$Wܷ:G~tJ/;?](_^Oq)7?='x=+N;ï}$DI$DIታe'j/_]]eWWuuUO]}}>7{RT2hD*QFE1DH 3"d+oHw^~S) ~̹;C\}+6Z}>/<{3Oo_SSNvW.W/,((( &W<5X(E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)Ż4Sq}nqӋnq'7l}okyk6?e+լN@}cnw3 }g;CЛ߷׺֚iFGw3 }g;C%OnfyyfVfujVt*}u׾Oܜ믿$a%|v-2JbL<&ww?v奾o>{㶧epWGc"n웼r}^s.v3oyY}mK?Otv{ݻ | .9]$f<]Tƻwz[~qug;}_=}Gw̦{-/npw)1nⅧsߢ\uWm^yθf5řt{{o_tO]y-XM6yحN%DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$q!0gǏ|ѣGXYY/ſ077믷*djxe9"}Hbо?}ԓ}_q=qDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$Qyn{YŶ|ݶnr 90]\]}}&cmIS~I>xp;{[~#ȏ9Te};hL$Sqۮ8?vɾS\qV{½֜wחxN҉N:4g5?◯Y5f_qD2M۟~@}.>w]KSqo~$'xϽʣ;^/˗?]Ӻ%O{LgD2w=[\S|'9xm/'O5]~/|$'Ug'o\/?~n4&H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"C)( ϸs&_z?݅_:׃v?/?mߟv3?}ޗNϹ_S{6] 'sN<]}O_pۺ/Nr.[RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRw=hVhݝ;ܢ=⮧ݾOt# n:oÃ߲ƭl~= VYթɁbݒ }g;Cw7ouW5wӦ]5 }g;CwwKܾ̬NԬNT}so˿/ҿ޿ڧ>)sssnf+++H"/[%D:N;_{ޅCH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$2oz[wә--yAg4fޡ<cĮW]<'~?p./h޷^۹9~/$ٸ߭߾ w=d$c,X)K ]v|͛{ۻxoil~-mv.,H"dpA&R"/-n;wN9(Ò|qN;49#2>>$H;wekpH72tͿ?V1dp~i73_O, K&;I$x^!H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$:y{m?OO7k}J)wNoPzy_ܳ}3f|P}zyo~3>?w(((((((((((((((((((((((((((((((((((((((((((x݃fuj:ݹý-#zz;A7>6<-{m:o޳`eթY(o{L-w3 }g;zZwZs7mUCw3 }g;},/ԬNTN%1 nOɧ>)sss͙377gnn__+q4&HbG8јH"djyG龧}0[6Gc"d4$8hGi7yã]bHH"$2qD2QI$q4q%8D8H"hGI$DhG8QIh188q4$q4&H"hG8J"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HСCyqOY[,,,XXXPJbaaA) ;nql\'2|M,XXXPJQJQ,,,XXXPRRRRR ,,,((((((((((((((((((((((((((((((((((((((((((((x݃fuj:ݹý-#zz;A7>6<-{m:o޳`eթY(o{L-w3 }g;zZwZs7mUCw3 }g;},/ԬNTN%Ç}ݮJ]v.e].seˬ[SO={I$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DTNc$DI$DI$Dd]w?CKH"$H"$H"d4͢g_ݣH"$H"$Hb_?ۇzI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$q! L8^{v^ַ'~`{ЬNMѺ;wEw?{]O/}!8GܰuކYe[{,W:5Sm%Cw3 }'Co~^ZkM=j;Cw3 }<}YթYө$UVWWZ]]juuʊZ$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HFٲ˳j#$H"$H"$H"itDI$DI$DI$1S++g8FI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$q!J)J)J)J)J)J)J)J)J)J)J)J)J)J)L|]Ɂx݃fuj:ݹý-#zz;A7>6<-{m:o޳`eթY(o{L-w3 }g;zZwZs7mUCw3 }g;},/ԬNԬNZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ-..:pdb2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&8Cfuj:ݹý-#zz;A7>6<-{m:o޳`eթY(o{L-w3 }g;zZwZs7mUCw3 }g;},/ԬNʲ֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚X^^6 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 11Sq}nqӋnq'7l}okyk6?e+լN@}cnw3 }g;CЛ߷׺֚iFGw3 }g;C%OnfyyfVfujVVWH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HbcVhݝ;ܢ=⮧ݾOt# n:oÃ߲ƭl~= VYթɁbݒ }g;Cw7ouW5wӦ]5 }g;CwwKܾ̬NԬN,\{/?Ot':x>;=C>#4>رOh?G4hC+G;H"$q4&2qDI$DI$DI$0t>xɐH"$H"$H"$t:I$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$8ƬNMѺ;wEw?{]O/}!8GܰuކYe[{,W:5Sm%Cw3 }'Co~^ZkM=j;Cw3 }<}YթYZ]Y5W_}k3<e<xtKc?x0x>-뮾ˡOX=ӭW|՗O܋N5AgH"dɁ:-طH"$H"$H"q,~ڋo&H"$H"$Hb㽅xm $H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$ǘթ8Zw>gE8dȂ>q5{ςjVfujrؾ1}d;Cw3dkUkݴiGW }g;Cw3ݒ'o<3S:5S+ы/ .N>d'|/~/'WennΏcЎ;_'Ӝu֙:{'zq'yÍg|r>K6{Kv%?;n{UW֜сc۵NYw pm&h|=a+++Hj_gd׋q}O88,/f˖WV,/QILʊe3:8 /8֙+tDI$DƩ._񽋒H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"qYuwps~^tC6?qЍ,a ~^[),XYfujV&wK3 }g;CN]M6:ztw3 }g;CN-yr63:5S: ?N8䓭z饗رCk ٳǿWܜ[noꌋ=9`~=ӉOXxeK/^||2jum |4qߏ\w~У哖|׭uc]a{jV~nh-?Ҿ%Msp\r&>g~u^珓^x'hchfcX`O)3x~v7me#oz\&vd#[=Ky[ ܵE>(~v7?o]G^x{'>%&ޝ>gq8w>b#MKwwly +++Hjkv>_{mwaZ6jk ]Oʍ믶_틻w^>~ѫOg;={A?H"d4nsNm{$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HbcVhݝ;ܢ=⮧ݾOt# n:oÃ߲ƭl~= VYթɁbݒ }g;Cw7ouW5wӦ]5 }g;CwwKܾ̬NԬN,Ǐ;k׿O6NA>Os-v-=uꪕ>8ț;<.>;v/+[\z\oxbs^]s/[\>ڲnYu7?,Mݳ~+|Kc.W]|?>ٕ_3|yeνr;Ю]rM&vɭ~x=a?-];a|c} z'G+]/z7.;ey[[]`Aؼt>w߱'/=wV{|p:|g^zϟp;~ʾyomO~񠭿 gÖ;Vӿ~w?^~qVVV$Luמs=󊧶K7{ ϟw9zҥ7t?vީWz'~s/qӭw yŏ2q%8-.[߅_DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DIcts{[tGwn|d [mxp[ڸuޚOٽgr5S:59Pl[2 }g;Cw2nڴѣ3 }g;Cwnɓ۷Y^թYթՕepq'pYgW^֭[A>Os-v-gG_t҅cGm77|.=;8  lq?ppu޵gb sɟ]ok;S4۩{֯uǶW~I:,w?MmgtBk6?!1{W\ឧXKϿсcǍG5RyzgޙXÇm_`^|GS,\Ǡ{緮<[=mw}3v kvQw>y߽W ;V&f~[,>hy+߶ q]|xg~ݍ?`țH"=?{O.>;zqԙ>_SŶ[~nkn ko};vީ:ӹ~W^Sw;o繷 ө$ =[N'gL$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$8ƬNMѺ;wEw?{]O/}!8GܰuކYe[{,W:5Sm%Cw3 }'Co~^ZkM=j;Cw3 }<}YթYZ]YǏw 'uY~_v}ӟ677[n[{{{ѣVW?t}έ?tjOOe'^ ~k\x?2UwCwixq.>雧\ft=׺cx}/~u}6QqXr+ˎB[kݵOotGl%}Wz?}ǭz/?Q/>puqxC.9or [o{ 8\[:sG0ņx>qKnvV/~_;7o\>Nl[}g:'9pMCñs/CVVV$Luמs=C^co|њ/7{e-|'}ӎ}{lau?CUck.·wwg~93~iN?r7$1} \q{ x>DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$D:5Gw=l~Ypyg6nfSvY\ԬNM۷= }g;Cw3 }{j6mt誡 }g;Cw3[mgfujVfujue?~ '} }ӟ9r hGr۱ @Cɦz<?z |b-.λ5~g߻!#X/{7?di;.8 q^gW]tnOwhӚ ʢc-ko==.;cӽqŅWx&r7|j/^R?{ie'{uu).oOź[8!1`6k>O裣G< ןƯnUdžݮ;{u^_fi6}L>cGt>8yVVV$Luמs=C^co|њwKFKsI۾\}G~7.vy㵇wEoZơA>]2J"^uu׺}so.bL$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$11Sq}nqӋnq'7l}okyk6?e+լN@}cnw3 }g;CЛ߷׺֚iFGw3 }g;C%OnfyyfVfujVVWǝp z!_,..Z]]uQ//9r hGٗyj 0EW~D=.G-n8rO_Q/l[~m ?sWOug:묯8KQ |>֓?sygWOwօkݷc{>wSO9wG?qxVW\cڹeN;i_;?_;K{'N篸% |襇n懌XkW\tWn9SNuEyz~cŦo^`k}☗e6?qy_s:}]zOG_]2?,z g}ξ/#o,:VxǷSIdNϾ=ϾهwS/}dty:"ginN◝~iownG\g>3oO}Sq@Ao;`q|۽7\` 5s̸[S8S8狝3 ʟ5c67> oKZ?v' 6]}y}<#G:^K4.Oe\vF7>h.طXq'rӕ|;8ob_v3[:d~߂~9:}߁}ť|t 2G ŋ3.޻»}e߼ACo{`̒_ꫯǭ7;G} >bګ^ݹ; uC$DI$D}zI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$8ƬNMKn~<[w-쇏<<<<VYթɁbݒ }g;Cw7ouW5wӦ]5 }g;CwwKܾ̬NԬN,֚[o٧>)sss͙377gnn__/xW߳u\#/\4k~vO⾟X٫V|_9:=Gs'!VVVL/l q4$qDI(M66|o3v6q%D8NG8J"$H"$QI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$8ƬN_ovڽkݻvٽkݻvٽkݻvٽ{__ou[U:5Sm%Cw3 }'Co~^ZkM=j;Cw3 }<}YթYZ]Yb˖-jk׮vZk׮vZk׮vZ__~'_7A7_tؽZյF{*-)[Q夈Y( A$'QPQ"CEAΝ;$y~ו<\s~'=9QUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUg|mO֝wz/qcgWUUUUUUUUUUUo|?gVٳgkR>xWMjY]'g\g.3|b>s1yܽqXsktScwnӴiN9M4dN9M4IN87wz9si2ɜ&si2ɜ&Ӵ龽{ZZVWjY=wvKUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUճg Xҭg={vղZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ReuY{x܃;r1\g.3|汣G|r.aͭղZVO=MӦ9M4dN9M4$9v;춻vi2ɜ&si2ɜ&sLӦqkkjY]-e֖jk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfkr4ML)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%)sv.kq{~C.3|b>s1;b>s1\g.3cG]Ú[euý{vMsi2ɜ&si2IrrqwlmwϙdN9M4kIDATdN9M4MղZVWVk.K˥rrt\\.].R0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"\_?jY]'g\g.3|b>s1yܽqXsktScwnӴiN9M4dN9M4IN87wz9si2ɜ&si2ɜ&Ӵ龽{ZZVWjY]* 'W>/B/B/B/B/Bz%;XJjZbZVK)B"`)BvtJI@@@@@@@@@@@@@@@&74|-s1yܽqXsktScwnӴiN9M4dN9M4IN87wz9si2ɜ&si2ɜ&Ӵ龽{ZZVWjY]*`/z>WGGGG'//ݵkJ@@;-A#>{jjY]-pݦiӜ&si2ɜ&si\;qov];s4dN9M4dN9Mi}{rղU ⋽}~/B/n۶͝;wz9<K?z_7?pG#37lkI~'~;= q>wlݲ\ZmuֳgϺZZ R-Ϟ=jjk˳~s3]R]mmyYVK ź\ZmugnZgWꡩZKuٳrYTW,Z-- W~}[Fjk֖gnYKjgϞukP\VV[={֭Һ\u[[+kA@@@R={֭e/=>yG9ERnmٳnP\VV[n=z;t- aD1zrյ~7'{iO>ӧ]_p}0"Or}}Ӟ>}S_~G~7o18:=5FaD8 k=؋/˯;aDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDv.kq{~C.3|b>s1Џ};ݱ~}x3[ }ꈏ?p;v??yp'~y3\z+>oz-_Ǟux' >|߾~mIsy~ʯzhN۽|v?Y%~%w=ZKwymgok?7q<% #?/<w׼=|jp׽e~=;-ip/cл~|]yoRFN>͗_v= _>Az֛荷'cpX;sOįӍn.W\ ǵ>_yUOaD8 k̉n!ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"OZV=x`!|b>s1\g;z'wrZ-]-eݳ4mdN9M4dN9Mk'cnk睞?Μ&si2ɜ&si24moVղZV R .G+P+K.q\R]z۶m;ܹsB5y/~9̛oz[k ye{ŧ轏, `-CO뮹ٙk|K_^o>t~Wy^v>O{٧{WWS g}?u~wz}wO^폾TP*'/iN?u}_yE׼ݿgo7RFN>͗_O'> G+]~R?p7bC{]vt7O?W^NZonoU~3W^wˆp|?}{/_FaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaD~ղ=O<\g.3|b>#>{jjY]-pݦiӜ&si2ɜ&si\;qov];s4dN9M4dN9Mi}{rղU\pї{3W|wx딏rxuKA(ovzr9_A/=9y8~ͱM>^y|5rk_羽3-[Ž8֕bIǽ˼+/Ͻ7؁G:[8W}C~%v?[壗N=rį^iqnllF:7_~>]uOzo9h}G؅˯;৾=_<ų~o}+/O/^W|{y>???}_pm#“ó>w>Uy|-#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#Ӯe-yq|v|b>s1\g.3ǎݻ5VKWjY=5{6M4dN9M4dNډ~yϟ3ɜ&si2ɜ&si2Mۻǭeue |Gݻw??)%wm6ϝ;' T⇮ߙ.]m\겼~u~$=#vgg^^_9o~x7c=׽鶇\=g?t{cZo{ܫ?xϝZxߍ[|C^˼죗K.sOj*'xOg9=7~<~mVkwNя|ď|R.3Gui|[>)~766#FO|Λ/{w'}Ws#O'w>xn_Sn zMy]?gʋ>G_K_Ë._|]iye׆0"aӞGa#賯CaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFiW<w>;b>s1\g.3cG]Ú[euý{vMsi2ɜ&si2IrrqwlmwϙdN9M4dN9M4MղZVWVSJ^p>#~WUUUU5.mwsj>_`XH>ySoOn:_K$=#vgg^^_9o~x7crkyuo!O1[Wl? ~xSz51^O|T, TWepoMO3>syU_[ w~b?=;z߼߇Lm_>?x3BqU_/xqSWke{c}|vWc7ѝsw?_lY@(t?=<4>+?杏ف_z77[KQSYZv޻ofK766#FO|Λ/{w'}Ws#'wz{ُ}j=G?uo#>^yg}ǾI>4;i?O<_aDxl^_уaDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaD~ղ=O<\g.3|b>#>{jjY]-pݦiӜ&si2ɜ&si\;qov];s4dN9M4dN9Mi}{rղU\p>[o_??[mwsj~7]vfw ~xɇ/WOKA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@eM'w:Uw\q:?crky'tJo}2/ۿ:}oyt?\y^a/ F.rt}K9y'o>-^zɥ{'?\#/ғ? 3E@(ozm?q\.] aD)O/i;sw^'|쥹'> ;˿s?^;_?O| >ul /\/}#^1 Fۯ_>x>'##ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#Ӯe-yq|v|b>s1\g.3ǎݻ5VKWjY=5{6M4dN9M4dNډ~yϟ3ɜ&si2ɜ&si2Mۻǭeue?nwww7߸m6nϞ=+ mIx' Htcm_y|۽}]5OkGy|evP]~{yW}#g6[<1I1uš}^ n2}Ot 1ͷ6s1\g.3ǎݻ5VKWjY=5{6M4dN9M4dNډ~yϟ3ɜ&si2ɜ&si2Mۻǭeueݹs?g/m۶m6mmܶm۶m//O?O\.,X@@@@RVkR"ѭ_{goH)R,`)RK)w=p7]u7gR,XJjBu/~Ɲ?{wV[Z,XJVkR>g>wߢ H)Rb)E@@@(ZZJbK)b)E@@@@JjRTkkZ-XJb)Z766>ć?-?ap#ˆ0"y7t|88 aD00 FaDF088: aDFaDFaDFaDFaDFaDFaDFaDFaDFaDFaDF]-Z<쐋|b>s1\g.3=⓻w9knղzj m6i2ɜ&si2ɜ&ɵݱfݵNϟ?gN9M4dN9M4d6ݷw[[+WjY]-Zs7p7p7p7p7p7p7t{5$ `)ZLo>}}wpG7|n>©TKɮW'<>Y nll080FaDFaDF'}_{/?!ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#ˆ0"#Ӯe-yq|v|b>s1\g.3ǎݻ5VKWjY=5{6M4dN9M4dNډ~yϟ3ɜ&si2ɜ&si2MۻǭeueR\V;wsy9ϝ;ss1\g.3ǎݻ5VKWjY=5{6M4dN9M4dNډ~yϟ3ɜ&si2ɜ&si2MۻǭeuղZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZku\zqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGqtGq W<w>;b>s1\g.3cG]Ú[euý{vMsi2ɜ&si2IrrqwlmwϙdN9M4dN9M4MղZVW깳[{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{U2lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6lٜ9gs9s6,jY]'g\g.3|b>s1yܽqXsktScwnӴiN9M4dN9M4IN87wz9si2ɜ&si2ɜ&Ӵ龽{ZZVWjY=wvKUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUճg  |*T5U=~Ʈ޻ڢ˶h TPD9{@" GDAB0 A u'|7ZpHf}]$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$h-V˅yIl:1N̦l:1N߷C;wXZZ-V˅Ck];aXcu0Xcu:x%W^ՖosQcu0Xcu0XuX]66VV˅ra\8`_O?iNsi9ӜviN;4'ر{N?DN?$8{xw'lnnJ"$ZkZ"iZkH"$H"$H"$j}}ݘH"$H"$H"$Қ֚֚"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$h-V˅yIl:1N̦l:1N߷C;wXZZ-V˅Ck];aXcu0Xcu:x%W^ՖosQcu0Xcu0XuX]66VV˅ra\8N<ꫯvUWy{ns{=cǎn6wwp]<<}Ipf{yv wN8Φq\:~=6=ю[nrcS}]zc>/ҿOY8 5օNNwܔDɺe7ƫ?'[l|<>|>/;לԭ-_':Y\/8N8/|[ygiK'~w~w@w{]m{WFt/_MNNlt$ekg/vcy_OrllV677mnlX.$X,W667mnlXY-ۧ?,+676,MI$Dk;#gڡ!Z"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"b\X.]>41N̦l:1N̦}{=sAra\8V޵S֍u0Xcu0X^r[ma6ǎ5Xcu0XcuPuecce\X-V˅SNq:mnnGqIo>m˖-nfp>Wu8>]亻w[N vr݅~;,=mpOo.o>U}O;. a_体>;s?图ݻ<}ppIrn'?m{h|m)8Kz\?13O{}?rw_7|o7qxrׯ<͛O=ۿ-߻w/O8^۶|ʫs?|Nqyם vom nGo;Io.ݾw __}+~?H`ssSr3{v=#o;~{䆯_o~/iZ4y~7^5n~G缏~џ߈nU~?YS[DIמoo7֦cI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DIrz/}ӏpK?}{}O\^>*v?}o?uz u3߹6>n{__zv]\uywNjyǾ?K#OܔD&9?G_m'syW{O:Пq٧?K}-_ߺ_<>EO~̅;nYw=SZDZaν2}l_k$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$h-V˅yIl:1N̦l:1N߷C;wXZZ-V˅Ck];aXcu0Xcu:x%W^ՖosQcu0Xcu0XuX]66VV˅ra\8zN9wuO}S}Yr?|Z}e7|38ylo>N;{Olq=//'̟%у9"yg=k_wZ_w'q{?]kjz֫/=3'^tdEV\coW\7=dXL|/a;X>sǾ_]>",[lq7ʙxpzjcQ'Nw|oxmx׾ou?I8a.FtkFW8;ot7/~bO?g\kjzo笳}wv;wXwU_|͏\r7KK}>!XW';]~G\{Mpmwkxu/\|68tåw?{W]EvLί_t߷}ऍϸㆭ= g^M^pS-x}g9묏?}ZklE~+:/)da9L\sni&\~}p?^Z~qY=ouw⨣]>h/{>3>Q%~$Zza/|b?pǮܛH$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$Z E<ԓ=fӉtb6M'fӉtb6ؿov6?hcZ. ֊ݻvú:`: cuKb-7lر:`:`ݻll jptsޝr).'@>[lq7 v'qY?j>p2~}8a.FtkFW8;o}c>6pϷg;_=k8m^g_w$ڻgf`pW.V/}/yš=z5Q[Ży?[J#.scfWn[ë{~l3?,מp9ro8[o+;";o`tׯpvq۾zU8/{s||;wx+sQ8i}.}lF߮N?֎«:?]?v)da9L\sni&\~}piyW%}~'rO_r?|vCwwv<~"3Wqc$⭵=~  G41N̦l:1N̦}{=sAra\8V޵S֍u0Xcu0X^r[ma6ǎ5Xcu0XcuPuecce\X-V˅SNq}Ї>7zw;yO<-[c3W}G$X<#_8\㞺;#/O~Lg_-<Gg>_=7~l9y|m;\fUlwO;n~['ܔDr/:w<~q˿t']KIÿw[I|?wVϼټ1{M[?g~>~*I"6G~Ϝ3NwY#3C"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$Zrahv=gztl:1N̦l:1N̦mV˅rZ{NuX7Xcu0XcdxɕWl;vXcu0Xcu0A={ra\X-nn޻r]w7ooolٲm|[6;鍵fyk8|W=Ϸ΅[ZZDkMK$DkMKsv}K/sZ,ZkHfXX,ZkH"$HXX,I"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$h-V˅yIl:1N̦l:1N߷C;wXZZ-V˅Ck];aXcu0Xcu:x%W^ՖosQcu0Xcu0XuX]66VV˅ra\8`ZO_K/ԥ^K/u饗K]z饮*O<;8ql~l5׸gud.6=#/׾榻ܔDҴִI$DI$DI$Tݾsr77ӴDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DkZ.,ͮSONM'fӉtb6M'fӉtbڹjZ.Z+vک:`:`/򊭶ܰ}cǎ`:`:úwﲱZ. H"$H"$H"$H"Xشa\H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"֚rahv=gztl:1N̦l:1N̦mV˅rZ{NuX7Xcu0XcdxɕWl;vXcu0Xcu0A={ra\X-677ޭV+0j\4|3O=i:c6M'fӉtb6M'fӉzhk6VKjphؽk:`:`2V+rm;j:`:޽jZ. BkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkͫb>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>|n>RWZ.,ͮSONM'fӉtb6M'fӉtbڹjZ.Z+vک:`:`/򊭶ܰ}cǎ`:`:úwﲱZ. rDI,KjZV+jZ,KBI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR#G[-f׃x'M'{̦l:1N̦l:^am~ji\X-wTucu0Xcu0A\yV[nؾͱcGu0Xcu0XcaûwXY-V˅raXH"+}vꩧ:SzN=TzSO=G?QwyzKI$DkMkMkMkMK$MkMkMkMkMkMI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$ZDkMI$DI$DI$DɨH"$H"$H"$H"$Ʊc"$H"$H"$H"$Ѱ7x0H"$H"$H"$H"$H"$H"$H"$ZkH"$H"$H"$hI"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$^y\)E)syQJQJQJQJQJQJQJQJQJQJQJQJQJQK,E)E)E)E)E)E)E)E)E)E)|>7s|>WJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJqarzhZI"o {سy{L~Moqľ={CЯI"$H"$H"$H"$H"$H"$H"ac$DI$DI$D.s5H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"W^yE)E)E)L}/de@+((((((((((.嗦=qzy/,J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)9l\X.]>41N̦l:1N̦}{=sAra\8V޵S֍u0Xcu0X^r[ma6ǎ5Xcu0XcuPuecce\X-V˅b!ZO |C}?A}e۷owQI$ v?8ӝqƅgw#qg8Ӽ7zCYh$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$HbѪ/nu~amZmشicZ$ذicذpף\,شicI$D,+ՆMfѪc?v'gXXj͍ EjIZ-DҬV'ŗÃƆƆ ִشicI\V677m˥M+I$D-66mnnX--q{\ru-X6IƦM"ij1\%ye -DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$+((e͡s_>]?wwÇ;|#G^ʑ͕RR:ȑW9rÇ:4#?}ogZ[;tؑW^qaJ)J)J)J)>K|tЇ|C)orR1/E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)ő# E<ԓ=fӉtb6M'fӉtb6ؿov6?hcZ. ֊ݻvú:`: cuKb-7lر:`:`ݻll j\,$Qk^/bssO?GuI0N_-[=zTڟ\vyaM[,ִDҴִ|瑗EDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$h՞G~~C/Y;lu?uk_<7Fo|gwJyE%G\z፾~~ﭽ5J"Y5Ow-7\oУb4y?j{C?5nsٟaeY+8V,Z|w鮸~w~~-_=OWrwfIGhuo}w~7wqoEI$nkݻ6{ym=ʛj>;?y}Z߽k_?v檋_~_צ%H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"W^yE)E)k[:Ƿw<=uw立+䊯lx~S}+vovzvZ}e]wGJ"Y_N~o74QI$_H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$Xj#?s5yY_<\>_vo7^Ob_;3_voY~h_7_{ѝ}y}-7osq}{$,lzGW}۾x/_z;S_s F|˟?3W||;04ozֶ~̩|?Ax}gYjZCW>]eTe9 (" (s F@D !yϾ&Q<ߜ{:?ivkuesovgZXr g^[WWOs]pn,/pk;<=|N_w~cx]/񓟺³]߸/_Ŀ Гmv%H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"C)(ejW>\w?S?/_ܺ6]r͓}.9T-_ŷ=՗r/b{\wZk.?iW[--eişwRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRgժUnGDR _w??|їooyձVL>5c}"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H":m{.:foY}xkqe?탹c󻮹x<[j/k|WO{~KN:ýjhmPIuu͏Y^K/uoC.:{-wΑnswsqowx~<7]E2X|o?б}NE9rdai.?BOO>R?ʣ78ҟ;;4[w3]vS Zi]%Y/>չ7co8vmygώ+ufFomhl玷=u`N=Ś6utξ#VWf$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"C)(ejW>\w?ӿE9焯Y7GoyoͭW`]>hns=s=_ky衇@>Yj[nѣG%T}z:x^:w{3]DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$Du]tF߲ m>ӿ|N9$'~=}5K$b׽^GOҏ~Go+=ۖSxIN9KK^G]s<ӮfM?2K$3׬|ntY7zWvYy󣹕:tϹwpy-~vݷMex`o_%Horp_u҅7y~ے3orUg|pGo̩'8ɗ?ˉ~xϼ4ԹμCfH"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$8tRR}u3<[\tm^ |߼SYZgzOlpczȡŮ]W^z_‹;_o|kկW/[[ZRJQJQJ4ھ>]r^[ZZRJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJQJqy53y-GL#d<2L#dHDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$Du]tF߲ ^u/]#oz w_LvƉy?ȻUmk߿e{.Hf}-Y ?=³nr5q`]{iy]{}~θÛ5}6V[]}l,^fO2k~̭c9NKyGvxϼCv?8}^ukժUnGDR oq{jے!Du>˯w}֙$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$?uk3/[#Wu 꺛e:쏜{IN>LUx.ڝyGa>~K9駟rrh%j1ޫ/'|gOv19!~&ۗ}9}wOț{d1?r _q߫{ I"Ym|6󹝯%}߶f~~8)'㉭͖v{wkq Z e?t e0K$3=iԋ~๷/t^[~|ũN7^oxtM~Ct}lfX~ߞџ5o=NI$b=߹?}[ߴe6彏dw(3S;ͯ{kxǻ}[Y]pO|d6$ep@w]bv!,6ob.3>on?X6Kgo Xw]fH"KFom7l߽0~t;^M6d^iټed]hȾ]`YI|tpmp$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"C)ew'۽ȭN~-6[n{.on~x^N =,zO6n| v &{'|}]b/>{&ydϾb|c{RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRDI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DL/9be17EI$DI$DI$Du>73I$DI$DI$DYr䈕lI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$ġC۷O)E)E)E)E)E)E)E)E)E)E)E)E)E)t<`tI)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E)E),ռlx)[l6m3L#d<2L#Ȯ;+żZ̫bnw3 }g;C۷g5ׯjmk;vw3 }g;CN-۴qżZ̫ż:zd#G$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DI$1b^̆guf6d<2L#d<2ڹs6]ge1WyZlܰ^-w3 }g;zVmcǎw3 }g;Ce6nWyWGSOuI'9䓝|N>d'|N:ɹk>4? @k}gh>8r$Hb6I",H"$H"$H"$ΐH"$H"$H"df6ff$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H",j^g6<[6G&xd2G&xd[>+żZ̫bnw3 }g;C۷g5ׯjmk;vw3 }g;CN-۴qżZ̫ż:zdtMz7nc=cy['_f|aGVVLI$D>ou_| m>"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$fX̫ySnlmGXYGw멗wZ|3ol?c޲{۫'~.>pÉ w#ϽnGnݿe;nXzxŇi|^_s;׭o:yf8r$jލ་ŷھC<~tMKܱ_Y>4~?Vw >?îw7Ql{q?^{+g3I$1Ł\Yj c;]w%6_?9p~7Yv򻟮vͺ3Ko>ʋt^7~_w]{޵.:b?_|֎x:{}nߝzC7߽/>]zk/O0utΙߟ{5`FšwwŅL{{zW.uM&߿ OMV]տg_nw]qR<>o^OWu=woC| '߾u{N.\'?eΧw \{Njoٓ\_p;΃|{n^?W_`퓻}iqI⋧~۽<ⱇW|Yȑ#Hy7.cwyg즫ps\+}|gy߼֛M?u >oeY$Yn8l8}`%H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$b1uf3Oٺehxd2G&xd2GvO.[̫ż?-6nX }g;Cw3 }{v[sjݶֱcG }g;Cw3ݲM7XYYX̫żZ̫GVǝp }Qs~E__}sUV뮻@;ӷ _x |z}Ov//%,+/Ӂa~/?r @~ߚ;s=sqy|n\ vx>[~eϯsޕ@/v6涫޵IW^x'W~}mOkk?FfW_{;_~wߨ81g|J|1v?;^cyf\Kn:?>>;#Ǐz[\ 3\ynwulغ+}3Ko>ʋt>?8r;#wOc^~N߻ \{6࢓Ѝݷaѓ3~iN9tׯ{qXЍ׸7Wن+/O}}N9TW9Vr]wvlOKwߺk_9^ .:7sw:pt}?z;}'Q/?C߻ GӬ{~~z̎'tmqϖ.[5+;G,@+~,;RK+.\g_oZ_?_;'yr'5T~ώ| ǼY+_kS`>}Ս㡷>_;?'-]nM﴿;a/8Ϗ׿w.?{vfy~lOLW9MMv~w\p<3#G$Tn]?ȕWm\ <{/ڸwZksY]\szwt7cٰ2zAo%rȐ$fؿ}vG:`6|`?p7QI$DI$DI$DI$DI$DI$DI$DI$DI$DI$DIfW:ᙧlݲxd<2L#d<2L#vMYY-b^7wˆ3 }g;CN޾=~Un[ر3 }g;Cwn٦,,b^-#+N8?}k駟}>[lVZ宻Ěi {Kz9=Lgmvg3_ҟ8t弫C۞Kc}օ.<_̻6__mq[3)߾vOlyVv89h9^pg`[nto̧Vc*Osx}gg|GDfs}+=ҟď}{Mlv$3䊓.=hyqҩ>4?`;OzÙǛ݋}i8\W{f3I$/uɧ:Sr>H"$H"$H"$H"$H"$H"$H"$H"$H"$H"$H",j^g6<[6G&xd2G&xd[>+żZ̫bnw3 }g;C۷g5ׯjmk;vw3 }g;CN-۴qżZ̫ż:zd?AxUڢdT9ɠ+r0mcD2`m,1q 2FZZZYmg>. L}]jݷw}o?Oɿ˿//˿Kݿw_6m;{ioIUUUk{x{uUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU?AN/}̏~Qg\xf'Uxf'ofe٥}}_Kg^wj㜯ti^9n='UUUu;oίܹw \SoY9YY7_'}mw= kÊ/>O>K>! `ϜO>/9I@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Zq>kZusϸǕ%W\Y^reyɕ%W\Y^}>!׆UYs>k]vNet*STF2:QCxunھmΝu*STF2:ѩNe޵b|֜ϚYB?~_|ӛMܴi6mrӦMnڴM67_?wzW~rO UUUUUUUUUSzC?zWy7zۯxn/~mݵ9UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUuccV]zz~߸:Z X[PZ~~wm+Nf֪6[kl HlZ|֜·qyi+K,/+K,/|tC .3|<waםTF2:ѩNet*LÇܴ}Vϝ;TF2:ѩNet*Shݽk95ٍoݏnٲ-[el-[ܲeg|'ӟ_x{~ʏ~˻wQUUUUUUUUUU?;;߼zK?! W_xԯ|V^_ZA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Zq>kZusϸǕ%W\Y^reyɕ%W\Y^}>!׆UYs>k]vNet*STF2:QCxunھmΝu*STF2:ѩNe޵b|֜ϚYBUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUՍ k9_lX8kM@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ZYs֪;~{=,/+K,/6ϜϚYZܵse\w*STF2:ѩ2Wsm[=wSTF2:ѩNet*e\w.s|֜Ϛ {{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{{n޻w{ޝR,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)R,XJb)RK)RdϚV3./qeyɕ%W\Y^reyɕ%W<xȵa||֜ϚG⮝;,STF2:ѩNez7^osgTF2:ѩNet*S-㺻wt;5|͚֜VkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZZkjZVkZkjU@@ZV+X+Z,XI@@@@@@@@@@@@@@@i*80YuϜYLX+R'N0ILb$&qHLb$&1ILb$fu#$&1ILb$&qapb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$?~9k՝?=W\Y^reyɕ%W\Y^rey莇\V]ggyt-ڹ2;ѩNet*STFy׹i;w֩Net*STF2:2{NYs>kgYkNg?Y:_x}y}y}y}o};vp> ȴ_}ܷ|㯭K3']=];yF*gN{ iݣ<> yKϟL Xk?˕@@@@@@@@@@@@ڪ<>ycbS=v#'Q@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'N$&ݷg+yp>_ݳ#Lb$&1ILb8dWOo'!1ILb$&1 W$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$?~9k՝?=W\Y^reyɕ%W\Y^rey莇\V]ggyt-ڹ2;ѩNet*STFy׹i;w֩Net*STF2:2{NYs>kgYkR;yj޷G_MozvBs:׼?o{~|{gV_;Y/8]z-ukE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@VK[nsk+c|bƆZڜ/nllϝ/n~p=6|pcc|ffs󅋍 76Zc?͟sl9/pcp֪69Ϭ TgU?~68|pXjbÍ l>w>_b>f.66\,涊6 766\g~/uѪ\,6p1Y+Bu6;/\l\[qUG-Vĉ&1Ys~oǎc?~Ǐytm0I\;zOx1;ѣ/^Ώ<~Ǐ`$>w~F/x?t~w<$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1Ǐs>kZusϸǕ%W\Y^reyɕ%W\Y^}>!׆UYs>k]vNet*STF2:QCxunھmΝu*STF2:ѩNe޵b|֜ϚYs֚;<x8}饗|Ғ[7m䭷ٳgtYyAj5<~{G|~3~[_K7t1_|G׻o[nG?k+>z׷ܺ+_89>}_|-{}om뗼=> i?pmn>w6~қ3,'V}/ꗾc޿oj'⣏lO> K?w/釾4䑗/~Żw>k9o~3~/yÏSWtxV<}yWuvz`uA_MAK>]_6n6YQЃ>֗ mzGҵR 'Lb#OzE~sO'?mx ޴>^W38|noxf`!.?x;OekŇ\YILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILǜϚVȃ,/ypeك+\YʲW=e/v<ڰb>s>kgͣkqqݩNet*STF2T\=|M۷mܹNet*STF2:ѩqݻvX̝ϚYs>kZy=%\_\|>Wf7m䭷ٳgtYyC~gά n&_:3w܎O0^u-.zO xi?Χۼ֯ۮҋkjNo|\)o}O]۟/OޭC_?vZx?[]e>O_yOݛo7 oc?3w=y[oWCcU|mok];߼{gw~_]~;o77|yWOw/[o^tfZKsWyǮ_|~?v?ścY:'~n7WW^zɲ~7m_p}vN/۷] o|ׇ+.G~t^g>-w}K~+6_7u[.񢫿o_90$êM7_tOCb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb?|֜~uuuuuuuuu~_uaYs>k]vNet*STF2:QCxunھmΝu*STF2:ѩNe޵b|֜ϚYs֚;</2_}Uoֿ?7i&oVϞ=+ 4SϺoo};>wxQo}_z;/ZxteJ^zz1~{=ro~/O]۟/[W^|؏O~\e7kʆ~nGΎ^uMY_Ⱦ=wكԏ}p/}kG_?O>w_q@*Bu1_ݱ|O;'a~pݍs]˯?}_\~Y~eeN=k<܏>C/[C:K'nۧKqo}jw蝗?`3//|~w땸$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbǏ95[;#kg9kMRws_~?o~O<~#UK)ovӦMz뭞={V@hN_sw>am͵c^l+~w^~^; ZxteJ^-^;]knN7c~WkmyC^~G}~߸;z}ϻ}翼G. Bs^O/_my~wyե7g}W[.}ݾ]o~7o~'3Vv_V?u]~x|u9oOث6\Ǿ.}_t6'vnźV?yM]XA@<~톏zW%7zU\?oݾ]?z.;fW{S- x yȓ^w~>[j6WR~0xx?>n}k'kwN7 ?ΝƆV=k~:+n,gyt-ڹ2;ѩNet*STFy׹i;w֩Net*STF2:2{NYs>kgYkR<{KTUUUU-7M6y뭷zY9zk!gZgO=J_y.?[rjU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V{~Nu^O_#߻koõp1;Ͽ\Ku7}үWZQ{{ë.{_[G_;';;;b]_7}O|no<9" T~6;zs؞GE[^_ۯ<3xWg:k];w;.叾'o +ZSϹӎÓ^En +/^1#x6^u>{Ns|;o3^o|ͲVĉ&1Y'û}臷zՖm>Q|ࡽ;/'/ѯ_%x}y~{|;]y ;%#>>W3$?/c_$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbǏ95[Ż|o{ϝ=b>2~u_Oԉ=p6w IL=K]~/%~oC&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1I<~YU; V5x1]ԉ=u_\=cX)\;kzQW kc.?9Rez+=netAWr'z#U@@'3J9O>NOY'zyWt]9O?8 qGwc.xaWcĬvO_=; ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb?|lNӟ |ꪟZ?rUG<}{;5ѵk˸TF2:ѩNet*Se*>_۶zY2:ѩNet*STF˸];],g95g 8M7|o}[ 7mMܴi6mrӦMnڴ7M/|>fkkf3[k֊Pe}~nMxjk Z Xkjk+O}{}}~˿䈵VkBl6fE=7~fZjkU@j֚U_?q>r׫OyzjVjU@j* Zs6ZfXk*`Zjk3gUkkfZ6lllZfHm֪'Npm8쓏|K~?}`aL68$&1 y{-]1>׎6$Úkkk6 &1ILba͵5$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1Ǐs>kwu?Zm6oy/Q?weupHLb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbǏ95[Ż|o;+/~ /_x3'_۶zY2:ѩNet*STF˸];],g95g Xku>ƆnllƆnll8j],.3kE@@@@@@@@@@@@6Zbp1Y+8qU$&1ILb$&1Ikwu7xw;{Vɣke\ӧ<}N{7s|<waםTF2:ѩNet*LÇܴ}Vϝ;TF2:ѩNet*Shݽk95|lZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[klZfk֚5[k$i_l6`ؐe  %^D IsASMI]8n m@ h\"wdm͙ݞ>}Omg2U]UY}9F<oTf_>$$! IHB$$! IHB$x9͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l66 ͆ffaٰll6l6?η~K,4O}˗/9֕uYf}n{oņO|/XX<+aO8PƁ2qe'+{*(@8PƁ2qe=o<|X"uFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFkeY(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(0Mf.?yZ|_M=8 n{O?xl?cE,^l㰧e(@8PƁ2Le_{Zqe(@8PƁ2Þ7>`YB,bú+41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41M41S~ϛ?y۷ox-n޺7xG?O?y*"xyWÞ2qe(@80OW^Uj=PƁ2qe(@80{xe E,c=pckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVrckX+Z9ʱVr%FfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkFfbX||ч-{{޻#{Oy*,E,^l㰧e(@8PƁ2Le_{Zqe(@8PƁ2Þ7>`YB,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX,1u.օúpXa]8 bX"/6xqSƁ2qe(@2c~믽J8PƁ2qe(@a,!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ŋ3>bqe(@8PƁ<}}kR2qe(@8PƁq,KE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"fkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚfkƚD,bX"E,4OLee(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁy*X"E,bXš2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@8PƁ2qe(@2y"E,bb=e(@8PƁ$wIDAT2q`*#O<|ګze(@8PƁ2q`bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"8ӟ?==============================G|Oy"E,bXL/Gp57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s57\s{s5_D,bX"f_3޽᝛knoۛknoۛknoۛknoۛknoۛknoۛknoۛknoۛknoۛknoۛknoۛknoۛknoۛknoۛknoG?w,1E,bb=e(@8PƁ2q`*#O<|ګze(@8PƁ2q`bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX">)?~pӯb{wv{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{v{w~}? {&E,ba|/v[nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;nGn/ya%E,ba?ᄀvݎw;nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;nG}vݎw;}>)̺X"/6xqSƁ2qe(@2c~믽J8PƁ2qe(@a,!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b}quwx%?}~M4O"E,?Waxz@j=PZz@j=PZz@j=PZz@j=PZz@j=PZz@j=PZz@j=PZzᰲRX"E, Zz@j=PZz@j=PZz@j=PZz@j=PZz@j=PZz@j=PZz@j=PZz=?o"xyWÞ2qe(@80OW^Uj=PƁ2qe(@80{xe E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXt-w7hZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFk5ZkhZFkOy*"E,x+.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.º.=蝷@,bX"/6x Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]Xׅu]_3?{ʱVbX<+aO8PƁ2qe'+{*(@8PƁ2qe=o<|X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ݖ˗/\.\.. ˅rrp\\.\.. ˅rrp\\.\.. ˅¥5Zp\\.\.Zk\.. ˅rrp\\.\.. ˅rrp\\.\.. ˅rrp\\.\.. ˅rrp\\.\.. ӯ8J,bg<|p8)@8PƁ2qSy1?x|^e(@8PƁ2q獇XX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E/~wxp\\.\.. ˅rrp\\.\.. ˅rrp\\.\.. oиrrp>Ǚrrp\\.\.. ˅rrp\\.\.. ˅rrp\\.\.. ˅rrp\\.\.. ˅rrՓS!E,b1υ{gO9V%fYb%fYb%fg3g Yb%fYb%fYb%fYb%fYb%fYb%fYb%fYb%fYb%fYb%fYb%fYb۷ߢE,bXxGE=,1K,1K,1K,1K,1K,1Lzcwqq, kz#~ÚJ!s)fYb%fYb%fYb%fYb%fYb%fYbú?ӯ8J,bg<|p8)@8PƁ2qSy1?x|^e(@8PƁ2q獇XX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E{;7|>s>9Ϝg3||>s>9Ϝg3||>s>9Ϝύv|'uؿ7ywW\.[<\Zkָ/r|i\.Zvp>9Ϝg3||>s>9Ϝg3||>s>9Ϝg3ǏB,bXb ϞrXW$&1ILbDw⭫r֛sy/6;,a]uaYLb,a]uaY²u]X$a]uaYLb%,1I̲%&1˲ $&1ILb$&1fn~Z"E,bSJb$&1ILb$&1ILb$ssC䝷k~/e rX:>}{g|g̾ɬKHLb$&1ILb$&1ILb$f]~<ZE,bb=e(@8PƁ2q`*#O<|ګze(@8PƁ2q`bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"v[~w7g3||>s>9Ϝg3||>s>9Ϝg3ю_w5Ο7-97[?˯kyw:k.~C>zǷ7I˅||>s>9Ϝg3||>s>9Ϝg3||>ZS!E,b1υ{_.!E,bX"g~|o{!}FYsg||],~o/OxDyw#w?住???z?.o/kg|G/^96_~swyݟ/?g;kƚfkƚfkƚfy*ܾ}MbX"x)~u ֌5cX3֌5cX3֌5cX3֌5cX3֌5cX3p+޻~]T kfS~/>~?'Oy\_=_|nϲhƚfkƚfkƚfkƚfkƚfkfgWk%ŋ3>bqe(@8PƁ<}}kR2qe(@8PƁq,KE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢm~_s:tz%KNN/9^r:tz%KNN/9^r:tz ?oW ?=}so;?|oλO_^GxϾzBl4Ohѕ{Ƿo};o>b |G7l=-Wǟ>eL~S}9}5uͯp{)%F '4OhՔ}ϰ=þg a3{}ϰ=þgx7@,bX"/6ϸf'}ϰ=þg a3{}ϰ=þg a3{}ϰ=þgl_|Σw-+u=pH'ow Ov|1~9 of1 =þg a3{}ϰ=þg a3{}ϰ=þg a3{}O><ZE,bb=e(@8PƁ2q`*#O<|ګze(@8PƁ2q`bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"v[~w9ua]ua]ua]ua]ua]ua]ua]ua]ua]ua]w<ͣ/9ԑ _?ww?.o{x>x+?W+?x`]ua]ua]ua]ua]ua]ua]ua]ua]ua]u3~2OX"<>xOInǾcw}߱;}Ǿ;} !]Lw=޹哟?%{C;2|λo@0|%~6Ls>~='xvg{GyOͻox;Q+Fݎi. ݎcw}߱;}Ǿmy7@,bX"/6xi*ݎ}߱;}Ǿcw}߱;}Ǿcw}߱;}Ǿxua a3yﳯg֏_}̇}~~r"}Ǿcw}߱;}Ǿcw}߱;}Ǿcw}1{>G<ZE,bb=e(@8PƁ2q`*#O<|ګze(@8PƁ2q`bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"v[~w9ILb$&1ILb$&1ILbea>t>T#Oow/O)sſ~,wu~1Rא$&1ILb$&1ILb$&1a>?!TE,bXsÞw;nG}vݎw;n7O?w>w>?/~z7gn{9!]/y'o=÷n([~'ܼc+!o?;=f^B;oq 8vݎw;nG}vݎw;v;~Mj=X"ŋ3޹f*w;nG}vݎw;nG}vݎw;nG=7C޾|fc|5o޾#!_u=c>s\_?vݎw;nG}vݎw;nG}vݎw;nǰWk%ŋ3>bqe(@8PƁ<}}kR2qe(@8PƁq,KE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢmgXšfkƚfkƚfkƚfkƚfKxxc޻sW&ѿC|2}?1Y ?mfkƚfkƚfkƚfkƚfkƚf>S!E,b1υ{ēǿbt-nKt-nKt-nK۲:nKoa?L;v]OE<~ww~-|Z¸o^|ÔPۯa¾۲o^|Ô#nK-yw[ݖnmv[ݖnmv[ݖnmmޤE,bX<㝛kJv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[vw:2aOww}o2ߓ5 w߲|wyF@t-nKt-nKt-nKt-nKt-nK۲;~Oy)ZE,bb=e(@8PƁ2q`*#O<|ګze(@8PƁ2q`bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"w۵ufjjޢRi }RlXcr9e.^~{ҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕ|^\\\\\\\\\\\\\\\\\\\\\T%\\d%I^_^_LJ^_^_L\\3JJUt%]IWҕt%k7~|ع;cr\˱s9v.ع;cr||\˱s|vrۅ˅o˱rrp9v]].ηع߾]8_q~s9v.η˅o]v.v/;cr\˱s9v.ع;cr\˱s|퍮+J+Y򑰸;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v}p||/˱s|o^|;]].o8_.|\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.yv/<͏nt%]IW.38`EXEXEXk_~퍰 O4]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWry 5k0a^üy 5k0a^üy 5k0a^üy 5k0a^üy 5k0a^üy 5k0a^üy 5k0a^üy 5k0y}t%]IWҕt%k'Ηoع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\}{not%]IWҕt%]ɺ헏X'Ǿq9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;cr\˱s9v.ع;c/<͏nt%]IW.38`EXEXEXk_~퍰 O4]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWr5ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubX'։ubyt%]IWҕt%k'^]8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c؞?pѕt%]IWҕt%2_>7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}/<͏nt%]IW.38`EXEXEXk_~퍰 O4]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWroǎt/|A :_t/|A :_t/|A :_t/|A :_t/|A :_t/|A :_t/|A :_t/|A a{qt%]IWҕt%k_;/.ξ=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=ol헏n7+Jd]f~o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3̾=o3=#7+YiN",",",5/?FXEXEXEXui?+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+8xvAt/|A :_t/|A :_t/|A :_t/|A :_t/|A :_t/|A :_t/|A :_t/<ۿO_]IWҕt%]I^__׿_'}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}cߞv{+J+J+?oƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱo4_c߸;]IWҕ4X'aaaav{#,",",",:4MWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕ`/>ϟ_?O|?'~ϟ_?O|?'~ϟ_?O|?'~ϟ_?O|?'~ϟ_?O|?'~ϟ_?O|?'~ϟ_?O|?'~ϟ_?O|??ſ.OT^J+J*|_x;Ͽpw~|/?|_>~|/?|_>~|/?|_>~|/?|_>~|/?|_>~|/?|_>~|/?|]]IWҕt%]IWҕEUo,O3O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#O#ȿ at%]IWҕt%]IWҕхt.O<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏<͏,O3ǾͿt%]IWҕ4X'aaaav{#,",",",:4MWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWRyJ+W*T^RyJ+W*T^RyJ+W*T^RyJ+W*T^RyJ+W*T^RyJ+W*T^RyJ+W*T^RyJ+W*+]IWҕt%]IWҕt%]]7oox~{7oox~{7oox~{7oox~{7oox~{7oox~{7oox~{7ooxxЕt%]IWҕt%]IWҕt%o7o7oox~{7oox~{7oox~{7oox~{7oox~{7oox~{7oox~{7oox~{EWҕt%]IW.38`EXEXEXk_~퍰 O4]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕ4X'aaaav{#,",",",:4Rt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]Iu}j: 0Ə?|waaaaɗb+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+:_~g>x o|?qaaaaoO̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬| ,",",",5/?FXEXEXEXEX|oƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁiƁ",",",",^<?=OnoEXEXEXEXEXE:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N:N: EXEXEXEXEXy7~{矸x o|?qaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaav{#,",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",5/?FXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXk_~퍰0Ə?|waaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa~'n7",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",/RƠb(vŢCD7N?zXa=zXa=zXa=zXa=z?}X8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888*O}ʝivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivfivf/|OoԯPTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTA/|??j>.i%tEXtdate:create2015-12-03T10:28:20+00:00z>t%tEXtdate:modify2015-12-03T10:28:20+00:00'tEXtSoftwaregnome-screenshot>IENDB`idjc-0.8.16/doc/contact.html0000644000175000017500000001131212711160237012524 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Should assistance be required

If you need any help with IDJC you can leave a comment on the IDJC bug tracker or on the forum at http://sourceforge.net/projects/idjc/support

Anonymous posting is no longer available due to spam.

idjc-0.8.16/doc/tutorials_streaming_aac.html0000644000175000017500000001414112711160237015777 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

I can't choose one or both of the the AAC options. Why?

Put simply IDJC calls on libavcodec from the ffmpeg project to do the encoding and due to legal considerations it's unlikely your distribution's libavcodec has either the libfaac or libaacplus encoders built in.

Checking for support is easy enough in a terminal.

$ ffmpeg -codecs 2>/dev/null | grep aac 
 DEA D  aac             Advanced Audio Coding
 D A D  aac_latm        AAC LATM (Advanced Audio Codec LATM syntax)
  EA    libaacplus      libaacplus AAC+ (Advanced Audio Codec with SBR+PS)
  EA    libfaac         libfaac AAC (Advanced Audio Codec)
  EA    libvo_aacenc    Android VisualOn AAC

In this example both encoders are listed so both AAC options would be available in IDJC.

What can I do?

Gentoo users need to set the faac and aacplus USE flags before rebuilding ffmpeg.

Users of binary distributions should track down the source package (source rpm, deb) and rebuild it with the required option.

Where no such option exists building ffmpeg's libraries from source remains the last option.

Is it worth it?

Not really, no. Not unless you absolutely positively must stream AAC.

The faac encoder doesn't support constant bit rate which is a problem for streaming and it hasn't received a fraction of the developer attention that LAME has so it fails on the sound quality front.

Does this mean AAC support on Linux is generally bad?

There is a closed source encoder neroAacEnc which has good sound quality and CBR but has been designed with no thought to streaming.

idjc-0.8.16/doc/tour.html0000644000175000017500000001224712711160237012072 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Screenshots and commentary

External links

idjc-0.8.16/doc/style_ie.css0000644000175000017500000000014512711160237012534 00000000000000 pre.ie6-one-line-pre{ height:32px; } #sidebar-menu{ margin-left:0px; margin-bottom:0px; } idjc-0.8.16/doc/main-window.png0000644000175000017500000315136712711160237013164 00000000000000PNG  IHDROegAMA a cHRMz&u0`:pQ<bKGDtIME  IDATxW/ wv'f=aްc±i;k;{֎X=/{WBw$D$H!UH%KPIqd9U-7/oeo^WK!OHูqhơC wrS'ܼ󔛫iU&=y6m< 7#qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8yt>5&+w\WQEU[nq*ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڒ/Y%-ڢj-ڢj-ڢjZK|ɢ,%_ڢj-ڒ/Y%-ڢj-ڢj-ڢjZKdQEU[TmQEU[TmQEՖ|ɒ/YTmQEU[TmQEU[TmQEU[TmQEU[TmQEdɗ,%_%-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-jɒ/YԒEU[TmQEU[Tmɗ,EU[TmQEU[TmQEU[TmQEU[%Kdɗ,ڢ,%_KU[TmQEU[TmQE-Y%KdQEU[TmQEU[Tmɗ,EU[TmQEU[TmQEU[Tmɗ,EU[TmQE-Y%Zڢj-ڢj-ڢj-%Kdɗ,ڢ,%_ڢj-ڢj-ڢj-ڢjKdɗ,ڢj-ڢj-ڢj-ڢjZK|ɢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-K|ɢj-K|ɢ,ڢjZKdQK|ɒ/YTmQEU[TmQEU[TmQEU[%Kdɗ,ڢj-ڢjZKdQEU[TmQEU[TmQEU[TmQEU[TmQK|ɒ/YTmQEU[%KdQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQ%_KU[TmQEU[TmQEU[TmQEU[TmQEdɗ,EՖ|ɒ/Y%Kdɗ,jɢj-ڢjZK|ɢj-K|ɒ/Y%-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-\WQ*^EիzUUTWQ*^EիzUUԒe,\ZzUUիW9Vr^Xʱzc*UիzUUN,rϱzUUիWQEիWQ*UT-UիzU,g{tdQKTW-5}j ի]Hlq 6J?_ O 3~_szlѐ-@80{9kHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHȪ~~w,MZ d@Z @Z @Z @Z dmL/~q>_gz~ N\xS|h@8⋯xiIFG$xuqޛJƻSWEܚO~/>3|r:Wj 75n9ƛ_.shn ]́o.^X9r';j [HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHlqsHHHHHHHHSpj j Ƴ:2uet閩-37IVj 9kX#[Hffoۚ/eECZ |u:.1u@V @Z W,i5T}__b˞N.!.{ٞ鹁M{sw~ /?}g# 30]bjn왚).afn˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞gW:5pru6Yd S=l s+Lij=Ss+̯O]==˻qKy _-|~v.Pܾ^ S=q=q=l lrDˤaꘞ[azn`fnٞx'.{ٞӚ9Kw|:V,zV_aznٞg{V_aznٞ˞xP~e5Э==~B߭pH_^b鞩ٞffVg{fW[azn鹁g{f{<~Q_/g{fW[af~`fnٞg{fW[aj'.{'.{f{l _^K|1= _›;Y8yġفf{ٞffV[aj'.{ٞO\eۏXsO<7|zhGn>xwფejnffV9pt,z3s|03!j']az~`t;vre6=Ǿr`f~ٞxgjn鹁>q ;8ߧJ[f{'.{'.{'.{'홚Y>MqG:Yˁ#lʵ{|wV[aj'.{ٞffV>YWɞyFpCgzf{V[aznٞ/]c-l׼=Y>pxvffVg{ٞV[az~`znٞ˞˞˞˞˞ٞC%=poosPGorܵ!X |2ϲ/r^_s,'.{'.{ٞfV[ajvC8wWqc,?35{}\l_C4L*{a ӳ=lO<35 s+LeO\eO\L g`Sn]»;ϲTTq ;8~{.\KD3s+LeO<35 s+LLͮ0=70=B<Lͭ03l s+Lϭ{Β,̔;px'.{'.{fW[az'.{fW[az'˞Iો\>G>ů+3 =Sg{ٞ/󋼹<ߝ/k6Z.p=gݧZȦGopx'˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞g{N_ q=q=q=q=q=q=q=qsɗ,p=qy75ֽ [a#l{`_~]!.{gf~ӗ25=l3۾>C4>99:uGα-GOYtCElO\e @\.{gggɎ';fWɎͮooE^x??g//?OfITtDEw-_Mt#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*ns5^>k';lw`qϾ>[{ϳMunc{ycY6';y舊<>%~slUؙ\ݽ kw]f[DmOwsw#w-K|.\vOX(E>8cі |}7w9Qq}]T~pSO=~~z#O)Mt[>ϛxcwŇUM/ 4OrH=W{6u[Wy9Th.]|y]́7>} 瑻x%>. yuI^۵_]fj`i.ً,#*:#*:#*:#*:.04 vM-u)?yϾ>ϛys[@qok.K5̳9]fy^@~^ugI45low{1:ҰMtBIȻk6}[p[DEGTtDEGTtDEGTtDEGTtDEGTt<2-:|c~ʾ x5} dGTtDmh/a _ظCKk?g/1Dyx~n-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a-a~e^ 89zٰ[ޛ.6?hc|gU|pǾcW9y_Sl+ܹ# sEO_p^ɾ9=tOV{<O\|_`LCeyT+8>sE>>ȇ_ɫ9uY6gxqke8˯62S.i4k;\ >uqq]S l8o[¼tY9k=~c?zΓ8r\ >uqqS  4Or||_~vǯ+^<T9~⣂+}*~L_d%lzCU#lU9).|U\aE;pf J>_gyF>~ x5}7̎%[v~svϲ1UfN^b^v 8vϞ?ƥk|w2og}#7.M4<'߶>~ׇfeO\d9 ?~qq_/߶yKykwsj~!Wϳ%gx9cu(9˻{%h<~y%o[ +xmyn{ŖoZ¼ey^yE~Aθ}®ӼT]=RMyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyK0M¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼ew-_gn0o -1:ξ>|#|.u0o nTa-a-βew-bku8( 0o ߵL?yyˎZN\˟KK A٥ZMi{׶?~~o-G^_^^/|yl;9t6s &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2Mi7v":˱αrC;-?Xmgس`nJy@9~s3=9ygb;< ~."a<|nO>i2ܳgGowϱ1p<kq~ƝD%o}yGo-pD?ּq+__ỵyG,/M}wN5?k\mpˍO% Fy͵gx ' o=ƛ__E?|Γy)w%MX1qsҰe?=O½"n=x'yGܳ8Xr~9])ǦOc7qy9O>{3pi|w1O={{r96g7vT-l_c6M]fQͦ/݁ \/Y^ws8qGI}x;c77{77k.5lˮ^xM&g<~O{3gxo*7OO& wM_/ƞ,|#?>z@:sߴ|O s~G 6csO?ޝUe>n-l;΂O Ox vg>}ƝǸg?c8M9o\=}?cX?-8r۫q~EI6ykyS\YgϸvY~iaC.؜`Q/y`1l_|zW9;,uG5ێ6|tbáϟr<.dȵ,\O_Cç ޛl?z9^y~W\y/"9>Nn]xvV|_ck 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd l;9\| Ld fl;zmGo 7vA 2MiLd'n-Ld Y|@*^{Dϳ LdϿgQMiL&4㣝GV1;lyɄmG5A 2Mi#[L5m;__ķKwȄGsoHgY+y????^³?p% W/' ~Ұ->K5~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~'>w(^ןrsмn [lS],}[OSxq)\'?=bfo/wi}|ϸ|G6ͲpGfۮ]} s5򋊏he^|#WecN|ģwؾ8==9>/R>|Ϗfp營6l>ήU=/;q=>>(Twgs\9G9?Ćm98o7*^*~Ұ5Y /e*Wom ޛ?r=ɯ,W':g{ ?i4m0Ϲ{O8=7]a׉VW:}@1zt/,Wl9a>W_YycӧX7:ÅO9{<뷞[+O9UcܿΖj{GGr&}f2y#Wͧ[v|ݳg;}W◟qj KgE>>\Cxm ^L㼶,%ΆpRWoJ{S~|2?_~Lc|s_R̯-S8ղt6OQRjO͕G9?yu'S' |kKx볜\/Ez O/x7\m7Ӱ%7(x3K[~d»{gygwX>SKdw7Y} ^+Nz 2(yM>~mG x| D8)C{M+~'Wr->4+|>*s|2nro8 'ɾ<_{Mߵ|Ï,ٷx_|q˓8yO1/yޟ' ~u{I[nr#3Kxq}kص6ljgܿ}юS${C8/~v×(>/ӸG|Dڳ,-\[v6̴}*LÖ?2bwry>·Ŧ|<3Odxϟr<>?%KG͞|<}Ww]mγe>:t<~<^Ӻ\Xk*>N4[ //3:' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' ~' Nvl4~' ~' .ξ6gy6gyޏ|d4I4l>7 M6i?i|dל]Kΰ[l=zw/wgNa[R4Ig?i?iG&GV1/:~' ~ҰHÞc7 # ^_slhfL7L|D#8gğ_W_z / ï.0Otf7ŝ)Eruyƍ[=juW9 `aKfgʼnOזyiS?[ ܽpi=ѭ+u N_7i!뼹u7`-MYX ~G/&}nwY8w-fy#Ħ q'_?vʋ_̳D[ySN7ë1px'~|v# #oGi0Ov~?~e<}`v7_,𫭧Hgܻ+[NɅ[iָr_YwԄOgÚѼ=8j ~ßy㏬\ʆYsWwq X9ŋ.2O%~uskOX<]L}} eo5+? ?OyvO~?=cz͓>ź.<|ʹSxeqmX~gα]?c)^X>Wfexk'y?Ϲ4{gݖyמ\.jp_g<|_T|0i|_o#.畝5ys,S}{[;Gx똇);m;G}GOg^칺r ;<7 [׮;G4ks;wJ^=Ot\O~䧟Q| GK擼 T<| hSr[o6c#ּ''U?9÷#n]λv KE̵Gx/?|zO}ێ} ^޳̦qGfܾsec|xO_eΔܹơ}'큫|::vۏq1f)F߶y/w+o[{~Xmh,oƧG&|dWDw*s1 xmKclǫ{gjo?Nw8zc./,g.Vngo+˳,?AxtI&zz_ɺcn$]B2TGVmmR$3I| y踃2`b/b˗o`1}?f̪y<lj9Oecݱelw;lvzu |׋KſN3Wx}ן~DuST"8\ց7?_wnG۽\)z nzjzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;}۞~vzcqo(<((\7Xow;vw/~jzcݱ~j77?Ι'~p\~a.0?-`%;-Ozcqorvzcq-?d];{#\UvzcԎpgfԎ?|ϞUn|r'n}-;TON7e_ڿ~_oǷ/pS;~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~wԏN_Cw-y7ޟm'yč<='yM/p߉O0ԯ2}u9Ώ/Mn>EΟrdwOn;=U=x.|g7qS>ܸy}߾/v`7=o·o%_}7]'|<<~ێr3#}bǡqy 4;.{lÿ+GvYG/>\[ן~x1nxzG_㛿9x)ws\|y?G^#姇7ao}W1~'=W{;_}o 3_9'Ol|ȇ%m~]>s<߾$}W~y8WNny~ǡ5~yi^"g^>o|տ9~w||9!]7Km97{5.%~zi?7Nwo;5^y}rMOz>CڜQO~w =6雯c/<NpE7g_q n87|a={8 ~>u=qGx/y/Ldbd{_n=͑O_f> /?~mOsŃ_sɗ#rkn~_ܷq+:zϽ%O\{Q~~uwU펛@Y)ny46)8~⪽i➽\yϿ x44/oEp\{>ほį|wO¯8ύCsI:ssm^K>Cni-iny|x_nxz?0?X̓o}gHp"O?}(Rg/$}~ʫz+/7})O%x zs]'qS?QCg(ԎCD~>%ГU?qS?q |׋}%~r ^_Nϊg֡#=˿^[ſ;9.kb׼y|?RU?Q;sս9}.0w?v_V=6??:7;~zr?íOEOijgϗw/6Pv?6e(O͝G._=??_>67>1Qv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]' 7|rW|;r\w\7>[>孏>o/?nY.odo|g>8@o_sI*o8q~xt"xpq'8:W"?$;״ dw#"_>a|Ϳ3wWmw|̛o . ~]nP{_ O9Ʒꆧw'ѧ,_~C|-GX?6V|G?g=gۉqΓ<5~ʗ_}-}}ʳȌ>Ǜ_믈ϼ_s/xp3o! |c􎏿v~t)N_?/wϿ ~x\YxGq'xGg>W!ϡ'FVgO;:n~H: )x q _^̱3ϱ?_L}?OuDӼEξOקxo'<o>gy1~ſ"83}_^3/rx1~xw/G _׎ʏ;̋;ȥyJY:ï~t@S.痷Ͽm/O7q5.(? 9W)C~Y.o_=|CO9ΡF<"M_7+N rԧ_{o gx{x7Q{`_w_+n>³{WO!Y{9ů_/3_ſrz{;o9v$}u"G|"}/?Zxw/>g:w;~ɻ5{7Ÿc zbP7r̓}gX=7<1q \i| S{%~tyrq}/;Nsٽ'x'GDgKzOr9w5.c &=1q݃gWy1{e~tQn<!'|_OۏqCqz>ߟ%_«ݽ걑 ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@|mn|re('w\~ ?p͝OpOpOp?z=O.Pv ܲ}[~ ]eQq)))){~z8D.pw>6e(@D֓};y7r]G)皻ln{򉉲 ]g~7g/w/kFX?E(@.n_+O/>ENmhEXow6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mh?~W …݇8ώݿ =W?{ܳwyk?+{ܿy ~J9o~69r\z>87?89 ]̹w=|_︮ m\9gy~=8q5$~Cgp0=&x;5s恧9|xWwFu}~v <0|&/{㯿>o=εy^¹oc>I;ÑCkNp/=8ǜ7y<>?E;>GN>^_~<>|xǟ=W9<.uGg_W7)@6P mhGOwop<|?^Ns#9tSSۜ}xco8ΥշWNIY7yy~wa~<ǼǗ}sG{̙x/'-/sw8VO>ŕ8y8scV^y=ɯ:Oo?W'>/9 mhE mhCq齧8z~x <ǜ>}W=(+9<\ěr=Ggya;eE׸cӓ\~I.8<=rȽ¯6pïrY}GNz'.1~zIMw~qk? pڜ?끫yLq~qyns]yՏ?:yt;.J\{q9.S8o_8|!9~q)CNzk;ŕx~9IWyG3vI.%~9}.1=sr|?٧O{_6P#`>xcӇ<1~~ oQ|4|TΜqï^媇s_xso+y\v\x~{ .w7xgX}C(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhl.P mh5~r\W?\H6PTMmhE}r\W?!U9yu|hE( ][mhE(v45 \pc\hE(n~jǡ'&5#}22A1Oތmy37#y377>mk wK0'e5IތHތHތuHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތHތ䏽Iv au(? {t$oFy^aq~~K|聯̓{+=7nl^w{#׸ d{[NqgIuݱIu1GGkFf$oF}<=t ?%Wįx7|aUᇷff$oFf$u~q |䏽IvI~P[~xiV_ oF~5.ES>Ϸ#Ӭ@ތHތ5Ww[7?U~皇e[>Ϸ|֓\7׹d}z+\}~|}j?oo9ɕxkFf$oFf$oFf$oFf$oFһ^c{ ~}|S\׌H\CG}|vs:?5HތHތ\c|a}~zY~'o. ߭^AތHތ5o9ʷ}szKys+=xk{:̷|֓\Hތ\xV{{4#y37#<||Opӛ_n{:n; H\q _[~t_ oFfڇӛ =5#y>?ߺy{+׹;CwoɛꁁVGݯqM3r?_f$oFfse}G}yu|V<߽n^Ffڇ_;^;|z_p.[^'wG9q#y37#y37#y37#y37#y37#y37#y37#y37#7t HތHތHތHތHތHތHތHތ\ȍONHތHތHތHތHތHތHތHތȡ'&67#<2oh&V+7Y=Y=mO\q1V{g\Y|,}z z z ꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬ6}V{6Y=Y=gXmVl3f`j3 Ymjof jof 66Y=>@Vd@Vd@V6}Vf`gl3gj3Y=Y=>@Vd@XmY d@Vdf>}Vꁬꁬf`joff z YmVff Ymz Ymz`X d@XmY 6Y=f`jof`ꁬls_ryso-w\jof`g6}V6}Vl3gXmV}Vꁬ6>@V66@XmYmz YmVff Ymz 6YmV}VXmYmz 66f`gj3 dff joc΁w-pf z z z z z Ymz jof z`XgꁬXmV{Ym@V66Y=mV}V{@X 6>@V6Ymjof jjoff z`gꁬXmYmz z z z z i~} \rN{sf z z Ymjof Ymz z z`Xgꁬ6>@Vd@Vd@XmY d>@Vd>@Vdf>@ꁬl3gꁬꁬXmYmjj3gꁬl3gꁬꁬXmYmz z 6Ywvđg_z z jj3f`gꁬꁬ6}Vl3gjof`ꁬf`jj3Y=f`gjof z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z z 6Y=Y=Y=Y=Y=Y=Y=Y=j3Y=Y=Y=Y=Y=Y=Y=Y=W d@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vdf .4?/n#G8q>|wq]8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G pֿIy+ #G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G6( W/D8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|w+9f#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>r;烤셈#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#GOe?eL|'r0))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) ))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))r0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0q0,?_?_FSfSLST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSa6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e1%| ϗwϗ>ŔSA%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%1222222222222222222222)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))l̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦,>222PI$T* 02s,3"̦**)& JB%PI$T* JB%PI$T* aJB%"f̦̦$T* JB%PI$T* JB%PI$T* JB%PI$T* JBUgeքJB%a,1kB%PI$̔e6cӄJTYL1I$TٌJB%*̳q,32 * JB%PI$T* JB%cD* JB%PI$T* JB%PI$T* 3e1$PI * JB%PI&T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JBOceœ3>噮>]USvB#( w l@,o!oH|~O+L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:===================?ww%.+=========O~̒9{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{G[P-\K{.7czm.uk{ggggggggggggg{ʫ箼Z.;ta:L~:u\xg|֭|+߽-7~Da:L0ta:L0t!|s+߹0||+7ϟK0ta:L0ta:L0ta:L0tm7/<߹2a/O~o2{tnv|K|#G>b_?پi>%tm狟:u\'?nYL0ta:L[fv0ta:L0ta:L~Fno09[I0t| 7-ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:i9̥OW~Wݮ<jnv~?;.6gog?_S5L}_o)?る================================x?Ox^=1|}Wp~o;tq9{8{8Y7}WcW]Ǐv.pppppppppppppKZ~ʫҺ==tLtLtLpۗ¿~x#W/涟|w>χ^gÙϰtLtLtLtLtLtL]<x옽MktW|~qb;ts6C콹t7g6111111Ï&~_|tBfo~?W}LGkp?'o72_e^2}׽u5"|_[_lοy.W]^e&>2{8{ȏ\s.piW_]y\ZwpE,bN/}/.=O^rW?>|?:Σx_ͧ~3E,bX"EbFW>_5+?fOغ}6yK_nZ薯;Wg/Mo#y>{uܴ­_z//y񦟐X"E,bX"G_|#xA.yw^u?wg7^_3h#{O}g!y 8/|==============================qx˗[?ͳl~ttn>\î޷G ~}.OzoЧbWLwp.piW_]y\ZwpX"EKoAw3OG7 ݛ07g>>Y|_?c7c%x6bX"E,bnss#vzgX{ލǼ}O/W6y ? MoϾx3x?̟><%'~~><\g|X"E,bX"Is ow/7^|O}*q%y yoW<'ռ%Oyry;o|SxCCbX"E,bYxן=; \oo}o}|oawy?—>zyy{o} o,6~|p_7~ۤC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"{ssGx]ݮ7W_G|~ݝ5/x6Oq_9|KTW~Fs*bX"E,bYxߟo_]qW _#?W75|މ>Ogq?^OWOM˷WմE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbOspppppppppppppppppan}|;|/w~_ ??~cy߾<'=g?\]>]lW׾=y\n ~1."MoqKqk~7˕O/L"*ls___ꪇs#}=s{=7};CC>}I\>'W]g. xù]]q_~9⟿#****}O]Y|q]Jk'W]g.q˷?ɻ^ Sy****}O]|b\8{^w|+c^ɷtgsn~t[x+?q^k_w./ ӷ*******************************************************************************************************************************************************************************************************************************************************************************************4ggggggggggggggggggoWoٛ){y_K图{ ^W!>я|u7z?,.l;nͭ_o{Ko;?|Y>/r[ot?Υj.pp.u'b\yܕW_˥u{8{ BP-T 7;*ϻTj!~3 |5}yλnDP-T BP-T BP&Oȯ>|E寿߹q?w׾}'Oz|{ƒz^W?!{͵>*µP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-4ggggggggggggggggggl~z~oOןsOʿ~z ~zw\l.wg8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{g?)~~zgsqqOo?\Obggg~.piW_]y\Zwp=jZj!}F~^Oܲ|3o扏C>qW?KH}׻p+̵|h~!O_ĥ/'?~˨jZjZjq>.~WqG=7~[(j!+!~~O}wxO?-|1OK>˴ ;ŏ}:xB~xʣ?-T BP-T|>ar=]y~|ۭ|m/I~9_aѾ>^ywr{'x~z'O~W>7]~J}y[?~p-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T b:=============================================================================================================\Һ+kb{bi՟g{x(*ŸI@L"EĂeDtmӮcm׮cc/Zkw?y^յ뺷=aaaX[EXEX5Dh` ",-",",",",",",",DXEx` lh|X","4aXKEXEXEXEXEXEXEh=c",",EXXAXEh` ","4","<G{4EXh KEXEXEXEXEXEXXkaaa ,h|42[?17|l-",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",t%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%kG?)kaVRy„EXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXD-}w.DXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXJ+J+*o*o*o*o*o*o*o*o*o*o+J+J+J+*o*o*o*o*o*o*o*o*o*o򆮤+JdVr/'?~r/J*o k` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` ,_ ~vᯇ 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` A+J+J^_/~ /)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/r ot%]IWҕt%]IWҕt%s6oW~͟)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)/)~gs~7+JdVr/'?~r/J*o.ߙțӕt%]IWҕt%]ɳ_ۜQIDAT9r;喯_n喯_n喯_n喯_n喯_n喯_n2'lngs;v6lng_n喯_n喯_n喯_n喯_n喯_n/_5W^wt%]IWҕt%]IWҕt%ݷ|;-_-_-_-_-_-_nolngs;v6lngs;/s-_-_-_-_-_-_r;gx+JdVr/'?~r/J|V>m9}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}z_W}eG#ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ۺ ӕt%]IWҕt%]˟s;_[޿{woy-߽[޿{ww_}fvѕt%]IWҕt%]IWҕt%]ە}woy-߽[޿{ww߲.9>m+-]IWҕt%]IWҕt%]l{-oy-߽[޿{woݷ|[~+J+J+JW-߽[޿{woy-߽wݻo>Φ+JdVr/'?~r/J*og?;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.s;.?7^s|999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999Oo+J+J_/߽3~/zW/zW/zW/z_ {-?7op;+JJ+7xW/zW/zW/zW/zo+O _+J+Jv6߽~\1W^r%W^r%W^r%W^r%W^ͯzO7t%]IWҕt%'o~O ]IWr;/ի_WW~ɯ^_%zK^7o߼}Ëgඛ+JYɵ?O~ʵ0+ɛwo#?rG?#?rG?#?rG?#?rG?#?rG?#?rG?#?rG?#?rG?#?rG?7Wlngs;v6lngs;v6lngs;v6lngs;v6lngs;v6lng3].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1].fbv1]t%]IWҕt%]IWҕ<9_wz%O|݇o w7}p>|݇o w7}p>|݇o w7}p>|݇o w7}p>|݇o w7}p>|݇o w7}p>|݇o w7}p>|݇o w7}p>|݇o w7?o_/ ^|/x_~/_ ^|/x_~/_ ^|/x_~/_ ^|/x_~/_ ^|/x_~W/_s^/+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+y~sɇ%7\\\#=zģGx=ѣG\\\pyyɧmݷl+g9|?wGUIWo~˟#=zģGx=ѣGk>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g>|g~|W~g,ngs;v6lngs;v6lngs;v6lngs;v6lngs;v6]K5]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWà|sO{ݳxv^SEAiEPъu._]E\oE0,`mJ~!mML2id23ҼIhK,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%Kݓr}_~~+O]áåK.]pRK:\ҥ. } '>s>ӧDo|ɒ%K,Ydz]}rܳW{ӟd.]p8t8:Cá#<>b&Ko߹܏wONo?}Ϳ[z5{zOCW ]z W/t.\ЅzCڻzgg4YdɺzUo=t߼ݏw~*~_zw{^{W{^{W{^{W{^{W{^{W{^{W{^{W{^{W{^{W{^{Wz7ޟ,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%Kݓudc7/=w|Mϼkz_3y;_}Oܳ'?_rdɒ%K,Y^gW?l'?٥K:Cápp8#ttt~ثɒ%ڽW|;z?O~z~J{^g>>>>>>>>>>>>>>>>>>>>K/أ)Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yy^w^}'?D>/R.R.R.R.R.R.R~/,Y^c?|^dcv_oooooooؕ>D=Lz/'K,Ydɒ%{v}s^O]tpp8t8:C>>CywO=˟{&K,YoH,Yc}ӏOmObObObObObObObW[J{≞{>'z+_N,Ydɒ%Kkӗ瞍x'tRápp8t8:y䑎n={5YdzoofX^gN;9>N;9>N;9>N;9>N;9>N;9>N;=9U?kݼy;y;y;y;y;y;y;y;y;y;y;y;y;y;y7uzG7wtzG7wtzG7wtzG7wtzG7wtzG7 Gߗ,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%Kݓgzzzzzzۺ|{? _\O_t3Ydɒ%K,Yd}svٯ.?{^.?{|⫿>D=Lz/'K,Ydɒ%{v}s^O]tpp8t8:C>ySt鯼m#=[ouvrY<~ӓN덓w~~΃~߿vb=C}}]_k{؋w^KpO;;=;uz|:=t~~NNN:~AN;9{p~<8}ث=O~K.u8:CápGfcW%K,Ydɒ%{O'Ͻ>ԅpB^ ]z W/Еz׵wv`idɒu{{zcݺݿw[ݿVN^}~?xVo}?W_WowG~+uccϾ}?O]ow|'u?u_~(fo~^/|5#o{3O?G{ڵ_z'{3? ۟}_:Ƨoo~]?GŗW_O~n񕎏/j7^~ׯu/tKP?C?{?G~G?Oc?w{#^kݼ~ׯun^׺yZ7_kݼr7_|_ukݼ~ׯun^׺yZ7_kݼ~ׯ?c/Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yy^w^}'?Dܻ|m]rW.v._+|bym}w>ӗ?kL,Ydɒ%K,Yz>ܣ]]rW.v._+|b\3Ou__c}}O=ʗ%K,Ydɒ=>gcߧ?.]pp8t8:CáGy}C^M,Ydɒ%K3O?Փxw>P^ ]z W/t.\CW]?ە>o~ɒ%K=Kw_z饻wutv?}ݿVofofw~??ޟsg^}_կxgۓw/}能#@o~w_7~걾z{y?;/{~>/|Ϗ~oMw{So{+]wƧ_o[oC?=}7~lw?{w_|g>~=o{֏[Óqzzoٗ^o^/u~Oo}_?||O~}?~ڿG{k]B^B^z^~Ů_{_B^B/|Wc}]_k/K/t/K/tڋ]bׯk/vڋx{}ɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yd{}='+o]rW.v._+o /𹞾^gdɒ%K,Ydc]rW.v._+|byoJ=3}OW,Ydɒ%Kէ/={?>OvҥCápp8t8:=#z,jdɒ%K,YdvϞywՇpB^ ]z W/tPٮ<~5M,Y^zo=}~O/}{[n3[ooo[[XO}o=Oo|^x~{~Ogᇿ7w{oVo|_o>:yz7o'nW;G=zΫ ~{_k_\?h/z?_{~G?ُ<͗?߯k7zO'~W W~n޹L{N_~zzzK/K/vū޷?W_wowK?/{#?[~?>]}ůӟ'~>K]{SO?w~_Wў|OoֿҿՏ }sGߗ,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%Kݓ~]._+|b\]r<{ ˟{&K,Ydɒ%K=X._._+|b\]rW./֯>s>ӧDo|ɒ%K,Ydz]}rܳW{ӟd.]p8t8:Cá#<>b&K,Ydɒ%Kk왧O<;{g]} W/t.\ЅpB^+kS7?^dɒ%륻W׻Ǻuv?{7{_7L?{;?.?Ko{ֽ[}ۏ|_/|ǷtwOg>УG`|~oX7_GgD~k_ӓw|Kw;}}w=?OџS͟q^ѯS_DGU{v_~|+Wz[_z|/|/.o}?ߥoï'?o;_>?G{ȟr~{g7zE~'~?=wO7?SKS=z{{{gߗ,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ?Axua[ì5/յ:)M]8i Bx)eZ(IيmF>g?E/ زeݿhH"G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G}3tz7{ ;xxxxxxկ|/{9rȑ#G9rg>ǫǫǫǫǫǫǫ=K۷9rȑ#Gnzƛ}S^詧뮯뮯{~=L9rȑ#G9z=\x]ݹӝ;ݹӝ;ݹӝ;>+:޻ӽ9rѓkz>wCO=O[۷mo[=>??O~g>?}oʯ_~OW?O=?gݾٯ??oݿ}綷ns}g?ݷO.s˹۷>j{c_~3?ϽcO=wˮ~O7N}9w;S?x.ow߾s߼/K}{W}oso۷7^~W^zԫ^?_z~}w}=sO~w?wzoǾS;OT?G+??ԗ_zˏ {~GW}_=~7{Gң^yQW^zC_͑#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rg?L'Ozxs\WWWWWWݽ^ʇ򫏻x#G9rȑ#G}^~ppppppp[o|sA_z}{ɑ#G9r[O?jg>^|ᅞzꩮ뮯~}7ܳ4̑#G9rȑ؃z>лn՝;ݹӝ;ݹӝ;ݹӻ_`㽻}?[#G=~#}{?^{ԓ׿'z睷t{{o؟_c}~}߬?=g^f/տ܇ןO}t/~o?ӽ~~7'l\K~~W`?gN?oM|G}Gwqy|Uk_}wx_?ɿ|_~՞O}cG<[ov{{^z?앇_?~kW^}W_zџ{~g{oǞ녏~??Oğ'~Og~/X? ^~c_?G@?W?a/=zK>9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9gIow8ݫ_p_~q/sȑ#Gz2rѳы/SO=u]__w}}u]__Of{ƛ9rȑ#G9r{p^>zͻss;7wss;7wss;7wz]}Wuw{Ksȑ'^?}x>kz2׿/Oow{9w{9w{vo^>G~xQǾѿѣ׿OW?=~@?_#?ܟ}~{߼_O}oݞ}._bG}.η^^[~?|?;zo~P?OL޹}x?=~e_ӿ}w{CBڗż}={~Gyt{9w{9w{{7穏M/=|+^޻<^yܫ/=՗}t{ާk??^{gw|#G~^So_wؽ/~^~Oؗ?襇7t<د}Wsȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9r<ɓ/<p|wUUUUUUwW^'ȑ#GW_~/}7sg>ǫǫǫǫǫǫǫ=K۷9rȑ#Gnzƛ}S^詧뮯뮯{~=L9rȑ#G9z=\x]ݹӝ;ݹӝ;ݹӝ;>+:޻ӽ9rѓkz>wCO=}_쓽]..s˹I7zߊ7zVo^o~W7{o-7,V:z·zorr7]..s˹ַ|~7W__{׿ٓӹw~_3Voߞ;E_^7y:w{~ҷ.ssѿ_^kVo^]..ssoF=zpÛ^y|_?\?G|O}3n[t_So?ݏɿL?{G/~O^yt7=~x7?|_įȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9r賟yӓ'=_x?R uIDATǫǫǫǫǫǫw~}?[Ȏ#G՟HO۟ogy_d{:::::::{7>\/=zЗbo^rȑ#G9rǏoO}_xz뮯뮯駟k_>37sȑ#Gj˹[d{p^>zͻss;7wss;7wss;7wz]}Wuw{Ksȑ'^?}x>kz27?Oow9\\WS~?O q>w{9w{9w{9w{t{t{9w{9w{9w{9w{9w{9w{9w{9w{t{t{9w{9w{9w{9w{9w{97>Û=zp͋}~?@G߸or#??z ?/|{t__}ѯ__3|=zpуc{ؽ/k9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G}3tz7{ ;xxxxxxկ|/{9rɓ7{ ?U?Gogy_d{:::::::{7>\/=zЗbo^rȑ#G9rǏoO}_xz뮯뮯駟k_>37sȑ#Go~>Ǟ7M's}wuNwntNwntNwnW?+'{[v{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>u{>7>x=zpˏㇽa<~+c{MnK~zxsㇽA/=8x=zpˏㇽأ=zpˏ҃=zpG{^~x{=<^ow'~%G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G3zb=qV_'~_}9zgzOv8o~sң}/%G9rȑ#Go=^~f'zzꩧ뮯~s>x3G9H#/֓s}׻n՝;ݹӝ;ݹӝ;ݹӻ|+:޻ӽ9rѓkz>wCO=O~w~|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.Szz/.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u{>7=8zp\/=zЗbo^rȑ#G9rǏoO}_xz뮯뮯駟k_>37sȑ[ ?s?^ׯ֓'=\?};}gy;{wξw`㽻}?[#G=~#}{?^{ԓz|ꓽm|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S7F|wnnnnnnnnnnE_ɑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rg?L'Ozxs\WWWWWWݽ^ʇ򫏻xz[o|O+x ?֯=3';xxxxxxxշxzу{#G9rȑC/?~x| =S]__w}}u]__w}}uO?t_ogi'>r9m~{۽o[Ozp^/|7'O_>я}~}chG_>Oˏ;޻ӽ9rѓkz>wCO=}_3y.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.S|r>u9O]Χ.So~~~Ŏvw㽻xn{w;޻ݎvw㽻xn{w;޻ݎvw㽻xn{w;޻ݎvw㽻xn{w;޻ݎvw㽻xn{w;޻ݎ_>+9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9gIow8ݫ_p_~q/s4~#xo`~ꣽ7s3Kp|OUUUUUUUwWzG_K9rȑ#Gzb7Q>O /SOu}}u]__w}}u=}k}f/_~'~پC_bo>y{蓟dO=T]__w}}u]__SOˏ;޻ӽ9rѓkz>wCO=}_g>;o|r>u9Oe7no0=H` @1m4̺ZʵRPZKw*zJVeVJ"by#"G?rCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7_ox}~G^y}~G^y}~G^y}~G^y}~G^y}~G^y}~G^y}~G^y}~G^y}~G^y}~d}_E_%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%SKL-Z2djԒ%wc>?b s}Ṿ\_'|;~T%SKL-O?=djɼs[\_x/< s}w"}c-Z2djԒ%SKL-Z2?~ɷO޼yxx?Ojɜ~_?o$G|헼}K޼yxxox9%Z2'$Ok~??y__Olo_ǃxxǏ*djԒ%SKL-Z2djԒy|<㹾\_x/< ׯ|EO[zdjԒ%SKL-Z2d~To)/݇yxx?OjԒ%SKL-Z2jL-?U_/y ǃxxu,=rCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7ܐrCn !7~fy_jL-Z2djԒϱO^I1o~s s}Ṿ\_x/|w?~Ԓ%SKL-Z2djԒ%SK\s}Ṿ\_x/< _+ǿ?oMԒ%SKL-Z2djԒSOfWw>ǃxx3S?%SKL-Z2djԒ%SKO|헼}K޼yxx>}x%9'< s}ṾO/?}wRKL-Z2djԒ%SKL-ηzs7 s}Ṿ\_x/|Η_o|L7QKL-Z2djԒ%SKO?>ɻ_}7ox<<ǃxg_I-Z2djԒ%SKL-Z2?~lo_ǃxxB-Z2djԒ%wc>?b s}Ṿ\_'|;~T%SKL-Z2djԒ%SK??s}Ṿ\_x/<~W/7>қ%SKL-Z2djԒ%^|Nݯ~>|͛7<ǃxxu,=rCnȍofo+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+?&Gn !7ܐrO?=?=?=?=?=?=?=?=?=?=?=?=_??ܐrCn !7Fo_?}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷ}[ٷOxu93GRmOK8'}&Dr8-N9ɜ7Ū \./.A, . (D?p}|z-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbj1cZX-f3VŌbwdsLqQ،/;lƁqqqc W_rUg_pl=g{yeU޺y32=3=3=3=3=3=Ο ~=g{8q8pͣ/GOWZpl 3=3=3=3=Г7#C+ϵܸv***ԩSܻ/_:?`zơgzơgzơgzơgzơ'oFGBUUQUUUQUUUQU\t;kfnK8C8Cf{x#?u76C /ɣG7ōmkWX/e2nbFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n72n[-q3ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7e2n[-S(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqq˸e2n[Q(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōF1-q˸e2nbFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7 [-q˸eeōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōF[-' \|mqōFqQ(n7fll 'ɶp-l 'ɶp-l 'ɶp-l 'ɶp-l 'ɶp-l 'ɶ'{wɖFqQ(n7ōmݼ [Q(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōF1-q˸e2nbFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7 [-q˸eōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7e2n[-)n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQp˸e2n[Q(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFq-q˸e2nbFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQ(n7ōFqQp˸elq\"nōf|H/]xO=Q(nl W_j1-S(ng2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q3ōFqɛțțțțțțțțțțțțțțțțțțțțțțțq7ōFq=q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[Q(n7ō[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2nbFqQ(n73n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸eōFqQpϸe2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2nbFq-8\|mqōFqQ(n7flS(n7ōFqQ(n7ōFqq-| 7ōɶpuwml)n7ōFqQ8nݼέq7[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e22ōFqQ(ne2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q3ōFqq˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-S(n7ōFq-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2nLLqQ(n7[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2ŌFqQ(ng2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2n[-q˸e2nL1Qm(n7qu80=3=3=syla9?kWX8q8pl7̝[w oFơgzơgG,o =гG܍yyo8q8pl=g{<~4|۫ׯɶ0=3=3=3=3=y32?:xbp\ˍk888****N:Ž{ ơgzơgzơgzơgzơgzfdqtk /PUUUQUUUQUUUqppKsfv&t_65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS򥋼ݻXP(n72{׮LԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMM|͋/e1;bxFqQxcfGYkڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmWLqQywK.65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65ο[oGcϕ˗Q(n7ōFq#oF._<϶8ōFqQ(n7ōFqQ(n7lxox{lS(n7N[7odKqQ(n7ōɶpunݼ[a;\y2mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS655ϵsQ(n7>#or=KԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴMMԴM \}UwnFq7#ou.mjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmjڦmj.]xߺCތ7 qxyiiiiiiiiiiiiiiiiiiiiiismM|ōFq1 X-?>_65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS65mS˗eō =^|iiiiiiiiiiiiiiiiiiiiiiii ^-Fqm(n7qu80=3=3=syla9?kWX8q8pl7̝[w oFơgz~?O6|F͓?}i^} W _}mazơgzơgzơgzơgzfd~tz?⹖׮qpp@UUTUEUUTUEUUTUEUU:u{KC8C8C8C8C8^^h988***K.qxM^yyqq =w?u~'f utE>yFqq-\} Ŝb{e>;{}RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#ԽՒyb ōƇ$Οkyw8Y.kp,Ν¹\8w rY.;˅sgp,Ν¹\8w rY.;˅sgp,Ν¹\8w rY.;˅sgp,Ν¹\8w rY.;˅sgp,Ν¹\8w rY.;˅sgp,Ν¹/ՒԽOJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uѽ>Ý7q7~p /WpH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:Rݷ9wW_aP(nȭÛ}-RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:޿xs{]ōƻ|~[tOJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑRGJ)uԑ9~i#fQsy67ō8py޺sfqqq|<ٰq+,_peg{8q8plG__;ko7#г?7O_rl>X?_u~~=g{8q8pͣ/GOWZpl 3=3=3=3=Г7#C+ϵܸv***ԩSܻ/_:?`zơgzơgzơgzơgzơ'oFGBUUQUUUQUUUQU\t;kfnK8C8Cf{x#?u76C /ɣG7ōmkWX-72/]dvt4MH[oq~(n7֫mx ,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,G,GGG޸ʙ|чl ōq9[?ǻCDyEl3RƵ>ōF=瞥''tG7(n7,o9֫%4 7o9wycϕ˗Q(n7ōFq#oF._<϶8ōFqQ(n7ōFqQxxKy7uV'BqQ8nݼÓ-ōFqQ(n7'­׹u:nR7^{ko>gS(n;}fGps,fG7y3b{;H`&V_h =ōmq#._Çx<3(n7>C߿Gx+\}U2ōƕ/sx?wi{}Hqm(n7qu80=3=3=syla9?kWX8q8pl7̝[w oFa ?xN'_HG7wOoyOq8pl=g{y%>i^} W _}mazơgzơgzơgzơgzfd~tz?⹖׮qpp@UUTUEUUTUEUUTUEUU:u{KC8C8 Xf`zqYoqWyᅖ***twn䕗.Ǒqqs_GܽolRK^G(n7'׮Z)neڦDADDADDADDADDADDADDADDADDADDADDAD9uG~@qqtxo;k/:NN7gNWDADDADDADDADDADDADDADDADDADD=k8-ζ8\~r@DDADDADDADDADDADDADDADDADD?'<)ō{C3H""" "" "" "" "" "" "" "" "" "" ""+e7>G}@DDADDADDADDADDADDADDADDADDADӧOcϕ˗Q(n7ōFq#oF._<϶8ōFqQ(n7ōFqdK. ٟ)O7rd[(n7'­ݷyxQ(n7ōFqd[u:n^--Υ 1ADDADDADDADDADD@DDADDADDADDADDADD̩=|۴MMDADDADDADDADDADDADDADDADDADDADDAD_}Fq#oF=0DADDADDADDADDADDADDADDADDAD|ч<{)lsU_} "" "" "" "" "" "" "" "" "$s7)n7>>O?uDADDADDADDADDADD@DDADDADDADDADDAD .]xō_8;ADDADDADDADDADDADDADDADDADDADlyO7Jq._<ۆFq._:[wٌ3=3=3=/6#v2}llllllW?;kfn bxwxǞ8]^{9:>|g{g{g{g{g{g{g{̎~>zW_ՂW_d[qqqqr^1xƵkPUUUQUUUQUUUQUN޽xy3=8yK? 'Yξ|믿 /PUUUQUUUQUUUqppKsfv&t>ﳿ>O"BD!"D"BD!"Df̩|cϕ˗Q(n7ōFq#oF._<϶8ōFqQ(n7ōFqɖK. ٟ)l o\.8ōɶpuwml)n7ōFqQ8nݼέqlsy޺s!"D"BD!"D"BD!"DDp|M"DD|#"D"BD!"D"BD!"'<{7ݷi"BD!"D"BD!"DOx駹{.DDD!"D"BD!"D"BD!"D"BōFތ<{)6"D"BD!"D"BDp+|do~\z;w>ַx"BD!"D"BD!"Dx<)-ζ87]ƵD!"D"BD!"Dﳿ>ﳿ>>"BD!"D"BD!"DA31ōƇN!"D"BD!"D"BDgaA8{,A"BD!"D"BD!"D"B^-9,o()nY{"D"BD!"D"BD!"DG:u}g}g'|'@"BD!"D"BD!"D>O7Jq._<ۆFq._:[wٌ3=3=3=/6#v7f?;|m;|m;|mo~߻w:ƅ??|{~4 4_ŷ?&=xWܧv.ߜw|w|w|wGo|۫ׯɶ0=3=3=3=3=y32?:xbp\ˍk888****N:Ž{ ơg7ޠyFqq-\} Ŝ[mjR IHB$$! IHB$$! IDs3?3,K"v7 ?uiB$$! IHB$$! IH"BR8]}>Oqqtxou#n^-Zp{jՂ۫W n^-Zp{jՂ۫o^q~緹 ,G^-Zp{jՂ۫W n^-Zp{jՂ۫W n^-Zp{jՂ۫W ޼;sRqr18sÇHB$$! IHB$$! IgտJ4|;3 ;;;|3$$! IHB$$! IHBCS?fg[W.z@$$! IHB$$! Iܸq~찳;;;찳;;;|oͿI)IHB$$! IHB$$! I?{Cq޻sHB$$! IHB$$! I_UOܻ?'DIHB$$! IHB$$! IHB$^{ xFq#oF=q$"$$! IHB$$! IHBGg>vvvg>ßɟp~~_+/$$! IHB$$! IHB>#y4Ãg[׮rU$! IHB$$! IHBw{]vvvaggvvvaggvvvW|@D IHB$$! IHB$$!g;7~p:C$! IHB$$! IHB$"oo?ܹ݉P5AD IHB$$! IHB$$! IH`ZrsXPSx񅳼;HB$$! IHB$$! IHB? /;;;찳;;;؏c߿$$! IHB$$! IHB$$ ōR㶡Q(nlƁ˗֝c68C8C8C͆]+_SO|ji>54G›wns~gy->zą?fx _oqlO?ͧSO|ji>54o_^-~uNqqqqqɛ!CZn\UUQUUUQUUUQUUUq){/g0=c{~S8p΂[c pW~W~o -TUEUUTUEUUTUEUUp%ݺ+/] #3=3=}'Ώ<׹{ =.'Q(n7N]aSp˴MM@$$! IHB$$! IHBĹs)vwwYۿg?Y?Lӄ$$! IHB$$! IHB$JqNWS(n/?su[s9rz9g^Y/笗s9rz9g^9^/y3O??sYfnr^^Y/笗s9rz9g^Y/笗s9rz9g^Y/笗s9rՒRɖ?銇" IHB$$! IHB$$찻>9ڶ*vvv峟,$$! IHB$$! IHBCS?fg[W.z@$$! IHB$$! Iܼy]vwweww]vwweww]/R$$! IHB$$! IHB~Μ;7? $$! IHB$$! IHBģG_5>ol[]?y~g~W^y@$$! IHB$$! IHBkWy˸e7>DD IHB$$! IHB$$! Iܹs__ _.|_ggyW$! IHB$$! IHB$$!`ΜxGl3=W._b[FqQ(n7ō|<7ōFqQ(n7ly_mNm᷾ 'BqQ8nݼÓ-ōFqQ(n7'­׹u:nmq.]8[w@$$! IHB$$! IHBx ~~}s\rϲK?.;;;o$$! IHB$$! IHB}3Obx1lsU_ $$! IHB$$! IHBwWvwweww]vwweww]vwwi>C"IHB$$! IHB$$! I>w)n7>>O?uHB$$! IHB$$! IHk_??οfo͗%x癦 IHB$$! IHB$$! IHBՒ/RƋ/w@$$! IHB$$! IHBRJ:_eww]vww_"??s=GD IHB$$! IHB$$! IH ōR㶡Q(nlƁ˗֝c68C8C8C͆]Wo ?:Q?cxlc<6(rWxΚ٭nl30=EnOWݿ߱= 4ML4ML4ML4ML4ML4ML4ML4ML4MH^''K_of;;| _<#~2M41M41M41M41M41M41M41M41M;|}ōş޸۫Ϝy]vwwk~79s,X/gGGGGGGGGGGGGGGGGGGGGs/:NN7gNW0M41M41M41M41M41M41M41M4찻>9ڶ*vvv峟,4ML4ML4ML4ML4ML4ML4ML4MLDD;ߣe3l-+_b\0M41M41M41M41M41M41M41M7n`ww]vwweww]vwweww/~/"4ML4ML4ML4ML4ML4ML4ML4ML4M|'9Uqw(n7{$1M41M41M41M41M41M41M41M4_=/O#_E/?\|`&ib&ib&ib&ib&ib&ib&ib&ib&i7x˸e7>}$ib&ib&ib&Oxu.9 }RRՔ$؛81l v ihBB&!w۵$"۲]VJuQT*dɲ囬w9.~y5ZkhZFk5Zkָ{.7o;ر;vcv; _pq]ZkhZFk5ZkhZFk5Zkָ{.9;O:C,-2d!K"K"K"K"K"K"K"K",dIdIdIdIdIdIdIdI2thasg)C =O ,,,2dޅwe K"K"K"K"K"K"K"K loERd }-ZkhZFk5ZkhZFk5Zkܻw5>377,+++ܹso~1;;˗%jhZFk5ZkhZFk5Zkָy&gE$,{ݣFk5ZkhZFk5ZkhZ£>1o6O=5޽Kk5ZkhZFk5ZkhZFk5Vyd,,,;޽Kk5ZkhZFk5ZkhZ;'1033Ï~#ٹs'fff׾@k5ZkhZFk5ZkhZݻw~/<`cFk5ZkhZFk5Zkhq=}]>Oc1c 1c0`sW^ݻhZFk5ZkhZFk5ZksYY׮^grZkhZFk5ZkhZFk5Zk|_eǎܹ'x#.\Ã>{.5ZkhZFk5ZkhZFk5Zk9}F,_}{ZFk5ZkhZFk5ZkhZFk;wuvbǎر;vcv'?I+Wp=ZkhZFk5ZkhZFk5ZkhQJa3\r, H dIdIdIXZ\;w,Y,\ 6VǸoztd:a20NL'w>oǏ;w,8Ż7o\q_ٗL& td:a20Nɏ\^SX ,Yxg;w,1x's38sd~~躎躎躎ػw//^8Ow|sR\;75@ƿfggy9tܻGSTi4U*MJSTi4U*MJSVɒH1q:wޥTi4U*MJSTi4U*MJSTiܻww}<'{O>|'|<ɽwi4U*MJSTi4U*MJSTi4U*w[9s{o\gȂE,dIdIdIdIdIdIdIdIY:,,,,,,,Z-Gavvc |A:w2dʐOp)ʐɒȒȒ(Cf{(]xZ$$$$$$$$ʐ:Q$E,,oTi4U*MJSTi4U*MJS½{++ܹc ,<ȷm00;;˗%j4U*MJSTi4U*MJSTi4Un=å.%1d p嗸wMJSTi4U*MJSTi4U*}Q0`,ԧ~4U*MJSTi4U*MJSTi4U*k+ObaffG,<Ν;1033מxݣTi4U*MJSTi4U*MJSݻ\v݋o0da± nnTi4U*MJSTi4U*MJSݻ{1`1c 1c0}Wp5*MJSTi4U*MJSTi4UZky9,,kW{s6MJSTi4U*MJSTi4U*5կc1ܹ}kloo`ann|3ܽ{JSTi4U*MJSTi4U*M q))r$^>x=ݻGSTi4U*MJSTi4U*MJSTw/_駞~=${I<|'8rTi4U*MJSTi4U*MJSTi4UZka`3\r, H dIdIdIXZ\;w,Y,\ 6VǸoztd:a20NL'w>oǏ;w,Yxg;w,K 8~td:a20NL'L& ;1˫=s!;w,Yxg%qνyg{vcu]u]u]u{ŋ^G_)o~]k>ܷƍxU/y{\_W0??Out]Gut]Gut](1cعs'˿&ܻ****ʽ{82"Y)<ׯ_*****޹C)7npu_׹~:9gT*****JSڞ߸ΐ-+K YȒȒȒȒȒȒȒȒtp! YYYYYY ,/-#sN1c0ֹ!SמxӧOQLDDD2[Gy;2%%%%%%%%QQ")2daοE(***r=N8?Ν;1`E>O1771Y/QJAUQUTUEUQUTUEUQUTUEUQUTUEUǑ}3\"YC޽^~ww****0 Yxg;R`cm/}1NL'L& t}' 79q1xxg;w,Yxgβ/ǙL'L& td:a2O38N2Yxg;w,YbLOܛgpk8<]u]u]u]ױw^.^7!2 A"{M}?7;?Y>_x7:::c~~EΟ{[>{xg%8˅+G8?W•Dp/q׹}YYYelpԔ, I/͛2X+c2X+c2X+c2X+wn捅>0;;1c vG1c ;www0X+c2X+c2X+c2X+crs8۳oi_BDĉ Gy#lmak[G<6y#lmak[G<Nl{ivڅ1c 1c0077Ǯ]?~=6y#lmak[G<6y#lmak[G_$xǐ! qzz;o3X+c2X+c2X+c2X+cܹ}#c0`1c 1cWWq2X+c2X+c2X+c2X+c2J2v\}$$>}+usdVZkeVZkeVZkeVZkeVZk8.+~W~/ǏsskeVZkeVZkeVZkeVZkeVZ9\zg߸ΐ-+K YȒȒȒȒȒȒȒȒtp! YYYYY ^^⡇bvvc 1cxyYʐ)CkO<ӧ(C&K"K"K wjȒȒȒȒȒȒȒȒ(Cf{([Gξ[keVZkeVZkeVZkeVܾűGyعs'1c_u>O1771Y裤keVZkeVZkeVZkeVZk%Kb\"YC޽۷n1X+c2X+c2X+c2X+cC_"sssc0`1;wroqUnkeVZkeVZkeVZkeVZ}yd,,,GZkeVZkeVZkeVZkes7333c>MwksN1_obVZkeVZkeVZkeVZk8r飏xٽC,`:wnfVZkeVZkeVZkeVZu&o;ǧ?i1c0`1c 1|rskeVZkeVZkeVZkeVZ9V^|Y9YY׮^}{keVZkeVZkeVZkeVZkX?Cv؁1c sss<ڵ c fggyy嗹s6c2X+c2X+c2X+c2X+obzb b g!KW_ p-ZkeVZkeVZkeVZkeVZkeVn#???G __?r0c2X+c2X+c2X+c2X+c2X+cg\r, H dIdIdIXZ\;w,Y,\ 6VǸoztd:a20NL'w>oǏ;w,Yxg;w,K 8~td:a20NL'L& ;1˫=s!;w,Yxg%qνyg{vcu]u]u]u{Y^\,Yxw+]ʵxsysu,zՕU6Wyu]u]u]1??"Ͻ-z=Yxg•#_y{+sJ"8˗8ܾu,,,2d6V8sjJȁ1RJ(eRJ(eRJ(eRJ(eq |scnnc ?kk_5cعs'0dJ(eRJ(eRJ(eRJ(eRjo\g\v,,Ǐ?a6W9αumslccX:69αumslccX:Ǐn0Oٵk1c0`ann9>?#~ʱumslccX:69αumslccX:69~K2%ls{;R 2P@) 2P@) 2P@) 2P@) ܺ9o|1ر"o[?affc 333ܾuRJ(eRJ(eRJ(eRJ(eq9^";, Y8tS'OpH) 2P@) 2P@) 2P@) 2p*1c0`1c _U)eRJ(eRJ(eRJ(eRJ(e Kb_ ?x,,?x/u$$bܸܳ~Z 2P@) 2P@) 2P@) 2P۷__ [ܾuW_=Ν;1ưccRJ(eRJ(eRJ(eRJ(eG?g Ypls5nݺI) 2P@) 2P@) 2P@) 20gӟ41c0`1c >SkRJ(eRJ(eRJ(eRJ(e{wοEDĵWxn_G) 2P@) 2P@) 2P@) 2P@) ;vΝ;+66`ann__`߾P@) 2P@) 2P@) 2P@) 2Pͱrb{ b g!KW_;oss2P@) 2P@) 2P@) 2P@) 2P@) 20 `nn9?2P@) 2P@) 2P@) 2P@) 2P@) 2PʀwOse$r. )%%%ciqϟ#xw,Yxgβtp'X[g}L& td:a2pxcuMN?F ,Yxg;w,Y,-,pK||q& td:a20NL'|xSl.r)nSw,Yxg;w<99mn2??Out]Gut]Gut]Guݻ?dyqg{xg;w,Yw1p6뫼麎躎躎똟gqqA,Yxg rJ⑯<=ǹp%KzunߺEDDD2k+95%KBRyw)e g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g"g0p}_cvv;w;$rrrrrrrrrrrrrrrr,\~OsU$$N?Ə$GV9vU6W\_es}U6W\_es}U6W\_es}U6W\_eksg v1c 1|gguycl*l*l*l*lrlc{\|R$ynoG3331;v sȭ#?ɏ ͛#9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 u,/C,^:6XYYYYYYYYYYYYYYYkauuc 1c0`1c sss*ׯ_#g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!.~>YY~>?{yj-,,,,,,,,,,,,,,,,,sss1VV377K믿F9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 VY[YFR$K"(C&g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!gaɓ'?~0˿ˬf! /}ij{o\gȂE,dIdIdIdIdIdIdIdIY:,,,Z2yGعs'1c0`ç?iξy,,'ӧOQLDDD2[Gy;2%%%%%%%%QQ")2daΞ9MZ 377,o@?`nnY}QYYYYYYYYYYYYYYYYYޱwi.}t,! ^xq,,,,,,,,,,,,,,,,XaooӧN!(C&g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!gA6%%qU!pȿ˿0331'usX9pv܉1;vZYYYYYYYYYYYYYYYẎ70dGW9VrrrrrrrrrrrrrrrJxix1c0`1c 1|e29 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 C^xn,,kWܾa,,,,,,,,,,,,,,,, Y?}vΝ;˿/\v7ϜÃ>ȳQJ&g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g!g8)r$^y< ,,,,,,,,,,,,,,,,,,,,, Yx|ˏ177g>^y%r,,,,,,,,,,,,,,,,,,,,,,{yW.%tpI,,,K };xg;w 8== _>Mc20NL'L& Ncor1bxg;w,Yxgeiag_ӏ3NL'L& td:c'?7bsygNqtc2dxg;w,Y8ι7lplsy:::c޽\!ˋ 8;w,Yxg;K S'\_W0??Out]Gut]Gut]wȒy}s-$$]s:$$E$E$E$E$E$E$E$E$E$E$E$E$E$E$E$ED'?I˗>b$?> eȂH2ǏkYȒxWx[!#)")")")")")")")")")")")")")")")")")")");oo1.C ,)$E$E$E$E$E$E$E$E$E$E$E$E$E$E$E$E$E$E$E$ES\r, H dIdIdIXZ\;w,Y,\ 6VǸoztd:a20NL'w>oǏ;w,Yxg;w,K 8~td:a20NL'L& ;1˫=s!;w,Yxg%qνyg{vcu]u]u]u{Y^\,Yxg;w,Yb:*zy:::Y\\79Co;w,Y\x+s|q.\Igzx۷n%%%Q gNMɒ9~޽pD1b 1c @1b 1c @1D/<<$$E^___;b 1c @1b 1c @1b \rOsU$$N?>ˬ.2ˬ.2ˬ.2ˬ. ?ɏc׮]<# K9v#kY_]f}ueWY_]f}ueWY_]f}ueWY_]f}ueWY_]f}ueW9v}I\D)YO033ϳo>ʐ)e?>'7ʐ1c @1b 1c @1b 9i^";, Y8tr&@1b 1c @1b 1tfffafffffaff>Os%b 1c @1b 1c @1b 8g;4?x,,?xC1c @1b 1c @1b ~7~o|ܸq"C|__W%c @1b 1c @1b 1c @Y+KFR$K"磋R$@1b 1c @1b 1c @"{|[_m/9ooo}}I~<"1b 1c @1b 1c @1b ҥ|#._˗>򥏸|#.~?~.b K"K"K"K wjȒȒȒȒȒȒȒȒ(Cf{([GgN"g!@1b 1c @1b 1c @YC22ÐI)bw|_k1c @1b 1c @1b  >>HĐw/_d21xb 1c @1b 1c @ׯ]7~7Mr[xg1c @1b 1c @1b 1c @1b dI:u$$b>\LJ1b 1c @1b 1c @)7'> 'wR!?033ggdI1c @1b 1c @1b y <^\! CmnBb 1c @1b 1c @"$fffafffffafffffxxI)c @1b 1c @1b 1cgȒȒv H)c @1b 1c @1b 1c~?#._Hbq~I1c @1b 1c @1b 1c @ֱM.F,_}z D1b 1c @1b 1c @)E.}t|[613ַſw8ujH"@1b 1c @1b 1c @ׯ]e3Oqe$r. )%%%ciqϟ#xw,Yxgβtp'X[g}L& td:a2pxcuMN?F ,Yxg;w,Y,-,pK||q& td:a20NL'|xSl.r)nSw,Yxg;w<99mn2??Out]Gut]Gut]Guݻ?dyqg{xg;w,Yxgs6뫼麎躎躎똟gqqA,Yxg rJ⑯<=ǹp%KzunߺEDDD2k+95%KBRKy;#xG;w#xG;w#xG?o9C ;>!?O#xG;w#xG;w;4ׯ]%K"Kc߿"k+K,k+K,k+K,k+KY;O#+ŸٟKY[Ybme%VX[Ybme%VX[Ybme%VX[Ybme%VX[Ybme%VX[Ybme%VX_]+/Q@==;w#xG;w#xG)7u|lY'ŀ!񍯳gng?#@;w#xG;w#xG 7O/cK8},;w#xG;w#xGӧٽ=wgn͞ݻٳ{7{vfٽݻo~~*;w#xG;w#xG;lOsɒȒϑ%%xG;w#xG;wa?ޑbq^zi?)w#xG;w#xG;w#xGKX[9HD/>? O;w#xG;w#xG1x>ognvÞݻٳgg{v} )w#xG;w#xG;wl7O:C,-2d!K"K"K"K"K"K"K"K",dIdIdIdIdIdIdI Y(CFR$O <1xje`BDDDDDD2[Gy;2%%%%%%%%QQ")2daΜ")#xG;w#xG;w#xG)^= ǎnb xG׮ׯ#xG;w#xG;wkt<.%1d ^$g;K;w#xG;wq)Yw#xG;w#xG;w#xG;wH1lY'K"K" K #xG;w#xG;wH8 ٳ{7y$ER ;vognO'xG;w#xG;w#ϻg Ypls,xo #xG;w#xG;b{=wgn͞ݻٳ{7{vfٽ=w߹#xG;w#xG;w{y[dIdI\zv#xG;w#xG;wS?#xG<:Ǿ{#xG;w#xG;w#xG;R kYȒxW89R #xG;w#xG;w;gnvÞݻٳg7g{v?r|k;w#xG;w#xG;wv23Oqe$r. )%%%ciqϟ#xw,Yxgβtp'X[g}L& td:a2pxcuMN?F ,Yxg;w,Y,-,pK||q& td:a20NL'|xSl.r)nSw,Yxg;w<99mn2??Out]Gut]Gut]Guݻ?dyqg{xg;w,Yxgs6뫼麎躎躎똟gqqA,Yxg rJ⑯<=ǹp%KzunߺEDDD2k+95%KBR/ֹ7 l=8l=8l=8l=8l=8lO,8l=1xqg{qg{qg{qg{?`3OsU$$Nlo?A/deyEVYY^deyEVYY^deyEVYY^deyEVY=|W_y,\`meEVYY^deyEVYY^deyEVYY^deyEVYY^deyEVYY^deyEVYY^deyEVK2%lϳ{z28l=8l=8l=8l=Dl=;$$$w8l=8l=8l=8l=8$/C,,/qls<8l=8l=8l=8l=Y$$$$$$$$$$Rxl=8l=8l=8l=8lύS\}$$>}^|nYqg{qg{qg{qg{m=8%z=8l=8l=8l=8l=8l=DX^oǏ;w,Yxg;w,K 8~td:a20NL'L& ;1˫=s!;w,Yxg%qνyg{vcu]u]u]u{Y^\,Yxg;w,Yb:*zy:::Y\\79Co;w,Y\x+s|q.\Igzx۷n%%%Q gNMɒYZ|Oq ~B~rt`{ 6f 81 q` <=COlVQ(RZE(ҙnQZS->y~7dz?35gjԜ9SIDATsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjǼjϳ? §_[^ی> sAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzpAzp;ogᆩjᷯf@-35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjt{ߺU)nʇ'~>ǾQKL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙3dJ~W_|Ϋo鷘 S^ngԒ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL-]>!*ט r}ś?Q3jԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35?#'>#^m<7Bzpb* `* p}x}ST0LST%7x|'| _}}.3Ox鷸)`* ƣ>'_pLST0LST0G}>@7w{:vjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsLy_|)vؿSTx?0j~F-35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gj{Ǐ>FSG5?L͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35?뿥̗pRKL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙35gjԜ9SsL͙3dJ~7Ojo|`*s>9Ϝg^y>w.SKBV Z-ZhjB#w΍78Ϝg3|ƍ\\\G\FV Z-\“]/_◿.\±}o?b* B1u_ͫ-~7:_.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32.32чjT0~8v.޼[7}&oܾu۷nrMnߺ[7}&oܾu۷nrMnߺ[7}&oܾu۷nrMnߺ[7}&oܾu۷nrMnߺ[7}&oܾu۷nrMnߺ[7}&o&znrw#b*cnw.̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺\nw]f>y(jw{vxǟ|̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬2?w鷨\c*\՗_p >rɺ̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̇L~gU)҃ ST0LST0Lƃ㦘 `* nwO/x?9LO|? 1LST0G}7O `* `*>G}5?^Mz|ɺ̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺̬̺|<#?`*Ԓywx?b]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef{]b* *|gܾ>x;uYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYK>~ǫoⳕ뫆`*ƽwxuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYut|; T0[>`YuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYK}m*\c* wYKef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]fef]f>^nqcZ- fʃr`* W>_}9WjBV Z-rur Ә^˗8]8]8]8]8]8]xKeS>CZ-h?O|CBogk.O.O.O.O.O.O.Og;:>FV Z-ZhjB'+dzu>|7np>9Ϝg3|W^oy>dZ-ZhjBV Z-Zj̟s>9Ϝgnܸ_~)}ĻoukZhjU-<م_W/~+U-=#`*ӘXKT1'_{ ;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;cq% `V| ߸wpݽýww;ܻ{{wpݽýww;ܻ{{wpݽýww;ܻ{{wpݽýww;ܻ{{wpݽýww;ܻ{{wpݽýwx,%Ba* BO{a;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;=oyV `*\o_펡nwq5?;`* ګ -c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;㷯f|7UT0LW_~`;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;c;oqօa*)҃ ST0LST0Lƃ㦘 `* noHw&?/?gTñ}^{ST0LS!x|k`* `* Bx\c*5*W p*.՗s*Z-Zhjƒ#WW,0e^|剗O^/?哏?jOϸӿ/y?[G? o|[~~sN'N'N'N'N'N'N'~gճ_l`zpBV Z-ZhjUӕZ2o:>|ȍ78Ϝg3||>+鷼sqZ2Z-ZhjBV Z-\_5O{unܸ||>s>9Ϝg37n/?Ǐ>ݷ5Z-Zhj/~+Ov{~ST0iL|:_r`*\s}ոV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Z뫆`* 7͋y9/^<ŋx/s^x΋y9/^<ŋx/s^x΋y9/^<ŋx/s^x΋y9/^<ŋx/s^x΋y9/^<ŋx/s^x΋y9/^<ŋxϟ7׸)`* 5׭rU Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhpU r0LST0Tj\BV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-\u\c* `*WrU Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhpU r}`* rUZ-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV ja* nJk7T0LST0LS)`* ?ݺO?ċ3Bپ{}kk`* n<y5T0LST0LS!x<T1LkWjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Wp*&ט `* r}U\BV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-\Պ^_a* `*\s*WjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Wp}0LST0Lj\JV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-\u\c* `*WrU Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhpU r}`* rUZ-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV jULST0Su+LSTjϹjV Z-Zhj[+O_~2/]K_'/ŗr}hr]=n;o'--?9?{3ٯy{||0OjBV Z-Zhjq|J-x>ƍg3||>s>yWx[޹O-V Z-ZhjBV 'x{ܽ:7n|>s>9Ϝg37npqqGorZ-ZhpU Ov_'pU =oy?`* 4&~+LnND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8NFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFD8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8FnFnND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8NFnFD8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8NnFnND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8NFpn`* `* U[qSLST0L7u~ϟSrf۾}Gګ={b* `*>o|͟1LST0LST7}3FD8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8FnFnND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8NFnFD8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8NnFnFD8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8FnFnD8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8NnFnFD8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8ND8Fn;QT0LVypqVijBV ubiLg/K.O.O.O.O.O.O%^~2_|)}r+]kG375o|?9?{3ٯy{||0OjBV Z-Zhjq|J-x>ƍg3||>s>yWx[޹O-V Z-ZhjBV 'x{ܽ:7n|>s>9Ϝg37npqqGorZ-ZhpU Ov_'pU =oy?`* >g)=ǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾq:6y5\M1LST0LSTjn`* j޻ `* ƣ>'_pLST0LST0?|[{}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}{r`* W>_}9WjBV Z-rur Ә^˗8]8]8]8]8]8]xKe3+rk|oי?W?7/zk3LnZhjBV Z-Zj\~1RK7^Çq||>s>9Ϝg^y>w.SKBV Z-ZhjB#w΍78Ϝg3|ƍ\\\G\FV Z-\“]/_◿.\±}o?b* {0iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcbӘ4&11iLLcw:?T0LST0LSTjn`* _}9WjBV Z-rur Ә^˗8]8]8]8]8]8]xKes>|_!oa[_g7|_剟=<|=>[g>'hjBV Z-Zhp}ոc>t[o·r 3||>s>9ϼ+<}-\ܧLV Z\__q*Z\__c* G<|=}7np>9Ϝg3̍7?x7nV Z-Z'_/œ]c߼T0LSM 7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7ST0LST0LS)`* ?ݺO?_3W_//'sګ={b* `*>o|͟1LST0LST0ܔp#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7pM1LSTjϹjV Z-Zhj[+O_~2/]K_'/ŗǸn^7j?⭯q1?__剟=<|=>[g>'hjBV Z-Zhp}ոc>t[o·r 3||>s>9ϼ+<}-\ܧLV V%wͿ3rn_\w_ƍg3||>s ...Oy#}M[BV j.◿/~_djؾ71LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSTjn`* ?o wOy՞w1LST0G}7O `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `*\ʃ|\JV Z-Zh'Lc/?{._tytytytytyty/OjZhj!p~ȴZ|=>Xk.O.O.O.O.O.O.Og;:>FV Z-ZhjB'+dzu>|7np>9Ϝg3|W^oy>dZ-VO?;\]%ܽ:7n|>s>9Ϝg37npqqGorZ-ZhpU Ov_'pU =oy?`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* U[qSLST0L7u~?ȓb/yG||oؾ{kk`* n<y5T0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST?Aڤ}z>,T=/bMRcbD9QlrOrk&#ˢiij%`  !{0~=rullllllllllllllllllllllllllllllllllllllp]O^;o 1e.cv˘}򉫲tg_~A?ns߹w;w|з~/..cv˘]p[1enjXݖSW/w;w~n |sO=Ļw2f1e.cv˘]2fuq%|5OQ_x9iiiGy۷kWG.cv]>/_??~W?#6o^3w_7K=c=ё49M49M49MGGG^vͷ|W^~]mY\2f1uo[_7c=lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllu'zl;߽__ʿwşwǟw;>ll?wlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll\׮o.e.cv˘]2f|⪬?g~xw;w~<7_K/˘]2f1e.cv˘]2fzG_~ns߹w;w_x ~m{ixU'޽S1e.cv˘]2f1/9|sytt4MN4MN4MN4M>#޾O]{u]mcY]!g{=8~ś?ycztt4MN4MN4MNё׮]7__Gw[1e.cv7?/}֗ o~={=?C?wl c/μ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3?8sllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll'l4~}ro>O;./|۾w3Olީ/3?{lll0l.#?8̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/ϼ8?̋3/e|dlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllu>y2\2f1e.c'ʺ }~}`~ns߹w>>xAzuoۺe.cv˘]2f1e.cɫW}w;w~nsW^g;u˘]2f1e.cvۺoc'~/\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>ʥ?=-6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6O>q; 6` i-?|c?|}3Olީ/3?{lll6?x==C?\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>\>ʥ_keillllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllle䵫p˘]2f1'*O7|7;w~ns+}׽ n2f1e.cv˘]2f1'^7_t߹w;w~^~z7^{we.cv˘]2f1enKk#s9M49M49M49M?<~yǿoWgO]?_/=>أ9M49M49M4yttk|}ݖe.cv˘]K_|Û:fOݳl/}|֩NOuzSoz[:=驷NOuzSoz[:=驷NOuzSoz[:=驷NOuzSoz[:=驷NOuzSoz[_ݗ_z_}|llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllm]|illNwouo>_} }۾w~g 6` ޽S_~yqg~| 6` 6` 68˿s| o:驷NOuzSoz[:=驷NOuzSoz[:=驷NOuzSoz[:=驷NOuzSoz[:=驷NOuzSoz__g` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` kW}7]2f1e.cvO>qU՟o3?o<w;w~nWۯ{e.cv˘]2f1e.cvO^o|/ns߹w;w/?=o?ީ˘]2f1e.cv˘|G>G}<::r&ir&ir&ir&yo~ק=,&,rCW_ugWk?~q_g|G=::r&ir&ir&ik׮/돻-˘]2f1ٛ K_7?u̞ܻg 6`~q?+mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUO C޻kllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllu'zl;}r{ܻ;u]{{t䍗_lw/>/n̏ޱll?x?{UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU>/6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`2|UyMee.cv˘]O\u>̏w~ns߹||惾xuq˘]2f1e.cv˘]W/w;w~n |sO=Ļw2f1e.cv˘]2fuq%|5OQ_x9iiiGy۷kWG.cv˘]?r̳˘]?tC1x~=GGGN4MN4MN4My5~u_yEtqeq˘]2f1{Wo}+ٳ?{ll7ʥeQUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUϿM?wlllllllllllllllll a3lͰ6f a3lͰ6lllllllllllllllllllllllllllllllllllllllllllllllllllllu'zlVo_7{}W?_O>rt'{lw/>/n̏ޱllﶗ=?;SUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU޽{~Տ?k 6` Ͱ6f a3lͰ6f 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6 vw~u.cv˘]2f1We]>cƃ>~ns߹w;xo7^zm]\2f1e.cv˘]2f1ի>;w~ns߹+_oSOk?e.cv˘]2f1m]x7_1?x{Σ#ir&ir&ir&iGw}U˘]2f1e.cv˘].ze>أ9M49M49M4yttk|}ݖe.cv˘]K_|Û:fOݳl|+\EUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU?7=llllllllllllllllle?ÇC>|>ÇC>|>ÇC>|>_g6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`ۺW` 6` ;>/??o߿Olީ/3?{ll|^?LUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUOݻ6` n/>ÇC>|>ÇC>|>ÇC>׾6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6 vw~u.cv˘]2f1We]>cƃ>~ns߹w;xo7^zm]\2f1e.cv˘]2f1ի>;w~ns߹+_oSOk?e.cv˘]2f1m]x7_1?x{Σ#ir&ir&ir&iGw}U˘]2f1e.cv˘].ze>أ9M49M49M4yttk|}ݖe.cv˘]K_|Û:fOݳl|+\EU^/ 7槟~j>|Q?QUW> o~窪ow^{߿ﯿRO;sϻ3UU[{lllllllllllllllllީ/\UUUU̻p ϶_'[/|ܻ?wmީ?}7۶mmk[ֶmmo|;7` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6.']t]˘]2f1e>UYW/p߹w;w^yo>[o^p[1e.cv˘]2f1e>y}~ns߹w;<>Ӿګ>O{.cv˘]2f1e.cv[7^_siiii|G}]v12f1e.cv˘]2f1x~=GGGN4MN4MN4My5~u_yEtqeq˘]2f1{Wo}+ٳ?{ll7eQ{O?Wۯk~^LUUU~wW_w>O~_;gsUUUGO'>g?k_l?UU?7=lAueeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-ݿ7o駟z}߿gy}?3?O?>{}߿_};reuq[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:um]lb 6` 6`ۺW` 6` 6wU߻X{'6` 6`wԗ_|_߽c 6` 6` m/z~v^5~wn|UUU_կo-w/{_{Wo΍sUUUk wU<7o|璿կ{~߽񁟪ܻ?wm4^_g~>~g~~z}޿|C̏umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:u*IDATmnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[:umnp[ۺlu>y2\2f1e.c'ʺ }~}`~ns߹w>>xAzuoۺe.cv˘]2f1e.cɫW}w;w~nsW^g;u˘]2f1e.cvۺoc'~/}G=::r&ir&ir&ik׮/돻-˘]2f1ٛ K_7?u̞ܻg 6`?W..;?w?߹=>c_>/>9Ͽu|Gw}S˧OǎO?G|vOUUW>TU[{l߽]u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/^u/>M-'W׿>y ?wϟ~SO'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O%?c",pD8|>D !ݪ/.{P*ӭFZ,5-R$Y"IKbTu*3~>jsj<2ZVjX-e` 2ZVjX-e` 2ZVjX-e` 2ZVjX-e` 2ZVjX-e` 2r7qm܄pnM 7&f"4n 7&܄pnMׯRoOs 7&܄pnMwj̝ 7&܄pnM 7q!B!B gΜwx(^foƁiƁi، q{> n^KpnMx쑇Lp:?z>oއ?ܹ???}Λ~]G\_{7mv~O_g^tǿՉ8;SOr8ϸ 7&6⩳|;?u?O\ă\zwS޽x77<";w_~ zeS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9/"?'snM 7&܄pnbo3x}7܄pnM 7&c)çцpnM 7&n;MC^}܄pnM 7&܄~C|x& _o|t=_wx|| ^e?_~C1 $~?{׼|G S|#w>UC~?OJO{C~7>~/} <'۸ 7&_?[7L>xT^巿xܹs}g98))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))xn 7&6H~4]fƁiƁiƁi_<6^W_s=, zb`^pϛp_{^z968nѝW#wLLw gY, zb`^7?/>~/\}7^380808080{2x9w,[[[!B @!N:\3[L4L4L4L4L4m&:p4}-B!B @-Μ9åfSQ41808}Ab3ܼ~37&܄p#&Svtw#n{/?^~7#23~_yy/7w#n<ŗ~ N sGo?1/>ȳu>9I'9g܄p{y7W8HzN$='IωDs"9HzN$='IωDs"9HzN$='IωDs"9HzN$='IωDs"9HzN$='IωDs"9HzN$='IωDs"9HzN$='IωDs"9HzN$='k8b[~ 6ϞzZsn,Ofbn1L#)"oߧZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ޿|ܹs7&܄pnM 7_<;nM 7&܄pn|G[~|\h}M 7&܄pڡk/s>nM 7&܄pnM\!>y+s_>oo>@>~<U?>2/>|W;gw)zw~mn_O^fwb7?s~o| ..w8g~ܹ}7&܄6 ww-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}{{pnMli޻t4280808xm6>.={X, zb7>޽sm&qdoy׏5_/}kGT|?m/^xϮ?b`^X/X, ϼ~Ӝ}[iƁiƁiƁiƁiL\|gqŋ/<Ϲg"@!B!p)> /98bq`q`q`q`q`o3lmmB @!Blmmq.]|7miƁiƁ8> wqkq8ϸ 7&܄x}y4>Oǟpw"'˚0`ow~꯸#o/= g?l}/c~1.]$񳧞pqnMM?C;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Yrdɱ%N;Y򭓯W?x޽4|M>&/ˉb#~Լګ?=㭏Û|Mn}˰/9Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y 'ܹpnM 7&܄L/f 7&܄pnM 7quXʣ-?x}i}&܄pnMNSеs{7&܄pnM 7&_G~޼ / .ls} =N?|o~N0oxk 䫟&;p:<p=|/y5} ;䫟&W8g~ܹ}7&܄6wM 7F3yE64L4L4L@iqS[7s4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW4uESW9.ጛpnM 7&܄L/f 7&܄pnM 7quXʣ-?x}i}&܄pnMNSеs{7&܄pnM 7&_G~޼ f|?tk/_8?|n~|7>n|g+wt ?3-n~`w[;\ op8ǹs6nM oyu[sUn\ʵ9ׯ~@},v﷼V׸q*7]壛7H~j+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++[kqnM49{.Fq`q`q`O͆yW܅g}zb`^X/X=ǻ|4c80~[^~w  )O<ͳKϲX/X, zb3o~_|4g_.;o}gq`q`q`q`65en sY!B @!B:u>gN3ƁiƁiƁiƁiƁiLuk%i<[[[!B @[[[9sKͦxiibq`q`37Ľ<7fy/mg3nM 7&oGf3M|Twy |t;w䎱G\H_wσ?}uux*=;8d'y_?`7?/?}?x$~ԓ3nM 7n||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||>y_{׮r]µWq*׮^\ׯ}Wv ׮^+t{_>ͥw/r8G92#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12ϑ9p{qnM 7&܄p{&܄pnM 7&_ηKy7Ͼ>͵67܄pnM 7q{i2wn&܄pnM 7&kȏÛ7Tɟ~o=+ο ||rħqSO|+_㩴bƗO'_qWx[#>wGr' ;?׿u||c?ΟG6p8ǹs6nM;y36ׯ}Wv ׮^\z׮r\zׯr]µW>Z#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#s12#sܹpnMli޻t4280808xm6>.={X, zb7>}";_>WnO8y8ww~.Ϯ?b`^X/X, ϼ~Ӝ}[iƁiƁiƁiƁiL\|gqŋ/<Ϲg"@!B!p)> /98bq`q`q`q`q`o3lmmB @!Blmmq.]|7miƁiƁ8> wqkq8ϸ 7&܄x}y4'\;|O>Go3I?<7w$!yk%>_sO*b3'9|8pj'?|k?~8oC_#o^ϞzyM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7oY-^)rΝ}sg_9wuΝ}sg_9wuΝ}sg_yu~ܯy7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&6wM 7&܄pnM\~o?o~}?|kmo 7&܄pnT;teM 7&܄pnM>=ć7oc?/|o?[W_'vqO&oO~p ?/|o?Ż";|x_γ'߿<>ûgw/|Cwop8ǹs6nM}7޻.Ϝ g^9wuΝ}sg_9wuΝ}sg_9wuΝ}7^'Kóz˘pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM49{.Fq`q`q`O͆yW܅g}zb`^X/X=ǻΫ\y=.^|~'?|ɧy5]~/ ~3i gY, zb`^7?/>~/\}7^380808080{2x9w,[[[!B @!N:\3[L4L4L4L4L4m&:p4}-B!B @-Μ9åfSQ41808}Ab3ܼ~37&܄p#&w{.GGG#8:ݻܽ{#8{wrtt]=舻wr]]޽ݣ#$񳧞pqnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM mx7g33333333333)^oL 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7_<;nM 7&܄pn|G[~|\h}M 7&܄pڡk/s>nM 7&܄pnM\!>yw{.w舻w88:ݻܽ{#8{wr{##޽ݻw9:w{.w8g~ܹ}7&܄0 ,zb`^X/X, >gOs okwq`q`q`q`q`o3>_s]/<Ξekk!B!B S+|4piƁiƁiƁiƁiƁ[ξVϳE!B!ř3gtl*ٛ&q`q`6@{C޽͵67܄pnM 7q{i2wn&܄pnM 7&kȏÛ78g~ܹ}7&܄pnm&6{fbo3Lm&6{fbo3 nM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&fϜKL#808080f+|}ܳzb`^X/X, ykKp>fbqDwc߅ML4m6mF^>}/fq`id}k%i<[[[!B @[[[9sKͦxiibq`q`37Ľ<7fy/mg3nM 7&oǏ`6ϞzyM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnbo3x}7܄pnM 7&c)çцpnM 7&n;MC^}܄pnM 7&܄~{an\?}qܾpnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnb3gNޥliƁiƁiƁhyx>w>Yb`^X/X, yw8_co318080808080<9>,zb`^X/X, >gOs okwq`q`q`q`q`o3>_s]/<Ξekk!B!B S+|4pi[Wf{ϟa`3~[wW*v^+I"@!B̙3\o6KM8080q!}A~!6xi;pqnM 7qr8::7HsSzQEͅRg.JN҆)2CCh)$xf?jKܘے嵖}$<4qcyK{oa׫u*Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K~i$Ydɒ%K,Y}Ygok?iCϟ,Ydɒ%3o?i{,Ydɒ%K,Y_?_}?'=O,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YǵzO>qt\/Kqt\/_߿;߹?zW_tttttt^O_o>>8:z^:z^:zO{/v?u?u?u?u?u?u?ПW{w};3;z^:z^:>8}ᏻ^~ۛz{ݞw>;ϝs^{_[O^~qp_q7OCү~z;wz{I||>w>;=yzO>~n>?z^:>җ}___˾o1Ydɒp_?7vw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7=Ϟ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒo>$K,Ydɒ%>/g<헿y3%K,Yd=f?{?wϟ%K,Ydɒ%KǵWy|Wtw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{Mw7tw{wnozO~=,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yd=~i?kqt\/KqOC}~|^W>xW?}^:z^:z^:륷>>B_oя{|^:z^:z^?zmo}w{I||>w>;ϝ^{~o=zmqt\~K'}z+G]/~}7x'Ot>;ϝsܓ'Oz뭷[^:zz_/}+ޗ>z^g[F/%K,Yy|;~ۛnoۛnoۛnoۛnoۛnoۛnoۛnoۛnoۛnoۛs{^'K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%󇣷|3I,Ydɒ%Kg}_??y/g$K,Ydz~O?K,Ydɒ%K,YϤ_/zۛnoۛnoۛnoۛnoۛnoۛnoۛnoۛnoۛno}_/'K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YǵzO>qt\/Kqt\/_߿;߹?zW_tttttt^O_o>>8:z^:z^:zO{/v?u?u?u?u?u?u?ПW{w};3;z^:z^:>8}ᏻ^~ۛz{ݞw>;ϝs^{_[O7]7]~ۮKƿ??_Q[ɓs||>w>{IoV|a|}~Kqt\/=\/}/җҧZK}cdɒ%K=>^>^>^>^>^>^>^>^>^>^>^>^>^>^>^>^>^>^>^>_wϟ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%KGog,Ydɒ%K>?7ӿy_H,Ydɒ=,Ydɒ%K,Yd_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/_E/^ϓ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YǵzO>qt\/Kqt\/_߿;߹?zW_tttttt^O_o>>8:z^:z^:zO{/v?u?u?u?u?u?u?ПW{w};3;z^:z^:>8}ᏻ^~ۛz{ݞw>;ϝs^{_|o?o?~Oow/S?x_ɓs||>w>{IoV|a|}~Kqt\/=\/}/җҧZK}cdɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒo>$K,Ydɒ%>/g<헿y3%K,Yd=f?{?wϟ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YǵzO>qt\/Kqt\/_߿;߹?zW_tttttt^O_o>>8:z^:z^:zO{/v?u?u?u?u?u?u?ПW{w};3;z^:z^:>8}ᏻ^~ۛz{ݞw>;ϝs^{_gOɧ|/'׾o}~7^o޿7^ɓ's||>ɓz>>78:z^z^WK_J/O~/7dɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%󇣷|3I,Ydɒ%Kg}_??y/g$K,Ydz~O?K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yko|qǵz^:z^zͧ᡿wsjܿ+ҫ|a{}pt\/Kqt\/Kqt\/KOG__ttttttt |??wgv\/Kqt\/Kqt\/}ptw7=y||>w>;ϝsZvy|?z~ǥ_}r^zw=y||>w>;ϝv\/Kqt\/Ko=|z^:z^:z^z^}OOOOOOO}/]Gw{̎z^:z^:A㮗_}'Ot>;ϝs|^Ӯv\/K =Iz8d?ɓs||>w>{IoV|a|}~Kqt\/=\/}/җҧZK}cdɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒo>$K,Ydɒ%>/g<헿y3%K,Yd=f?{?wϟ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YǵzO>qt\/Kqt\/_߿;߹?zW_tttttt^O_o>>8:z^:z^:zO{/v?u?u?u?u?u?u?ПW{w};3;z^:z^:>8}ᏻ^~ۛz{ݞw>;ϝs^{_[O^~qt\/Kqt\/Kqt\/}pػ߽7^ɓ's||>ɓz>>78:z^z^WK_J/O~/7dɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%󇣷|3I,Ydɒ%Kg}_??y/g$K,Ydz~O?K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YDIDATdɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yko|qǵz^:z^zͧ᡿wsjܿ+ҫ|a{}pt\/Kqt\/Kqt\/KOG__ttttttt |??wgv\/Kqt\/Kqt\/}ptw7=y||>w>;ϝsZvz^:z^:z^Gw{oޓ'O:ϝs|ɓ'[}}woqt\/Kqp֗~K_Jj=\/_o~ɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,g,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒo>$K,Ydɒ%>/g<헿y3%K,Yd=f?{?wϟ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K3,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ |.{_gp{3hl9g{VMRQQ"hUZiQAV'ZA\f2f!+o=KB 3|?_z#` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6ྭ^'~ mu[Onm='䶞x$.{g?[ήpvpvpvpvpvpv𺇯+7Sy涞֓۶ `澞ܶUWi?+^+~c^ZG{y֓zr[Onm='䶞֓cuٗ^xş7~k5k|[_>[|Oꃏoүɇ׮w/_k|z߳76`mg>q_8y` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` } 6` 6` #O~ C}yllׇ/^yƗ` 6` 6` 6` 6؞;G_?^*_W7~~O_?ïsח]^yk<`[_>>u<~ُ^v߽|͗{~A??nl[Wכ a` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6ྭ^'~ mu[Onm='䶞x$.{g?[ήpvpvpvpvpvpv𺇯+7Sy涮y_'WOwsx/ۿ3'WW< ?Ǽ>}'䶞֓zr[Onm='ǾyvAxQUft .x<=Gǣxnu'U䶞֓zr[Onm='䶞#=w{-7{ǣxxzi[nqu|Oz^loC_W_b 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 68͋wL76` 6` 6 /?%?/M>klv^z>x_vn 6` 6` 6` 6`{G^oO>_}/|?#w=^;zr[Onm='䶞֓zrgu=][oKpxxr!/sr.\x)owk 6—rK>~ozx/l2 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 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 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 0llllp}~3|lll0 lݟx?}_~/[?9Mѯw~37 v37t;y?7_po_k>ՓWſ|E7im&^vͿV;|_}?Gw{l0 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 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 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 ll}[8O>궞֓zr[Onm=yIϟ]~Ʒ>~ם]u_ Wnɧ ?N->힯_cnG<~=?ooyS7ʳWz8;x8;x8;x8;x8;x8;x8;__}G{v^䶞֓zr[Onm='7.?=z.yǣxxܳ.z궞֓zr[Onm='䶞֓c|C^nof/\xxO~/?z?{7u链7;֏kM?/&׽'5.^1l7|k'r!OW_ll;&ll||Gnß|ׇ&` 6` ^;=p_/_;llW;n=w\rG~ǫ^^5o_za'S~/6_w___~_z?~g>7׾z{z|||??w?_W:'r$6`M<_-b'os'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr'yr';&v/?p/}6` 6ྭ^'~ mu[Onm='䶞x$.{g?[ήpvpvpvpvpvpv𺇯+7S=y[뿹{|O~WS?s~}?/_#o?G>mO<{x~yi}ku[Onm='䶞֓zr[O}>أq.\xr'>4wlly}g|ڹ 6` 6` 6+xr_yYǶssg>oO>Wy/}+^/}[_?z_oƟUOoC8w}7{/\y7[|ϛ^ea k~f͛^/!Gb 6Z7̟oxoyG}/b 6].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2v].ce2vtч/Ϲz` 6oɧz}[֓zr[Onm='/1ɾo<<<<<< >c>&_;Wzާه_7/'oySW>nm='䶞֓zr[Onm=9ͳczǭ7{K^pxx7ۣ3w3|k?ë9O}.}ҷ_{̧[?^&^ill5oO\b 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`%E_}~3|llg|_knm='䶞֓zr[Onm=9ͳczǭ7{K^pxxr'>4wlly}g|ڹ 6` 6` 7޽^=olsgnǯ/l^?x|#Uwo!_췽W}k_s+^{_o)ov{E?Eox;WǾy?{Ϙb'w/W}n ?;|alllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllk}֯r!/sr.\xz颷r?vه?'-?_|~K#OGz/}muڗ}[ow~AyV{~/^'j 6`ۋWЙϟlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllmn\WhS"['MH_8EЙo8XX3HqkssKnI|r)mֽ,cGItItItItItItItItItItItItItItItItItI꣇>{HKtItItItIW7%]%]%]%]O^77G}h...r7\!]%]%]%]%]Fګ|HKtIty׺KKy;Gn?p7|]On9,?o_?y?[c_|}g+^z;l/FoW䗿]ҥ_|w]FtItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItIˏ~>t7"]%]z~{nzq\/q8޼e|g=stsr99ݜnNyϮzwƏ==׋zq\/q8^׋zq\/^ ~˗otsr99ݜnNN7'ɗo|u=zջ?e܍8^׋zq\/q8Oo7ow~z̃ǯ޽{|>;|>{}ч|zq\/g>CW|vq{̓w=G֛^^/w|>;|>w_~7_8׋zq\/b|k|9'z{/KKt=}VKK$nKItItIwiI~n E=Y[tt#.FJ|~)2p...I.FtItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItIti>z'OtItItItItyz{x}#-]%]%]%]%]?~E~stOnݍ....w#|}>%]%]%]%]e˧OtItIt%]%]nhvw7; w#>W^p?Х[#F݈ ot#>%]n o>;...........................................................................................................................................r7b}чFKKW|?xqu\/q8^ྺӛ?gnq99ݜnNN7'3o?Yzq\/q8^׋zq\/+{o͗nNN7'tsr9_OGzg?̓^׋zq\/q87\/yܻw|v>g|v>g?>У^>s\/n'?O^ǿ_s^_p=|v>g|v=/{oq8^׋Iמ{_sOW?{/_HtItzуtItItItItItItItItItI$}.......................................................................................................................................................2^}gOi....ʃFZKKKK<~ɋ;?辏ܺ-]%]%]%]F/|~7KKKKH{COi.........D}s?ӏ%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]nݍHtIt=^y^׋zq\/qx}u{7o_}Y/kw|>;|>;Ϟy}G/w|^'{t3_O?/|w?c#/{9|>;{y};~u=Oq8^^/OWמ~Rnz{oBKKSWOoKKKKKKKKKKK~0KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKH{C=ybKKKK+i....c'/>~rntItItIt_ݐ.....#G]>}bKKKKKKKKKK$?7#%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]F,??݈tItIꕗ=q8^׋WW~z?w3N7'tsr9yg<>?p\/q8^׋zq\/qx}/-_tsr99ݜnNN7'_zK׽U'yr7^׋zq\/q8^<=ܼ3{9|>;Gz}gnzq{{?[?yοo?G{e/w|>;|>w_~7_8׋zq\/b|k|9'z{/KKt=}VK6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHKtIv7n݈w#F܍1%]eϞ<1%]%]%]%]tItItItIty?wv}?u7ZKKK܍x/_nHtItItItI꣇.>1%]FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#m6FHi#mKHiw#F܍q7n݈..w#}nDKqW^׋zq\/+[?yztsr99ݜ<3]x{z{8^׋zq\/q8^r/|tsr99ݜnNN7'/%^{w<q\/q8^׋zq\/nz{}_{ͽ{g|v>g|=z]>xbrUO?/g}{_p=|v>g|v=/{oq8^׋Iמ{_sOW?{/_HtItzуtIÿo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[W?..>_{{zw|_z*]eϞ<1%]%]%]%]tItItItIty?wv}?u7ZKKK܍x/_nHtItItItI꣇.>1ҥ멏?оmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmo}[jVڷվmotIt|{w;{_tIˏ~>t7"]%]z~{nzq\/q8޼e|g=stsr99ݜnNyϮzwƏ==׋zq\/q8^׋zq\/^ ~˗otsr99ݜnNN7'ɗo|u=zջ?e܍8^׋zq\/q8Oo7ow~z̃ǯ޽{|>;|>{}G[?oo [7xak_}?o?zc_|{g|v>gٽ{>xo?^׋zq\/n'+_{}kY?)׋_=_|!]%]ҥG%].}[_,?,d'1;/ӫy̓e,d'Cw#%]%]nW^:^׋zq\/^yp_[W}378ݜnNN7'䙷?x[oq8^׋zq\/q8|N7'tsr99ݜ|/Ƨ_ڣWX݈zq\/q8^׋zp{g< ~kݻ|>;|>;G}]>{駮Odz |G{}_|{g|v>gٽ{>xo?^׋zq\/n'+_{}kY?)׋_=_|!]%]ҥG%]>^ >xH_?_u{\W=z7'꣇>{HKtItItItIW7%]%]%]%]O^77G}h...r7\!]%]%]%]%]Fګ|HKՃ^|zz+]^z;_⋿uɯ?F݈G?G..r{\}?=q8^׋zʃOo2ytsr99ݜnNN7'ϼgg;zǞq8^׋zq\/q8ܿw7_v99ݜnNN7'Ko7>ݟ2OF׋zq\/q8^׋;?s|w_^s=|v>g|v>=>C^zq8Wǧ??'n?ko=?U/{9|>;{y};~u=Oq8^^/OWמ~Rnz{oBKKSWOoK|oo@=|v{\?^.~⋿܍xz{_{O꓏վOK#mϞ<1%]%]%]%]tItItItIty?wv}?u7ZKKK܍x/_nHtItItItI꣇.>1qw_|/J?w7߹QOo]>'į>y?+Ͻ܍>Cw#%]%]nW^:^׋zq\/^yp_[W}378ݜnNN7'䙷?x[oq8^׋zq\/q8|N7'tsr99ݜ|/Ƨ_ڣWX݈zq\/q8^׋zp{g< ~kݻ|>;|>;G}]/9^=}H^=}HKozmzՋ/޽{|>;޽{^~e|~p\/q8׋=笟ů^/..ԣ[.}/ۿ[ndWo7տ/H;|ē_W|Hi>z'OtItItItItyz{x}#-]%]%]%]%]?~E~stOnݍ....w#|}>%]%]%]%]e˧Otyz\=xE_|K/޿~/o~O~_}_}؟w~n݈G?G..r{\}?=q8^׋zʃOo2ytsr99ݜnNN7'ϼgg;zǞq8CUi8eã|N7'tsr99ݜ|/Ƨ_ڣWX݈zq\/q8^׋zp{g< ~kݻ|>;|>;G}]/9^׋zq\/q8'oU/{9|>;{y};~u=Oq8^^/OWמ~Rnz{oBKKSWOoK|ooO~8Vq ;]]'t't9dlL0ƴc 6 $$H$꽪z{F +JE#%0:X00RJ,#388`ddР{wZhEWN]:۟+?ߓT!K՝ݭ4,Mdi"KYD&4VW)d,Mdi"KYD&4,MtttX֓m<ЂMUڻs ,Mdi"KYD&4W4]m}}YD&4,Mdi"KY(dsžn,o4IDAT|0:: Jc>ãTWVH9YsFGG =MWuv<ݥ]Wgc?rK_!W4^S}L&4,Mٚ*ő8 Q(BqPVWIr9xq~keeʚ˔5)k.S\̯oڸܹ+X(>/>pe=`/H5*joLYs2eeʚ˔5)k.r瀆suZoXI_!G8 Q(BqP(G|.|ۢWS44(// A A@>ٳT^qP(G8 Q(BqP>yIå: @  A\MMm-n4]u|P(G\zЙxy5t&rQ]JCC4,Mdi"MUWI9YDoOJR %ɓuXk<F³tHFwz O =zF/To2 nv`;O(Qໃnwrmo:T|~>qxVǾڵ~TmuBőC022l`mjN9sZFuul~O?TR,UwVowBD&4,Mdi"KYD>;[]4,Mdi"KYD&4aŶ [O>C 6Ui+4,Mdi"KYD_!tѣdi"KYD&4,Mdi {T&q(PrfuWZr+VXb˗pqZsȭ!JZNMpYnHZV4IJG*|W[n].hƔ;U~^/ߝ ~>DCC%`,{dݑ;Yb+WZr+ywm݃J}*Bwc%(:[TU_0Bov>ݩH 0Vr ~@}CqѝYz _,!Օ|N&C$?|L3]iS]:;֖[ BEϞ+d4,Mdi"GTwM.Q(BqP(tJ˹|] Ʒ_+k.S\LYs2ee~}=ׯ](;\ܷY\K쯽nƍiҹ&\e_(k.S\LYs2eeʚƯ9\75_WQ(BqP(G8 Q(5_(U}+ A A@ Ç{s5UW(G8 Q(BqP(n^opNE)  A A(//WSSn[MW=#(G8 Q(t&^_I+Qїz{zQ^>u߯2͚00j8`wz}'N]hP_˗\my&.hx zzCIaXbWkO )8ӂ,+-QLg1_O VHb==8xR5sW4ʥƊ%@Q6~sS;?oѭx?>eY~-c}Oxowޝ;;1:X=עl_mpl+z؆o ,MVW*d\9t`#hUl]:5:0F0ݵ9s0.^k´?5٩-26/O i[SƦ4ߑ{usy{NusM_{CCC++$,MH9cc:?syutJkWt?GW2/jT_!,Mdi"K8rʽmrq$BqP(GU\έ/^0u_7ZYs2eeʚ˔5)k.68w~|.G\&MZ5d [m={h}ݥ~mMo5)k.S\LYs2ee~uWpN/+d(G8 Q(BqP(Ś_r[>}ʕ  A AÇ={Թ*Q+BqP(G8 Q(Bqb77iTrA@  qōמcqP(B:/O]^ƃD. uu=SixhH&4,MI޹*I>'KYV[]T*['u߼S-!c%6Wk<ł)M>۴ i[_iy蓥K}u`ikoՆ+_/YdM֏Mz&;o?d?1wD'M5wYMo/{fLS,d[/:Nl҄IFgA 5kҐ3b=.n&ëMu~޾ڜpfm.ݺ?LXGkoVΙb.xцFC^:E3L0y;{` {͍u1֧;k2y8xO[]ۋ.3{v;Bgf,'z)}c(n:`7r3% t\y^7|rⶑҨ>Y9Ink]sW]#(o۲rgļ5_k{䖥fڍPK4y82ugj[| Z:`7W|MӧL6WMY:.Y{~ڶҴ͚G_l7=DGl\6ǔ oyyukm™&OW&XMBACƃ°{gt'L4sz?^yf^__JJc߽ȪO>l4(isա Y%?@{/>"6yݏQ/>H>UwC=~:â{|焅8r;1Ob܍nFdiR!Kȡ -$XWggO~ѥ=yP!KTݹZ Y*KYD&4,Mdi"K\luBD&4,Mdi"KYDGG*l=-T;D&4,Mdi"K}LFW,Mdi"KYD&4B;W+VRYǑ z/[;m/w00}ћN3ll${deNo>?p֋"nnZC(_ISW;'l銹&MoܕT.?ioL0{\?چem(oغbokj;sM0Թ+}Wբ0 H5komc}M^f,xoՇ.KF#WYCoϟC 3-y-fLkꄎb7=i3gz!F{.[7cR̫ܶΒ+͚m)}Tkwڴoxc oo;A<"{7'OlR>lV7.7yDs.铌8Œh|g4ES͜5E|"`/^c߅'JT~p!Fٻ1~j{ѨɆS̜5˜,[4WjWfZ4oqaG{ bĝVSK<`뢵S&x1T)yZGA3gNjn4+o uX{9u7:y7Q s4: 猎^q&9/:<{X.]pDk-}L_!xgO2YD&4#gkܻ&G(G8 Q(Bq:[]%j[u5)k.S\LYs2ksnM }Ts',{+8?g/M]n;7ͿQ\LYs2eeʚ˔5Ս_9s@ù:ojP(G8 Q(BqP>k~M[mQث)W @  A SjDa8 Q(BqP(G8 Q(ݼޤRSA A@ P^^ݶ7:_{F>Q(BqP. =Ljo?q7:wswz`$y`I4a3}.1~ax$qۥsfz*[_[CfO_l爡VOC^ZٟwgXBؗj>sȁţݼ/NG0إ^G/?:^&/W}?3{j[?_kƼwU)t9ѺG;ɄqUs&|Jnt̓mEf[FF n Q=,0Gڛ5cmW|`'[}q>3{[75}{TαG=Wץ~2I(  63s^?PCOo=v֮}]+(7㊏gf&ޚ:m0ſԵy̳t)Qw*._;m9@3w~t;|f?x>;ݾɇsg|?Z)?w3ys|{@xe)z|Wl'-2ϱV6,jg(I;[4w P*)KJ(JJoٴxw6xpqISqg$fMZ̓~YTR8r>FF Wsޞ_tl\<~ Y\n,,Mdi"KYD&4|.vJ!Kei"KYD&4,MdiÊm|llޝWHei"KYD&4BjG+D&4,Mdi"KYD!K՝t+d,MHueQݗ:U;YU|N6ϟܰx@ϭhv|A;\;Ѽ/Έ6_/wv3gvw/ϯ.u[R}1Xqyys֩mnNJ{No_g9sy%@qяffZyc~mH)nY9۬fϻΓ;|4wͧZ\1nnz~v{=b3 {͝ЁK{~oһt `f[m-o3ݠM9r{1uwLF?Z]ص`WƯu;ʾL _xxq{]t>gp 'ogѧ7`'21Ojw[.w SJzwܶk<-?eݿUe̩~Mݓ~eeʚ˔5)k.S\LYs_=4zK 8 Q(BqP(G8 s״OrAyy A A@ paϞ=uJP(G8 Q(BqPM.թ8\  A jjjmkqgX(G8 ЃS3B]jT,Mdi"KiwJD&z{VW*J(j ou՗Kfp$}xOlgf.ܭcsV|:gqj6lOaׂu&/\=˿rߜ Bj96=&_k^̔?/ҝ YMo3}4Ӓ/$`P -BcqsWqMz|%sLxpw wzkT/ܱ+L泝N^j^:ۇ,o>_//PO_7Vl2TJÉtx/VMYd[~g,Nk˹C_ޜe7 065,7?f[]ϛ5smW|`'[m:٤GZ.a_}r߿.Xkҭd(|`wzRIX46VT,`ӡ mw}k׾?4"ٓG /Dg-: -pF>w3'-:=Z:eí9P{tO>_1u3w:7Οw&/\nժޚq<(ŢbTCfO}gX5/ݢ%ոWg*oxViy5:aU;6'lv,˾8F'܌t_Lhd~4w|diR!Kȡ 644hO_!n/:uuhW~p'*dB;W[!Kei"KYD&4,Mdi"RRYD&4,Mdi"KYb['xwRYD&4,Mdiiу 4,Mdi"KYD&4QRuj= Y*K8R]Yatth%kNy}3_p[ һG͝>ՙ^cҹ[ɊP}K74$-Wf,r+M߾l[M{6k_<쇢x{jv:}Vx//yub+Wbdr1JEbQXT,%U7Wi6;ͲM߽g{=F;):>nNýޞ6ɗa3fu]on(%jwڇ`T\KG];=`~ ;_Y߮fݞzPLݵڬwv~sv~[&.QwZ眬Ǿ]﫜1z,XU+|q[?c/>6X,+*JP*zAyg^?َ۽]j222Ǭ-¨[LŖKޛ1sO^v^P,ܷ}T+S(ᆵWeY>;z ů0kǾKo/ak~M[mQث)W @  A SjDa8 Q(BqP(G8 Q(ݼޤRSA A@ P^^ݶ7:_{F>Q(BqP. =Lr-خ-;yo=4R`lOoҘ,,qTwU3Mlo۝OtN0𧋭vBەrsft{ȳS0ss`I|Ui0pjO.Ɵdᧇ=+(ottr0J}O-/عqW^_Íc^hTv<đ2y"~{%NFJJ3s*g۸jOV'mZ2Æoɻx`gZcߘSw=og̵η]ق6l5RyS}qI,37ҒS*;[]4,Mdi"KYD&4aŶ [O>C 6Ui+4,Mdi"KYD_!tѣdi"KYD&4,Mdi {T&q(KLFɝ̞0/ y9R{һ3^r7z'=0uVl;)pß,r wfO[܋3\ą1iBv|P{oh68mgL^7qߘ` n~Ԝ[]s_z5]--xcg4O6O-k̜g]*XnyZ_YO/Ͱ}7|:ur^nxȳfk6y>fUw 'Y`\1s>=q]OYw.Z?5k6j9fy``8sG;y1{QW]sWa?2ݞPzuwX ?k柅#@isȳa3_ENV'KqZn 0>sYKr'cƛg;| m&y nP|h;]m8d֫S}s&.PӟDzzzDQ%E]W9ua_iʸy7=žjvuN_8iknuhbvVɏo=bNJ|7T t߲{" v gg,<ͮc;&.^2 KSՕ Y*mݱ]{_뫝wcˎ=|dž[=yD!KTݹZ Y*KYD&4,Mdi"K\luBD&4,Mdi"KYDGG*l=-T;D&4,Mdi"K}LFW,Mdi"KYD&4B;W+VRYǑ F/Y3uϫ$w~0{<<(MZkW||7VF(<@W_ ?|fq^xt0W[>iH!cI!vuA@)f:'?Mh'D!B?h(J.hn0\/Mm ,c[j{ς{=;{myƉϽ|է=κ3xύ_}T31&w|9u{.P M_?Rjxױ昷g%=ΰݿy̼ U<#L\s_.5sJ?uo3n:;Q|HOufq1@itH (fYg4as&uvPtt9K2Ėf€5Z0cm s4wlfov}ev~g7ٺc-;}UkkBi|Q ,Mdi"KYő5Um#qP(G8 sn5_wJ[Zvŝw[ioqŝm-vtkWs8 Q(}{ܹa?w8FU-Ooj{N{;-N{;-[}ʕ  A AÇ={Թ*Q+BqP(G8 Q(Bqb77iTrA@  qōמcqP(B:/O]^ƃD. uu=SixhH&4,MI޹*I>'KYV[]T*F=3Fo/f `&Nom6_?r蓷{k/6~`?-VL.Ф;M[ gƛ-@ыG;ך> 'nypE[->ּy>?|EV@j>;>\<Ӓ?Y_۟nc/C#%~7W_-֯^aJm7NX=uE~/?d?.uCXoX`_;[]4,Mdi"KYD&4aŶ [O>C 6Ui+4,Mdi"KYD_!tѣdi"KYD&4,Mdi {T&q(:+'{FIa_H59N;˂i3hM6wێ7u@aVWTݳ0SS-[|bsڳNךn'6~}Z-hNM_lۋY+cg~E|eovl᝕m9FgM;Ol5uL+􍖀R;/M \aڟ]|s"F/Y=ujͺ|I>MT}'Ӟ`9NQqGkͲ|g>]ܜ#n;b|-osI\)͵bg6{_fz7orl|Wӧ~10/̕No[b]dO/|, V}O5o"<`){}X:ٴwQ늭˧[~3~ =;E{f `,XW۸ywߚkGo,7(ͰO|asV(oٜkR[ݻ=x҃xА I>'K勇sn/N{j}sO=cyhVluCT_!xgO2YD&4#gkܻ&G(G8 Q(Bq:[]%=}ȥs/^P_/xA /^PKub\,57]u_/xA /^P_J%xB&BqP(G8 Q(B\5m-Eaӧ\ihP^^.A@  >|سgO(G8 Q(BqP(G|.vzKu**N)// A A@yywZh|8G8 Q(B(35kjKރ\j0XDiHg%~g@a(Jk<{ؽSn8鍳 jj.yKvD`=8t\iҭnG.46:;9=5HF+tTY^{BcgϹә*(}E#gOW=pKx+*ɺ:s={U5|kw;%=]8@h\{@ŅF.\~ԬU2hӧ5=5?k]ityw;c]&Qkl27>׹t"Cv+n>?.^{ M;՟qƶJd7qZs؀W>ZEquW=^W΋]i2uh<=)ֽ~%;|6(>_R[1b7*^'Q5i7<:*5 )ZyJýHT:n4Nw|Y80UWtr\{ڳ{]vv>U -tj8{8yM2\YTRq{wg/=ewMg:|U̦C{#|~e۪{ܮ Y\n,,Mdi"KYD&4|.vJ!Kei"KYD&4,MdiÊm|llޝWHei"KYD&4BjG+D&4,Mdi"KYD!K՝t+d,MHueQŁnWպٞ(\i:FO^,e\jm70kx/d%Э '߳ǁ#4?)Gtݻb=1}T$(n?a=pYX v tPSm/2 tH ({P陡"=Vy5yQPBi絽($hSuvo<7(.9qPu粊kz@qPge}kz c8H]%ϳQ0{(Ftk}\Lyv-g>?6+* vἶ%:Z+hP2ޅkwe0*#}sO) zἶu޺#? tD[c=ZsfzkVԙU'p~Wu[M9O<֦( `avKnݸu|n/_w{^u|nݸ%7/y}Kn^_rחܼ%7/y}Kn-_s{^u|n/_w{^usWܽu^WO{v-\;wz=MhF44i4Mcjjƺ91J1H1H1H1H1H1H1H1H1H1/>}ff.z4i4MiMz=yg֟7JIAAAAaʉSʉSVYcdddd%,-ɣV-Y-ζ¬dOg'8~^;/'L2?;>{_RfuH)9[zBf6hU]ZqSg?\s tjqcow{[WZZZZZZZZZQ\]բlkk7g3ӫ}n`ddddddd{]]_<ש%%%%%%%%%jqc/ljQK6JC`RY_~1݆Ko7=x<0;#Zd?zwW޿܅;[޾GkNzҊ93}{k`c^WՒՒՒՒ)8ln|ia84l6 M`pi84l6 M`pi84l6 M`pi84l6 M`pi84l6 MZQ|}=î+}r^iMhF44iLMMX8'])))mH%m R 6ɣZF~wn03sY4i4MiMhF׳G>{pϵQJR R R R  WNWN2|5Пu0%%%%+ydiaNjjvwfM&9txx\]Ato_?+wܶRfuH)9[zBf6hU]ZqSg?\s tjqcow{[WZZZZZZZZZQ\]բlkk7g3ӫ}n`ddddddd{]]_<ש%%%%%%%%%jqc/ljQK6JC޽LLw=0-ȣV-ُ]Ձ=w?l:њӫ^gL:vbZ6XUddddm.y6E))))))mFm2jQd&6ɨMFm2jQd&6ɨMFm2jQd&6ɨMFm2jQd&6ɨMFm2jQd&6ɨMFm2jQ|}=î+}r^iMhF44iLMMX8']))mܶOg~n=k_h,\槮߹ff.z4i4MiMz=yg֟7JIAAAAaʉSʉSVYcdddd%,-ɣV-Y-ζ¬dL&& &cd21PK_"{o [ޚp5gWviOpիoy6բōm]-jjjjjjjjjFmruaNWZZZZZZZZZ-'ߜkL9^WԒՒՒՒՒՒՒuՃ{w}^ōE-(E 3d2101Lx<0;#Zd?zwW޿܅;[޾GkNzҊ93}{k`c^WՒՒՒՒ)8O{v-\;wz=MhF44i4Mcjjƺ91J1hSKɷo+?_{W~Wڿ<{Ľff.z4i4MiMz=yg֟7JIAAAAaʉSʉSVYcdddd%,-ɣV-Y-ζ¬dj) Z|s-=w?t~~[3}.8}z9OZtԷE-Y-Y-Y-Y-Y-Y-Y-Y-٨M.jQKVKVKVKVKVKVKVKVK3x͙U>7gZZZZZZZzp/VԒՒՒՒՒՒՒՒՒuvu%hav!fgQG.מzg~W6hU_Zq3gW|U]Uwo-lZZZZ6EW<}XQ|}=î+}r^iMhF44iLMMX8'])m 3e=}gǷ>7xڵ_zxk{ff.z4i4MiMz=yg֟7JIAAAAaʉSʉSVYcdddd%,-ɣV-Y-ζ¬dj) Z|s-=w?t~~[3}.8}z9OZtԷE-Y-Y-Y-Y-Y-Y-Y-Y-٨M.jQKVKVKVKVKVKVKVKVK3x͙U>7gZZZZZZZzp/VԒՒՒՒՒՒՒՒՒuvu%hav!fgQG.מzg~W6hU_Zq3gW|U]Uwo-lZZZZ6EW<}XQ|}=î+}r^iMhF44iLMMX8/$ue^O44i4Mi^'=F)I1H1H1H1hc2^9q7^9q0kc@~x䑥9yԪ%%_5L@-EaVW[~.oykfù֜^ڥ/>uU9@W7vu%%%%%%%%%Յ9]-jjjjjjjjjɶ|s93 [{]QKVKVKVKVKVKVKU3{ZZZZZZZZZ7ζd-8<<{pϵQJR R R R  WNWN2|5Пu0%%%%+ydiaNjjvwfM&PK_"{o [ޚp5gWviOpիoy6բōm]-jjjjjjjjjFmruaNWZZZZZZZZZ-'ߜkL9^WԒՒՒՒՒՒՒuՃ{w}^ōE-(E 3x<0;#Zd?zwW޿܅;[޾GkNzҊ93}{k`c^WՒՒՒՒ)8O{v-\;zi4MiMhF4155eccõٟY~w;ݾgÙ[]nXq-3/z4i4MiMz=yg֟7JIAAAAaʉSʉSVYcdddd%,-ɣV-Y-ζ¬dj) Z|s-=w?t~~[3}.8}z9OZtԷE-Y-Y-Y-Y-Y-Y-Y-Y-٨M.jQKVKVKVKVKVKVKVKVK3x͙U>7gZZZZZZZzp/VԒՒՒՒՒՒՒՒՒuvu%hav!fgQG.מzg~W6hU_Zq3gW|U]Uwo-lZZZZ6EW<}XQ|}=î^gjjԔ)SSSLMMrEm֢fW~7گ~ӟss?o_Uwz~ss155ejjԔ)SSS4M{s?o6+| 6_m gjjjjJYZGZZݝmYT랃 `p{@#qpn &G^u^ȋ΋C~i!^8t_ /KG G_m܎×n}KGz{hz 09r^`r4VKg|x^UǎwGï_z1ȋ.K~yqpn北 09:Ѝ0cv|z`29(OF1qC]G0EJ-?sC緼5GkNzҊ:WߜtmEWK}ۺZԒՒՒՒՒՒՒՒՒœddddddddd[[[N9㍏ל^ssۭ%%%%%%%bN-Y-Y-Y-Y-Y-Y-Y-Y-YWK}ag[WZQfg&Fvwv ! vvvQ5>x 7v tc`r4h&Gc]팏&`r8Vr?>=09+&ñVݱcggή/ƺ98xׇ&8z(;;;vvv0qt(Q?p 09_[a7h˾ fgQG.מzg~W6hU_Zq3gW|U]Uwo-lZZZZ6EW<}XMhVn6mO{v]/V|66mlXnccƺu붷8wE R R ڣ;?WX1>s=wnް/mlXnccƺu?_|֟7JIAAAAaʉSʉSVYcdddd%,-ɣV-Y-ζ¬dO?\&c.WǞlwb…:+}}o/X@_?>v0@__+`h;['~~xޭ1?}=`q 0y?~c{oމ/_+O|=/G/b^O^|o7Ϻxo8΢!]ӿӹtq?t~i!nsans;ox&?w/Kr ?5-L_?{au8[[[oַkϢcQeo jufY|gfMٻ{{v䜑,ɀ HEDEE@ "TQQɡ(XT}<[9׹ᆏdŗZ;@`P"RlKgvOm9j6|`f5Y-T"W)rgNhkS)rE)Lg@of@_pbVNSP5_.Z>~o1jhG6j˷_T UZc0wR-@_dY*`ú^ÿ6jѣGN~П?4zGy~}V<:>biW}=C9"+yfu9b?V}bof_{YO]٬.;#BgQ:O9}uNsֹ3RT.%RR.%YVV"/IdYY:\ӝFǎT1O9}uNsD'>Q:O9^s)$ Š-W/[ig-U"y3yVvVV.)Lg:ըVzvsGQԭ_O0S>T:wuk&-vsOtrwF/fvmvұfm<" 54qv^ku9ptw;E%˧;[ۿѯwpKW9Яf}i>4jUNNܴ? 7Nmv>QRi`ÜW?bI=C`Ҿu^4o~R޶ Oe+Bhұ&Yi`Pjttuw3ӧ,rS{}$k zw?@jT\Jɲ-v}n?XGpd垻h`SZT\ȝ9YMy3E)LgQ[]&<jq;438޹5.ˍ;=z®oZ=&2ў Cʏo8;_oߡ]Y(?^f}0Pr&Jim۾Rw.q3}Mڹ}oAxp]ۿݾZ A@gYН@/iC]!CCC Uڟ1;yʟ68q#!5?%_|;_~m;m~r+nP8iW?W *T-79qtnqc9x>[<ګhfW!u#Sgr@oo#rIgV}]-znkSk'6|`fk5Yu-ޥͺ*J¹Z?Y)y3E)L)E'׺{RR R R R R R R R R R R JY ,dFaĄ?÷u#rIeR3E^VNQQ\V"++\.Le<夔r3ybbbbbbbbbbbbbbbbP.%ׯ\vq7]uEW/_tEW/_tEW/_tEW/_tEW/_tEW/_tE._r%._r%._r%._r%._r%._r%._tEW/_tEW/_tEW/_tEW/_tEW/_tEW/_tEGP.%))))4=ͼ0nzaRMO3; x]KϿc:_5oު%S_÷}tדּqZl/O @qۆyS=tͳV̙l[ԩ ks-xw6o`&-Q[j{ysFV,4v̫9vO- :i>\h%֮_i^t8Jsi>w_K0zӖlu癟6e6e39#7]q?ޛ15K>vo.o7iN5\jtŊc;tѹ=kL_KuVNmG?yO4w ?dFحyߦ M;F_ik3|r*@_>֬ }T U)޸R]f{ma-7|hVX?ݱ^nG[d3ˣ@u0wr> g~X=k&/A[/u_lNXni@o3y\[S]õg?gi_S oۼ߽|_c3c1tёߴ;<˫+v{>W_HBۍ?`8hO4@jT\Jɲ-v}n?XGpd垻h`SZT\ȝ9YMy3E)LgsZCkf+}6e36amFKew7kb6~hYϓrɩ_KǫIDATط{ذ`щΒS|u {7k6~hYGr.^` vfNa]8ӌ]|؇L|sg e}8}?^s7͙gyko~Nk+S1Ti˲95sB@?Jv7q/{eG>kʲ=Y&y;yR<ӽ;-1۪XlNӽ,3ϊ?K-u}2ymX:v uM Rj?m6c oYfƧ=5;~͉w/͗;\fZ:}i+vk29<7 T}Ǵy +?ޥGeU-79Q| wta-3M\{:r׃*p(yb۫戬\RU_DZZ}r Xٚ}MVgf ?wfJRpǏtV E)Lgcg#wgʂqf;;w x$3r&mOn9{fNo֛:~zsT/W-'w]2'O֦I1H1H1H1H1H1H1H1H1H1H1H1H1H1H1(nݸƆ[nilƆ[nilƆ[nilƆ[nilƆ[nilƆ[nilƆ[nilƆ[nilƆ[nilƆ[nilBAAAA)MO3/[^TL)Z[۫3E)Lgd]\R"tQVPƌE̙Bv9pI㉯L# z;X7Ɉ9y%u6-R˻+ ޯ0T8eI}OX6%o:jX߾n܌U4]>7{ X[0=)˾s_kfR;w=+WrnJ#^h.Y雟9ڗyx'ӓ/]c{VNCTmY2ޢOu铗8Av{Os<9ؑs|/cƪ\{@=0狓*=F=}ݚo6f\Gn=uZ 7n0Wd>a]m]_^5ѣ=ư?7}ў-sV;i{ up/g,'6S Ǎ-릎*_gI:!\jY~j|W'x;gy| mA/J ;ɶw]ػƫ˾tk9nݫ`P[Cw&?hW̮&xm19 N|e۴Ryxڪz`w_f&(\}]JK)Yγm;kc>~sluAJ3'u"y3E)Lg<1#9~-K''Oot(+w_ >7~xo;>ZiW'fϯZCtz/O]'.ҴծAtm{-R;W<#1q{[y.=3(72 v`㽹l_;c{/뷦O^qNx]+>]2k-iFY=n5I'FO7{wĊ!ߛ0|]꭛ҒG75e67bT]oĘ~ik۳,^̮^3;w:nټhhnKZh(k~/Ld5hŢ=ѣL\ٵ>s{{YݏO{{x~fF/2ˑg^ZF~;# fF,pi/խ1fZ7˃UMaƪ;%YC QV칩+kqHWp=gvǿPUWsDV.)̪|sSmc>9Ćl;&+ܳnԻtYW%Y)\8wVG:+"y3E)ZwVJQAAAAAAAAAAA<}F4]pƽ'k;f?M:wY4nYhQ3޳w'ϜmƍNfO-:feFYu_fto'UUm1y"撵Nhtӕ:TkI;x]xo?7͛/t'1yNڙ;ܠUfL.}?y[Ϫ ڧ9;>`[KjZ }.~̴%iBәo^7utЗ=p_~9{R|t)+w4h4b}=k[y?iaʢ=~zɊi~T+gLa zι_.h|W~t}{=^v,&/~9fnRnmt?:fi.~W@3WMpcr'Zlm޸[7='@jT\Jɲ-v}n?XGpd垻h`SZT\ȝ9YMy3E)Lgf'xkwƌ1f/8/ ŃÚfn6z[zۍ=fѣ{i?[Wo+ҭ,dKv#~7~Fc^zeo.osΝ͝%U Lxyݷ3\k错m1\Yx'?{ytEnj1f/8ƺuk+SM3brSƿ2\Mq3/F܃!Ϋ#&k=˲oOiw{^=O^Fck`H=ϟ/ݼL exA baVͳ:b{G,~} | s?=#4}Kio6yJWJU٭M1@a)f9 ߙ8rGTvwŽf cg>ǭ7ܵ< bPh<Ӎ?Ê 0+5j%EYuoN~깭O}~'Gpd{ozn6:+ jyHgP"y38^J)J1H1H1H1H1H1H1H1H1H1H1H1(fN%FEW1clfK[{?Q ߙođ?^[gYs>1klt[v}cn~, Š-W/[ig-U"y3yVvVV.)Lg:ըV@{p*/l1fkߺ9^Te+ޏ\q׹^^3cn=cĩv\ MqirS|nENzhPoIW[?UU(n0oջٱb9(W4n:7ʨx_5dѷu Te/;yEfzy7>{l 7ճ-ۿ4u"=q Z;r//cHsGvxՑ^֥־:70͹?z7[]ٷҰ}jcFuvy0͹?jC*Kߘ4~wn׬s}{Wm={n-FM[#gvrEO.cם}ڙ~ ޞ<.;{a*Gs1WMa9t7o4nq7MY.T2Ӗ| ._fʢO4u7_Ȋ߻|ǚ4@~{ootwx֏j߿f<~zɊi}Xs銕'~nGƒP^9ɮ[%0?èi.ZdѢ72f w/Y;kG/;c 򵝦PCTUZu7gvgi3w4{ ںAƽ49%G?c{{ /:LV_zo/7olrlP"RlKgvOm9j6|`f5Y-T"W)rgNhkS)rE)Lgozo9rK4LN< AקLCЗOc.|l̕t|)3WRn0i䫎>[M5ч]tk#g~'tg<@_krzyz*lqL۫戬\RU_DZZ}r Xٚ}MVgf ?wfJRpǏtV E)Lg>֤R~l&:t㱳߽iO5wS]2׬wwy|˥cxD kit۞,g:jjpΪq9xT+Oa ?__tg|^v妽.K}0{(DW7j-Zm>؆l&+ܵ@j}ТR*Ezmm*E3E)Lg'O-3ʣ^f~akޟik Z鷮> Lxi]А!CUt=i&[ϒL3'M7nz[^9ըy]~R-_8~dD{zZ/nw5'Ox{ ޸W:p}/2oܼvm8t]G#7j̏yezk[غJҝ1g'.ڵrQ?r,ܿ-_ @hn4_,3 t=SLYϓ{':fO5}cfpTŠ4 *đ: n2e,Gv77 >=e騗팶mo1y]{}8ol2Z2Tۮ~ǗvnT.:iWs@oo#rIgV}]-znkSk'6|`fk5Yu-ޥͺ*J¹Z?Y)y3E)L)E'׺{RR R R R R R R R R R R ʩ;,2°#3Ƅ}{w&٘y˭_0f5O/zr=[4ո/=mEؼ?a\wͰ/,G2b8-)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))4=ͼ0nzaRMO3sQ j_ѭ^uѣF9fYK9#ymߙ嗆7e7ߜe7iG{cJos׽1Ϟ^+-%Mp#F4aPo_-OmM_䫚*KMY^]OM^zɨ3,}c1c_|+?mڻ_jtc9cȯ~Q/d1y k}mgn0ŗmo1T4xpiFSdبI,^lW7g]ނ 5koi_wG~fꋣ:ٛFQgZ|c̲=]mmvk|T+m{s;z仕Zq?5~:-˷:K|#3y)Ű]>;d ,kˉ&js{Mh}©OwZ u?gS_{ks_omvW|D#7fk8rM,zoPC߼1Q{7WsЪ]mCF[z:ykn tUyF>| uRe VZmㇿ,'Ah|}AyFȥ,Rk綝|nkS[| X}MVkf 6պEUܙ:T\g7f9lQ_a)m]`0ᬗ_{HG/Tj36̈㼶ןuA&ub(o4fFPn  ʚ-~wƯܭ̙0Lickvf5&=jQxg-| # 3b8 ~ƳN276:xu<2`HwʇK9lQf`}E(WAwƿh~eӗ O_I7z]پv{;PSZ8eF?s=SqgOdHcnj6b|rȳ. G>3{h#G4yJ/۫戬\RU_DZZ}r Xٚ}MVgf ?wfJRpǏtV E)LgUT{yw`PowΞ>oڞĶ&g:JEw PU:ϽSA]OTuP}{T:{ VAݕ!eUT vt ʥT?dS3Wʺ VQЙe]}\t=rE` u)Ǡ#u PUEQ)r)%˶ym'ZԖc6yloz_{ZقM>hQ)r"wd6"W"y3E)Lg:fnVYy3E)Lgr+=W驔vo0;:t~U@yk\hگ(tvbGX nJ*PЕG`JQ7D5% |z⾁*`_gttP u)sz;31F۵w(]S\689"+yfu9b?V}bof_{YO]٬.;#BgzwN~j%EYuoN~깭O}~'Gpd{ozn6:+ jyHgP"y38^J)J1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1(ŠiqK jz)Ykc5z{y3E)LK;=ob|tH)%v {袽ǻvtӟ9u!ZѡCrO-ٓ{F21w w01pKߞߜe[00g]+G_8o_ՒՒՒՒR416lz^R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R z)J1H1H1H1H1H1H1H1H1H1H1H1 ŠnvqfY/ y#C%%%%+y谼SKVKv!mZ!Zl5쵣N.5ܡ =gہYO9ciޚuasKKK%%%%%%%%%[%%%%%%%%%%t:68كsuaK=+l_8~ٙ3.ՒՒՒՒՒՒՒՒՒkqdr\_ZVWW{jɞ3ꕉy/hp녑_mf=-z`ֆq>rXW>8jy+aSRbbbbbbpqiBc۱Xv,t; ݎnBc۱Xv,t; ݎnBc۱Xv,t; ݎnBc۱Xv,t; ݎnBc۱Xv,t; ݎnBҢK\8ssR R R RŎs3SN:evKK1H1H1H1H1H1_:;}YݥR R R R R R R R R R R R R z1f׭׭hbЙ7>2ZZZZM=dd..Ҷ-үEJɦ]^;h]#`sԛ3쟶Y6=7_~-L_ZZZZZZZZZ^21:_ZZZZZZZZZNcÎC=8gYwm6Գ/jjjjjjjVՉǜ9J_-Y-Y-Y-Y-Y-Y-Y-Y-YG&DžK%[N!kkk`uu!y=^ǻ^8ov`oزfm.~u샣/үjjjjz)6=uJ/E))))))CƆ196brl؈ɱc#&FL196brl؈ɱc#&FL196brl؈ɱc#&FL196brl؈ɱc#&FL196brl؈ɱc#1r?D^I1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1X\;x'mv2u;or'?G~`|Vlmrr/J1H1 g|n~g̗KAAAAAAAAAAAAA/3}t^ :G\Y]UKVKVKVKVay%CڶCH)ٴkkG\48޵kCl{ζzsƖӶ5ækѯőqkQKVKVKVKVKVKVKVKVKK&FkQKVKVKVKVKVKVKVKVKtlqȳl=0zVE-Y-Y-Y-Y-Y-Y-J:q3g\^%%%%%%%%%pqId):dmm :$/Ԓ=gԯ'01pKϼ3gہYO9ci[00g]+G_8o_ՒՒՒՒR416lz^R R R R R R &F,d_kկUVZkկUVZkկUVZkկUVZkկUVZkկUVZkկUVZkկUVZkկUVZk9>8j_,a'|b׮]v>nWwщ}Ӟ͝rpal}/>~vxfK?9+ `'Yo#{wnE))))))))))))too4z1XreuU-Y-Y-Y-Y&GZZKiR"dӮa]wrx׮]9z[O֬w ׯEG&]ZZүE-Y-Y-Y-Y-Y-Y-Y-Y-r/֯E-Y-Y-Y-Y-Y-Y-Y-Y-Yӱa!_Yddddddd+cΜqy_#%ZԒ-ht萵5jt萼SKKv~3[gm=p/~77f<O1cgl=0k?u_c5ἕ~UKVKVKVKKذSz)J1H1H1H1H1H1֋QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/E3ӎ}~bbbbbbbbbbbbbbbbbb{^ص믿8wI?)aڞo_¥0߸k}/{I/)%Wn|| b0ͮ[7[L7`3o|dȕUdddd%/{jj.]\2>:m[PK1>:_MvtE]F:;tl;07gl?m[1lzn^ZwiiIddddddddd˽dbtXdddddddddNdž<{p>l~g_ԒՒՒՒՒՒՒǏ9;s啾ZZZZZZZZZ~-L kQKѡCѡCrO-ٖO?e)6צxJJ1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1={ /8vǏ{7lڴɅ <z  I/ExΜ?[sB43+A]ܻhn^ R R R R R R R R R R R R z1f׭׭hbЙ7>2ZZZZM=dd..Ҷ-^v횶h5׮ZkZPK1>:_MvtE]F:;tl;07gl?m[1lzn^ZwiiIddddddddd˽dbtXdddddddddNdž<{p>l~g_ԒՒՒՒՒՒՒǏ9;s啾ZZZZZZZZZ~-L kQKѡCh֬]檵k UCZ'Gx-7<ݳ-R?#gKo}^ fu7u7f,t捏 erO-Y-٥KGm ._{ۯdoskW~5sĴpM;ȱ?W:L;/qh,s|OuҴw=frXsiG}!_@fq;핞/p\֪&VfMLI\9O]H_i_-}ЁZZY{-.'ghX8WCxZhOpy{ngW_2ۻb|tH)%v {袽ǻvtUSt+^}{_28݃^;1{ѕv5OuΩ}nw{^{.hW/ٞjű|rkk?shZrV͑,+`uu!yO~l7e)Mټo}S6yߔfm.~u샣/үjjjjz)6=uJ/E))))))z)J1G[1#Oٶe;~S4ّ~_>O_VWW{jɞ=o}S6yߔl7e)Mz`ֆq>rXW>8jy+aSRbbbbbb01:^/:mMӿo/߼٠GF⓿:N:N:N:N:N:N:N:N:N:N:N:N:>|؇[W))))))))))))))))))))垼ܳKR R R R y~}C.t̞|_g?wF,\ҋAKf89+( ŠnvqfY/ y#C%%%%+y谼SKVKv!mpE7~^C_|a?=wϸ ~^~ok_y}ߵލ nW㉷9&<vӍ~W??swr{wzV}:C?ōþk@=e;e /^_o?;o;l~sW@܄~9v5y1w>ө^̻}w|F9rhe6mˍ7l?v=-f{85׻g{6i]sԤm g|d P߱Ǐ<'{{|nn#y+z)wWzş哅jÞy7po۳HJ ? Wz^~_'X>x7nyAU֍;r|0g m=m[)wn0+N̓_prZ8yGq ׻8p\>[ߺƟ>orc;|?tcF]`eorώ!kOs߯1{o7|/x<oWYs[߿ϻ\?iWЬt3=#moԳopާ}{ȭ7ope4?ut_6 O k~mn3 Fw?/}f/_{?@ ?y=v՗Gy]֛{|1U\mүEJɦ]^;h]#`sԛ3쟶Y6=7_~-L_ZZZZZZZZZ^21:_ZZZZZZZZZNcÎC=8gYwm6Գ/jjjjjjjVՉǜ9J_-Y-Y-Y-Y-Y-Y-Y-Y-YG&DžK%[N!kkkGn9k|u|u|C~ެՖaIw|[S\]._s_ i5_}gOzmXOs_{Ainգ_*zzM~m>~6YpQn{?I__[A}7^[3o}|{{}_ɡwoq}nq YbwY-2/.=}~ÔUeC?v^q~=pگMgݷ;l~-+Y>m)W#Ϳv~j^7~o._,-۴~?g_qo?э?C?Í7}^Wt`7 *Qح?S޵];=>Sv VwU)Ȩ2)3(Cq@TdHeP 1  a $L&@~N !d?y`vf|RT~h*_9_KVsmp3k6Nwvi俘g\^/?p-044VV*cfնc^MNU5j:UtTUiEMµnh;zR{ʹkK;u^M?[N1獹v^qޞjY߰ZV_y×?]pœY?]kks _~uZ7q=Ӓ|pȓ+XUeGt9vYwcL3{%[ձ3pIyk^h~Uo:{^s^}g0L[u!<Łk|\'w-;إ>go>4utO$>ivaˋ5ݎ軰۴qλ>}B^_hpȳu|_/]?)dz/4eYƫx3T|} ?\кR͇LnG=O{lO=-;wt9{~[7N0eo}xT0Zgҩf`rӭZOql^+j.vr&k|/]b__?/6`X>nTLZ9KtڭKe꒯{J~3\-HY4k#7"LyW36~;;y_kTzP^sުtgJow|tڙӭN̨Qv{cD4yjQá! 5z.Q^:ؿ?_Mڡ3=2r'}|ߎ]{~ô5<P=+ߴӣ:U6i}<>+T0pc'}ֿI}1n(W|`{x2 wf~<_7; |ko?/t=MZg_|uS>|pÊok;wҏ;yŗ}Z闋L笛>#힡Rlm̱-oQU3]5o X`&_VbtXmmNq^ks-y60u /[?5^5SNlK-w[w>uͺ\k?4u.QY2}s{?c䙇gun'M^}';/0k JZ}^&zW0\wj?wF=o;6.+ݴPݼӣGkq-VF:٫1r/֛>;l0ow69 Qcܿl۶Ͷ>r^9xN5قIڹb;[ m~˫ *yO癵ruo^·[m۶G&LvzL1zc19 -?ǔӷ9˿k?fW['/¥(`йL]L?,p|n2Ż37괕t|8e i"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"&Bi"bzyabzab]24G:CCc& u* JR/;G>=ɪm j8f)s>q ϴşzŢI=á! .7y'n 3u'nڬ1'w|-|w|׶mf۶]~8&  aS9jǻ̍{m?:%L|%㦽`CRQAe䗛6axBk|3Zj~3vkv,7coβ`ӏn6m';)]/>#g-Mw.r3ח^rgC(]nDk_5 Cެ,^JռfUEv\a_7͚>T{Ϳa#A@E߅]L\uV.\滦vwN$_뿶p ީݷ|Z闋L笛>#힡.Yk>8r}+?&@ǚw3klKVR5oaqrϻ.\ *N^EDePe.جkꋵK̙q=}_-yO)>`|Mu/m` ީm]fXZVvE[;S:yѺ}X\ǯ9T_1i[> RQT#}Ski4lcҢ/tcPG!˶֫>ȎG5>Xjx }7m8mz7(Q9Z)Q3y1L3y1L3bPGy1L3y1L3y'GXzQ3y1L3y13P]<[c& )KztʪoԬ4G_~m۶mmx-3g|KWougm];%皺|{OʳIX]^XCIUS'Q&-:ٖSF]6/bV0mˢ׭j}hN=l6o8bJERg7n/]>dlitd؝[L7A044VV*cfնc^MNU5j:UtTUiEMµnh;zR{ʹ惙g ~x/\eʤ%Nt^Wa 2rBP{ʰW;=.0k;=:{oهs[vZ3O]G`ty QcCr,Z#;c>o;6.+ݴPݼӣGk=;"ӦWjy`a3N(>S#*Ϥw9}Uk9F*kLdo `Drg+&d=|O3|I?~lr;k犙b`8WeUhaB3نO{m?{*χ $V|ܨ=F=3 n]9ԩVg/`4jo,'-<הw;x>뷼*O\ط+onp+N}M[>u-l^8ݭ`˖E[otTU{~wn|SX`tȵ>GyѲ[:ݲ(;f`G*! uRQ3vj:UtTUөSUMN+j:?mFu,G֓z3P1L3yCz7;o(TH!M4DH!M45+TH!M?x;ݷ9~ºk7}1cicLc>Ƙ1ƴ1}1cicLc>Ƙ1ƴ1}1cicLc>Ƙ1ƴ1}Os ׮8{r.&Bi"&Bi"b1XM u45ijPNSC:M u45ijPNSC:M u45ijPNSC:M u45ijPNSC:M u45ijPNSCcuq#!M4DH4 „~„źdiaocu1L3yĬ^V*c&}T*2O8a|d[N~N[ۣ?CW4W~mfǛyܼإw6} 8f OYnu`DͦMӽh頷Ǐ~[iJۭ9C>[M}dƄI>G퇽;{ii%onW 0s7ƙ357盿vͻqVQsm+G?Hcoakxi^W&~oüIVU˾,^c?۾vKp4 cE(O7[6%s6q﬙߽ wۿڔy댃OhMyٜ8V53_eP}sx/.z];tՓRj҂O9V_vK#gU9o/:UҔz?_hޝ:V~n;ks?5ʀS1yg17Vm낱xD +x㭾Xɋ69z֖ehso/~S'Z5'9v8L{K7a[>z-sb?)q?'[V?qV1:<Pnt+op+~FLXk6aϟnݸa6$ߑ [<2gU55Vzs߸'}/MF @~ق1jlSΣe[U|dG#zgm<|dž|e徛66wSwzG-͍(1gխx4?*Cw'TyNѸmi~-x:n-營ʛWkU{x%{-_y?^~yǷx&'?b^r2i'ܺȧot_0ZRyחtazą;X{k瘱lG]\2⯛6鏯.鴳O:F^{]ْ^jkظxw>?\NF-4ۄ_3P8jW-d4gVV_W}vQ;l>;m>wv4]>?ɻNVzǺ[-h;,#Jtw+k;`ĉbj>3k뾻*/vغpiK?uG[WڜO]K iY혵;WөSUMNU5j:UtZQin77p`9(ζsr.t^{ݥڻjUGu=u\s]Gu=u\s]Gu=u\s]Gu=u\s]Gu=u\s]Gu=u\s]Gu7z{uگ]u)\H!M4DH!M4DHbv邫/ɳL,Ĭ$f%1+YIJbVĬ$f%1+J%bP*bP*bP*bP*bP*bP*Y(f%1+YIJbVĬ$f%1+YIJJŠXbH4DH!MD׃  z)=L3y1zY(=NH9oɃ;4^70 ̣ܺ㶮Yjђ};{[a^|z+Cg$C(]q|}/jlKwPbxZ_`{?ԞC}|FPya{[:ت(Oz|}F1ޯrmu3*Up0 xŋpg)F=X닯Sz`8f=0꯿q cPG!˶֫>ȎG5>Xjx }7m8mz7(Q9Z)Q3y1L3y1L3bPGy1L3y1L3y'GXzQ3y1L3y13P]<[c&tBV}#Oj=V#olrR`xO>tBV}O0]_tᢳdW}NEXC?ugO=ljrwQA剎jQzFsI-Yʏw9sdt88CçoyZ>q|癿` zjeè {pg[.p>O@~8xO87OI0:䗶:^jUv=/yZ1Z7*0:F7VOoh>ۏgo~'Fۺׂy;W|%ޱ:AȎG5>Xjx }7m8mz7(Q9Z)Q3y1L3y1L3bPGy1L3y1L3y'GXzQ3y1L3y13P]<[c&9rݦoW4Pc&qT \̩Gw^ժUWWV]]޽{544h7S AH!M4D1Mt=ȼ0a_0abxۣX!y1L31+incqƆ:J'^D_1kw~U}o=IUJUi0O C T -C#,CXF>B-i}ZX|9ATU׆v^ yv7k[nGv iI''F-/.$((((((((ݪINQNQNQNQNQNQNQNQN‚-y;ޛ!-+$((((((h:turrplTvUVWW 햜w ='4􄆞zB3aǻ:YW:J';!stVU72֪٘JUYBUP,ҪJUYBUP,Te* Vݪ[vnUڭJUi*Vݪ[vnUڭJUi*Vݪ[vnUڭJUi*Vݪ[vnUڭJrn G>ɪP,Te* UYBUnUN?jielMNLBBBBBBBgss )eUYBUUS~ݞ{kKo1smU9u>' Ȉ'M?WTe* UYB,\nZ7nZŨU.-;ꪜƆvKNQNҢAu]ATU׆v^ yv7k[nGv iI''F-/.$((((((((ݪINQNQNQNQNQNQNQNQN‚-y;ޛ!-+$((((((h:turrplTvUVWW 햜w ='4􄆞zB3aǻ:YW:J';!stVU72֪٘JUYBUP,ҪJUYBY,)KʲЪJ2~`1ƌ3~`1ƌ3~`1ƌ3~`1ƌ3~`1ƌ3~`1ƌ3~`1ƌ3~`1<;ȧV:YUP,Te* UYBUڭGM9, ɉ }}}BBBBBBBcn!e* UYJZ8j{ϟyz#As%+31~ј>ı)GjW,Te* UYhMM뷚¥y{][]SSSSbn))Z^Z4:vы^ۻ9/~pfmM;ߟȮ!:9بE[}C:9)))))))))ZXXe׀>:o{68d~etcSG•NN*urSԮJÃݒSsֳ'4􄆞zBCOhx&4xw֖WG==J'YdG>=d~NSSSSԪJF4ZU* UYBUP}CZUUN ţ7?~w_3T:nGq1Ǧ&t|jIǧ&t|jIǧ&t|jIǧ&t|jIǧ&t|jIǧ&t|jIǧ&:ⳓǝ=s'~`gɪP,Te* UYBUnUN?jielMNLBBBBBBBgss )eUYBUUi>z>bii֛/hʩL40𱾾>!!!!!!}}}FFF48qlѽU* UYBUZeabtqf.FpiaAVW66<$[rr䔌䤪*O6e]{.xe`΋Yg' Ȉ'M?WTe* UYB,\nZ7nZŨU.-;ꪜƆvKNQNҢAu]ATU׆v^ yv7k[nGv iI''F-/.$((((((((ݪINQNQNQNQNQNQNQNQN‚-y;ޛ!-+$((((((h:turrplTvUVWW 햜w ='4􄆞zB3aǻ:YW:J';!stVU72֪٘JUYBUP,j;h'KV[j;g^BBBBBBBBBBBBBBBBBBBBBBBBB۫8}>?#ǭt,Te* UYBUP,[Ǐ>sZY,cٳc#CbYUP,-_8aϯrM^x}̥B*[SǏ?h`c}}}BBBBBBhLqؔ{JUP,[}[\Ze¼ѽ))))JmlxHl-/-T5V׵Z]רݮkW\u ku @]n@}T-׺Z]@]PvZUPu VknWvu]nW]VS\UukZ[u]]nWuknWvu]nW ATU׆v^ yv7k[nGv iI''F-/.$((((((((ݪINQNQNQNQNQNQNQNQN‚-y;ޛ!-+$((((((h:turrplTvUݮnvݮnV׵u ku]Z]@k5VרknWvu7t]u \봔iōukP5nu]uvu5UÃb%{mgCCOh ='4􄆞Lh-:zz֕NɎ|z+,(((U i6RUP,Te* R[vu[Oてsg>!!!!!!!!!!!!!!!!!!!!!!!!!C)G[dUYBUP,Te* UYh*'5}洲X6&'& !!!!!!!سg FŲ,Te* UYRm9E]i,[SǏ?h`c}}}BBBBBBhLqؔ{JUP,[}[\Ze¼ѽ))))JmlxHl-/-T5jy,5_qnaC嗽9;;?p_oY`K}Og\PY:߿?Yf~_WP{m{&okAci^yv#fO͌}7oVԊW,z?}5_;kU{eGmtkc?οu֭[gݺ[ݶq|}A/~OX]2{Wߛ@bԫlW=:9'~2^4W h7>[YVoƟ9%Ã:9ӯ ;tc赽 ^|oֶϽݴY' Ȉ'M?WTe* UYB,\nZ7nZŨU.-;ꪜƆvKNQNҢAu]vi5|~,͝suEn\qs.qmg=v}ʆm4N4{Y疇vpOgvȤϾ׹^`MҬG955'w |M41y¹@6\ZIS'}+&ML0{zX-N}zd_0ܩa6|e_|v GO5-uѽlt쏾gǁ}M<Ӯ~Ӧ&%OnW_\ʟ =tbayyҒJg%xn*oZ0njYS9u::EͳΜ:s3_/VÍkʅsN-g̝|M'O82yk]81\tἯ.ؤ#G?saF kN:Yù/j1}v3\oylziTueϧ/H׺굯sw~g^_Q˖ M7-\ dtxP''UUy!}.{}ݣw+s^༝?㹷v?]CurQˋ:9)))))))))j*trSSSSSSSSS`ˮ/}tގfmzqbJ')))))))ZdǦ87++9E9E9E9E9E9E9E9E9EU,-$]jVږ3q=]\\V;~NNqTR\׺8䄩 t}5klV/~35uёu,̞1y#S|^W~tȄ.W}~fvK%KKK+7-??ȑ)_tFMw—5?wIM {,,.N~fȔ/}Sӗ>x pmɇvw_Qھ糪+7^syz̯kG.M /?p=F^ݏUvKNYφzBCOh =аY[^u+d V:YNQNQNQNQ*lLkU,Te* UYBU iUVU__[3F?6OAAAAAAAAAAAAAAAAAAAAAAAAAooFЁ}>?}ʑV:YUP,Te* UYBUڭGM9, ɉ }}}BBBBBBBcn!e* UYBUP,Te* UYh*31~ј>ı)GjW,Te* UYhMM뷚¥y{][]SSSSbn))Z^Z4:;ϯޙPw}5Ãoo8We牗6}~颃;tu7?o&tB^{hsntlo~/ӚեϽ)O>nDUi==|@NNNkC]eG/zmWy;ߛso7|#4䤓curSSSSSSSSSnU $((((((((haa]^ŖNSSSSSSSɎMqn WV:rrrrrrrrr:9986XZINQ* X[[8n[5@jmk߿!=nO,_[٠mow~:mzSzg~-w7ϿyVQjW~بx7۫Woo^z{{۫Woo^z{{۫Woo^z{{z7={֡|~#ǭt,Te* UYBUP,[Ǐ>sZY,cٳc#CbYUP,Te* UYBUnUN?fb !!!!!!3221}ƉcSծ*UYBU* 3oo5s1jK F*((((Ŷ!ݒSShtxP]]:[Ϧ Uܼ=ޫ%W_vyw]k'7%7=6>kX+|>?o_uh ߼?jOtw- O{;ާc+V/'?i'޲{ˮGGoƕ>xqo_m|)x-O~i7V;5NiWynɅ]/?n?{6>Rme|W867ۧnN4v|ʇw{5\<8%7ثna_r~^[_qUUNq%70-wٶy?bi>ssm|Ν8hliF-6>m:8c؟ܱI'Gv|['y6kwīN\ʵɃ#.l͏;7{n.;ӷ\]yoVGcylˣ~w+Z&ݏl:p߸g|үóoR^wy-;S&zO7o1e][ql|pS{pͷݾό~ת/=ݿQ׎YwusU̎c?Yk`dyR|bwV/Nz 훲R9%Ã:9ӯ ;tc赽 ^|oֶϽݴY~-unW.xggz'|}=z $7Vȃ|?K<oݿOy>-t( qOnhj\_{b>mg^d`Fjxp@l={lh ='4􄆞 ;ޝQGOϺIV:ّO`Ҿ!ƴVUBUP,Teav;xCw?oۭ6o|TӾu`߈/ϟsflj6ͦflj6ͦflj6ͦflj6ͦflj6ͦflj6ͦfh(>q+* UYBUP,Te* VϜVˆ?Ą>!!!!!!!{17wȐXV,Te* UYBUP,[SǏ?h`c}}}BBBBBBhLqؔ{JUP,[}[\Ze¼ѽ))))JmlxHl-/-T5jm|O;[>;mv;~0=/?G??m]bÑ??e3{\ -SŤ2]hp{'/sc;ĉ?qnAq;O'8vro?ۿ}hIP=h˪ >=~Egظ`U^opk?wW_O_\o6?ȪguxeR;s,Ɨ|Þc[05~*`qnF41qS^F MLb}[a…;~~O0fZmx0,[;k3Rm)*Ҷ*GovÞ݇F:o?h^ίmծhD#Euժ&'&4Rbbbbbbbbb0U/uvk( `tt]:0dA^o72Q7݈R R R R R R R = \63ݐbbbbbbbbbHQW*9j~~1[ogeps+]RW7_Yh6M޼\8j~Z}#÷tbP6:xeBc™~|kg}t_y7[tgC͛nN Xpnw}r<إqǎp9 z?}k18n]m*'߭HMmm䨙ǭ~cg8-69{1_܍;8}-<yܙ8釗g",6ç\Ľ Y6` hkR ^sȫ_\B֧%Ӓid}Z>-Y>;ݪS4FskIAAAA,tn׫^"WȕE,rehW/K/멵9x[~oڝ|իCΎ6?UUuժjU]ZUWVUUuժjU]ZUWVUUuժjU]ZUWVU:Ro\x^ωcIY"WȕE,re+\YꥳgNp^OU*YɲLe,e,dYf߾}nW"WȕE,re+\Y"WzܙӺuim=RȲLe,e,dYR8| ~:}ґ!Se,re+\YEn`,kV?kVcAȍj37;+ )va. `jGf 4u \ɡr/?k~}C^/^7\L07m<{O=׊9'=g妷7S`զ7۹a/?gfaZOOIe=5k Wy%ks{N ̺K׽LԜz~_{q9Un`hmMsn5 |ݿᄇm=Vl/_rWf߫mu@qoewzxd?Li{ow7<u`n=d{.N-hNysX__{ǯx9.]}G{k.fy i^x -ʿyɥyo}- _觿 Π9ħ۬~=3h8sVn~Sw{ǩsIJ<@1-ouj'L]fK!6%ݕi??3oMØf8﵍oֈ1;.#cl7֬Ɨ>ܺ?voX鷪ڼ2 Ͼnufj;醁盠~/+`zՆK7| _<)FՎ6eiv7|TaOuCi7Cv/}o׃6j?4FjU)J1H1H1H1H1H1H1H1H1:;5Rbbbbbbbbb0::jVocunD)))))))ӍW.nH1H1H1H1H1H1H1H1H1hVߜHQTYhk5??`~☭Kﷳy@U@ľyp/:[=jW0&THnk#>}~G_϶3{ߡ~/wώ 99i(4ڟgv6Мg6zmYGg 噿xU>;6ɢbEͅOZ,{p%KV{L/pqkn/2?qeu茶OYGoc<_?ߚW?{l}/uǼ/GX? [Dm뵾0ܿdޤrz"y߰lUS"]nW<;_y5j}+TNOy.&nӶ}r\SsX^?v6{46,Y75pg☧^Þ1ͦƔ_nĒw|"`vvVG[0UbC^>-YOK֧%Ӓi<ՠV:?hM7G _3HR R R R ep^PȕE,re+\gGzQ0%)1M"tc|بQcF5>6j|lبQcF5>6j|lبQcF5>6j|lبQcFyc~=Ǐn$e+\Y"WȕE,reΞ9yE>~VTdY&2YɲLe,e}v]O*\Y"WȕE,re+\YsgN>֥J"2YɲLe,eJz/IGLȕE,re஥[쮥[ "7>:z:څɛm&8ZӬKߴg \{Cֽc?~b?gl{wyz#*.-&gO6Z oy/Idzm}iv', zU^ܑO~/;12mO[juejqalzȚw:y,{O_uk~挋ߵg}?̥k>;;z;W7ڼrsmhˮg'7sy=䝎ffz{lqoعcU=&,4ZYfxwJw,RWܳkܩpboϏ8իV? /zg=־n޳k?J__(44M؊Fr]<垇/عa`z'W?70mqS[G.x%6wX3o,3N|ݚu6c[~5w/̕|G|w~OgSAsƉOYgT?|Һm@iqq¢EM=ⓖ6uP1ٷӒ_ZùrBq+wM^ԸUNT^z{f|g\ӓwHذk/55z"fG|z[osY.f{y,fZtç|bMtz[U M-..j|띛l~sK|Tx෎C6<^ fodǪ%^<Rm)*Ҷ*GovÞ݇F:o?h^ίmծhD#Euժ&'&4Rbbbbbbbbb0U/uvk( `tt]:0dA^o72Q7݈R R R R R R R = \63ݐbbbbbbbbbHQW*9j~~1[ogep [ہ}_Yߝ;-⹏] f9zOW |۲?פֿ3qs~=Gsy:ySZ] 0G/W_WRl3q̶e~P-絷vR@hqqfgb'u\zj}UN:6K־9gX?ۏ]kO{[/|_kn^ 3~ݿ{6hcVmoE5?[i;wX['n؊W{Aϸᗜoϳk=qF}zsnOaaJ{[lxSs3?lĎ&ʚyF׏~`9? ;2`vvVG[0UbC^>-YOK֧%Ӓi<ՠV:?hM7G _3HR R R R ep^PȕE,re+\gGzY(\Y"WȕE,re+\Y"WȕE,re+\Y"WȕE,re+\Y"WȕE,re+\Y"WȕE^ 9~t#)\Y"WȕE,re+Tt)+IcwJ"2YɲLe,e,۷5|RY"WȕE,re+\Y"7U/;sZ.U*YɲLe,e,T*{OO:R=d,E,re+\ w-gw-j`,Cmfg0.LեLޜPhl6&mC^g^[wo[V?3[pmnMԱWэͯܿl]Z찟G>gՓ7S_h70p7joX鮟 n\煍= Z=n5z#v|wN9zo|>bTjS'[g/ܸ,Li k6m'N:n-YΓOn{כ00̍G=ׯv{O];amXg#zkqS_^vj=uk7z#& |k5;Saa/s+=iǻĀ_7v}߬G/w+=iǻ{SXl9m_Zܸ+ߞ7w;!'/Wz Ī[xǞ'_g5krc=U/s&ᇎtl?;4kǕs4gs^6_kǼw༙ӭ>;f5 8pȦU;4RTmUQ=1zu ٹ/y_ڴ]ЈF)UMNLh( `^hHQAAAAAAAAͻZu`ȎֽndnL7'{\lf! ŠZU~sB#E)Se<cY]6Ȓhw`pom[܊mXʚ;t0;{/ǯwm`qFo6._f?£/~o#mϮ ²_Vw"g\lˬ^GVxŏ\ `gjKWv2^`UҲA੭OY^3w\٦U++_q|oll|b-/r7;rwի mX|> ^ٶfONXpux։yn:V._euVCfڳmmti,{{|69,Li)_gsyGڰΆG7XZ|rDygA?7n3q3+V3f~EV-YOK֧%Ӓi<ՠV:?hM7G _3HR R R R ep^PȕE,re+\gGzY(\Y"WȕE,re+\Y"WȕE,re+\Y"WȕE,re+\Y"WȕE,re+\Y"WȕE^ 9~t#)\Y"WȕE,re+Tt)+IcwJ"2YɲLe,e,۷5|RY"WȕE,re+\Y"7U/;sZ.U*YɲLe,e,T*{OO:R=d,E,re+\ w-gw-j`,Cmfg0.LեLޜPhl6X_rۙ Wo-z9=']v5S33Spڏr 3W3w̥IθxmT>ʵn/b ĉ!?ً.\qcjFSӭq?DIC7n6d>iL}ԅ3?9u՛Xn^uT=_/Y`~67?vp+9oj|Йn?uWMR]3|c|;'ܙuc. Zм]tVOϏ]xF\RP㏾m4M#Ο}+ׯf( p{;վK r=OsuCW܌5pg:wepXkZ]F 3Ư^1Z\]>wJw)}C _bftreXԜ 9ʰkCLi3t}E璫}\/ňzt<f|ۋ>av4TӲq9e?~?~?ꛈa`bZ`W/9}g.߲ljO -19o?u!'X^u[)744"jzōp[槍]q#2wkK~:}ʩ~؃ܦg}w~R {{Yp+v0;]avX=e']wk~M3\&.XrupHykCbThHQYnW9zGT>4a3dAۿv~=hӮvC#)jV591z]#E)))))))))6jց!;ZzFbbbbbbb0HNqeಙFjU LVwmM­p44pU"9Ag~}7&`ᶉ4@sW.:}ɟzۚEqrՑI4D×L4fܸrNk<ܶfa;oY9eveG M]pۍ+ށ!ׄÄK?W6tX1maaE'O9}HyKn3^訄0nu;M03zzN84BY7Gɓt{j\OgʉaWGssM4煉aWGswM<6h.61tn?^5u{ܞsrf@Nr7sn]pFwIp"*LեW䅬OK֧%Ӓid}Z>g}v|5hUiDӍQ#L7zY<ܮW,E,re+\Y"Ѯ^"WȕE,re+\Ye^e^e^e^e^e^e^e^e^e^e^e^e^e^e^+?fE,re+\Y"WȕEn^:{ [Re,dY&2YɲLegxvE>,re+\Y"WȕE,reΝ9Xփ*,dY&2YɲLe*Ç'2U"WȕE^Ƃnn50ԋ6sR R R R bRhR R &oNvi6u"g/{Êy@sAqɁ^ қ3|'^#du:LN|V6U;4RTmUQ=1zu ٹ/y_ڴ]ЈF)UMNLh( `^hHQAAAAAAAAͻZu`ȎֽndnL7'{\lf! ŠZU~sB#E)Se<Wvbx4g <hkR ^sȫ_\B֧%Ӓid}Z>-Y>;ݪS4FskIAAAA,tn׫^"WȕE,rehW/ e+BA#E8e,En愡 78op@~ 78op@~ 78op@~ 7xߵ+.9~t#)\Y"WȕE,re+Tt)+IcwJ"2YɲLe,e,۷5?DIDAT|RY"WȕE,K1ũRMKΜ}KkAJEe,e,dY&2JÇ^铎T*Ke+\Y"W/rc]K]K En|tDPY))))1Lu Su))7'T;4M4ő3Z[{s,ޞpݘ9g^{e[Šֿw[˻wHc@QM#EeYڶ] nSШwZ͐mrKMhZĄFR R R R R R R R R Ύvڼ[?hF&QAAAAAAt#9}ǕfR R R R R R R R R )U7'4Rb0U:ZsSN]ƈ#߶-f쬎Va.=%/d}Z>-YOK֧%Ӓy>A߭:u~L#n$=ǏfBv}e,re+\Y"WΎvPǿ^{ͻzA~WGT;v8RpHÑj#GT;v8RpHÑj#GT;v8RpHÑj#GT;rHZw_y='n$e+\Y"WȕE,reΞ9yE>~VTdY&2YɲLe,e}v]O*\Y"WM^rO ҹ3uzPRe,dY&2YɲLRqa}t#CRY"WՋXpҭ~vҭƂzQ=fnvVAAAA SjT]A Վ6fU;4RTmUQ=1zu ٹ/y_ڴ]ЈF)UMNLh( `^hHQAAAAAAAAͻZu`ȎֽndnL7'{\lf! ŠZU~sB#E)Se<*LեW䅬OK֧%Ӓid}Z>g}v|5hUiDӍQ#L7zY<ܮW,E,re+\Y"Ѯ^1>y=^d=87<Ç=sFggU֩VTu:jjNZZS֩VTu:jjNZZS֩VTu:jjNZZSGrE!MωcIY"WȕE,re+\YꥳgNp^OU*YɲLe,e,dYf߾}nW"WȕEGp{[i-YsgN>֥J"2YɲLe,eJz/IGLȕE,re஥[쮥[ "7>:z:څɛm&H1vi,Kv {cvN׿s_x~;iW5RUHQAAAAAAAATѮQwz{Dt#J1H1H1H1H1H1H1n$O2ptCAAAAAAAAA#E]FR BG[y0;;UK1xy!~q YOK֧%Ӓid}jwN4ӈIFn$))))y]_zY(\Y"WȕE]>~{os?~Uz꺫Wr>RRRRRRRRRRRRRRRRRRRRRRRRR駟uH1Ӎ,re+\Y"WȕE,rS3^8'u|Џ*,dY&2YɲLe,o>+Ie+\YʢP w{qٽÅ:꘩zݹ3uzPRe,dY&2YɲLRqa}t#CRY"WՋXpҭ~vҭƂzQ=fnvVAAAA SjT]A Վ6fU;4RTmUQ=1zu ٹ/y_ڴ]ЈF)UMNLh( `^hHQAAAAAAAAͻZu`ȎֽndnL7'{\lf! ŠZU~sB#E)Se<?Ax_U wwg]]]C=ʠ2P$ % ~ CAB؁@^BBsccc:Z嵪XVno ^͡9T4P*CPf瀅:up^GǏ6xz\,r"WR+}Y*KYD&4Y*KnzKԂG:S .9zG\|Mo&f7\>$LuW 7 4&u}Pml/[U t7lc?s84(nOީp⨋=1. q\>rUq@c\zs ur&ꆮ\v+`ҝ N8qջӎv Ύ6XȲ̲Jo떭7l?dc5뾽bd~k0C+PC]Fc!XbE.XbE.Z5s]=bE.XbE.XbpC\f׀9 W "\,r"h=9yKE.XbE.XbE :%c!Zhk5114 9QG8ĉ#G"2P~Ixq՛]Lowϟw- @cBm+#&01jeqL7N0Z=lU(XbEWTT&4,Mdi"K:U_,_0ۻ[xG^/8}gؿr\.+r\.+r\.+r\.+r\.+r\.+r8(KYD&4,Mdi"Kjn}Ɉ}{8vLTBBBBBBBڵdD&4,Mdi"Kn~_B4QfΜq!{J%!!!!!!RI\VcI;e,Mdi"KYK7rMm򳇦6t#WM7uoslL,r"\tukU"7r{XgGF'>c/hvhszכf/z_e{J۝~]릥^޸G:>{r3l? x;/Ͳs7,o>k@~49/Οy{n~ǯАn% ?`37Z~#{N}ڳ/0rS~.Fcymw I7O|/;tkhսcg68 QGx] L޽ +|o!x <iE/`kl➁㻽+w][xŒWWdopaٛ{.Qs\S}buٲ M{m:n{0>^W _y7w2Pw9;>Xmi+nݭCg}-K^^b;;Z9]vk,]Ȓoy{zg?wv6З}K/d:;^t4>G̥;Ջy?s^zm-oZl>sBr['?Ԍ&_lSnzƝA}|Wy.~:b\H)K/t:~_,5e y˚Zw{h>ݒo;>|!_>s뿕Պ _pBWg=aGcw\<+^x68suS-OUK%Xݑϖz7lZ?ҍNܸ [5ǿM[X'7/p}yõkZo}`-aՋ^&;#tug}-K^_wɺß4`JڼK;/pՇ[V~6;tmTV??[_)lnw^_^4O]} Ύ6XȲ̲Jo떭7l?dk}{]V}}Ɋ~3`vWc : B,r"\,r"\,rj@Gz,"\,r"\,r"744dVbͮsֵbE.XbE.zs˗.3Z\,r"\,r"\=uuJnB,r,jbbQK?n] @~a~d%ξanW^l: kEeYxԦ75[JfOcf~/7Xd\i4\<߳~*>Zm <*>~zؽx/6Xd%=Wk&P;____^:>56W?qi͙1p)_l-9;4Ȟm˭|K9VXrJD֣)^Z֪^ƻ_ZӘo|'q%/]GCqF˦U,yORä哾ܰR˯X. x0@fRKe[gb@cZ_bvO=7N0Z=lU(XbEWTT&4,Mdi"K:UT&,51bQSixSNt;tO=Nt;tO=Nt;tO=Nt;tO=Nt;tO=Nt;tO=Nt;tO=zϞvrG֣,Mdi"KYD&4,MԪӧ&#:u1RIAAAAAAAKKk׮*KYD&4,Mdi"KYD9sDZ#U*J%rY׏='ܯe4,Mdi&.=4ҍ\5MԹ1"\,rE^.U"amn k፝?ʮ Ӽ> 0奷zol۴fӏXNy|iTӵ›ߝ3xղZ7ڿĒ9]1}ֽ8[O|bO-v}iOٰ_jf{V>h_ y7YCf\%*!?Puƥ/Ze]{٠7_x̺/vnۻf= stZm9tQubKS^nf n0{ ujd;٬e mpX';}r?M{kS;̢u楩OXK+v[b۟(ʹ4 ?\@pf>9lq]>a/tw31Q8mEޱ].79ZNtSOXޜU{'W{f;:ڿOx4bMT`'+N\q[}3t"&>|y=[8Lyci{ 7r#5ܷk/η,yw<|ʯ}Zoc/w%~ñ=ozqG'K<3{4rګ7`Yn|gxl67!aoخ#1ɹ>zϗ?7hݿ_ݸ3 dOL[A%`pdj_|N3rkbmx~N$&m|;?/tN':4t@, m걐eeەI-[7lw{s{7h~k0C+PC]Fc!XbE.XbE.Z5s]=bE.XbE.XbpC\f׀9 W "\,r"h=9yKE.XbE.XbE :%c!Zhk511`bY~#?q:<. ?~s^v;i2 L޻˗5cn<(tnx M,y7m>[3M08e#}CGۦ֠z~yӞU:Qos6Y虦ΏL,cǩ<ȵmzӯ~LOi.Fo1ϳ|{欏/~[yv-jk%oڣ㯾aloqidD_[֯ģ⸼6`g-XmXvzg+_ֺͭW{îSslC{^xM{wӎٖ~z- =: ZDƝŠ9owzol342\?8x{_}4;p{W ϭԾ}_yc#[d-ۛgySbeYSfk&KYq׃I^ dwƍV\zK3;?56ݳto~n1mZU,r+zP*CEsh͡byXsM S/֣Gvh=E.Xbfv>,,Mdi"KYāv,,Mdi"KYD&4QfjLU3jVԪZ5SfjLU3jVԪZ5SfjLU3jVԪZ5SfjLU3jV䵪˗.:~z,Mdi"KYD&4Z5sTsdDǾN;T* !!!!!!!hiiqU]vi2"KYD&4,Mdi"KYU3gN8vֽJR\.礃ղL&4,MTĥ6CS\C:?6&XbEk:嵪Xb=M@y=fX1Y wtf&O^LF>zɓ/\!/Ϙ}[at|\wXӗ8;|q.]eo'WzGm~ޟ-u1'G<& YLͻszu1<(زЌE:g7uI]xqoݟkUF[7]_ۦ޼fʙ.{ݧgZq=-f?''>c/iA\ζ)-f_O3W`f-=LT{W~m`lȗo%h<пw?<091&Fܺ9J_{ sEOvzf3T̚2wgkT3}v7W4c/mПxnjgW95z3PxڶcE{ZϙbxOڸc~{Bs9S^ձwg'~9U7Fj&nTO#{MyI/=MbryOo^G4 ]]744пMx%bܙ]6grnu0|S~K_̴<:uw(4꺿3T(:wtyi;N`llLG[Vʭq롢9T4P*CEsX*pSs ]5ZbE.XY@]O5Kei"KYD&4q]5Kei"KYD&4,Mdi"KYD&4,Mdi"KYD&4,Mdi"KYD&4,Mdi"KYD&4QR/;~z,Mdi"KYD&4Z5sTsdDǾN;T* !!!!!!!hiiqU]vi2"KYD&4,Mdi"KYU3gN8vֽJR\.礃ղL&4,MTĥ6CS\C:?6&XbEk:嵪Xb=M@yⱗ=fxsicV? ߷M;3fv77u,K9=uV͝ns+65:l[G?G[E,غ m{q7CO^nF6g7bO>)C~0>9hu>0W۵%M^U-`ܿemN߉Y3~x=+=:q`丗xG~r{7M#z깥>8@ks3 <-Դċ3~=GNl_3eK45-_ϱ/0g,].zG˻o〵۳' nWd'W~k<Nxktk7FG+==o_gϮ+|gɪeK45-1oooj;/^?|?0pQG>>--:j`lȗo%0Jy]q4܋UIV'}[65iZ<xOYtULַW]0YoiY5ς _+o{ÂuK69xs{mdْ&MM/?唷 Ɠ~as41-Zd…LɴT"0^{mSp`}:,4wgדӗ;ŅfN(X:;c!26+哮[va ]U__b{ ]AX¡N#\,r"\,r"\9Ѯ "\,r"\,r Y{{XkuFXbE.XbEn<"\,r"\,r"WC]\-Ku01|DǬmh_n棳}{13O?1dGӼmm&ko^7>Q.7f[hѢE.\7?sҡ9Ox)flǑKb1h<{)/ܙ[\>_neݟ4v]vŌ??e{_Mcrypӗ;:8 V|›s_{h:7iWʾxvӵ1mJ pݪe^k(4h4?r4ӗ~j6hۋ,̵j6*U"r~w\zh͡9T4P*5;,ԩ܀;h=:~kW֣XbE.j:Pn_SRYD&4,MhWRYD&4,Mdi"KYD&4,Mdi"KYD&4,Mdi"KYD&4,Mdi"KYD&4,MTK=bei"KYD&4,MdiV͜>խ4ѱoǎ)JBBBBBBBZZZ\vUW]D&4,Mdi"KYD&j̙S=9uR$ T*)*}~9`~,,Mdi"K4qFM~&niРmE.Xb+򚮎vy*XFnhh41'&?HWߏϛyG1<9浧bI=߭7c 'df.x߹C^1˶}YЂw޿5O:ӽu3翧?iv[?mzgJn YLmk9o~+D^5mz}xkI?796nY??nMˎ~썫ZV?o=S˪- 'JfXۇ6x%4峇}\~j#7Z o~s}ܽiG,zw.;o`Ϲ!=_gf>n_d#Cw岳6v?ԴE}|%oګzƺgX~,zMt[==\3BsYY1~%?l_9+|O?򔏏R'xW+i}ߓͳux1p;~b/`|Y?0p;7|ض뀫q!_>s뿕@C~qyN~5O߲bw:zgO \ݍSV>; 4SV<3qk^|rk[ZVͳ=O缲b;pcӧ-r}ɉ-e.op7瘽{?mKu{{tCcLɴT"4~=|^Wž6 0+ ذޚmvW{wZ/Cyrrݷ?KPgd||9ZYٙ$3gr9̙=xoq0ƨ `lF?j,p(ZH* zK z<nӾ479O-3.gW'Wg۞=?Kܸcމӥiߙ}KΟ7;}Vߵwk]Z}Xo]7;}Vߵwk]Z}:s挛vDrOyuôwk]Z}Vߵiȡ>< Tߵwk]Z}Vߵ}g}ZMmawtEw֯{xϻk)V^po{auX7];yVMGy_z֚z˿ wg܃?۾늭7۵i~ە3W{7~g,[؜~|_N=K/iz_֟V:v׾O,+}>[yu_K`㽉z?twe߳se|ܲrXzo{Qnb,=y3ͬğ1⢕]?u7ƈ/dq+#~~Fl{|Xx[~_|KZ~㘟|s{_>BuܣgOˎ?KǬzڕ[oogҥʑ+灿߸%ubk};  }pȯng?^ŷ?ǝq3wǝv%^%`?}yI0nV׮޲zö~uGz?~GwkgWٮ16G+l׊/l_8Ws']~-}pHtז_~ݏW=]<1w^Q~ȃW >q&?s۶ȚM-.ϭ0tC; ӍuO/h}zq>k :~u1}k⳩/Nj7;W]痯tho}NՍ;>Gwk>]giaii]Ơ{휧Y=w=qo=w/ry'N}gw-/Y;޴]Z}Vߵwk]kcwa޴]Z}Vߵwk]̙3n=i_ޛ?䆟{wlΣ=g7ݿWnba7ݿ^pKGAvx S^ͮu=s{ r5l~motV:_I{Ƒc7kw8?kϯnmO+6am/}~ +W}Z}T_yͿWZ[?w;p7&~x?{vjܴ;j7]'xVl +ŠmaŶb[XqwXSnz|c\vi)Uôwk]ZMm+ԕ4u+M]iޅyM+M]iJS9Wʋ3VXwYeq~]wYeq~]wYeq~]wYeq~]wYeq~]wYeq~]wYei.,e%; ^SWԕ4u+M]iJSW6o=,;~L]YصӛBBBBBBB0Lyu+M]iJSWԕ4u+M]Xosq9!!!!!!sssdǽuWhM]iJSW^WNm]6_dmNmוϔ榾k]Z} ڍu}'--6#ϪWnosѨYY菾˯qO~'}1/׺яq_'o{͟^tuWx9?Z|!߼J߽.7cϾq盭#M-Wzs5#s?3ٺ/=nu3م}a߾2[]N֟ϕ]w-lmʁ}1W\RW;~ݭ̛-g훮 GE?_voqa˖-'v-}>wlŅ_l8b;Wlq5?{r#-O2Mzf\~>%Q~t=;t]9?>O;lөמs7t'wxo_-׹kݵ1Xql?'ŧ ̓7zԷko|봷vCg?slˍ~.|f?HاNvuWrn.}11.rߺir;SgW~ܗ~EyޮV|^WZ.3=~7'qQ_woh}8-\u|./~;Vyf_ZG?uWO6V_osOq=Kt^?:ӓ~CtLZOu/6/}l~_?X[-WO'nӾ479O-ųz{9rots+{_:N.Mδ[^viVߵwk]Z}zc¼iVߵwk]Z}֙3gܴ#zӶx +ϯk]Z}Vߵ5L{G\wk]Z}Vߵ5;T7;}hj /y/?,| .y^+/!_?3|7.eW~_Yg޵ۂ0CFW\zٯwt+o^qn͏M؞|1¨/}7K][zQ3=!|ɻ~q5n}|~惥߹麭^}_v'.~_磏Ƀ?m|˽[Wmu-X|/^L|fSoowYҹwt.u77s_ NW۲2߾s'>rOvϷ'{m/x۟A?ɏu hz-OfW]~o.}Ewvv`_p[mz{u!GvaGvaGvaGvaGvaGvaGvaGvaGvaGvaGvaGvaGr읷>uҞ];eui+M]iJSWԕ4u+덷?, !!!!!!!L&|⼺Zԕ4u+M]iJSWԕl79zāĸܜ9V:rȫK{l44u+M]Y+'϶.z\6'϶gJK{v|sSߵwkuyƺk]kvl63Fl63G8G8fq4#F8h8q`lf6hh6ffq4q4f3q4f3q0fflf6q4f38шq`G8qF#`f3qhf3hgy۽h6fq4q88Glf68`4q4q4q638qhG#`f3q4q88Glf68Ƒq83ϹGs0qGl63Fl63q4#80qq4͌#0qq4#`40lf68FhGhF8ffhG83Gh͌#`f3#q4q4Fq4f3lf6۴4M'ͽvSz=5UUٶg<)7wtiw}gMNߵwk]Z}Vߵ6{MNߵwk]Z}VߵΜ9cSnxd^y~0]Z}Vߵwa;rO~0wk]Z}VߵwiٷiFS[]xh`4hG#`Gl63#ll63͌q`Gl63͌F883#`4f38шqq4#0q8Ǚlf6hG88ff`4ffl0lf6GNH>803l6888qAww|Kqffq4͌h6f8vGƺk={ŠmaŶb[X-Vl ++pM/9| 0|5ejwk]k]wb%Ԛԕ4u+M]ٻ0o5u+k_~_~K+7~x{Usss&db2L&&db2L&&db2L&&db2L&&db2L&&db2L&&9Y}K;o7L{M]iJSWԕ4u+M]Xo}1ufaNo8`nnNAAAAAAd2竖՚4u+M]iJSWԕ4uec#'ƝY\\֑C^]ci4u+M]iz]9yu|咭9y^W>>SZڳ盛wk]k7,/k7]Zk8>_T0$ #wݦ}iw=1osZ>ɥ~_.=U?}|}ϝKܸcމӥiߙ}KΟ7;}Vߵwk]Z}Xo]7;}Vߵwk]Z}:s挛vDrOyuôwk]Z}Vߵiȡ>< Tߵwk]Z}Vߵ}g}ZMmawtE܋|{Vl>>bܴ;j7]'xVl +ͽ=޷-Vlᔛ_r)a;k|0]Z}zSۻ8Jf5u+M]iJSWwazSkZS9|޿ ۰Iˋ{gBBBBBBBBBBBBBBBBBBBBBBBBBZYykޱw|cakJSWԕ4u+M]izeǏ5 vzsssBBBBBBB&<_84u+M]iJSWԕ4u+wq`>1477' `nn⢕츷M+M]iJSWɳK+lɳҞ>wk]Z]aya^Z}Z伥q?[wg3//8_~>wݦ}iw=1osZ>ɥsFs|/O~w;q4;Ӿoy}Z}Vߵwk]Z덽 }Z}Vߵwk]ZgΜqӎWN)7<2zXvZk7077' `2UˋjMSWԕ4u+M]iJSWxNsssBBBBBB,..ZɎ{!.4ԕ4ue<ۺdmrۜɥsFs|/O~w;q4;Ӿoy}Z}Vߵwk]Z덽 }Z}Vߵwk]ZgΜqӎWN)7<2;' g⵿ޱw|cakJSWԕ4u+M]izeǏ5 vzsssBBBBBBB&<_84u+M]iZ]5uijmۚ α8wBBBBBB077gqqJv[Gyuiԕ4u+u%[oKz]LiinonVߵwݰ0XwkU+{TVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AVrd +Y9AV8gq~ii]Ơ{휧yr'#/<{_:N.Mδ[^viVߵwk]Z}zc¼iVߵwk]Z}֙3gܴ#zӶx +ϯk]Z}Vߵ5L{G\wk]Z}Vߵ5;T7;}hj /M vc]ߵr=aŶ;;n{tuG?maN%raW ^ߵwk7Nd֛ZSWԕ4u+{mlνuv_w_./{9!!!!!!!!!!!!!!!!!!!!!!!!!>m ^SWԕ4u+M]iJSW6o=,;~L]YصӛBBBBBBB0Lyu+M]iFU84SQ<|+ܿO; !!!!!!h%;#FhJSWԕrl뒭%[oslk||g77]Z}VnX^nVߵ}/$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$7kii]Ơ{휧yr'#/<{_:N.Mδ[^viVߵwk]Z}zc¼iVߵwk]Z}֙3gܴ#zӶx +ϯk]Z}Vߵ5L{G\wk]Z}Vߵ5;T7;}hj /M vc]ߵr=aŶ;;n{tuG?maN%raW ^ߵwk7Nd֛ZSWԕ4u+{歯;-/Q>o}գ/^ܜdb2L&&db2L&&db2L&&db2L&&db2L&&db2L&&dbnnΉ+^^{74u+M]iJSWԕl7>zXvZk7077' `2UˋjMSWVgO߹wj}͑S7\o5}$/ƝY\\֑C^]ci4u+M]iz]9yu|咭9y^W>>SZڳ盛wk]k7,/k7]Zy>i̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1IDAT\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥1\si̥]LN4zbk<|ΓKg=4y_>SZڳ盛wk]k7,/k7]Zy>;vڱ3cgn܎;s;vvؙ۱3cgn܎;s;vvؙ۱3cgn܎;s;vKP6ߙ3̜93Kon{n; x7$ H*2XlCPUeeTJhG -3CWDdED־=pU5rY  A rАs˥ DG8đ$LkOgR82;=9,gUk*V[ՖbXm)V[54ՖbXm)V[ՖbXm)V[ՖbXm)5*MG*MG-GT-G5-GT }MjKR-jKR-jKRk*T }MG-jKR-jKR-jѾBtR-jKR-jKR-jKR-jKRk*TTT }MGZՖbXm)V[ՖbXm)V[ՖbXm)V[ՖbXm9tXm)V[ՖbXm)V[ՖbXm)V[ՖbXm)V[ՖbXm)V[Ֆ}MJѾbXm)V[ՖbXm9T4V[ՖbXm)V[ՖbXm)V[ՖbXm)V[5*MG*MՖb_StttR-jKR-G B_jKR-jKRMJӑJѾbXm)V[ՖbXm)V[ՖbT4*MG-jKR B_SR-jKR-jKR-jѾ#B_SRk:Ri*-jKR-jKR-jKR-GT-G5-jKR-jKRk*5 BhXm)V[ՖbXm)V[ՖbXm)V[ՖbXm)V[ՖbXm)V[ՖbXm)V[ՖbXm)V[ՖbXm)V[ՖbXm9T44-jKR-jKrPi:Rk*TT }-jKR2pNIP29'.x{pڱPWoá ~:OFҀƔN,fe#RyʳT,g浫;$$q$#IIHG8đ$,qٚoP.A A@ 'O Х7zԢl_=+擶v;Ҹ]sRW?we5rY  A rАs˥ DG8đ$LkOgR82;=9,gU4*MJST4*M\^t{rkSVT BPi*T BPi*TTV{sު[m\v}ީϦ+MwcrIbHPi*T BPi*T BHYRݙF_ST4*MJST4*MJSSo:tT4*MJST4*MJST4*MJST4*MJӑJӛgjɽVFjΜwT BPi*T BPi*T BPi*T B-y>Rk:Ri*T BPi*T BPi*T BPi*T BPi*TwZ BPi*T B9W'RCxHPi*T BPi*T BPi*T 7g}6{fn8t09oU BPi*T B'Rn:tT4*MJST4=eEm*T BPi*T BPi*TOYryoWT B80Dg4*MJST4*MJST4*MJӑJ;h^V4tfvcɧCG+MJST4*MJST4*MJST4ufx"8:Z }|}' BPi*T BPiY=7T20yoWT BPi*T BPi*T BPi*T BPi*T BPi*T BPi*T BPi*T BPi*T xH]bމ-JST4*MJSTkz_.zlӑJ53W/\KT4ٳ:y&I|{@ʜ眸0iC] 'W>ug¯KFS:yg._8?g,gzc_.ao״7wLGwd]}/nϭ̌\vzܘl;<{K6j?ɻ0.[amwx=gxff~R[ک}Aݾn_P/ uLs&t2˝kWL-˝\,g浫;$$q$#IIHG8đ$,qٚoP.A A@ 'O Х7zףE}]OXhw_f{wnqr,A@ rlhhHC_ܹ҅AKI"#IIHGqd|&'_w_{E3vrauyʳT,KH,gxqNfi(5z5Qm:Po9>4|1^魡7g8doW>9oZm)5u6t6t6t6t6tUJ-[|962ݘwpoCrlxKp-EoU6?zlKHЛgC[VzzzzԚmoyo54[<:rprTk9~6thpo{bl×_-sHбZSP?zlXHoCWoCWoCWoCWoCW3ӉzV[ yjSWo[E7;^iz?fJCWoSЛg[}M] ] ] ] LJMo0^K ƖwA6;Qmm8Zm9~6ٖ7M] LJͮo_VrtH_ӱՆڴs떳\\Z˛BކB_˱7φ՚697Qiq~_ζ;:Vk:Ur;Qmmmmmmmmmmm8[m;`oKecy{ӥm(;zlKH_ӱ7φZ ýM0Ƭwζ|p=7{0jCWoCЛgCjMGzf\]7;99T>6)JކBЛg[J}M] ] G-[JgC[VzzzzzzzzzzzzzzzzzzzԦ N.Hݎܙ^qRPm9~hpvuq;yڥ֊V[ւoWzz|йguL$9 9qaۃӎzuOxq|2Pτ_6tL'\`q~^'Y*RyʳT,gh[ַv,wܾ?;I{&tgE斜~ݙ]5:kYiަ_f5myⳛӎv+޶m{3}-mbncIӆ&%k66-g.L:3pϤCݓlDiIŁik&&"m8>hvmh}^F,64k /λ;nek7PϤ=L:vq[;Vܩ-$ر=y280RkUcmmDó o\X0e|t[g}q{2g҆_N+T:.ogN]u}zM]j)BՑhm%gwHG& =o~7/2ft^x)z~b.6cx~7: ux'wO'_=ǹ2F{ L.jy)K>YSy)Ovʺ07lhǙSML8=`yWL/x6̆MَhƦ/M{ܬ{[V|L}|pZ3vO:=K6\ԥJצZܔ竾zl~y[_k90K']5:jicL/\+;<y>lny[rFjicBǽKߘRt{ w7I:+[v7z[ZԚ΍E\ fVLuL$ԧUB[k:+Fw閵{ 'Tt]Ywتv!ʷs+Mv,mjNƣ kk?v-<;㫥M 3wz'[2pƑǮ̬[rj򚛷ލm֬nn/[LuLě7ܿ;̄C ٦ѯft{I'~fkNx p{IDcz:uޢsbf׭onp屏濫-sgV}~{[ÑmKɲԕ3M=:V \qju{Gu ^~/7׶w<[><1c}m/piLZĪm3 k:cJޑ]Us]T꤃g&t{I't{I't{I't{I't{IsSjSh՛uuO:=PCݓ^?3K h,^qmRapW +=vkK>`ݓzٳ:y&I|{@ʜ眸0iC] 'W>ug¯KFS:yg._8?g,g*]]'N^țG˱ˣ]z>*]]';>%?72}o7yωwqo}lg.[Oc fÏ>7;{]QlOMڜ̯?Xi||=0~nL/?S/jǑ)X_gN8viږ;wOZ?lcS޾hjy|Eg.?v{܁csԘW4TVdK'rzó.< | n>V:?ڎ][;۾71:3/]zHikuEeO8=1G<^49H6& tn4-:3K.> |̺uWon*V588mAE'WmmjFMKqڸcW +[FrԘWK6̄ sԘ83cw[K/vj́c^95k-v6ם:-sW[; /(wmʱq/ta2Ek[n~ScD[tbmkˣ3Xܴ0Q*=ho8?aei>~߄)7Kk ~[pzKWm͹-Q8=1N9pźcs8=1N9pźcs8=1N9\k9}{ѭVǽGsw85Jh`4u֔w?[q_ƼrfRE[}a3uc,jt1N{5ٳ:y&I|{@ʜ眸0iC] 'W>ug¯KFS:yg._8?g,gSww;v:Y^7q䉯?Qb`w]%;~?|F]صpS?yΟ.YA? u}AݾnoPw̄=/`J'ݼvTزY*RyʳT;]0ZĒ8đ$$q$#Ix~@;mS*^}|-Ƅj7]qe7^ve7^ve7^ve7^ve7^ve7^ve7^ve7^ve7^ve7^ve7^ve7^ve7^vuw>{ƣ_yN.#IIHG8đ$$q$#KĽ=z@-:7eA@  Aɓ°exh@-JHG8đ$$q$#IIHGډwqr,A@ rlhhHC_ܹ҅AKI"#IIHGqd|&'_w_{E3vrauyʳT,KH,gxq_O?Yʙd7όzf?uF؛.Ef>x6hK2t)w6--(~:{|mU¤7.ΛZr);٢h}[?}2oW,//^?nPw⢙ΖGS^ F\v4F3k}s꺫ךtnɺ'^?;ild֟/-lx4u/D?w:T U']oZ\XR>;uO?Y1z&k ^R}6km)ٔ\|u{ ڪ /0IS^0Ν^=5Ȫβ ^*zJ$tcY3xRgݣYuN?YӆkҨʨ}X}&sy#+7Z XےmY{˟N:056ܭyZ+VWɺ';xn F#nWjѝ q~d.}1|=Y_wzˑ3MG3TBMӑc~[X~O6 ?^iyyg /u҂/g:>8z-^ý- ӑcG:he^;Yrw sSc;YdO'UGlXtnO'{r[W"FGuݡdž&lعֆ][;V7oXfiGRc kΆXOd:+z'lږotfr7̫kK7}`ڡoiwio[h){B&rN80Y]383M[(q2j_P/?Ydޠnɺ'u{}'nɺ'nɺOy̘OֽT;rqBT'ɘ>O|Ռ}tnһW#3Kq|RԸ7ε|09rqO?9ꕏplNIP29'.x{pڱPWoá ~:OFҀƔN,fe#RyʳT,gCc)?zgJ-+vV%Sџw{/⍛_/M~7op\ fo5sޯOzO/e_8SOT&We3&;VϺOؿi7\*_*k߼W-+Qg'~,=ړ/=T;NO0xHEGOT:484/\69qo~(ZpЁ>l¸+x:Q%ogjW NXѬOr{aS9#<-,T/ ^Z462Xe{K'>L1:pfܱs-\x/f\jX\7t`ľn_Pg|Ģ_2ٶ;ebm9yd"۲:;|?Y]w~ 1G/̛Z61>_9ʬWVzϤwB^||cD%^l{noP/Ԅ芴ʨ>ڴu ~>Rk[ ̚Z2>:K 77>;Q-[X{c 6WuN_/Խ~vF髇>}YvyZ.OoZK;?YkZg+fnodo̸Zѽ.>^I3Wf}2Zpw™5׿?ұ嫇uK6ME85Ζчnmj;Iޠn_P/;pzqΌ{Ԩ}Aݾ7/G7ܾ:P~1|cݹK--@:rʏxd3~&;'ͶWXuWz9XyhXCI }_k d?ηԫ&;z[`WֱىLMJV6c=o[\XIW 9_R9Y]:“~-CO{?w0ךK>;'-j2mt]6c}wWXgU>sOc׬`}}sҥow^Zos^{LOy}plgW?}ȁi<{#G>Ryxˋ-wT~Qֺs&9;Yp;sֶMcY]Ɯ2Y_}nܡ,mmi^o첳#iַ:rz\ oo^Tɦ]vwv$q24ao0ڊscnڰ9SjmlȬC'GhqcӵM/N>XG-[sŒu6^dԡ . mLN<|NɳT,gO>~T@OwZ9_=߾rرR:ׯ;9w:zp=so?<ɟ~?~ޡB_/5;lFzw^xOk:za^|懞>?ʽyw_xʷG(x{>}ǯ^qQ}?w~ޡB_/_#/^xűGW?s:>{~|ङU;՟/ȶL s{_wQ{~ie6wO~QY{o_}lsy;v?K?AG} z'ȯ{Nvsȷd7%'7'sKj˖{`΂VGMV%I4؞OԒU]Uo__VOߚD;zlֿ=7́k?x;i ~8,Kt:,KҏozWy=:YO}'4q0iΥn-oZk]Z}Vߵ.Z+_/_W^rݽ \lkk[AAAAAAAAAAAAAAAAAAAAAAAA֖r.Y?U'Iߵwk]Z}VߵW?~zfumcwܸvgϪ._յk]Z}Vߵwk]xӧv};;BBBBBBŋ7+cW/8{}VߵZwy67:R^o#>óϽy >zm-©3 ,g)v©j_¹K?<37ܡ#o›W?޾G[ ,:p,wrs׿yᵛ~pƵ=ڽϽҋ;^z3~go:~ys׎m?ں'oz#o](\nS۟G¥{^8{,:p6aKwљ;T~й;w;C[߽M޸|sgg?z+ӻ?3 ,:p;|x$~#a{kM?=wй;w|玟~Ǚ߾qࡷ>z ߻/\=-?^O{?pOߺkÇ6߽#o}+;ʑw[^yO~][W37ZGdz݋©3 ,:p©3 ,:p©3 ?8s߽ukG^m?:37s=7?sj~gᣇ޾~=wagnzCox_w{0,y^y[=Ρ~]}g]{=Ͽ~+=O~}}[=;Z̿7>|3?]|yom㭛~-?ܺ߿79ufԙSgNY8ufԙSgNYwC g/go~?۾g/vө3 ,:sO<='ڼxhk߅NY8ufԙNοc=w׻?ҫCp;߾s~?y:vݺz5YOiL`84q0izv4q0iL`84<Ҏ_ދ'໓>pލ?|/?]WlOʷO{ }5o-+6{'OGoxk+ʫ[.\e)z|\oo+v+߲oG>xQbw𳏼qUyxw)|g_|/Kϝ+uG߀]}5gw/xj|wW^w;'3~~“W\[>ק/n~W__zz>Yuξv=:_q8o_x;׽¹OxE]u]Z}Vߵwk]xnVQ6}Ǎkloo !!!!!!!8{]]Vߵwk]Z}VߵW?}kW߷m!!!!!!.^hyO>vewk]Zug̳;c84q0.Wq0y$:gc$E%-666666+iQIJZV   iYIJRTҢͅ$E%\\JRTr!++IQI˅ͅ$E%\\\\\\HJRTҢ\\\HJRT      IQIBVV\\\JZT\\\\\\جE%)*IQIJ$E%-+IQ6lsacs!++IQ666Ҳ\\(+iQIJRTͅͅͅ$E%)*IQ666666666+?x{'=$E%-+iQI˅JRTracs!++IQ6e%)*i\ج$E%)* iQIFYIJRTҲ\\HJZ.ll.llVҢ$E%-66Ҳlsa$E%-66ҢE%)+ iQIf%)*iYɶngW66666666666666666666666JRTracsacs!++IQ666e%\\JRTlsacs!++IQ666Ҳ\\HJRTҲll.de%)*IQ6Ңͅͅ$E%)*id  iYIJll.lBVVm.ll.ll.ll.ll.ll.ll.ll.ll.llVҢd  YYIJYIJQVҢd    ?,ٱF};]|_zy__8˝ڋo¹C?{㎟v oKn{`=G4q0iL`84WK{h84q0iL`GGG{i/~}]G84q0iLd=޹m>Y4q0iL`8zy_#i4㾳w~Ǔ'Oxй/nǿ[<~4~?g~NatX:NaGa7=}м'?d84V}]7Nߵwk]ZvN|M9> h/ouW\- `kkr{,\誓Z}Vߵwk]Zǫ?=p;n\f{{[AAAAAAٳg}/Fߵwk]Z}VߵuO\wloo !!!!!!vE˛?|+k]Z}Zu;{,\誓Z}Vߵwk]Zǫ?=p;n\f{{[AAAAAAٳg}/Fߵwk]Z}VߵuO\wloo !!!!!!vE˛?|+k]Z}Zu;擵iL`84q0i_=F88;{wr[K7nppp888ppp888ppp888pppoxK\dGW'}Vߵwk]Z}:^遛UԵwq5BBBBBBBΞ=|qW6wk]Z}VߵwUO~c{{[AAAAA/Zެᓏ]ٿ]Z}֪ky8xޟ7_W\kn\sp㚃ܸ579qkn\sp㚃ܸ579qkn\sp㚃ܸ579qk>q?ܬ:YOwk]Z}Vߵu7k{Ƶk={V]w⮮m]Z}Vߵwk]Zǫޟ>ĵym/^Y'qVߵwU׺p̳yĝU }iL`8cv +8A#쨛u3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnfu3YfV7ͬnf_[[O/Я/NŷyܡqO^具}]=Fi}ͣGh84q0iL`ǫޥ]i4iL`84q0#ϽsVN֣iL`84qp|uw6M`84q0iL`=޿4q;ɓ'Wqӗ/o?t:,Kt:,K? KϿy_;d='84q;.iwwk]Z}׺kwaz<6:}jzmo9}Ko/^:tx{Ko/^:tx{Ko/^:tx{K߻^u]Z}Vߵwk]xnVQ6}Ǎkloo !!!!!!!8{]]Vߵwk]Z}VߵW?}kW߷m!!!!!!.^hyO>vewk]Zug̳;c84q0.Wq0G{)yiS޵^#ܩ=/;7k֡￴ֽh=޿yzM`84q0iLxջk=q0iL`84qptt乗v<^z4iL`84N֓O>擵iL`84q0i_=F88;{wvewk]Zug̳;c84q0.Wq0G{)yiS޵^#ܩ=/;7k֡￴ֽh=޿yzM`84q0iLxջk=q0iL`84qptt乗v<^z4iL`84N֓O>擵iL`84q0i_=F88;{w}d5Mg8y컧ԓof]}ͷ~W'CiZ׾} Lh'߫Dѻ{>=}T,)3"(8AQQAʐ 32$dZkgNO*co} woO>Ǻ|r-;l>nOmjs]v ȐrV62^@p&V#ea*P&qT + TqTypDai1׫Woo^qR6V,K˃ƫP562dph۫Wo_A:0 jO 1>:(+WHc* P7 J٠ 0<G, !!!!!!!ؽ{;< *􉣂8.{xO?ZKܩO2k.7sa\NAAAAAA.sq;\rɩcJq, ⨠u'=3}D1*xXӱz#ò4,Mdi"MJN66HJEYD_ozjU=WpkN<nЊ5_?ϾtCYUxt,{{>{s7z*;tiS>pt+KkPqG[8pV/~*5x5?x80MgѼ*@U՜Kֺ; T\?붻?ʀ=X@e6s8@eP#>]iiԘ|- WѪekT>[/~tL`<my<-8gp*i~oD555jjjL<[M}F:S;wD555jLQ3%_7 P-kٽd6/[)`WW=#UTG= 8a ^| )ܭ%~֣ 1O&Olwm #RQ&o?f޻ֆڐWjC^mȫ y!oM۴O\n/gZΟar&KYD&q;q$ DcbH1E&8_a5XXca5XXca5XXca5XXca5XXca5XXca5tG7\88*8*8*8*R1vewn4=bs\.' `>tx' q+ ӽvfα~'^[07w#GrBBBBBBrǏ߹ڕKN5ScqTGqTGŨ;髵u'Qǚ,Mdi"KiRrAR*D&z{45֫VzIKԷuuk"0qk"UVcn[^6{6wztWOX3{fW۝o6g]8~ٓ\?i?ӷV̚a/7V+o8g;:#@zǖsl8ʸBUa UPSh`޷;w;q*|rYE<0VO3tV <@ΎwdSoQCKRڣ|pړqc.| koG#k>~m]`Ѕ|}r]l5^ru_٦\UlkvYQ#Ň.};R[ T^o8-Z3P:ݲ?F0>P~vZw=sӝOz*0vyׂUW*޻ѳcFw۷>wХ>cߔ;XoWw⪞qt25 0VqsQ7Ut49P)u3=茍ckF ڜ.ͭ*.~ƒ}t.zRuiO }jN}dRI\ۿ} X;kw^U(q43=86.nы:^SWMSO ==y3F}.wYx@땳TASߞ|j{S/uC[v|݆ڼv+5hxY&}==Y*KYD&4,Mdi"KbDcrD&4,Mdi"KYDWWێzæmi𸧨D&4,Mdi"K̕K-3_,Mdi"KYD&4r:sIG9KeiGPVT ?9iw4odRtw9Om~xO;ջdw;ӞnPŲ)3|uX3[YĨ'mW?O{@e(vI:JGn>d}*JwyO.3:-=pn~O*0^t'G]<&ݷv9zg8vB~5U2(ʙLoU+JERQRs)-{{8Qw/:{UyRs۝N\W}s#;{z~=wJJRT`|զ:ޣ'zى?Y;~B?\ڡLo=zdU}xmG.0g/M`QO'ԄşpcewN`Ռg_^|䖏^jSzG~ްPͪ<XDR*l{ڐWjC^mȫ y!6 y[i7 SL?_di"KYD18ޠ5G1QAQAQAhlP#bA۹`?_o_G:;֯jpAK-4_|AK-4_|AK-4_|AK-4_|AK-4_|AK-4_|AK/]ѡX;~rr& JݹuSTxrݻw{EYʒbI\e"[[mŔ?ӟ?M].]8ȑr\.wnvSMǔXQAQA1*hN<3}{fjm݉bT뱦cFei"KYDll4M*|eehӬaH~q4_Xȼeoڼִg~/}f)L㺃gjV]sX_wc6KvZ6goká[ >\k6hs%_#cݱe\|ݓ'[2ǒߵij歔ksі/ZG>~ =*x+ߞћ`\3Wu?mGR+j-VL$]v~;}d˺M}Z+>cm8?\i֢Uۼx&Qω߱d>ז.&kyUzO޴t:|M5n>-nuqX:{:雖Z>֢_Fz`s3g*_}%_f/7]#˗'ٸj^uf+ߙ=5nxwT~eu%l`6͗Ɗ'oXzO>E5&/حVּoۖMnk1Ri }z*xȇKL^txM;,77[%Wnqۙ/^2QoK5^uIn-]b{ڴKV}/_6ji7}n%7zyK>厡ΓX<{76o˱6c*.l7skNnvE6~Wڕ|t @v?٬y<7 'gT.3t dKoؼysXCr7z,|>%bRdu?K@vg}ZT*** -VO?6Zh4-j5 Qxl{_nꋋﺁ P~UՏn^mϝjRTH2k 6gբVl$by}vf_~pύCWsVo֍Ϙg$*}tt6~~[Ο<#2vڷnYkvXDR*l{ڐWjC^mȫ y!6 y[i7 SL?_di"KYD18ޠ5G1QAQAQAhlPJOob_vZu{|=?rۜ<~̩'r\.'rr\.'rr\.'rr\.'rr\.'rr\.'rrѝ;=_\88*8*8*8*R1vewn4=bs\.' `>|T>;7?Ƃ7rA [/e9QЁ^OzXӷk,ȥ 9, !!!!!!r?.kW.9tL)QAQA3Wg֝(FOk:VodxX&4,MII(KYXZIWN^K>X2 CrfXwߘ3eGe 4ۤ%zƪY+yl[問G\ dW9nޚg ll8L_3m=vey4 -GXnOMz }7/2inW*jϷzRR@uwL</z/SI_4{  h;Mo?v~JʉK|yo|F ~`+Vv2K>_=+׋byqR*c጗q÷oϵd.wĞ=ySY緛Y.a\{f55+rBC /Mntn,?WtfK=c*w3MgX?/|r\iǭ:է':<9p㱨Чß)+[ ~O`΍tHo53__ܾwWWh4X8 ~87MݾjYc?~]Mmͺ=6׵[Akc,URgN6QRYD&4,Mdi"KY(c'T&4,Mdi"KYD&vC6hhK=ET&4,Mdi"KY/g\jq힁,Mdi"KYD&4,MԙM =Y*K8XsVOls=cSیiWNZX=-{yYSAu&x[sjs_zfNq]Hfb^5-*6-~y\30#RQ&o?f޻ֆڐWjC^mȫ y!oM۴O\n/gZΟar&KYD&q;q$ Dcb1{렅U_kuCO!bmN?ԩv !!!!!!!!!!!!!!!!!!!!!!!!!صk|N}W-/g ⨠T]zٝ[7E>G, !!!!!!!ؽ{;X2˻/ͲagC˷È[GYc7[X5k]pՉFF\Y>r C.]kZTK7l|q~i}%;.>2q4Skxo[NU;,pԷoδ3;?4c;Zٷqjl<(w8Mo,oj26Í~my~[O:޸؊DybƗw.̛=~9*f\[_3ӷ fY*z[/}opo8rk/_,lQ>7W[8 9^qhƪ㛟lZ:7V~w׼aٜ|ֶy|oלs{ftQT׼p]Ѳ?e*:7ޮϷXj '?nۏus^T[?.>>j3߿fު/u 0;v8T"_n9so_7:7[77biL_'[κ}grA-_𯞟2Ԛ^x̗?ry̟cA9l;7 y9stNwAC1T+-cT<:{O_6qWFP1TN<䝅Sd|\՟[:Ǵ/&6'-=4X8ghnOu{ZjVkwݝ6Նڭ֠r*g3'(g,Mdi"KYD&4,M Y*KYD&4,Mdi"K]]]Vn;b[㞢r*KYD&4,M3W.v@Y&4,Mdi"KYD&Y&,Ri?bll X9O1@rw9橻WY~ .oNw5eTSk&y<d'Vv~f |goeSLo޴o<~ꢗ=Cx{U;.{|;~/LfDϽ0TGEnp/wU(ʙZ._QAQAQAQAQA~;n }vY.BBBBBBB{nv:y8%IIRXs7pY_ z{g~wsYGr9Ǐs˵+j: QA[w3WkN']572<,KYD&ҤdcT,MhjWVꨧ.jiӖ/L㷮`,fwXEzi%vn|ffͳuGuvmZ0ت +|G+ؼffQTݱe\vklKޯWC7x?Wv6J^xx`ԃ_>av}c Vchڱ36/Yx#OWŜy^qgTw&Ouo<>niԋr_Gv}qrɯ{q 5-]0>rE붚Qԡ] 3^ N^NbiwO2 ?eϵ:oʧHrkxź~t+R԰m|=0>S/yqkFpP44,[_m=Wp`j jnap{ Պ*j|($7<[PݼÜo:sŻ gX1T+͟cT<8)5=4>tUjfӕ.c[Z ͝?7ہ!nvza+iEVsPV)ˬ oMdi^9KqώڼڐWjC^mȫ y!6 y[Akc,URgN6QRYD&4,Mdi"KY(c'T&4,Mdi"KYD&vC6hhK=ET&4,Mdi"KY/g\jq힁,Mdi"KYD&4,MԙM =Y*K8XsVOls=c^s'-s[L]lLMCU*C=lZd[ںz~SGs&ϷFjUZ*;ްhCv߬Y k-޻͙?޻)Eoϟ ]*{zYs8{o޲xwNQu[Jy̝2(m ˧Z6s+:2P)xsT6\U0ox靝*G3cz׋U}߬]/U1͘ո +Mı)~|̲iy ўsV͜nUۜj:Q:;~pB54~1޵6ՆڐWjC^mȫ ykBަV~vT9r;3YD&4Q#'7hQ#qTGqTGqTG'J-LzqvnodOܻߩǜ:uҮ]9!!!!!!!!!!!!!!!!!!!!!!!!!v=}7\88*8*8*8*R1vewn4=bs\.' `>tx' * qTGQWWE_Gr9Ǐs˵+j: QA[w3WkN']572<,KYD&ҤdcT,MhjWVʠk-JWAWM[=wŒ; ?eixK- PeӦzzrOVWߺkfDZ3l=|nl_?<3eI6:^+4czvGn)&}.ImM}cWS67PݼÜ9o:sŻ f*QC1N}dNtC?jEZTU+*ZUTTP҉l(zKnŶT9K9٤G9Kei"KYD&4,MdiThlPRYD&4,Mdi"KYr[utݢ- SYD&4,Mdir{˲4,Mdi"KYD&4QRgN6)(g,MHcccczY=}M {̝me2ʋjӆ&/EуK~+nt0fq Ƌ7pRo4xĎ7-zCnyϳyf 0^/>Qz_|ӵ*xk/̵5~|9zܼexu}}޺؄,ƎN=wBW6zԲ|v=癲#W:.ዯ8rf<7EJERQT+\ߛ.m==w5uz=u⛷,^wY9eFF`)+͵n6S-ϛ/zu&N]Ľ}xNo|^2f_z1`*]?s|xܫ&[%6\DUURQh9fuK*߽i; `xxXcI(Kq]kC^mȫ y!6Նڐ&mnM.l7PN3-zS9,Mdi"K8rx8GqTGqTGqTpAs؋;N)e2V|y̝N?ԩv% `׮]O} 3qTGqTGqTGqTGqTP*Ʈ_έBƣ]ln޽ÇNoQAQAQAQAQAWh>wƑ#r9!!!!!!\r%)ű8*8*bT֝xfjںŨIcM D&44)9 )ei"K}=UU@Ul۪&0K|j:х^3 gXZh[m##k|nj1wn,ӭ'_ y-{+0-+P-?lXa).\hY>iHrY&8qJQ(V.=t7͜<)3OwJ3j&\3Ջo}3Q@u$uv8[͔)&OiM^ݚnsz&xݙ궾f1ڣnk|}̓'7}y5>sqQVΝjҤf.~  5&MdW|SSy4u Sv7Ly9Sf,N{6WگS'K ~MS{Δ ~}S_kyl@UݖOG%2miz%>8zh̝ Sf[͞=u\cْ{<:&0e_ }tå[\4m^osXdM؞{.`o=Du}[nkyNhN#ժ׼d &O_`÷t@%˕LYt +ZĔ L4ղu_.Ko Tclp$'N6c+?jv[f-2پ:}Wr/ߠ^Y˓P)ް%9y8 wy+w퐗翢AY쳷^4y&Ob÷wU0VGsFu_EK3M0єsRѹnOOr WP}gg4a)SXQI~fp JOXoM_<.y KfM1qswS.aj۸|)M>۟Tq'o,2y&O{I?H[g'QSScʤ)̅g'2̚ɦ-xͮ3Fhu𥥳jL\cKo} 0Wg{{mcHuY ꈇ-hI'`54:= c^YqTGqTGqTGqTGqTGb+ϝqa\NAAAAAA.sq;\rɩcJq, ⨠u'=3}D1*xXӱz#ò4,Mdi"MJN66HJEYD_ozjjp"Fƫ@e@ZWPY)Rbi_rXEelXZCFWjlx@xѡPRYV682G%qA__AR2^T P?4 *+Eҁ*ʨ׫T4VL\SJdYظ~#bx_Jb(+K*QI TAulDFƫ^_e0>2+IJr蘱AAU1ixȀRԧeC26PQNSce#c26,-F"I_Шar *X__A/3:WAu|D9+bd0CqC818:Yxj`9TVFKRyHj@jb\R *F3Q_BQШ*:>,-z۫P*iܙ>j~c*FUT+#ʥH__A10VPqVC{?Ƈ*P3iJUC*U:>"+Ŋ٠A*0>2\0Veik_zՁ;%POb}}}lt GJ*Q岡 1iO10VaG$,M~ƽw y!6ՆڐWjCޚi6|@9_δ?NL&4,Mȉ ZwHQAQAQ8R#Oۚ}bss|6z׃v:t>C:t>C:t>C:t>C:t>C:t>C:t>#nU˅s˙8*8*8*8*8*(cׯ^vMQO.67rBBBBBBBvN'7 } J؍W4;ȑr\.wnvSMǔXQAQA1*hN<3}{fjm݉bT뱦cFei"KYDll4M* &+@$UIU*8QMbȷmxd&qe,e%酕F4}V怸BhqZkH}<`8*>_m)G ?XV]r^}gQQQԉs^>ǺVu4ٰkUEEEEEEEEb]\_յբբբբբբբբb69vr>pܶZxoZ-Z-Z-Z-Z-Z-Z-ƵӃNEEEEEEEEEתK ɞU,;::<^ok=aG~r#x^]E,+V7Ny󃯼FajFajFaj^ Sn;Ά뷶=zc=t5\;c9))Jq_"?R4999999999999999999999999999999q~u[&((((((((h1>yݝ۷oy\biiIAAAAAA3goiiIAAAAAҒxlzOo\ƚErrrr)S+‹SS;{lcmųC,LW\E=+aV+V圽'3 S05 S05 S05 S綽|ruZuiaoOתVVVVVVVVVyÕK[ZZBBBBBBd<޹|fy/+X[PEEEE- Ue1jjda@U9g{(L(L(LkaĹm/\uc]V]lӵբբբբբբբբb1.Zjjjjjjjjj1;8~nKoz7wU]sU_߿AբբբբբբբբբkեɆdOתVENWC+bk+QQQێmOk^GtMEEE<'ǫN$(((((hG.Lk&5xdf2^3Lk&5xdf2^3Lk&5xdf2^3Lk&5xdf2^3Lk&5xd n)))))))))Z̳n^w-)[p'WXZZBBBBBBBp=4Jq_NQNQNQNQNQNQNQNQNQNb}~+[,/$ `iix<6sۧ7hc"g9E9E9E9E)^x{W))ڝ=VVVVZ&bբbɞ0V]r^}gQQQԉs^>ǺVu4ٰkUEEEEEEEEb]\_յբբբբբբբբb69vr>pܶZxoZ-Z-Z-Z-Z-Z-Z-ƵӃNEEEEEEEEEתK ɞU,;::W\׼W^S05 S05 S05 Sg{g[۞vA\Ǐ:VVVVyN.Wݝ1INQNQNQNQNQNQNQת5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMך5]ktZӵkMךSs9E9E9E9E9E9E9E9E9Eyܾ%}KKKBBBBBBBΜ9ѣ&U)))))))))))Z̳ope󖖖,--Ǧwn5mY,(((h; /{/;ӵbeGGGʲkx7?ajFajFajFa0ucl~kӮ:蚫?C]jjjj1;9)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))Z̳n^w-)[p'WXZZBBBBBBBp=4Jq_NQNQNQNQNQNQNQNQNQNb}~+[,/$ `iix<6sۧ7hc"g9E9E9E9E)^x{W))ڝ=VVVVZ&bբbɞ0V]r^}gQQQԉs^>ǺVu4ٰkUEEEEEEEEb]\_յբբբբբբբբb69vr>pܶZxoZ-Z-Z-Z-Z-Z-Z-ƵӃNEEEEEEEEEתK ɞU,;::W\׼W^S05 S05 S05 Sg{g[۞vA\Ǐ:VVVVyN.Wݝ1INQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNb}v;oIq>rҒ3gxxUrrrrrrrrrr7\ٺdy%!!!!!!KKK>qGk9))))N‹ /N1O챍ZZZZԲ0Y_UsOl;z0 9GV]r^}gQQQԉs^>ǺVu4ٰkUEEEEEEEEb]\_յբբբբբբբբb69vr>pܶZxoZ-Z-Z-Z-Z-Z-Z-ƵӃNEEEEEEEEEתK ɞU,;::=Z_YVso^_y=L(L(L(Lv om{U]s?zkZ-Z-Z-Z-98^uwz<'9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9Eyܾ%}KKKBBBBBBBΜ9ѣ&U)))))))))))Z̳ope󖖖,--Ǧwn5mY,(((h; /{/;sm;w}x柌-~kzw}Ux?ԥ_*`8wͫw#`x6Om:}ʩS:|x͓ȓW|;}SN9?c๽e.{-i͛#`fϵ&nͪ?Ϝ|#/./?Gy jc}EתW߽{FajFajFajFa0uܶO౮U].M6ZjjjjjjjjjgWujhhhhhhhhf\?V=ޛ;VVVVVVVqjjjjjjjjjѵdC|kU"'+ˎg~iO?ک_tcw ݸh=g7=0| k{|7tͯ=uK}|~ydíj7]mtҦ/ zuv'`8nXN>ԩSNzϏmz4`8Ϻ`n 0&?;wx}qyO}tC0^/\8Ŭ0 a0 0^a0 `x6k~¿œ~~s1 a__ēo0  sxSA^^aDS/zI:|>/m3芷H;J,t1+ITT QQ!**DE-Vo2sC+t3sg4?˳T,gRH8^ARH$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHb!$XHbƵ+ݹ-=҅ EQ$"QHE(E={xu]Hb!$vqkqkI I,$+čkW]8{ZMբ(E(DQ$"Qvq{w\zɆc:BXHb!$VJbZS  5UJb/[5-RyʳTCc}$RyjݦVR@ˋ<`ڻwE_,Cخϗvw}o=:ע#7Ŕ C glYXEC̙7!MZS#|jΚl;{nm5gpO:/^ gV~d hZ}pfn {OO?S}З:}qs7W*{tr2pac<ػD/,)|b }=߿4`w&o%ϝh&/lSPFL6tP~6AUS>86h&[k?.7nW̵>3k׮̽y?6l@Mv% *^_iЯå6VOO/~ 2p({Fr];?[b'zQڶzw]ػܸ 2W6ٍW7ja<|u.ޖ5 S5ox&eT)_uKq~+={ϼiۊYF bՎhS1S>Ag7>hFhౖo;Ug'KOj=r=ejKM7ת:ܵ~IÇtwW-{ ]A͟W=eK >;ʦ3t<=oݢ*]V݃_W5[4b|f^O/vt1v.So?z2uSy7w[Ƕ3~ACC};ڼdUMxYˁ3t2~Skӑk^űRfWfZS]<{ZMբ(E(DQ$"Qvq{w\zɆc:BXHb!$VJbZS  5UJb/[5-RyʳTCc}$RyjݦVR@ˋ<`[|6i%Zzຶ vW<8eБj҉/IGhobYi崏L\\޾Ѐ xӉ￴M2mt;OIR~Q':ʟ]P5r;h{pm=Yv/>]~ӪQ+XϼN:]޴ߴyi7>ӊ10fOmg-/7cȟ->- 7m-;/qK8ub#;3u^5ٺg[i].lc^w 7,efg/|ڵ+DsNSogoX˨ѳl_OU98@Eە b>yJ^a>mV]ܾ,߸/9٨?s-W5bw/Y>nxJ%cZ}sV;}hF ϼɟq2ke/yN79sj9LP}n?iUjN]p9."BL?[t<ʲk:oڴ`{-t?Ƴ,* ZuY@s۫q4\8Wt `}2]{ 3g򐤧曳pGY^-({ׯMYO|3gQF~ڮl7?x5<4*yZBTT QQ!**DE-Vh2}]OL9Ϝnl֦g,gӧZj.={SmOY9+kjGLw?d>}̮FL\Bs'JO%C [=~Z:y k?aȇpUөF[҃K>38Ә[=Ա3]7~4g#.l?lwOu/o?z5g*>*.:u_Q;ª?X;{lsKϛZ4ь/~pw|jĤU<}WSŭgϜ_.Ӧ|IԱ Sid:4+r9ؠM9Y*RyʳT,gOo2ldtzZE[ȵM~7̶SO<DoLx~ztaX]ho~goFO\ę=Ƽkڴj__muU᩽V̝l?8f7^JE޷\lnݶy&LnY1u>gdrR1#f9ZNmhA֝{!*O޼dI>&fQ{]>z=@Ewx;9zxk,P_gBmqM8Ѭtx/Cm;ÓK/[2nM ~=<ufx77pި$-=†/Tџ|>ONl4z5G6\olewTzǏ2v?8ܯzvд3-Xopllo-:mn={ T0ny QGs/[8zϵ/?~(vl3]tA#猶`Y]Ol5CgitQg?PTT*Py;fA7+6ɖ3}`q침n5Ҏ7aS|dsZĽ|0ѡ-_nϜ>}dU#M{iIjD?ITT]nY>&/k8gL+]u~2#qO|4&|GV=5I=>o썚Pr~BclԅJSٓ7ܽvٳ\Px@w]5鋟=/9oo獷z\G}K_thfm<tv\æ~Я#GT9֋71`vǽ QpEƏeW}:nj;[4u@EgcW/sy76@zˊí8r׻ T47~@>nN7@_s _pV~w: *7|346gZ<B0oQ?T QQ!**DEQMIr)Ӎ ڔL,g*߸At>dᎋ:+yFOo?3/4l4gEog l~n2[盰xgo~|1p_g \~훷z+TIv9]Rl-r.0lDc 4wUiy9z<9? cOn4rܧ.=lɸѾ>qS7UFV}q'޶t s;Jr٢#l8Bs[Nxi~-ڹeP>1}pR7ܚCZ7kxɍFO\M0^w޼yWwWYgW@ +EgϞs]mgN|;׸Ey6L3jOn!SYƕ= ڵ,=¦3?l6k_~hQ< :4gŻrWFd] ӰGOk>֧_ N7)kmio?#?z/>SH;J,t1+ITT QQ!**DE-Vo2sC+t3sg4?˳T,gRH8^ARH$XHb!$XHb!$XHb!$XHb!$XHb!$e6=}*((tRkVX%qB I,$B I,$B I,$B I,$B I,$B I,$Rpܖqբ(E(DQ$"QȞ={<ڽnKM/maip֋'W|>A \#Gb`Otްn(S|-&/*4c;>|& gw3ƥhX^M63bvݎc|JGVMnOW=הa}^?^g?rK3¨gF=y5sTα㶮a‚uھ77*y#l]I#{&_]y*ç Ng3rz;x?Q6۱hqr)2i ='&Xۍ`;[S?9xbג }uDw:uAq/|n!Cf: '',5϶;VsF 2oy(bѢ^'W,5ė7]?ְSm_xcLzVWГ{~Iॷ{]^*@_whm=#K]Wgsw=wu8u_w ΝޤM[8ܵeflhPzWgZ<B0oQ?T QQ!**DEQMIr)Ӎ ڔL,gGݰظ)+y XQ͉|5ߘi]z_;cq?lX7tT=|kwyfӆ$.{}aC?L?*}k& 2嫃=nao?:Z?cBs> QQ!**DEQѪMfnhpvrxtsyʳT,U <(S B I,$B I,$B I,$B I,$B I,$RpI+VSiGIHb!$XHbȳ|G(DHb!$XHb!$XHb!$XHb!$XHb!$XHb!$Q n\ޝے]#.]ZE(E(DQ$"Qٳgϟi?CŻwݯ.nR޴ޮf~}y~jTйڞ^c~^]7ٰL6m㫵vo;vmؠs?lQ?kn܃V/lS{JCO-_Noc .MyfYdCtܳw*=[f[b^Ŷ.Ǔwt*_ɶ} ^xr4e}@块wOؼr9moU:;k{mQ|ȮNo޶OΈ)Xal@`]'Э.vCkwcGzhN'*Zc=n{\3͚5ˬY3͘w/I{FW.R5`ޓZw 2 y&`ƣVBTT QQ!**DEL_Wf8e#~f':ۜ;UΞ}?wvJ3wnwQ]p`C@Eo[k9fU-w?KsvpQnnuq;xYԤf̞m j_ܲorsg϶-No AE9po;ώJzZ-P`mG.+OcSMA;;ҥ_8z;Xt;CE˹fXN\}x~[O.Y̎ׄ~\}]n5Ҏ\ݕB I,$^<srJ׮^Q :JAG)(tRQ :JAG)(DHb!$XHb!$XHb!$XG)q{wnKvGtjQHE(E(DQdϞ=?x$nW ͝fljM=kbӾf#gx#EQ$"QHE(R]]~ t $B IZ/ZQk^4k8V[,gUw@ ZmV}P_~{L; 2 y&`ƣVBTT QQ!**DEL_Wf5rH;>ȓMJ!XHb!/oWW qZ_hm~Z_hm~Z^26Zt-$ĕ%$%Z}ιs[~녾^녾^녾oyn FiKKFjhhhhhhhh}SFjhhhhhhhhX\\]}mQjjjjjjj2ju~k+#V?-^]2jU0'SwY[[kqk k7\v-ڽKZ<O'B_/B_/B_/BзyvԼkje̾KVVVVANt '9E9E9E9E9E9EsF)Á     eO? rSSS'տWͿ7^/ r2dA6dA6dA6dA6dAS';~2)))))))))ǎ8sMӡBBBBBBBvҥⲜ ;y쨙ڵĄ {?s񣇽10g9E9E9E9E].n[n[b+ vcuUEEEE-C&@E%Su]Zv*^szzzzokGt‚QF:ҒQZ-Z-Z-Z-Z-Z-Z-Z-Z-lԤQZ-Z-Z-Z-Z-Z-Z-Z-Z-m~ng_`۫6>=iai`eTZZZZZZZg;HEEEEEEEEŨUOWZj1]ꪩݻ@œ/y"B_/B_/B_/m }^iGNͻ6VF[oZtʨihhhdIgg rSSSSSSoj YNQNQNQNQNQNQNQNQNQN '.oc?C_ wq rSS'z=_k_Kl rSSSSSSSSSS4f:hԚ ;q3OIq;111! `ǎ.]hI).))))))))))ǎ9x];MLL!!!!!!w^3?z{ sSSSS4H[|[].)`zn7VWZZZZ2jRZZ,_]2=[ujzjQru_9zzz{Ig/,jԪ-/-բբբբբբբբb8MMբբբբբբբբbqqvy :oӓVFUEEEEEEʨ9zxsZZZZZZZZZZu`xuɨUÜLemm ڽKZ<O'B_/B_/B_/BзyvԼkje̾KVVVVANt '9E9E9E9E9E9E& rSSSSSSSSSSSS4cGz[[γ%eSthfĄ;vt{',(((((((((h8N;jv411! `bb޽{ϜvaoL1YNQNQNQN Esoo1w=X]jjjjQIe8jj|un]VF9{m^녾^녾^녾^:&`ԪQ쟶dԪVVVVVVVVV 75iԪVVVVVVVVVE.꼍OOZXXU+Yι2jjjjjjjjj1jՁ%VZ s2{5jj.e8j{<{} } } }[C߶Wm~~ڑS󮍪Q3֛.]2jZ-Z-Z-Z-9ٷw훚4INQNQNQNQNQNQNQNQNQNQNQNQNQN 'A6INQNQNQNQN GA6INQNQNQNQNQNQNQNQNQNQNQNQN 'Κ}렕QSSSSSSSSS4d'q)).z}C33&&&رåK;)e9E9E9E9E9E9E9E9E9E9EAvQ3صk !!!!!!ݫG{czarrrr)\ܶ~ݶ~ EWLVVVVZOM*ÁVVKvZMO6jU/n+B_/B_/B_/Bзy<7VZu`%VZZZZZZZZZ پIVZZZZZZZZZ,...ϾvWm|zʨjhhhhhhX5G:?wεVVVVVVVVVQ.bݻUSw)ÁV'_㩗D녾^녾^녾^2oӎwmTٷ޴p颕Qjjjj1ɾ$(((((hԤANrrrrrrrrrrrrrrrrrrr )))))))))))))))))Yo2jrrrrrrrrrı#Μ>%eSthfĄ;vt{',(((((((((h8N;jv411! `bb޽{ϜvaoL1YNQNQNQN Esoo1w=X]jjjjQIe8jj|un]:]t]N7v]:]:u@׍cXu[7|U1tNux%eSthfĄ;vt{',(((((((((h8N;jv411! `bb޽{ϜvaoL1YNQNQNQN Esoo1w=X]jjjjQIe8jj|un]~*p{;/;xKO<|\s/]|ޜwV7̷5W{ O<묿{oΥ=-wwKS>\|٥:kg|inG|k@'y7N5[Ol{>㏜|zUڂ~鹁_z;Vo_ @ܛ/vpuNضzu^)Ae ng=}֯ۖog^t7M<=WLYj5=ۨU9g } } } }[CW=ܤZ5jՁӖZjjjjjjjjj1d&Zjjjjjjjjjhs<^I K+բբբբբբbe=<9VFZ-Z-Z-Z-Z-Z-Z-Z-Z-F:ZdԪVaNvﲶל߻sq|_gOzmt#/=ve/~ap _w_}>Ywn|~=k[~w;6ࣅ7my:tooYz퓟;֭n:w| z?9|xO~ޭ\_{o_Y'vc;Vn.w_aݺu>?weyKq1:#~z㇎~PuX]]5{2hx=z=O^녾^녾^녾o+6??ȩyFʨ}M .Z5;lANrrrrrrMM$(((((((((((((((((~S/Zo=课rvl.O9䝹E+7Rٷg_Rjs^zb;fIo uG_~҆ꏸ/9ycIoҊ[sOٿz~:eyfg[{ t7g6s7ǝ+?_ ?ڊ4{#V%g;op}l|}{';CN[׸͟nM߲)Gf95͎u|WzuGݟ쟭?4|XpcܼgO9|YG 9k=v_nJ;Gg>ŭ-ųNy-ե 3N[tyys+μw-{MFiϛٙCN_rCg%^ΑYO8a6g_郞{6>;|ѻg.c>xW?˷0_w-jzjQru_9zzz{Ig/,jԪ-/-բբբբբբբբb8MMբբբբբբբբbqqvy :oӓVFUEEEEEEʨ9zxsZZZZZZZZZZu`xuɨUÜLemm й2˧끿Kpdw} ~g9wutCn\wЌ'u`3>{lggyknX33ynq:q̩|8\Gޟ>2»8~}kk[n<>)[_z[]xN1_􃿾WAzEϻt;}Cxٻ;~r3{?s;ءN]vmm Ws89mtwf]ucGo˳\]vUW.UcJ qs*^?ީN~u{wNC?vĩ~u7.۱_=uOOꪩݻ@œ/y"B_/B_/B_/m }^iGNͻ6VF[oZtʨihhhdIgg rSSSSSSoj '9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9EAԟ ??_w>wwo̎yO?y~I't_Ȧ{ܽUgv{KwMSV폺mz`Mn3u&CoOʋ'}] ݼ١_v'g~in9ݱͽwmu&愕^/=h=kc,/ǻ5n&~͗䑇O{9w{NjeػW.;|MyAw~ ntgMYkhf|}wxw_wf{p/={ƺʑίzaﺉnp·6׎zOoNΝ鞯ę+yMyAw~ x'y`uߏͻd*+૟w`|/֛8ʉxwo9ˇS6Ooج{}.\<ٽ=`=o{\O=tw?>/i57,//m{f7?yg>_{>Gf~Ͽ⡍wsѾy>|Coppq o_խwort57W_O?_9gly+^_r hmԪ_xW酾^녾^녾^녾oyn FiKKFjhhhhhhhh}SFjhhhhhhhhX\\]}mQjjjjjjj2ju~k+#V?-^]2jU0'SwY[[tЖ۾5@ºG>uCݵvk[>`}ΦmwG~xGЭz[~7:2td㽛ᬿ]i7n8o-W˲=a]ܵa?:guF㽎~֝_|‘<ƚs{>i}>{ϗ<||j]ly>sߝ+_~Нwn?M7ɬ1۰oN.ÏWw^/pkyg|FgcWA>S}USw)ÁV'_㩗D녾^녾^녾^2oӎwmTٷ޴p颕Qjjjj1ɾ$(((((hԤANrrrrrrrrrrrrrrrrywf}׿/w>*9)))))))))))))))Yo2jrrrrrrrrrı#Μ>%eSthfĄ;vt{',(((((((((h8N;jv411! `bb޽{ϜvaoL1YNQNQNQN Esoo1w=X]jjjjQIe8jj|un]se>{Cvsطӓ _3>>r?zrw:{cwcH{Nhx8~խo]_O~Wu& m;}}ӧt*83`'.s9'- XHB ^߷%$!i7̦۽g>1TrL~=]VѩU35_<ʆ]ܙ@U^:xʉϞx G&L>|j;]!9?n&jo={bs7}Fx { '.\31ĨGZ?OK^{/o_5z׽6- ;yfb;\쭖>;|?X7ʦ _zzG^kc7=↶Jc:{]=`ZMuq:yWy|j+w05ⳝmsHe˹$/zg#Ɓe3ŰVoE50/l%xuнmyl/|OL0+ܹ_=9 I5y{^9Я>)OJꓒ>)OJꓒI+m۬ohD5r&_rGvSF&N|uOjuPv9uuZ13cC+mmO?,u)V޿'MMx˟wzG=DzdkY:7t{uͿcromܵ`WusbVG/ - ;VIc<_lݶͶm<d3jǖwnMJerowr_]Js;Voxo<{^v9u{=gq^}al{,6 ۖ޿-ءu-[űn4ۼd ji-MJY >8b+MJꓒ>)OJꓒdgRA[ju{d5F~62|D5C!B r9vY_W9Y*RyʳT,uY9Y*RyʳT,gf~u"]qgºwtR }^xg>kLo8ոۯuӯj|Ӆ3 ~vytӯ:ԛ;U˷wc;|]5Mξ~xhsK?7橍 {Kn;R2/j^\̫/dgMa~L..u×Go}SjڿxښquU'>z̚>]liLȇw_l3O lyv;MNOJw?EKMgufO'F|sM{LV>IԪ~ kwʵ^>U5SŘ\gc_^q u|dgte5G}FwDe!hmiRAxOJꓒ>)OJꓒdgC+m۬ohD5UU.|n/-Zl/>~ |呺]t襵6s[/E[7~nX6~;wRy~ƏW'@V3??wX9pz낏G=e1ky^ggV,a>|j4yo±]iiÚվ,Xo{fMo7ܛ ;Wj=rWZavhޯ|ݩStSlu>iafF}itީ+ǜַ{rM$\gՂ _酏-[S9#Zx+lI;3ԨPx#v٤>)OJꓒ>)OJv&%/VgMVjyg#MT 1b(P(cGzL,gLT?,KY*Ry6JOqc#CKG;wVGI?jhh$$I$I"IIHDCCG*8GT\,gz255cg>bcvwٳ}7wW7-wf=+slZ?8+vKu˼t{=fWձYZ~2_K,X; ,x{n'zMjik$jڿxʭoP=G?3wf6mRz%/|xsVzpYwM^-_w 7۴hz%7o[}"KSy0qw\{-z_'^w?EKKgu);7{`ųNF|sM{Lx]Ԫ~Ikwg.skOo+fjx 5PEZ`_^Ykw\ӟy`zo{GT֖&y]_]_]_]_xG8ohD5n<jjv@m.E ,X?71a7YzO:xB= s\ >~SuKW;cV. W=tΕ˼ua>]ONWu'mzsWz=|#S fa/Ī>>9lfF}ZnVguzvح)fcRotykl~7\8b+MJꓒ>)OJꓒdgRA[ju{d5F~62|D5C!B r9vY_W9Y*RyʳT,uY9Y*RyʳT,g܍>nYna{snv}fo~ :~:u>!_ZÙ+{}g=c#{Uaʙj}Ueҧ>2PrVw^SX`^pTcM zu*/vu֖SY&`bklfjnvg_W5wgM[֭?wx }B;]n=$-vmmJgYGoΚ?horzBܿ`aZu^3WZb7-+=i޿;ǯwW+}=<~^o6t_ݛ)m~ԌԊ%[I|1/~Іu;ʆ^yOVjϿ]1|S+@77-{FN}h]?.kKύ{7ܯnO_[iؽ܉~~I{$j?ښ18G=j͛W!XlY i/l*u7gU[۹ڦ=TjIkwg.jU?O%G;y8 lx9 33љ)^SԦ:j֭mjݢ`zo{GT֖&yٶ<^'ov;ov;ov;ovO|nKQA5'SA  1b(PC!B J9wY51b(PC!B  1FGGmhϡ!/TjjC!B  1b(PFgOw:or*B  1b(PC!B5'J B%ϴ450;foP\oՃk}?Ptڅp񢏟\j3LWH2sf2`Nyf_< ̼8㮍q) ??߮J7?gn͍\V7??o~~|nl~Cpl&8GZ\>>iajYg:O}r>u-&F|~^g锝+y >|Γ4yOz`S?桺\c0h[tըFF1b(PP3ǎ6+*LT?,KY~Շon߼Ȃ?'[YÝ]>}aw9yJc$I"IIHD$$ѣJ=Ο=DxvظΪbY.G/xoW~j붾\u돭f&<\gp9Ms6]gGlٲ#>κ9t+YΣny~-~KƏ9M{:ˣu$/[| uVdsBchݪ5~au6zg 8g/ \ϧyhJluRo/>u:o{eZ-lݸį[Ⳏsj|fҭݚ?/=㕍+}TOYb7o#kBCӟYbo Zvl_~{Ӿ%붿:ow-*6suZ-lݸį[ϟw\DmRXW'19՞z$ĐXbӞF,7K%n]8UVvj[w |vmw 7{x_Kvo\coKIew^o6_gպ>=/v߶v&<\g]\ױEuOkRL^f*6=lM#?w N>^jS#>_὇T:S=CwQO{}.un|#Ye+ىQ {9w?ujsw9PNyWa:+V>C&ksnm U`ޭY[tQ_1-M1s~z|vg1<泃|vc>=| Tcpx1PC!B  1b(PsZUcC!B  1b(PCattֽAu6+1b(PC!B jtt&'b(PC!B  1b(TcpxΘj b(TLKSYcmv,]oG+^UXpC}˭Xކc<G;|ǝޞ'6g֬h6='>~\oUo21I޳qRko~ )Ԅ|5ulz mes~PoUoj#\25qGϬ?}ٻۗ{h>k:Kԯ^7{U>|/|tk6yxZVnɉWZUm+ s_k?֘;剥 z{wcJYjj>i +w6GMvі~o9 7:|mT.e_ĬOYC'3v.^#K'|~=cw[uM8M+[ve+~wԨPx#v٤>)OJꓒ>)OJv&%/VgMVjyg#MT 1b(P(cGzL,gl]qUw”M 35S>tUI5T3::( 0|;ja^Mm0\ޫî]7VLMC7L3?]+]q#f#t8}7 ^uCca^51tc8$;ܤ׆.0o<.g\~9npC{Ye&Qng~&{^G{ aq枉k7L3?\+]q#T~b6/#n1=sb:bs!Nk:lvn \vv0{qKnTLJ].]SMU ]>㴞[Σfr˽ׅyL;FT^sNa4ƠRv*][_on}zvG Ơ[ B  1b(PC!B;Ҭ 1b(PC!B  mА{XD5C!B  1b(LT;]79QC!B  1b(PC[wTcCgZ݋n UL5yj37qkw`nص+z6whw|[ŔZm^qmd<{p]5@mnhw|[ŔyJhowB[I5Ttvvy趩Gk]:ө\7]~Sn42tXa~5#i4_G\Mݽ[q}`egNz\ sÙK7{6>WOe{э”OKo9̥~iuL]6jb7at+ʕqCT5S>{a6]gT+哳w|s]:λz0M9Э˥&i-MJY >8b+MJꓒ>)OJꓒdgRA[ju{d5F~62|D5C!B r9vY_W9Y*RyʳT,u C,U3f[l[F;Û[v?jhh$$I$I"IIHDCCG*8GT\,g3`/=U cwLOOkijTTb(_lRR'%II}RR'%; V3݃&D5<&Q  1b(̱Jy&RyʳT,g>?ku璁>} 3g`>} 3g`>} 3g`>} 3g`>} \<ܾuS(*,gn/lYu-[Ė9544HD$$$$I$IѣGz{?{ډ#*y.RyʳTYjf%% ,ԭGLOC!B PToiVTb(P3IV1-M1s?ٮ=.ޞKz{.ޞK\vFo Ơ[ B  1b(PC!B;Ҭ 1b(PC!B  mА{XD5C!B  1b(LT;]79QC!B  1b(PC[wTcCgZi-MJY >8b+MJꓒ>)OJꓒdgRA[ju{d5F~62|D5C!B r9vY_W9Y*RyʳT,gr EE5FhMTj4Q&D5FhMTj4Q&D5FhMTj4Q&D5FhMTj4Q&D5FhMTjTQ(*y&RyʳT,gjȒjȒjȒjȒjȒjȒjjȲ5'{C'\jf͢oϜ6,J\+Vr-=] j( `ؿ!1޴]JUURUTU*Vri[{0& `ܿϮutlޮ*UUJUURUv===om$ Šjjf9~ֈa;MMN*VrZɵ\ݥo(VrmNV vwjl_}w?`p@~ w!֭1rfɚ%۾fJ\+VrZɵk%J7-]%+VrZɵk%J\+622bފon8e.2<0J\+VrZɵkbߞ>'siZɵk%J\+VrZd۷ G5KVrmlG<[ YR YR YR YR YR YR Y\ Yy{KlY&Eɵk%J5RѡA78$1ݛ6ڽkvUUJUURUTUeժUΜ9mkOƤ7ٵcUU*UUJUUޮw4bp\Ym~vݬ618?2wsI%J\+q[ %J]ݩjN͒7ko. 78op@~>dú5FΞ,Yd۷,Yɵk%J\+VrZɵFKd%J\+VrZɵk%FFF[ ,[{]G&Yɵk%J\+VrmYc.M4\+VrZɵk%J\kl^fJ4١o(G-g!K!K!K!K!K!K!!֜0^{pM4>sD(VrZɵFt9:4Fr`^0{Fwޮ*UUJUURUZʙ3mØFrp>vlѱQ{{TU*UUJUU=n6F ]7ϮZ#Gn459Zɵk%r=nkwzZɵz;Z-@K--PrݩYF~e~ 78opߑÇlX3%kl^c%+VrZɵk%J\+6HtwiZɵk%J\+VrȈy+:ekOhD3+VrZɵk%JM4}{<~̥k%J\+VrZɵk͒m+\,Yɵuwv@KLNNP7\{͖~}ijՐ%Ր%Ր%Ր%Ր%Ր%ՐՐekNNN&E 9mY\+VrZ#E[zHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAx#9CbӽiݻviooWUTU*UUJUUVZ̙ӶtaLAAAAAAAAAx#9];ب]UURUTU*zzz qz7OIAAAA#ծgjs\#z7wTrZɵkK=PrQݝZj^ti `Dq̨Kksy~O42<}kvӧo\k?}ʹ%-c]{8ya\-s\WF/r `D:ԙ \ĘZ.79r𐳍Zj9yr19uvԕQYΌ2/pv 03% o.;wsN?cygΞ׼:]N;!^uM=g.t1c)a'g/֮e\t<]vim#¥ieNN;wGFf03YiG}v;t3䬷Sddo۽@ 78op@#ٰng4K,FG5KVrZɵk%J\+Vrml,Yɵk%J\+VrZɵVtxs)֞0wyцfVrZɵk%J\h9yKM%J\+VrZɵk%ך%۾W8Yk)0== ZƇa?{}~s{N1Nq5wttU'Z #' f03il'c5ryFLLuJh>?\/@jqQ+ZQ.xz]?عs;wڹs}GF\nv98SUfgNt91ѸqW[LO;ܹӮpLZ ܭoo3a 5=aX}{ 099C=Pr텏6[VCTCTCTCTCTCTCWC9a;:R3h};7|洉fQrZɵkmrthP#E)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))aLvڥ]UURUTU*UUYj3gN%1))))))))))}vخcvUUJUURU148}{ll<%))))?WnV]7sF Ώ ijrRɵk%Jz.xCɵkcGvwjZh93W־o9iCjΞΓx{x@9GCZ(^{n/o@kj\ׯ{vLg==sd?ځԈk0cyƮ(zBͷ`no1ۆ/x߷oy=uκz論k^s|GM(9,x#Y[v2@~ 78C6[c͒5K}kQ͒\+VrZɵk%J\o$[4KVrZɵk%J\+Vrmddļpʲ']exa\+VrZɵk%&ž=}N?DSɵk%J\+VrZɵfɶo.jx;;LOO3ӎ|6Wӿxٻ+z'/]u (z͂pپ^}SW\>W6,xmOsHC S'}{で7|T (?rDwx)mTNg?OӍ{[pZak^߬:V [}9mxfz/vk_~SZ2_s81~ե |RO=問st(#ye Xh_;0\ncOYd-~[-\5;2}o_r-SN\m{_ W~o'̷prkvs\'?1_-?o)\'mmXyl-\žO1_N3]λ֥aZ/+S~ڱʊq$^e\0ߓ[qWNœnz͢'-d ZFpF2%wz͍40seԆ{um.`zvVޱxa^_ilpm|xIZ~nԇ2w`:y>G5W,+t@~ 78C6yg4K,FG5KVrZɵk%J\+Vrml,Yɵk%J\+VrZɵVtxs)֞0wyцfVrZɵk%J\h9yKM%J\+VrZɵk%ך%۾W8Yk)0== `fl'gby)Ӏ }K-?5+ގ^x ֺo sLglrEmm^x+Nk&[[>p93]F])glbEmm^xݾfZY̽w'Mbu>SmOy~5>ze,-.NNK'|ڞxk7t2kO,T5qŸg;4ghMmYg,|uv3q+?OoWloߘ?z^})O.Yn])WfpgvK3\x Z_fP{{MGz-Z}{|u7r#y xCɵ?lG<%Ր%Ր%Ր%Ր%Ր%Ր%ՐekONN&E 9mY\+VrZ#E[zHQAAAAAAAAAAAAAA(8*]˜Ƥ78$1ݛ6ڽkvUUJUURUTUeժUΜ9mkOƤ7ٵcUU*UUJUUޮw4bp\Ym~vݬ618?2wsI%J\+q[ %J]ݩj|n26~$w(ՇnȋZ}o8ͼ[g{6o=~}ծyo|sW ԫn}i_WOK/?dâusbI(?r=2{g]e+Vl/}pswعz{KvW)_mls]?όcM[t܂97xÿ(yi+>_r N\m/<Ȋ5L[nXַ_~hCZќ4|Zn-e̸wݵȞ@}+Ǎvŋ]8&?ew졛Hr/=8./}U-w|WL|w/|ӷkv?彧}b5]| ˏ.0uuS;riÃM\tl;oꖻv{Q3eLwsxhf T @YowfɺoW۱}wٿw{wۿw{wۿw{wۿwFΞ,Yd۷,Yɵk%J\+VrZɵFKd%J\+VrZɵk%FFF[ ,[{]G&Yɵk%J\+VrmYc.M4\+VrZɵk%J\kl^fJ4f䕮cj7˭gpo96xi+]I 3Wy;e+s˼T_Թ܅Yi+#˿\oj4ޢq;~C6܅Yiym{I0=~ G[YOUM2v{_?<㯿{iȉma7f[_ZRw;#&.Y6a|Ѷu{5VEs=ӏ.[7M3&&/X!s_fͦ>zi~S6}op F/hz؏5fӗ;6tVa]zzrP} ӎo~Ϳɲ;=01Q=h0U?<:{61g}ٚ>C=1ۻ[Xq܇F/|[A>p_ؚUoxősG}܃_c}z-wςƥ4oXԅ`ECåL{fkgk|Kw_]}lӶ^͇¯n{Zӗ1<ֿj\eȜGq\?ҥ&#N pgi?oj愱}~|^]ol`rrRwgzڋuzo,fo,fo,fo,fk[iߡ.5fѷ{gNh%J\+Hі.G5RbbbbbbbbbbbbRO}9?/qע?u^QP񤑂FCFԈAJxCooD7 )J)M|m;o$)))))))))))))))aLvڥ]UURUTU*UUYj3gN%1))))))))))}vخcvUUJUURU148}{ll<%))))?WnV]7sF Ώ ijrRɵk%Jz.xCɵkcGvwjZh9[ozDg=4 kWc=nz,)f-򎓗P-.KjsWF&q-h"^u~-+ӭx}+yBw{yl6vƏ^oKG۪qk.qc ê40l \M3Ӵy^W0ݰ=·Ʈ |n|xڵ 769&kss{g[sX_qOЪu林ڍ\͋?9?O:1_/r[n-7ѯ#946{^ޞwyv9:ڣW^o_dMz}ּ'Mw.n;@]y|R3n3+w)S_ל9}Jd͒mkltTd%J\+VrZɵk%ɖ.͒\+VrZɵk%J\1oE77l swmhf%J\+VrZɵfoOǏ4TrZɵk%J\+VrY[{%+6GwhuWGV7xoy-_s:7wzkgJ?-lZӎw93izlEKO)6z=Z;vͫx|-=G^7XÔC~=bvׂ uvW{Y3f\n쇭P4f{,|s${hݪG~[~ }}YũsΜOŹ|7xO_uYWmf?#??X~4f}魇 Gj\ -/ar~ދS.~9Gorﳟ;|™sKSZׂ/=8Oͷr߳vis<&׆uo`c6wC6jV;K|U\9[|-4q߬lh`yeh5o'u3Z?x[7zS-;; %>S~V~>g}J|?ǟ|O> >lYL4>sD(VrZɵFt9:4p}v;y=_ b:{^?ۢcC? QvlѱQ{{TU*UUJUU=n6F ]7ϮZ#Gn459Zɵk%r=nkwzZɵz;Z-7=ŵLB}+Қl7)79wjϠuĩ){W-rǣoj{W?t @kmwLSi{ȫtjÿ ,?-|e-ʠŪçOߛW n|s7|/x{}~7Dtt6?ZGZ ۴=/ZWlaU/=hw{|tz nsUpm?9;=|?p;xC4uMpRyiBmm =28|΁5KO_wcSVRyiBmm =20]9 ߺg{W wu檑]ziOwmפֿ!gt m平-pU?z^ݰO~?Fa v/-Zm_~9ON\BX'uZv|XWk8]2gn=7ow,|_>7׼7i\/ϼw6:sf/4f]g/i&iAigӏ7z_|y01335հfA-ugpm̷Y&?9O|kЗ͹էë<87Zrv.]bɒG -paGO0_q`s퓗;>0gW/ҥK-]Ľ?g?x͏wtnG{3;?0_ tRK.qYspR ^t|޻}#C{On0 <?zOٍm֝[nӷmc [1Yg zą|'_~O-Μo8nt6xs|K[L۶ڶ\=]u LG,-;v|9H[:9m̈%szgnr߼aLKg6X:wwi?g r ?:>2zr5/OZu+ t;rj}R[lzzŋ??nRWsr_~zT/۾uS'M95rjԕCk>tPUJuUR]TW*UJuUR]k-2=3f #ۿ]כ3:-KŰm߾Y֟nX-{ ko]}>W߯_S̞?-nG]TW*UJuUR]TW*UJuUvj{vtp>U9iݚU~ܶM__(E( EQ(BQԩF֪IuUR]TW*UJuURSy.۶lz*}}}P(E( EQ344~ڵÆAݺVW*UJtdqe~se7:UبȩS#FjF֭t;rjԘ<7ax݀iG}5?鵜 g/5r'/1c2+;z!>⧿Qyw`+ҹv/,wn}{<&|uZgdᵋˮl=rO;~RY+tF3Yw~ύ 0qٹM=~.c[|<TSc{7[Gm@.? '?jK_Ԏ_ٻ sisn~w߾g{o{|fcyknJ;?tFѻr<='m <>:tadaƽ_o/;=]~)-~w߼놫z'w}s;\wV;m-MG#an-G#lA78xw}z' G} n[J}>|V|ɏctFߓݹ;LU~?s3hù.ԭ~mzZv}d͏9o_d[͹- {"_|ؗp _>|2Xx֜ɍoC[pu |Wq;76LOk?;3m^Ys%憫PS2n@/']x˗LO_t^T&ϝ5qvبV~z9dȰɉ ȩS#FN95rjvj׭IN95rjȩS#FN1K^]m-/5:1KrjȩS#FNSl׎95rjȩS#FNlVINn]Y7 -ͽk5h~kHC_Z4V_n-y]ܱ{pCZ<|3fݠiR m6?ӣǝn7oRkN^;]Oh/:w>x]MLOlȬW{{; {x뽶+>=dɂC?h8u+߭}jЛfv׿ѣ߼o|cx?#}, މ_e;A{/kw~f^O,Z荵[O`Y#6x=Ng}YX}| t|YX}| ɮ5*$_6q?U_EOY m#7=Vy۞%\xs۞Os t`ơ/t—JWӤûvܹ |'_~O-Μo8n6xs|K _t{s`;J~j ji3gF,;ϻ?iq&[ƴtfs{1- .~rV~bzqя,5>'|X9sBXv(>Yv\6=}хSzYӭgMwf|ԙQ_|eSlFO4rjȩSSWuARW*UJuUR]TW*UJu]+_٬s?Xzg&Ooڿ"wz^ڱm\󽑡ul/}ۙ?X~\wU9iݚU~ܶM__(E( EQ(BQԩF֪IuUR]TW*UJuURSy.۶lz*}}}P(E( EQ344~ڵÆAݺVW*UJtdqe~se7:UبȩS#FjF֭t;rjԘ<7ax݀ݟ?f޵w+nqmo8Z\u?:ld?Gk&-ڻs's ot >yؚ7slǶ̿ezpюG]+࢟'Yo~٦iɓqhûi/;m^\I ~gaߺ\?{w,[p< V:fogm_C߹pߛ)',w_j`/ļ,qӷTWp[ܳ[MxYy|gn/}"}'ͧx' wƍK_s[[x+fٓ}[uw]?>3)3o֏{ؿ+6}y'|˷-˿ta߾zs_sr̟{M'f-{ۮÇ a?mknu5/[_uϞ_wx?w] G#lA ytyV?+n~ke`jt9ReG 9lת7]WWy/ͽs3hs qEOb.,Yܞ_iο3ɺ7utǜ>tb7οkw9_:&y9| ?ի}~8yw/۴k91c*u n¥\mz.`jt\륵Şnwʕ~)κ3ҝzCsG:Я{}mYe9%rҩ+ŋ\|TυSzYS+''6>6j|?rQridĄ^NrjȩS#FN95rjt;$FN95rjȩS#ؘ%u%95rjȩS#FN^kvǎTON95rjȩS#FN^N6 +M$FXmfffιs5ts Y_N|o<_{|w{K瘽u[s{|%?5=ϙiwĻK瘽u?8b뗳G"ʚᗓ~^YtynzC=box -|:0 xmF}pyocF>|w?WcS{Wlձ)_)+-+W_}{bʎ\7ڽonn=`/-f?:{r=sQ-.husuTw3_:p{ O1+vK3,nC7\޷7&xa5n{ ~oEힸ`zzں՚nGNⓕne/^p^tk䄳gƜuf|}zT/۾uS'M95rjԕCk>tPUJuUR]TW*UJuUR]kz\+T{U37ӼV~?ܚUu&:Ξq|Mwojbp¹\?2gXn~z.%?Xϝmݿ<5n\?{o}Ыo.w/iC϶H-.W>|kmQVǭ|f7=ǧpb͙޲hi'hUG]{W:}r׎^wۼٮ.W9}<>koml-/y'|W՞zU+[ѮIY“騙v͟zf]/{Gjx7/2{o2纅^SwS'6zf2+G:o /y'鸟ּ74vqѾw<ƗƦ=/Ko7tΚBI3pO,uvOc?3wn\~@g^ny0ujs뾇ߴoy۫w8_ŜYs~s^[G_腐Oncw;{yۏ8cO>9p}ZC}3s5cYoɗ<#^d< ~zLJ= ~ڋ ͞=ۼGwt?~;owEzoӽV=gh}__֚6k^Z/<|-?Mo:C#}}ٳleW%7-y/.'n[fzV>o9t7Ay5urs`Epe/{_1s7zҷ&f=x)yޢ{P2K~o>bOpU^x;Fϋ =o[T+#^~;-093n`ۑSdq#IDATʌgǝ>uB/':}=/>ԁ{M^}fNe95rjȩѩ+:|N]R]TW*UJuUR]TWXkqb_]SoXn=^x6>^\E;Zv[5%zͻϿ뮽БsG} ^w^{Կ_fMJuUR]TW*UJuUR]TW*u;=w:n*?nۦOQP(E( EQwI#CkU夺*USM8Në3agT< ommdUE( EQ(BQghhȡk ÃuJuUR]:Ux㪹檹otҙQÃ.MO˩S#FNt[vȩ1yn"Zmjhm"BmE@B6BD"Dm[m"B B۶ڶFжmE B۶ڶFնm"B۶ڶ"B "D ն!ѶڶF DjVۆM_ڶն"!"Dۊ@mm+"Dmm"!" V۶!"@DhV۶"BD "D";ܷE;]!"!VjVۆD69r!"mm[!"DjV!"Dڶնm+"mۊ"Bۆ!"@ m[mۊmm[mrJ SW>Y/l͚{wE?^xyO=㏜8~T/'l69195rjȩS#FNNmz9ɩS#FN95rjȩ166fɫ_ŵF':zIN95rjȩScڱݱ#:?ՓS#FN95rjȩSM#sz9ɩѭ+V!BD!" "mm["B նm "DDڶնD3?zds m@<"B۶ڶ"B "Dmm ն ""Bmm[m!m[mjVD`ƑW]vVWV!" "DpaiW.37X7ˁmm[m.r2""DڶնmEBD:g׻o DжжmEѶڶFn`ۑSdqʌ~ؼѡ;rؖM#c3cS5˦z:iȩS#FZ:uJuUR]TW*UJuUR]R寯iR;a{N:hX`Zah)g=~pj/-[l;7M{#?ԩJ6cw{=|@SR]TW*UJuUR]TW*UJNmߧ*'[ʏ۶S(E( EQ(BQ:uZU9J4v`ċw?]O+8w3<=~d^J__(E( EQ(BQ 9tpvaxPUJuUR*o\5w\5w#NU:36jxpi95rjȩuk5ݎ95&M^7 "h/ygq߾6W'_w<)^7N]d.^K/o_nIgnjGN?^N6 IN95rjȩS#FNn~ZȩS#FN95rjV|ZZS$FN95rjȩ1vؑ_ɩS#FN95rjȩɦa ֕uRM{c WMֿ[Sfz n;Xpm7ou\rd=O -+/u5ݎ'+5ݎ˦/:3>fdxot̘3cS5˦z:iȩS#FZ:uJuUR]TW*UJuUR]TWѭKuURەt]9%֥4M#F:Uk)5rjnSךnG*UkMȩN]R]TW*UJuUR]TW*UJuUvj{vtp>U9iݚU~ܶM__(E( EQ(BQԩF֪IuUԥ;fs̾C_n{҆'ۺ_?lz*}}}P(E( EQ344~ڵÆAݺVW*UJtdqe~se7:UبȩS#FjF֭t;rjԘ<7ax݀3;FϹWΛ8=Oջ)^7N]d.^K/p~N8c||i}z9dȰɉ ȩS#FN95rjvj׭IN95rjȩS#FN1K^]m-/5:1KrjȩS#FNSl׎95rjȩS#FNlVINn]Y7 2z4- H4YN@\g6?lhr @{);=L59deu5ݎ'+5Me]pޙQG=SWMqf|ԙ1_|eSlFO4rjȩSSWuARW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*U۩ٽTukVq6}}}P(E( EQ(BSNT׵jn+;gOxkEQ(BQP(r~?an]R]TWNU:2޸j2j2GtflKrjȩS#5]#j95rjL0n@Duz9ԕOV~._dz ΛeTNN8;n||ب?rQridĄ^NrjȩS#FN95rjt;$FN95rjȩS#ؘ%u%95rjȩS#FN^kvǎTON95rjȩS#FN^N6 +M$FXmffLOO[7ZȩQ|R13sEOeM0qvܙQg|٧kM[7=uT/˩S#FNN]Y?CuJ]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TWngNS֭Ym)BQP(E( N:id{vm믬ѩJVO2c\{{nSa;oz*}}}P(E( EQ344~ڵÆAݺVW*UJtdqe~se7:UبȩS#FjF֭t;rjԘ<7ax݀9%rҩ+}O43sEOeNmYgǝs!Ǐ夗M#&'&rS#FN95rjȩS۩_V/'95rjȩS#FN95,yuDT/ɩS#FN95rjL];;vWzrjȩS#FN95rjridXynB/'95uej333`zzں՚nGNOV~ÿlz L[+''Lw̘ǎX_ؿT/e۷n6zꤩ^S#FN~hÇԕ*UJuUR]:u۩u;nԺZSvjN۩u;nԺZSvjN۩u;nԺZSvjN۩u;nԺZSvjN۩u;nԺZSvjN۩uJ]TW*UJuUR]}rҺ5l߶M__(E( EQ(BQԩS6 |nGϺil7? ?lW85nW}lw-SF>|̭ncVWק( EQ(BQP>CCC];lԭkuUR]ԩJGW]7W]xSΌpizZN95rjkdZM#FNsm+"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BDRIXۯTץ ;?ՓSSWMq̘ӧNX;7qV/'l69195rjȩS#FNNmz9ɩS#FN95rjȩ166fɫ_ŵF':zIN95rjȩScڱݱ#:?ՓS#FN95rjȩSM#sz9ɩѭ+V|"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"DpEVk956nXO Νuyzz9v*:{fI#C>66zZ/'SlFO4rjȩSSWuARW*UJuU?ڼa-Gl8b[6زqĖ#le-Gl8b[6زqĖ#le-Gl8b[6زqĖ#le-Gl8b[6زqĖ#le-Gl8b[6زqĖ#lyzѩ+uUR]TW*UJuUvj{vtp>U9ixp=?ק_~駟:uꤑANGI/winO~?;Orwp._]?Zv@Q߯_( ;tpvaxPUJuUR*o\5w\5w#NU:36jxpi95rjȩuk5ݎ95à 0<8`xpà 0<8`xpà 0<8`xpà 0<8`xpà ϟ^Wa_1Ss2a~˜Ie NDrBHlNH{H"0MB%bb[姟ӭV{IKw{>{U^l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.l¶.lvqOq =??,??>?_Sy=f837z f83 g3Ùpf8d\x g3Ùpf83 ޽{t^xY>G9>>Ys _[o3Ù<ɫ/ٝ< g3ÙLz'SLST0LS4s󳻜.gw9?]r~v󳻜.gw9?]r~v󳻜.gw9?]r~v󳻜.gw9?]r~v󳻜.gw9?]qx_x`* `* 0N_T:${;wnsmܹ͝;s6wΝܽsZ̅1L|{^a} KνI?֯ g3<yJ`3Ùpf83 g3Nƥpf83 g3Ùpݻǣ~O=> 2pf83 g 'Wʻ g3Ùpf83N*9 G[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo g3a99sS?O>& g 'gwn '3 gs23xL1LST0LK/0Nd1N8d1N8d1N8d1N8d1N8d1N8d1N8d1N8d1N8d8޻xyST0LST0LSa׿o^.^ 31a><7o~+< 2pf83 g 'Wʻ g3Ùpf83N*9 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf8rK/pv6r2Ùpf8'S.=s޼ST0LSTt'SLST0LST0LST0LST0LST0LST0LST0LST0LST0LSdʻ՗^ANLST0LST0Lq2_Kp^(WP^\Bzr +W(WP^\Bzr _}ׯW_xk~5^_}ׯW_+W(WP^\Bzr +W(WP^\Bzd `*TuA |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A g^+9 g3Ùpf838.^ g0Ùpf83 g3ùw~i>{A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>A |>ݹ̓pf83ɔK\7op2T0LST0.]ST0LST0LST0LSTPHotLST0LST0UN& `* JG1LSdʻ՗^ANLST0LST0L)wϵ7^kܼ~ׯq5n^׸y7_kܼ~ׯq5n^׸y7_kܼ~ׯq5n^׸y7_kܼ~ׯq5n^׸y7_kܼ~ׯq5n^׸y7_[o '`* 'n;?#q9pۺg&3 g>JpQ8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ | Ur3 g3Ùpf83q2.]@`3Ùpf83 gs=|xO\ଞx g3Ùpf839zU޽6xpf83 g3Ùpr_޸~αpc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^8±pc/{ ^_ ANf83 dʥg.֛78b* `* .^d`* `ݽKT0NVyƯ?O~׮| `* Bw޺o`* 'S޼yǿ?ǯ/ė{L9xyST0LST0LST8>pf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùpf83 g3Ùጓa* pRֹ#-?Ν  o2Ùpf8/c $3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L2$3L/<{^+9 g3Ùpf838.^ g0Ùpf83 g3ùw~i>{$')^|yLST{7_ ~==|Wo [7os?s|'s~.Nƻ՗^ANLST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LS­sG[~1n;';c[d3Ùp8'SLST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST8ܥg赒3pf83 g3Ùጓqr3 g3Ùpf83{觟SO_|~gă f83 g3Ù<+ƃd3Ùpf83 g3xF`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* qv6r2Ùpf8'S.=s޼ST0LSTt'SLST0U#vcp27o | _{}k׿k;`*^s$O|M|?yw9`*.?8o6ggg/ſ#|xyST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST8pyy[Iօ?7pf83g.0N`ސ[EzCE0LST0LST0LST0LST0LST0LSA#c* `* JGc* `* `* `* `* `*v77D:`ڑސV"* `* JGE0L;UzHoHo`*vT:`* JCzJo*;JCc* `* `* `* *T0LST0LST0T:*`ڑ[EzCzCE0LST0LӎJGU0L;*U7TST0Lӎ`* `*tT:`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* p2K鵒3pf83 g3Ùጓqr3 g3Ùpf83{觟SO_|~gă f83 g3Ù<+ƃd3Ùpf83 g3xF)Fo;Q `* `* `*tT:`* `* `*  T0LST0LST0LST0LSTސ `* *`* `* *T0L`* `Q `* Uz * `* `*v7TST0LSQLST0LST0LSA* Ґސ1LST0LHT0LSTP`* iGzCzCE0L;UzkHoHo`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* dsݹ̓pf83ɔK\7op2T0LST0.]ST0L㍗e?ەa8W5}Q^z%ݻy7?S?; >a1nݺ''ܺuZ+/_oO{-^}ET0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0N*:w~1GֹsR3uϾMf83 '|p af??ɷC=C}|_}w*'L1N|'Lㄏ>N1Ɖ')2ƉA kO81qb+8xb' 2N'O88`* `* ;~|7O}ԌwO<}|LJy\x}dqb`*NFe~O~9~'~LJGC/_BST0/x0T0;a̯ķ⡇⡇>ݷy-pb'ɰFScN| <_~ N㤘 `* ySO|fNA>#y_O^ۉ1N LSd;Ɍwm~0}C|#3oN')'9O?w'o`*̐ۯ?~8`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* p2K鵒3pf83 g3Ùጓqr3 g3Ùpf83{觟SO_|~gă f83 g3Ù<+ƃd3Ùpf83 g3xFi}|۷ez|#ѳ7k=/r'3|?'夂` cX'ٿw~2|8`* 2ƉdW ki>b&*t}8`* p#}/z QT8y?naL0UN'7/3~tULwwg(pƍ˟~7y2L0N7~GoC=C=Cw?|O.s'8>a̐_~s58>aӉ/:1qbb* `Nہby/Ko]}{?~M>an~x3LSt2ڭg7q2Çq2${~w_r|{LJ?a>ow/@T1LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSa^x;y g39r N `* ¥8b* `*q^G ߮ (_ʣ>ʓO>믿oK/g>>a* I+oE~?ɯY7TP/2;ëq\zz{/Kp޽"rb* `* `* `* `* `* `* `* `* `* `* `* `* `* `* 'n;?#q9pۺg&3 g>8ى{W>o 7_u o"dX3|'y慫ܾ9}n]ksʅK/s7^.;0S;|K/0SxO?4ϽT0LST0L;^=w|/_#|?mnx?w_&zoQssL+4{7>@ mx nܸo;?>fpۗ~& f'Ȍ)np5n\!˗yW^~Ey3?.+7?_xkx+ŋ/korėȗ%|Iyn'9.O>5޽W9b* '||ď1>_⽮L(箜གྷ/țcr/w~}^ 2w?w/o$sL1V~WSDE~?'8_kܸq[CE n{+•.Op+{ޱxa捗7\ ΄z|G<ů>Wߺ`* sn#q\x"!;+ox=>U^|!~gwq2e,q?_L}.wãl_ϼDmg nܸͲK{`* `* `* `* `* `* `* `* `* `* `* `* `* 7! CruS>mJV鉱PE4KEP4W,Q( HQ6 A: emȹ̧߹oX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,2oii)cn1E,bXlIX"Źpӂtr*?w{zUV__{b#[r#eMX_;{/իWOs߲e|{uU{;z8?X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXC5)-زq;ڦmjڦmjks'Uʔ {Y\̣k2FyzϹbg˛r̙3+fW\vL~ _0.SOE`}p >q)sgbUs|/rS<~-o,a߱sX0S.Ywoz}XttYE?W]3K ̛+g3Ί2"E,gʣx.t;zh,~5&|z9/Oy;O|m\sB.ٯ-("6UYp|˫,2'" NvY7UD,n-gmok겤9Š{Z$~_6w 䲋&p˳k8}eWMg[Z27ΞyW1sd{]}%w;,/f59Xh}7\sB.鯸.Fb,8OS¹x|Bl\+.)NQ_;/34| <Ú]'ɽ\6F86J!Z&}}83~/?aqjE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b2{&QۆiiiiʰuS'mCԴMMԴMMԴMMԴMM /xqi:-u20Zr~mjڦmjڦmjڦmjΏ߻ޓ8mS65mS65mS65mS65mS36lB1:JUՌYͯ/%jiφnf=KQ >s'\SkFp< X癿p gLdjbuu267UYRgͳ陏}+ZәpD36p댩<6} \99s2cT~|g\}%Y*_vo^ΓC$")nk]CQó/fpft/ȅSfvG^d>lzg1LJM=3K<:'˭?}p۹叼l}&^N8˪'1sx$T1u9+byy%"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"EUۻ8w-mS65mS65e͝8~2&E,b:)cbX"8cw 'F"bQsSC#Q.4kt~XvGe7~Z̚Ϭ6V?_Ο:eE,bQƔ1(˒.)cs178ѷG?Xfw0m?eYUi<6H#>{M763Xx09i7QE" NvY7UD,ĝ?2/\Ģ '+\η{ey"1Q^[:ɿ~#Y_>ĉo7'q0 [_-XωCkIu'˶cTyYܰ#6E[ONfʍalVnןgҒ79:0Fr$^"9#Gf-7Mࡕ(lX?O?]E߈(˒bʲJʈ_་ꁏ93{yrf&>sEIY|L:yoGBa޼YwKSk;w8>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ʰc{7r~mjڦmjڦٺǏR"E,buS'eL,bX"gaM'' JXĢ;ņ _駟efϝE,b1|r'9~ xq{mE,ʘvagv=|2&eL_ vxK,bX"E,bX"E,bX"E,bX"eL,bX"E,bX"E,bX"E,bҢwc2ױxC5[6n}GԴMMԴMMSWtm*C}0_%_/~o~{]y?o/b„ \b^XWf֒W81<–w0e=l;cz7=!fͻewhO876`K~6vUL䙍(ˊc΄)n^[`꧘4*>fG?Ażsϛ]'ږ}qsyè Fr=rSgD3zzo?x5 cٿߜ(K|&\²3XĢj],;̰B,bѷ^t)T&E邓]1l81F$6q_0d|zkcgGG,lY/]'FhKqxLV}WMcɛL?I뱗| '6pK㍭ 9;=ow1XĦjʾ={2wX.8s.V"E,b׼t>)Om}TE?C,9&s/}1XDlU\:q8&NuGj}l:ハkyEEX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"eLM mS65mS65mS65mS65mSSaNۆiiiidK_,_u[d`xCԴMMԴMMԴMMԜoٿw7}'qڦmjڦmjڦmjڦmjڦfmֵbt;.1}W7.J}U^wo\ 4e5O0qbV43''IbW=̿-mzGCTSqo}c'6p)R2ֻ_~qj\ 0R&Gt/M,2vOr/rKXGd[2G.e7?WElsI< hk5.ႋ;O-Ģ(>K>cX$%cGVs?a}d|zk;;XPfq2.z3_(/GR&M ;Sxn6u_`UܻM}ϸ })Iyl~ X"6UUcka$Z"%EvqӮWzoEutD"(#o祻f3q}l8O4W/eNJn}s]QZ"cgL ~.:DSq?0i *"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,2oii)cn1E,bXlIX"EE,b2KJʘX"HB6o9?2֔E,bQW%M]Ub2wp~%E,bX"E,bX"E,QΝ=3"Eb<6ș;zSQ`Y"E,bQz X"E,bX"(-zj:/{;TSZ ewMMԴMM4uEN2)W,}w [.?Ov3Zß.W͛s?38Ċsw﫜f;:^'7>I{']47}70}lzNMHJ Sݼl! [O3|vh:߮Iyg3*zi\1<WfesJNc[yLy;o?4{ptq )"HJҹS +"wUD,b'^cpb*"IIz7q׌ ܲbceMSW4UIPᕥYٲI:._̪gU}IDAT)81&MU=Xv4~k+*ݿ]k>\ɝ3'.FSލ9sKbD!ER-={2wXDCl5\8nE,b{'WgES|y5|{?JYT7s ܺb# Fyf.s޻˦Wq_0gYɛvE\>饐E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b2{&QۆiiiiʰuS'mCԴMMԴMMԴMMԴMM /xqi:-u20Zr~mjڦmjڦmjڦmjΏ߻ޓ8mS65mS65mS65mS65mS36lB1:JUՌYͯ/?I*.Sgok{WVpB%MYO0qb^}ifN˻{Iʪb6V>xv=Mk[X"19{?}/. ?z;>+'{(r[X e]qrr&j Xcǎr N>E~>u%?븓Ӣ-G۸l3 K(CE,_MS'{(lbSWf)N ,hM,Jr`_3ER2vd5]v1~T5M]T,K<},nX6{oeɂ&#x&͸/w7'}H#%=us/ ?~+7_OGWG;&Mѕ(lbX$%ű0e܇ʊ-3鼶8e0\5R_5E,Rz / 狯pY2^SeV2u<E,b/^XDǂGzt`@|l6{E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXTeرsg9?65mS65mSSlɉG)cbX"غ2&E,bX"E,bX"E,bX"E,bX"E,b2wp~%E,bX"E,bX"k׬'+8~Xt$.b os[omM]X"ei]Ve,!E,bX"E,Jޡ^eՔÃlٸmS65mS65M]ѵ eJì .ѵH}~Oc?綗;97:©_+9|,˼{_0W89u\9^btO_i+6~ח0}lzNMHJ Sݼl! [O3|vh:߮{I_ǛWdDn~v}Cغv~oqb k ccH#'mqClEٴ(߬~K~:ȳ7_uO y#gڒiLX={pK兵wϗ㵬Lw 1gv"9Îa} ϗqL9?뽇>q/=HٶGGWs'?wxlw>b~lңIfLǛ_`l<0IcK*Z,XfO:x/;qh*"I禩x=k凬Ɗ~rwX癿p gLdj"~&HB=o †wclbզx+d%_TVyy_²5O1ii\4uE]Cx̽9va|m+ l 3˙q,Vl9<~? gԿ]ȼ0SZ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,2oii)cn1E,bXlI]TeP*CU U2TeP*CU U2TeP*CU U2TeP*CU U2TeP*CU uUrT/wp~%E,bX"E,bX"ʰqc'?<XW^~!r=97V~Μ>ʺ?~ς?/ɖ}"eLq?v-_/v1X"E,bX"(-zj:/{;TSZ ewMMԴMM4uEN2).u ;-b3rl -~c'\q/.f3sJ `=jkf˫w2m2'7>Ǵkw/~%M`,s9ot~ƮXp^tdh̻t*[_eL|N럤Ŭ>Ɯɗ3}FǤXc3ϟΒ7ֱG7u 3f+ܻ=ohjܻfM枷b!ER,3%ow1irퟻEYs6#|WeS6 8šY0 ^~zafOČW0u_9>4ƹxgX /䉓1m2S·='qBԌ,]3"bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ޺btmjڦmjڦmjڦmjڦmj2lx65mS65mS65mS65mS65,y ^\wNqs ohiii-$;?NԴMMԴMMԴMMԴMMԌ ۺPRV5cG?~\0pU̜:c{yY9~|7/=i\yt;Wm=ܩ9kf\->7ʼnQNw?oogĦ)GO2fO1k[ 9{_y_ǿ1}"/Z1fOWʩ̹):Olbyћ9c&f]Y5KIԌox9jʊӻW#/y,)MRydtCFO>e*sfdڴ EQ} }HJƎח_=E,Pgͳ陏|~& O4a2;ذs=]1?̺˘5e*sǕWGeOuD]b*~=VE,bre3$fx'B|o/.M,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"UvlfYΏMMԴMMԔ1[7wrQʘX"E,6m.z.z.z.z.z.z.z.z.z.zgWl;z8?X"E,bX"E,bXUɫ+V'088ș3g34:[Kg?\o|c %ܾܲhz#CEr|~s-j)E,bX"E,bҢwc2ױxC5[6n}GԴMMԴMMSWtm*Cb4˾;8zvXĢgW7T3ܱk>g;;LazeA?;wsvdڰ7{ݽ#q!?L)͉s#FCߵg=`QǙbϙa{뫍ld{q o;IJX"8sh\Ϻ5լ^ήݜ;][Yf C(eiFcg6=5Dbbs޷CE,2vCwpwX"E邓]1l81Fd"EazoO2p{vpAi1r{v9ݷç)Fͬ_9rz]6=ˡ8ۏ-bX&c8o7{aXxvbD=ήm|7Dbb bݜ!6=ˡ][Xf rzp4gk Qf8|uM/M,bRC<GzE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX1[7Q26MMԴMMԴMMԴMMԴMMU:oڦmjڦmjڦmjڦmjڦfpp%/}N|)nyђ mS65mS65mS65mSs~eoiiiiia[Q2x4z6~j>_?_Ưv;0J!Á}flߴ7 FeJ𮭬_9!aϞ)fW>GaDC9}#֬9vv国9t_/֭e|*>_㢟owwŚbW>5mbXٵK֮2"QZ"6e1ȱ{8xY gIDl=in{=}E,bXeI]W4uESW4uE]"6UUuʈX$JX"6UX"6UYR"E,J sf\ϗǨ"bTeIX"(PLPZ" uʘ ULb+MU*&P"E,bSE,bSU%UL,bTUIX"6UʈXĦJBTUI2J.M,bXĢ,CUX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ʘlemhiiii [7u26MMԴMMԴMMԴMMԴM K^םfS\'%ڦmjڦmjڦmjڦx=Ώ65mS65mS65mS65mS65mö-1hꊦPFĢ*CUX uU%uiJXĦJJʘ2*Ci*JX"1UUuURĦ*CSU%M]M]T%ULl+ꪤE,bX uU%uJX"P&IPF"P"PF"<ן?ÜywiSG"*&E,bQ)2(21UTUISWUI*"b UD,bX"6UX"1UUuʈX$BS%M]M]uJX"6UX$B2J*M,b*"bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"EU۾bYΏMMԴMMԔ1[7wrQʘX"E,ʘ U2TeP*CU U2TeP*CU U2TeP*CU U2TeP*CU U2TeP*CU UbX"E,bX"E,bX1<OU(1r>ΓTeͯd}tK+9MYp7_QyI%_s ~bX"E,bXĢXu,^FPMi1<8w65mS65mSۺ6362L,bX"E,bX"E,bX"E,bX"E,bX"E,bX"EaoŋGL>X"E,bX"E,bX"E,bX"E,bX"E\h~M>WPZ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bQtoEcc mS65mS65mS65mS65mSSaNۆiiiidK_,_u[d`xCԴMMԴMMԴMMԜoٿw7}'qڦmjڦmjڦmjڦmjڦfmر+Q"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,Jѻg-/>*"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bQa s~mjڦmjڦٺǏR"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bq蛃֛I7kusXx%\7w/^x#%ywuj*"*D9ngфX"E,bX"(-zj:/{;TSZ ewMMԴMMԴMͷ`]XVU`XVU`XVU`XVU`XVU`XVU`XVU`XVU`XVU`XVU`XVU`XVU`XI늶i* * * * * * * * * *  6u* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *yTT?CK hI;i=AKmh$iD>{nđeKv"k%Ar:~o!u{Ǘll޼Kc 6` 6`k/_Ͽ~llח7>o__lll~osq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq;sq֔\v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n~{uKc 6೦ח5]sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k5e?\spᚷۗ/~?g_;?z?ozG?}p}C~9]sp5k9\spg?? |/?llp-7/|^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^߽{-__^lll,7` 6` 6/ڻ~?W~<lllllpw~w|^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u^u~s2<>sp5G5k9\sp5k9|Oӟ|Ώ>gyld?>k~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG/llz/ 6` 6` ~C׿g??Kll__?{}}ll gMyG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~d?ُG#~doR_l|{w㳦k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sG?9ӟ}? 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`Y^oll?_wG?y|} 6` 6K}_}Ϸ/6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` >kz}=Y5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9|Oӟ|Ώ>gylllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll,7` 6` 6/ڻ~?W~<lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll55k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9\sp5k9v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v9n縝v5k9\sG?9ӟ}? 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`Y^oll?_wG?y|} 6` 6K}_}Ϸ/6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` >kz}=Y5k9\sp5k9\sp5k9\st?g9|֒rgM\sp5k9\sp5k9\sp5k9\syxE7כzsx9^o7כzsx9^o7כzsx9^o7כzsx9^o7כzsx9~<k9\sG?9ӟ}? 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`Y^oll?_wG?y|} 6` 6K}_}Ϸ/6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` >kz}=Y5k9\sp5k9\sp5k9\sz7myw~w3o?w5k9\sp5k9\sp5k9\sp,7o}`m؆m؆m؆m؆m؆mزYg~Yg~Yg~/|3O#|g?lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllp?{46` 6` 6˿__{'/l|}lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllgM/~;>kp5k9\sp5k9\sp5k=~O_6o_[l9\sp5k9\sp5k9\sp5kgw~dow|?x?x?x?x?x?x?x?xoM7w~5k9\sp5k>k??޼~k9\sG?9ӟ}? 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6X,6` 6` 6`alml0< 6`xm 6` 6`؆m 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`#r?<¶lllölllllllllllllllllllm6` 6` 6`eal~YgG6` 6` 6` 6lllllllllll,7` 6` 6/ڻ~?W~<llllllllllllllf~r?mall ۰ ` 6l6`a6`e6` 6` m6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` f?,#lllm6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`1` 6` 6`6l6` 6` 6ȳr?mlll0lölllllllll55k9\sp5k9\sp5k9]?C?g\Y?9dGgv5k9\sp5k9\sp5k9\sp~~9n~_k__WW׾կ~ů}+~_o|ݯ}+-]sp5sOv,?-ۿ׾կ~ů}+~_k__Wo~7|r5k9g>/|3O#|g?llllllllllL7c_?3~?_;~y?}K|i}} /x?+EO|}yo_|R[_/=zɟW ˿go߾_7/ڗIş}%6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6`?ޟ_O}_cu'奾}O__|-6ş}ky/o_KllllllllllllllllllĿyy%6ח>~/s_/_7yy?}}&>/??O_t_^۷}/&ӷ}/&W|llllllllllz/ 6` 6` ~C׿g??Kll__?{}}lllllllllll_+?ǟ>ٿooo}O߾_Z__bm_ng~o>շo_}Z߾,;W_Z߮_ /~O;?XԷo_}Z_M|}yo_7Ǽ/o_b 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` ?sOO}O}R߾_|y Oo__W߾ԗ` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6K'y_?oyח`__Kmշ/O?~S>?Oė՟Zlŷo_}Z_M|}}篷_oxOx%` 6` 6` 6` 6` 6` 6` 6` 6` 6~gM9\sp5k9\sp5k9\spᚷ'?[_dGdp5k9\sp5k9\sp5k9\sp?oMo~|_wwwwwwwz9v5kM_S3{ o7w_ӽk9\sG?9ӟ}? 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` Wwч?_?Mo~?Ax%Y}y]f̙S]]ٝ]]S2+,R .E ! `eb@%0ō񾯹G:]<os6m#k!páWgO߳rθn^]t$K?|o_  ?7_d3Kory'X|o3 6ebX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bC9ӧdQ@#Dw_gvZovsG<{/qE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"6[oi_|;|gF/XX};qշ7[ }>[kt>9v: #i]|&K}߱wn~&"G8+87_vO?'E,bX"E,bX"E,bX"E,bX"E,bX"E,o{#/dɉ ?__&%qg_d{rWxnnnL_{o]e7ڳ<{/oOw"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX" 98T~E>k4u~w ,>&Y ڷGgw39߰gn^xzE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"KM|ݑC{?Qײxe߷}7SY!^:=>6Ip<}T~e>?`N1|z.Xczc]kn<{\y/"E,bX"E,bX"E,bX"E,bX"E,6ww]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ|x"x~zu`r_ nfq!{6ιۼv8k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖=m7ߠkoN^\=*h4ؿ=Fߵ]Ku2x<Ϲܳxmr|WX{ܹzUVWWY]]euuUVWWy衇طooxw-}w-}ײٵ:">ZS;ٵmg'X"E,bX"E,bX"E,bX"E,bX"E,bmѷew<8璯sՊ|} 籟ʥW>lyk[?;熛g^k,~tN=J?sxr_/g|/RѨş/;Or%ӫ\sg?gN9&=sީӿ_;?}&g/_}7GZX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b$l9y|;r׏[rWwpwp?5*?s| 7rٝ~\yYKy7y~=NlX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ѽ;,~|圯`nүl3:p~{vug}-_ .ʥ;~3g_m^l/M,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ErqEqm{ec!%V=Sx\x>nT>S?tٹ!~Ycg O<{NlX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bq7\+n+/ ֟/7-pc/︒]g>w ߾t!W^~wlo}s|᳟kպ%YW\/wn;~ tgq&gy7 ^}qw\eqgsw=k~܃\piwלUfiX"E,bX"E,bX"E,bX"E,bX"}s;;ZZZZZZZZZZZ?`Oo+nປds;S瑗=\θr{69޵]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵyme]{}wF#Fшhh4b41xᇩ8]{k黖sW_>ϱv莫X!bq|WX{ڵUFшhh4b41X]]esM^}eZZek9tD|jǵѧv\ˡ#bk9ٽO>!E,bX"E,bX"E,bX"E,bX"E,bX"nY[|gS}=m_ݫOM~;//}ߺj~W{ w7yg\=;8󮻙or7x{l̒_W~vo-?3O;p)}xz#_*n?9O9zq9\s^ԯpgP='E,bX"E,bX"E,bX"E,bX"E,bX"E,o?pugSNS'.ᦫ.;f~m~/s٭6KX"E,bX"E,bX"E,bX"E,bX";ۿw9fw-}w-}w-}w-}w-}w-}w-}w-}w-}w-}w-}ײ{.k¡796};r>gO=78w]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]͞6^oеط{'/h4b41FF#Fш~е軖k7/soT߿b=o f׮2FF#Fшh*睃o+<^=}w-}w-]ˡ#S;>Z]0}?| E,bX"E,bX"E,bX"E,bX"E,bX"1~z3̗Iݻv;;z!߹\}i\rM_oe9''8ykߐ o[.?Ϝ \y*oGǕ]9E7STE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"5wK_]߽ fxkם{pxoV+/_7n*_:^hw,cwwr)Ի=$?d3=O>xn[_9{9?Uĉ-bX"E,bX"E,bX"E,bX"E,bX"E,b=2&E,bX"Mp=s{5;pM&E,bXl-+/2;[KbX"E,bX"E,bX"E,bX"E,bX"E,bX"Xz{3x?zivů^|?~| n.~rm<^={~v;_~]~;Ͽu}? ν}xW?#WxO շmNo^WnO|%e|_3ŗpʓ|c\sեgع)Ls&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX" 9q?ݜ|NnsbLIDATy/ƕU7r ?ּ|}T;w1^{ [X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E|9?߾~p#\p+o[qy|綯s7μ}\~%\q|r}5prx[zMvt_8jzj7O?^wNB6Kyzp*mE,bX"E,bX"E,bX"E,bX"E,bw<s;ZZZZZZZZZZZZڣs~;6c4՞xɝ8zek黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖=m7ߠkoN^Z[cuuhh4b41FF#F?0ukw-}= ~ty|)~Gs|WX{ڵUFшhh4b41X]]esM^}eZZek9tD|jǵѧv\ˡ#bk9ٽO>!E,bX"E,bX"E,bX"E,bX"E,bX">o3/7?[lomq=_|75N?z{ywGx!g9?GՌk~-gv.w=z|rOsy8xc$K?|o{wU/#7^^O8 Y-~y.AN?*{OÅ~/]]~\rռ!&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX" v|_mE,}ߍns>~3n?W|{8{KȏnSλ~v/\r)O?'"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,q7n}|8(9/|L7߾_]#s8;]?i]\?^?w߹/#1;OqΧw0QZn!r:7g{|}/^)^s 7;\ũ]׬-bX"E,bX"E,bX"E,bX"E,bX"E,b=2&E,bX"Mp=s{5;pM&E,bXl-+/2;[KbX"E,bX"E,bX"E,bX"E,bX"E,bX"Xg_[[|rRnzvp`xş8プ?͏8!{r _q9y=8b~n<3|x9x8KNoqn6OOxkQ9N=,nwWŗ~<"?|۸8xg?䊋s~[!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX" 9k.?tA6X=S>{w-^=?3O= wR|ftes޿ KfiX"E,bX"E,bX"E,bX"E,bX"}s;;ZZZZZZZZZZZ:xw-}ײqMٳٵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵyme]{}wF#Fшhh4b41xᇩ8]{k黖8y~ryw~fqxU=o f׮2FF#Fшh*睃o+<^=}w-}w-]ˡ#S;>Z]0}?| E,bX"E,bX"E,bX"E,bX"E,bX"rۿ})>"6[ ,~ܻ,1ko_{gU>Gy7p5)ʒ={4}ͮWj{A-\pι\sOY~#or7}/1{YE}%|oG,#bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bsyǬ>&XF|<}UλJ{G8XxwprwG1=2~5}7<ƻMVD,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"1ͫ>ڳ#vt7wݷ)}]x|?or71~6%bs+GC^#HLߌWG|쳹֟⡏l^;KkloX"E,bX"E,bX"E,bX"E,bX"E,bXfsE,bX"E4\y.^M=hE,bX"[֒X"E,bX"E,bX"E,bX"E,bX"E,bX"E,ޤ~m3Kl?́bσsy;]p`Cn:t;@˞?Wy'?+gr9gs7~ 惍]v7d{>~osɅsO<[.眳·;yM"bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b2ρ&w^_h=?9q_ྟ=ɻ7w9\_[E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b$||p+?9IxX7a.> ;?gdo_o'78v\$&CϯnE,bͣkȵywS\|Y\{86O{\t)7|#-YZ"E,bX"E,bX"E,bX"E,bX"f=A6k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k黖k9| v䥵5VWWFF#Fшhh4b4Sp`}w-}w>xﺞsϾtl-7{^x~ͮ];Y]]e41FF#FшU;Wyٽ{ZZ6CGħv\}jǵ:"6a bX"E,bX"E,bX"E,bX"E,bX"E,br֒E,b%[˰''9K,_A=2fkd{km>9yKb%'Ol4֒Y&bki ',c Nn/يH6'Olsr{eX&8''9E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"EblE"H6K1[[[<-2a{{ONeD,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Xfɉ%ˈXfkkK9yb[lo-Ylmmq6'Zd+f\r >9"^X"6[[[9͉-Nl/يmN֒e6<%ˈX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bK"b'looq6'8dۜb{k֒Y.8''^X"6KbbXb\r Nb{ibɓ'8yblooq6'^X"E,bX"E,bX"E,bX"E,bX"E,6ww]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]͞6^oеط{'/h4b41FF#Fш~е軖k黖k8ͮZo k/]vh4b41FF#F߿wɫ{9]Kߵ]Kߵlv-O?Ԏk9tDlv-G<'"E,baرi/h5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4pu<}m4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEM9rxA{c"E,b;葆fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4Ct8E,bXĢqxgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)4k6XB{><0|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgSO9z0:I,bX"E,b=2&E,bX"Mp=s{5;pM&E,bXl-+/2;[KbX"E,bXĢmq9Li5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4k>xU}I~&͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,j }>~X"E,bqEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQ,jEMi5͢Y4fQã&E,bXboiߟ2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦߟrx}XX|>Ϙ1MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)iE,bXbxn} }Gߵ]Kߵ]Kߵ]葆Gi8z葆Gi8z葆Gi8z葆Gi8z葆Gi8z葆Gi8z葆Gi8z葆Gi8z葆Gi8z葆Gi8z葆c}Hߵ]Kߵ]Kߵ]Kߵ]Kߵ]͞6^oеط{'/h4b41FF#Fш~е軖k黖k黖k黖k黖k9+kv*шhh4b41F~9&xw-}w-}ײٵ:">ZS;ٵmg'X"S0}{y1Qɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cl“W{テoX"h}Kk<2%e8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8Xa8X'z2&6O?Y + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +t8}!E,bX"8ܾ=,cbX"E,b4 W޳?>WS.s?dkibX"2"Cﱽ$E,bX"s9jB5yj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘOV&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&cɘj2&Re:N,bXĢZ6^^'c}TG8;l-C,bXbxn} }Gߵ]Kߵ]Kߵ]saؿr`^ˁ{9/ؿr`^ˁ{9/ؿr`^ˁ{9/ؿr`^ˁ{9/ؿr`^ˁ{9/?f_]Kߵ]Kߵ]Kߵ]Kߵ]͞6^oеط{'/h4b41FF#Fш~е軖k黖k黖k黖k黖k9+kv*шhh4b41F~9&xw-}w-}ײٵ:">ZS;ٵmg'X"h}{X 8qR J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJakk <ñ?"E,4ǎ}R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJON+/'i5E,ba߿g>+/klklklklklklklklklklklklklkll=cc>(}x''oX56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56xiX_c瓏̮2&E,bX"7{۷eL,bX"E,{vjwGl-M,bX"ZW_dv="E,bX"}ϱ\.)PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R N8kxs?bm4d"! )eH)CJRʐR2! )eH)CJRʐR2! )eH)CJRʐR2! )eH)CJRʐR2! )eH)CJR0%\vh9v [Cw }w }w }w }w\tO޵o?~;GyW7h<C1C1C1C1C1ׯ]>@u#8̜8ze`9v0C1C1Cqy~9,A.^`{g;c;c;c;ƣU;,;[ }w }w }w }w }w\"=pM$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB+h$$! IHB$$! I<̫8t`?gϜ@$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! Im IHB$$! IHBxqVN3C1C1'健{&yƼ*W`^̫yU0 U*W`^̫yU0 U*W`^̫yU0 U*W`^̫yU0 U*W`^̫yU0 U*W`^̫yU0 U*W`^̫yU0 U*Wyœ?2W_̏7لY3 U*W`^̫yU0 U*W`^̫yU0 U*W`^̫yU0 U*W`^̫yU0 U*WyKqsl3C1C߱6;rgmCԴMMԴMMԴMͱ67鄣֘֘֘֘֘֘֘W%'aFKԴMMԴMMs2xٳ\zi9qWW֘֘֘֘֘֘V YcPSlo MMԴMMԴMMԴMMԴMFK:Y*r:|H$IH$IH$IH={p?rNԴMMԴMMԴMMԴMMԴMFK6r)%$!I$!I$!I8r`:q!6ۖii_;9scr"G }w }w }.oC;$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHgflnnB$$! IHB$$af}p;w }w }Gm#x$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB KHB$@HB$$!  O }w }w&?{ S)2gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜgf%z9,?feά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜyUpµW͍c5 }w }w }w }w }ǥK]ھ|xuVy̳lo1C1C1C1C1Cq<@͛7$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHBϝHB$@HB$$! Ǽ*Cs$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHBpsHB$@HB$$! 'r8y({t2)2gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜgf%Օ\} ?݌VN U92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY3+sfeά̙92gVʜY̬dҽ?;; }w }wl ǎyF65mS65mS65mSsA B:aS>|z{w^޽{ٻw/{塇TE`FKԴMMԴ_tUs۫yzjڦmjzt2旿%{e޽ݻ{w^޽{y衇g@ԴMMԴMMԴMMԴMMlnu"s'X[Yaii$IH$IH$IH$Iسg.<#iMMԴMMԴMMԴMMԴMMlnd1+b'XZZ"I$!I$!I$aii#G0 'bmiihj\;3;6+.rn޸w }w }w\|>#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9 }fF$$Gr$Gn"[HBr$Gr$Gr$bd{8Yc;c;nNjW. 9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9_x\HHqM$!9#9#9p`ٔy6*U@U"PTE*U@U"PTE*U@U"PTE*U@U"PTE*U@U"PTE*U@U"PTE*U@U"PTE*U*C{(r2a:3"PTE*U@U"PTE*U@U"PTE*U@U"PTE*U@U"PTE*2ޟkW50C1C1C1C1-dkK.ɻ}g7r[=C1C1C1C߱50ܙgb;c;c;c;c;y聄7o 9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9ϝɑIu&ɑɑɑcc^ }w }w }ǡ9{ #9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9p+\x<#9#9΍7HHHX[9w }w }wE6SU@U"PTE*U@U"PTE*U@U"PTE*U@U"PTE*U@U"PyU{99vvh93󊍶mjڦmjڦmjڦtt'yr~H$IH$IH$IXZZCg%567Zڦmjڦgw|4};nϞF[65G=tΞ={H$IH$IH$IH￟|'QSlo MMԴMMԴMMԴMMԴMFK:Y*r:|H$IH$IH$IH={p?rNԴMMԴMMԴMMԴMMԴMFK6r)%$!I$!I$!I8r`:q!6ۖii_;9scr"G }w }w }.oCEbŭ[ubpw 3qwwqwwqwwqwwqw"1掻faf;;;;;;;;;;;;;;;;HgftHqw$=ow6pwwqwb}`ϝe;c;6y}\r w͈1b;cf;;;;;;;;;;;;; +;7n+_ ׯ_qww8qlw }w }Gmr`c{h5B:)EH)BJRR"!)EH)BJRReQeQ)EH)BJRR"!)EH)BJRR"!)EH)BJRR"!)EH)BJRR"!)EH)BJRR"!)EH9|pesY.N!)EH)BJRR"!)EH)BJgyFgyFgyFRR"!eQ"!)EH)BJRR"!)EH){c]w }w }w }w }wln;|g;c;c;c;c;.]'Ϸ?#<ūlo }w }w }w }xsgeg{kW_n޼;fF[nq-n݊D370wwqwwqwwqwwqw7#ƈ;fn掻;;;;;;;;;;;;;;;;ϝHqw$X,{׿pwwqw$W%C1C1Cq~Ξ9;1Fwqw 3qwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwݑWy$;NG}}s\xwqwwcf;c;c;N8ʞd}N(BJRR"!)EH)BJRR"yFgyFgyJRR"!)EH)BJRR"!)EH)BJRR"!)EH)BJRR"!)EH)BJRR"!)EH)BJR"X]YWfӤuR"!)EH)BJRR"!eQeQeQ"!)EH)BFg!)EH)BJRR"!)EH)BJR" Ο{mc;c;6چcG̼bmhii9v !Iܿ%$!I$!I$!I8|0J&klnMMԴM?{_ql??F65G=tΞ={H$IH$IH$IH￟|'Q˧hiiii͍tNU4u?k++,--$ I$ I$ I$ {…9~ M}iiiii͍l2fSKKK$IB$$IB$$IB$,--qUt?Awrpw7p3m9nMq'0O~Wv 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7͐gmn w wg{wp3 7͈n=?wGqe$fE.{]|󑂅 `|47 $d#r 7Cq3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7p3 7.<ϋW.# 7͸}oo|󟧮k䎛fnx<2C1Cw|p*tLMɳ)y6%ϦٔYY~|[0ſ<nfnfnfnfnfnfnfnfnfnfnfnfnfnfnfnsg~*rf~o_Wq3 7͐;=yU2C1C1gp3܌_V#wr_}K; r͑ fnfnfnfnfnfnfnfnfnfHꋗy$fn/9k>1.]q3 78yk+' &UɓD$$IB$$IB$$IYd}͍i9r/z'8zf)Yڶmjzx={$ I$ I$ I$ ?O3VO565mS65mS65mS65mS65-di~ VVXZZ"I$!I$!I$!IÅ sA:mS65mS65mS65mS65mS65-dʩؿ H$IH$IH$IXZZȑ#̫xĉl[ڦmjڦmj63;nN~;厍ʥ=t7n0C1C1_bf悝> Fp G׼0rl8+S;z6vp`r³s^Et03̌S|s`??ᎿǿǛo{?7 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 3y;f͛7w>R%Yqs=c03 3֭[}`ϝe;c;6y}\|In8w摢;x %^7+kOs)/x9g>ɉx7# ןgr$ǟZa~9naffaffaffaffaffaffaffaff!.+ݻw,//sY>`ff!'x<2C1Cw8|p dN鄐N鄐N鄐N鄐N鄐Nلc{翾׽e/Uy8|k*TE*rfEFMȳ̙9UB:!d)U3 fe SB:!UY(CJYfeNtBH'tBH'tBH'tBH'tBH'tBH'!(rfmY:!B:!B:!B:!B:!B:!OOoW쥼eoSu~锐N鄐N9_߻>x< ! ! ! ! ! y6?1׮^e{k`;c;c;c;c;67Z>3C1C1C1C1.]wۏko zc;c;c;c{k`oF zso03 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 I,ׯ]13̌{w=c9g7 nܸaffW%C1C1Cq~<, 3cxKDݫ<ug!n_g6Y^`㷶3ybO.S=ȍKէ8v4ŹkF03 303 303 303 303 303 303 303 303ŋW.sH@üСC\p}s|Sbssw03 Ǐr8y(}`tNH'tBH'tBH'tBH'tBH'tBH'lǹ ~/Ky!792ON੔*TE*rfEFMYJUʜ !șU2SB:!UYS)e9U ! ! ! ! ! !P%+\} ?wY95鄐N鄐N鄐N鄐N鄐N鄐N8~Uo/KyK_k}|垇YL !ݯ~tBH'tBH'tBH'tBH'tBH'tBH'!eޟssl3C1C߱6;rgmCԴMMԴMMԴMͱ66O,--$ I$ I$ IÇyfV2Y_csmjڦmj.>ϕA5@[<_~p"03 {?ϛ1m2+7e~/7}'faffaffaffaffaffaffaffaffaffaffaffaffaffaffaff<̌ 3cww{w{3xf>gii7obffqMz`ϝe;c;6y}\|wxWe/WaF~m /\}yλvο'γsmϼU?~?^.Ng?;w"Od׈faffaffaffaffaffaffaffafr ye3xx>& 1F܌˗/13 3̐ēOt<"ɦcl:&ɦcl:&ɦc"=ͽ/ͻkAV-}S'{u/_qGO|Aտ;?Ϸ~ 1kGo|~o;x}?m/_/>W8x2&ɦcl:&ɦcl:&ɦc<О%"Y=}hlN6Md1tL6Md1tL6MDŽw8Mr׾{?EH'd1t©̫|l:&ɦcl:&ɦcl:&ɦcB:?kW50C1C1C1C1-dkK.ɻ}g7r[=C1C1C1C߱50ܙgb;c;c;c;c;y聄7v13 ?gAX}k<竼yOx/ozs)o#za|OW~[70\8 ʻ.G{xm侢03 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 s\vw̸u<EQ`1f\p`fff<>Uw }w }w:3>$ 3cz_R^`n^[?vǾ׼̻oloT|/n㕯~yכ_VY4|ǻ}[iaffaffaffaffaffaffaffaffx2?13ܝOs-ܝkp3 38yk+'sWGd1tL6Md1tL6Md1tL6Sdyի?1NO^w̧o5->q/]_2_bщG׿ȝ,_^N󳻾>G{gm}'{7d>}(kul:&ɦcl:&ɦcl:&ɳ)>Օex},?}hlN6Md1tL6Md1tL6Md1Gi^[:A6^e|o奿VqB6!)kozK#ɦcl:&ɦcl:&ɦcl:&Ϧ,3Ο{mc;c;6چcG̼bmhii9v !Iܿ%$!I$!I$!I8|0J&klnMMԴMM} #Շ>C_JԴMCO2g$!I$!I$!I$g>cy)ڦmjڦmjڦmjڦmjڦfs%S9M}O> KKK$IB$$IB$$IB$$Iž={py9HS_mjڦmjڦmj_qh|w1t-dʩؿ H$IH$IH$IXZZȑ#̫xĉl[ڦmjڦmj63;nN~;厍ʥ=t7n0C1C1_c$ƈ 3o?#xs+>_ş8z'o]8GfLM[/xme<x!nXv ,c$Fpm{Y?}md#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1cxv^cbDnF#n$b1c$͛7y聄2C1Cw<>\cM W?|Ooy>~䫼ᵷsۛWϤϞ;? |u>6ٹVx ~. H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$ƈsx2N#pwb13$a1c$H#ΓOt}t<"H#t<"H#t<"H'o翿-|:r7Ybw?Ưok~G?~?crQ#'|ɻ^^ƏCo?o)z~ռ'o]^z_et<"H#t<"H#t<"1&S9ϝGxD:GxD:GxD6^呻ܽ|NH'{Gy'b}mܗx1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#ιpU܌#1F$f1bfHb$H#1F̌G%d;c;c;ϙgE1Fbo~ßg%Or{r;ow8u{wekαWӜ~f?*^v?1}qC՛k<_g<]#1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fbq3^r ϟ݉1cqwb13$af1c$ƈ$N;ic;c;䉣$LFxD:GxD:GxD:Y'&ʇ{Y^N=wqg*[~ʣ?;~'> >oy/ǯ>sSƷ~w~y0~Oo~?~>O$GxD:GxD:Ga:}N0^[!H#t<"H#t<"H#l<>+~''d1~Ƈ_ۼgy2!&ozKe:^'H#t<"H#t<"H#0s/~sϱw }w }FpAWl mS65mS65mS65 >ɓD$$IB$$IB$$IYd}͍ihsqv}o~.7o`wb__}|oCrۇp[7vy?x}*[7OwQW_/Lzm[7v],],],],],],],],],],],],],],],],],],],],],],],],],],],],],],],],qϝ+y&MӰ5 eww찻XXXXp ?(y6e;c;69qs?fm4ˬ.2ˬ.2ˬ.xm}?KOۯx-ӿem?Ÿw|Ze7w{2Y;Ń/{z={y蓜z(ˇyooݿ}+=|?_~/{K_Oaƫˬ.2ˬ.2ˬ.dʞ,rΟ;ˏ]N?uӧX_]f}ueWY_]f}ueWY_]f}ueƫMIkˬ~~~[XYc*Ǘ+0^]f}ueWY_]f}ueWY_]f}ueWkW50AxfUxퟫr\]6@L#<`Ɔe3(ۀ@I+5ɽccGDFRJJ)5uN}z{IDAT>}%'JN(9QrDɉ1x)9QrDɉ%'JN(9qyU~Y>}^Lɉ%'JN(9Qr GogX9%'JN(9QrDɉ%'JN/qnâVvKvK~ko|4^أ= s|8{ ;_|yew~c=\;\Y.Y.r%‰-onk9{0 N\#)>fc}ycdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgdgʕ+<{ix\agdgDE9WvvaX α\,Y.Y.Y.Y.C{(9QrDɉWySK/\\ww=v+_׼>q>>}vϹ,xKc[˭|V''g^v}:k;q-o뿈}WvY.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.Y.r _|sϟ__Y.Y. ޓs;;;,u^Y.Y.Y.Y.ח^4lm (9QrD v]wá́́́́́́́́́́#[G>&yk{YzOw~mbW[f{k`g^|aM7W=|=2v~U|8999999999999p&w=EDɉ%'W>uWU*x)|(̲ou1c0`1Npt{<^WB̼$RP ^¡x6w1c 1c0ưk.N:̶8CO ^WU*x 1x?Pq4 1c0`1ݻwst8 ^WEmO|#Ӂ] GOY] 1c0` ɄS'ؑì:HWU*ƛnA_t %'JN(9Qr x{X.,bɎ}Ͽ3}YΞ=Ǩ\"?f}_Ϸ/ϳv6Q /|f>'YV v%~Oq5o/pQ~/-\ݍ;NW->C .^>{]{?c>Ǟx%'JN)Q5w3,gkzgkzgkzul *~3O7WƏn}Osϡ/x-[ n7?W_kz5zw1?Ұz3=핿ſkon?=zxO2ykг5l =[Cг5l =[Cг5l =ۛ_s1Ξy~cz2̦l =[Cг5l =[Cг5l =[Csxw8ѳ1y;_6sue~;V9??/_>?}<ǹs/ryrE,jeQ+ZYʢVE,jeQ+ZYʢVE,jeQ+ZYʢVE,jeQ+ZYʢVb gr ZY.ηx2/]aj-sϲE,jeQ+Wvj1PrDɉ%'!vy̲zgkzgkzgkXg{kM{~CUo.7~~?k>/8t痸 n+_kWwy=?嫟>/~_q/񖫮;ulΞ²P:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y u^X9O8F ESy߿n||]R:/y u^(9qY(9QrDɉ"gOk-ONݽN;ϵ͗}^Lɉ%'JN(9Qr GogX9%'JN(9QrDɉ%'JN/qJNy W,ٻ{9ziNS:/,J{n,+oox?8x(?yv#eY u^2?7>N>u)^\+7|?}|syBP:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y u^BP:/y :癧Y.*u^BЇ>w ??BP:/߽_W]_G9]ɡ?Q.\gy?sx޽ca1/y u^BP:/y u^BP:/y u^BP:/y u^BP:/,?ùsgd^2:c_ȇ>AnψS:/y EPs%'JN(9a׿d1S6Ìa0cs9fl36Ìa+??^f:ÌC|oe~|司S&w=oy=9Ʈq/Gޖ޲1X{~U?!xUWw~?o(?e׼{7 Ìa0cs9fl36Ìa0ck{V|"?l۰>[cc}0cs9fl36Ìa0cs9XxWpxcF쑟_·Y}Wr/hfL6׽*3 36Ìa0cs9fl36ÌaFϝw3gX,*%'JN(9Nx ^W6H!Gf}`1c 14 O?u[*x ^WU*x #޽c 1c0`î]8u3rl=u^*x ^WU*y6'C+++c0`1c v͹sM*?q9>+oo݈=4Pr≣G觬eeec 1c0`aeed©ya$zWU*N_H\wMu7 /r~^r%'JN(9qs ?Y=m‡~Ǘ/|ҮNv|ﺞp0/%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ:/<{i.]rQ)9Qr 6km.rKDɉ%'r)9QrDɉ"WޕXv e-Coz[2 ec}fw?p>?~ڮagx=>ʛr!購 G^_[7Wg O+?_J>+{|#ߺc7?7pb>^nycm7_ec2 e-Coz[2l3V'g?fv~[2 e-Coz[2zu|ƬeЯҍڷ>߻^i!xū~iX e-Coz[2 e-CoX8^ %'JN(9QrDɉ%'b%SrDɉ%'JN(9Qr|3|wϳ|x9P癒%'JN(9QrDϰsJN(9QrDɉ%'JN/_+(9Qrbg{x}# yDɉy n/=nP{?pMq>$JN5[}'u~b…Dɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDΝ=ùsgY.(9Qr '7Oz++)9QrDɉE39x%'JN(9aqc}[2 e-Coz[2Oٜ>?Żyfn5oohτwW_6SU;G_}| d{_2>~Zr] o(g9Wo3y_^)Coz[2 e-Coz0{V|"?l:2 e-Coz[2l?<7Vf-r{>k_6~ϟ5/+߼Q)Coz[2 e-Coz[6wq;gϜa(9QrDJ;9ӧNU*x ^B eY1c 1c0ưB4< noǫU*x ^WU*:ǎl{n1c0`1c vԩSlˉcO9yU*x ^Wۜ<~ Go/[`1c 1cؽ{7=O79ëpd7o~g?_~zl_?¶y6){YYY1c 1cXYYa2pq;rCU*x Axqݍ7qB"p:\Dɉ%'JNwy!HJϝ8"1S$HJ<'s'3(&S8pRs.nc8CJ")Er\8$q^9GR|I#ቧ~s.S$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ER9q)%R$HΉ"ٔ"9'RI)R$H{.?%'JN(9S䑇3I)RĽ? .S$Dt/Ɣg)!f;꾃lݻNqGrI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ER)9sS\xZI)ScС !xrNI)R$HJR2< Ǟx%'JN)QY޶ӎ5gkX>[c}l5gk ?ozWW׽|S_f#xg_]\ɯw#ClCyUx%|g׿5o竷-1f~׼և[{oo(l5gkX>[c}l56֧N?3[oaM5gkX>[c}l5gkf-˟;_Jz+yU!ŽLg]+_2^y՛/n5gkX>[c}l5gkz/o)x:/(9QrDɉ%'JN6Lɉ%'JN(9QrDɉG=@gJN(9QrDɉu^8rxN?â)9QrDɉ%'JN(9Qrb|{wR$HJ/>'rI)R$S9$U9tzpǞ`6_|OcH)R$O_I)RB^™JN")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)RӧN煔")Er8|x F)ERI)R$Ğ(9QrDɉW9y8y!HJ<ۇe%HΉ/r'DG }!%~N@H.G8vbJNgUc\HΑ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ"9'Ξ}ΝeI)Rɓ'ؿ")ERI)Rd>/41PrDɉ%'k׿-c}l5gkX>[c}lCFȯg>[_j^W׽Gٷ|7~oُĻw~65Vε{%x+x_)<!^ƫ^&suo/{;w|y{;qί򮷾0{G?~fY>[c}l5gkX>[cc}ʽw1pE~~-:Ho[gkX>[c}l5gkX>[ck~?+կWڏwM-}wOWwy^G<2X>[c}l5gkX>[c}l)m=sŢRrDɉ+O:IWU*x msO>~afٷ 1c0` MS'8E WU*x ^Wp>;ݻ1`1c 1ڵSN1-'=SWU*x ^B Ǐns1T;lml1c 1c0`aݜ;<*BR2$r??p-Wxӏ9r vN\b 1c Dɉ1b H)QJ"DN"9'R 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1R81xR1c @J"1b 1c @{.?%'JN(9S䑇ps1c Hɉ1b %S$@LR2)9b @Ή1b )c D)yɔI1c @1b 1c @1b 1c @1b 1c @1b 1c @JO <1b H)R$@1b 1S䑇p)9QrDɉ"W]w1[;̶ӎ~O;iG?vӎ~O;iNVY}s?<dB?혭wuݡܷZG?UlNVY}~~AX྽j'MV9x`?S1ms`*kkAK׵ӎ~O;iG?vӎ~O;rwp1Ξyz mvӎ~O;iG?vӎ~O;>=﹏a̦ӎ~ڲvQ}~yڮvӎ~O;iG?vӎ~O;il_S2u^(9QrDɉ%'JN(9m0/%'JN(9QrDɉϟ?\{7ˁ:ϔ(9QrDɉ%'p&ϝ~ESrDɉ%'JN(9Qrx^!@1R1c @1ErNH)QJf^29'JN8{r>Gf6)c @"9'R 1c D)9GRH1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b H)r2db 1c HJ1b 1c @S'OPrDɉ%'_㔒1c @Ή1b 9Sr$@\2)9b @Ή"1b )c H)yɔH1c @1b 1c @1b 1c @1b 1c @1b 1c @JgsguN 1b I)b @1b 9@ɉ%'JN_!fvӎ~O;iG?vӎ~O;gCs?? ~ѯ54{d޽tpp^~O; ﹟G[XvLg{8e2iq`>u8o/ZKKvӎ~O;iG?vӎ~1ָKM0[;D?vӎ~O;iG?v̺d﹏aLmvf/{G~I{~O;iG?vӎ~O;iG?l_6Ξ9bQ)9QrDɉvrO$xūU*x ^9@ '?0[]eeec 1c0`aeeix"WU*x ^WU8tpfc0`1c vũSٖǞ`sWU*x ^W!G9y*f^66XYY1c 1c0ư{nΝ{nrWU*x\Sxŋ 1x8z~^VVV0`1c VVVL&:yǎfAx ^BPu7o\wM*\<"+W(9QrDɉ_8CNBJJJJJJJJJJJJJJJJ8ar׷ɣۧQ9q B^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^Qqܳr7ϟy%'JN)C{8ܳ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^̩\x^<?Ǟx%'JN)Qvﺓ!fkmKo[zۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mmKo[z۲>׿c=,?l0&ۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mmKo[zۖ޶-mm/n)x:/(9QrDɉ%'JN6Lɉ%'JN(9QrDɉG=@gJN(9QrDɉu^8rxN?â)9QrDɉ%'JN(9Qrb|{wE6yOJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ S' ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^y{8u%'JN(9QrUN?FNnCšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8Tn=#QrDɉ9ElwC.^xCšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8čz$Go1^CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8č8~|3ϞDɉ%'JNl=́}9T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8T*CšPq8:T*CšPq8T*CšPq<3}!?%%JN(9QrⱣW(`6ض mmml`6ض mmml`6ض mmml`6ض mmml`6ض mmml`6ض mmml`6ض mmml`6L ݳS'N 2]<>Nmml`6ض mmml`6ض mmml`6ض mmml`6ض mmml`ۆi7arp^ ,꜒%'JN^i'xIW ^WUhx 3˾UVVV0`1c VVVh:-bx ^B3Ǚ˾fƩs*xcGٽ{71c0`1]vq)fı'zU*x ^WUmN?ٷ VVV0`1c 1޽s瞧@U*x ^WU*y6){YYY1c 1cXYYa2pq;rCU*x Axqݍ7qB"p:\Dɉ%'JNyQ];af;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fcf;fG?%zu0p B,7Hn!|2Lk*/ۮ}Տ<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.rOl_8~<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.t_?` 6V?:~o|_g՗/.'ɰwݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓ?t{?o~6` 6` 6rw?_}Z߿k}Z߿k}Z߿k}Z߿k}Z߿k}Z߿o_Wlllů~k?/?=.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.r<.姳_sO}l?~?_чq9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\q9x\ϖ˿gw6` 67O0ݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓݓ~OaVy_7ݓ?t{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{_ry]߮oW﷫<~$//՗?=.~>??; 08 08 08~z/w﷫~?|{ϿO>/Οapapapap[o+}Z﷫v~z]߮oW﷫//o~?}08 08 08 0]~z]߮oW﷫v~z]]_r>0 0 0 >??;Mo_O]w﷫vv?߿×?;?'a 6` oWcitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFx` 6`ao/{FitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitFitF'/'l_ח~;/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗'~+_kmor|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|'77kc 6` 6` r'?K?=.~z\qO?=.~z\qO?=.~z\qO?_ ͿoWlllkyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyџfWoml/><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<2hXmlV_{9|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗O~qܯ_;'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗|r>y9O^'/瓗_^6` 6r9Oۯ|߼߮oW﷫vu?ˋ?aaa|~~vGo|KחvuWCyv'}08 08 08 0}ev~z]߮oW﷫7v>aaaa||Gޮ{]߮oW﷫v~z]߮/wu9gapapapɷ_/'Ǯv~rwȿ|ll0հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX Y_ 6` 6` հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5f}1 6` 6`u?6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|l66km|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>molllowo}ݷ[}w}wo}ݷ[}w}wo}ݷ[}w}w?~kkk 6` 6` 6`a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjXbll,a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjX a5հVjXbj 6` 6ڸ}lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>okc 6}l6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmm>Ƕ6c|lmog_ll~s>_ry]߮oW﷫<~$//՗?=.~>??; 08 08 08~z/w﷫///{g|v~s߼y0 0 0 0 {߾}q/>_v~z]߮oW﷫vu}sͯ]w|~~vapapap߼y7oW﷫v~z]߮oW﷫_]~?aaagiWɟ~v~z]߮ܮ?/~wr?~'Ŀ{??;_^>ݗp:?_{Ͽ?;ɏo'}08 08 08 0}ev~z]߮oW﷫7v>aaaa||Gޮ{]߮oW﷫v~z]߮/wu9gapapapɷ_/'Ǯv~rwȿ|lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll_7#~/v~z]߮G_}y|08 08 08 ώ׿?/O??/?_O>/Οapapapap[o+}Z﷫v~z]߮oW﷫//o~?}08 08 08 0]~z]߮oW﷫v~z]]_r>0 0 0 >??;Mo_O]w﷫vv?߿×?;?'a 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` oG~+_7﷫v~z]Ǐſ?gapapapѯ[/vs]W?߿o{﷫|_?͛70 0 0 ~۷WӟoW﷫v~z]߮oWח_^>{/?gapapapa͛7~??;_^>v~z]}_ӟrIDATK?~~z]o޼qapapapo߾׿~z]߮oW﷫v~_ޮ;~cg>??; 08 08 08 o޼oa{﷫v~z]߮oW﷫.g?0 0 0 4O?~~z]߮oW_nW?;|]=6` 6` 6kc 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6r9Oۯ|߼߮oW﷫vu?ˋ?aaa|~~vGo|Kחv~z]}e]e}q_߮oW?C87oaaa~۷o=.ŧ?k߮oW﷫v~z]߮/w|W_~0 0 0 7o?x>vv~zd]v~ /~?aaagiWɟ~v~z]߮ܮ?/~wr?~'Ŀ{_ry]߮oW﷫<~$//՗?=.~>??; 08 08 08~z/w﷫v~z]߮oW﷫'}08 08 08 0}ev~z]߮oW﷫7v>aaaa||Gޮ{]߮w뷞>_z{{_#o_>0 0 0 >??;Mo_O]w﷫vv?߿×?;?'a 6` 6`~?~kc 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6` 6?Aau{]{2랮tqvfݝT@9 ('A Q䤂":"~"6i\wr'mPJ$M󽟯睞~z1rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ˹woO=Dחs|r>u9O{xx[ח.S|r>u9O]Χ.S;qO7]wqqqq-o'}W>mO]Χ.S|r>u9Oݺ7zⱏv>}x888讻g?ٻ￷.Sw~?trugw~ky7@w:8:8:8'C=|G..S|| w/yÝo|?;/ȑ#G9rt}=Sr9rȑ#GvԧxN[K/u9O]Χu߽q}Gys]]]uGqtGqtGqtuu}S{o<حK|r>u9O]Χ.S|︧讻8888O?hz]Χ.S|r>u9O]Χn]_z=G;^{փJ+}v>?{W$G>W׽׾5_ߏwO|ޛλg?پ/|vH_yvGn~v]o\_+v{Hg?پ/t[oΞ9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#Gחsޞz/.S|r>u9z}uy>vwwuuqqqUw_O}`/]Χ.S|r>u9O]Χ.Sw~F~w~~뮞|wGC@ܶ|r>u9O]Χ.SԭK<|'hwz8888뮞}wt}}۷;^ă_.]_.u~v?Sч@w:8:8:8'C=|G..S|| w/yÝo|?;/ȑ#G9rtSO_ݺu/=Sv9rȑ#GVuß5_Wzv'}w7/{}kO~_tu_O}w?_?Sݛ}SO~7'ܛ}K%Gznoy[~o~_߯oo/~_/o}wɃ;>uGOɣ__HEGүoOͯڞs9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G/u=]_]Χ.S|r>>}ힻ8:8:8:゙=|n]_O]Χ.S|r>u9O]Χ.S=?ySwM}ϛ7u=o?}O>}v9O]Χ.S|r>u9u}鑇oc|zy[>@WWWqqq]wճ>{}kL'{hC/{rOx[?O<؇>m]]]uGqtGqtGqtuuߓO<͇>{n].]Χ.S3/|c_;3/ԧw} _ȑ#G9r駞}ڶ?G}_O?T]9rȑ#w{K} /_??wO_o~???/~~oַ~c~_ݾoz]~wg?P??Է~}fv{{/m'u[Co+w޿Z[u_U5 Oڏo{_OO#}_+o|U{sȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G]_ν{{'O]Χ.S|]}䑇=wUqtGqtGqtGWWWw}={ƃݺt9O]Χ.S|r>u9O]Χޞxm==ȫzW#G^CyU=nz}v9O]Χ.S|r>u9u}鑇oc|zy[>@WWWqqq]wճ>{}kL'{hC/u>|w@?/~'Gx_w:8:8:8'C=|G..S|| w/yÝo|?;/ȑ#G9rtSO׿??3L Џ؏msȑ#G[}m?kG_곮WLWߗ?gՋh>x?y^xԷ}yoo~{o͏t^/_{Gyz}]o9۽t}}y?z~>?{я}#]?ރO^x|O?_޷='|koyO7O/'K={u˷{?L_߿g?\9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ˹woO=Dחs|r>u9O{u9O]Χ.S{oO<~w7n7;qnܼ7;q>K}v9O]Χ.S|r>u9u}鑇oc|zy[>@WWWqqq]wճ~wouޭ/G~t:=?Uկnw|sǣ/Y+Ի~ocm:=|~O_ʏ^K}v}gw[3׷}x kwo~_~[[v/|s_//׾~;sG{xw|~O-_ݞok{~z׿_u_W}~Y}k_}w.O7|S}S9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G/u=]_]Χ.S|r>>}~[O{[io}?oK}wv|r>u9O]Χ.S|r>u9{{qݸyG7nэwtݸyG7nэwᇿ_GC@ܶ|r>u9O]Χ.SԭK<|'hwz8888뮞}{;^r>u9O]ΟO= /r'zcO'ɏ}}=uo8:8:8:|n>wtrr>u9O]Χϧyp7ƞyϧ>so_B9rȑ#G]O?d_կs\ٝw>rȑ#G9rnt;}Ϻ^?_|w;ꞷί~w{?_?{ۮW^y/rtW?}k_ǛYG{J}^v/|sxu}nSuȿ~FwԿy[C/hO}w'?ok=}^r+W^ww<ۯt~wޯrȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G]_ν{{'O]Χ.S|]}䑇G>q+q+q+q+q+q+ïɧ|o<حK|r>u9O]Χ.S|{WwݸyG7nэwtݸyG7nч^|w{߻}}r.S|r>u9O]Χ.S/=x죝O/w=o8:8:8:8뮻zO|z|r>u9O]Χ.S˹˹[{C=uo8:8:8:|n>wtrr>u9O]Χϧyp7ƞyϧ>so_B9rȑ#G]u9z}uy>Ǿ77;qnܼ7;_֓OwO=Xx[ח.S||z|r~˟g:^{WwݸyG7nэwtݸyG7nч^|w{߻}}r.S|r>u9O]Χ.S/=x죝O/w=o8:8:8:8뮻zO|z|r>u9O]Χ.S|G~>m]]]uGqtGqtGqtuuߓO<͇>{n].]Χ.S3/|c_;3/ԧw} _ȑ#G9r?L;`6G9rȑ#Gܭz_^곮WL;gz9=v쯽;ow~__˧Wkzqo7Wg ?-}_ݫ_wGl}#w]_;Α#Gz;OֻzwU}W|ew_>{~'Kj}|_|wX?k{ͫo+׼{sȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G]_ν{{'O]Χ.S|]}䑇Gnnܼ7;qnܼ7YO>=c=|n]_O]Χ./'W?c??ϟ{~֯_u?~m}쉻qݸyG7nэwtݸyG7nэwᇿ_GC@ܶ|r>u9O]Χ.SԭK<|'hwz8888뮞}{;^r>u9O]Χ.S|r>u9u}ч~[WWWqqq]]]uuw[K|r>u}> ;ؗ7 t}>x{_rȑ#G9Oq/v9rȑ#G9r{;_ʑ˟^hνOg>K/> ~[,9>ǟ~?y.nu}t/b 9O}Oܭ}O>5ȑ]ܧT/_sȑ# n{S<'?|/|/|}sg{E-:ا>L|;<{^y^^^^Gg~1?߬p;s;s;s;s;nOn=O8xoR;/xۯ&E,bX"~X"E,bX"E,bX"E,bXX"E,VL,bX"E,bbbX"E,bX"E,bbbs_[/X"1+&E,bbbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bnσ999޹no#O>wxx}wxx}wxx}O|16ݞ [_w~k;-gUwxxyx}wxx}wxx}wxx}9ş>xG|~yyyyy<=y'?ؿI{+mc6mc6mc6mݻ|889999yv{xP>୷mضmضmض+߿'C~<;Oc{Çw^;|x}wϞ>ßp;_γۓ_<<;ws/>_ٓ>Çw^;|x}c~R YAz+mc6mc6mc6>O<o<99ع=v>R|/_wkbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"=޻Ϟ><899y{m?yq6ߺ ߺ ߺ ߺ/]{c~R Y+ӝ{{_KosppppppoO?oV89999g'7'W7ipuuŶmlƶmlƶmlƶmܽ{/s;s;s;s;s;nO>~֛\]]m۶m۶m۶quuy1}}gyy)n__X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"y{| yyy{C?w?}Wn^rsrsrsrsrsrsWxR;/xۯ&E,bbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊Y1+fŬbV̊E,bX{୷mضmضmض+߿'C~<;Oc/7+"y{| yyy{C?w?}Wn^rsrsrsrsrsrsWxR;/xۯ&E,gy/_<|/s^xy9/_<|/s^xy9/_<|/s^xy9/_<|/s^xy9/_<|/s^xy9/_<|/s^xy9/_<|/s^ IDATxyO~>Yj3[U3.]wwng&(D9 srs8, !!@Q:yS9Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBoi-X"ӡg횕|{ӡg' 0~OXz%Nyฝ8`|xhؽ[63 0~O C?a' 0֮\/wG#Fxhk^o!E,VD)E,bX"E,bX"E,bX"E,ʼE,iPM,bX"E,) y#bX"E,b$V !HB0O- ,D"E,bX"E,bX"E,bX"E,bX"E,bX"E,b,,,M[`!"XXXZXE,b0obX"E,jg"E,YE,bX"O7o 1E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"6 X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b1??Okoi|MV&E,bX"E,bX"E,bSk:ϼE,bSJ 0~O C?a' t`u vlg+ټissst]Gut]Gut]Gut]Dzeػ֭YI?O_+y쾛8kƞ5q)s~g<͖MYb9ssst]Gut]Gut]GuͱfvwV1~O C?aO8xRKlzoX"f[ͦ"E,bX"E,bX"E,bX"<𳼹}/_\Ol`E,bX"6 ώkyeO,bX"E,b1ǻ=8/i|Dw;/?$&*ME,bX"E,bX"E,bX"E,bX"E,bX"E,bX"6 oG{&1y?볞X"1wM,bX"WD["O6E,bX{KO{y5E,bX"E,bX"E,bX"E,bX"E,bX"E,bXfA_[kxc E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX{Ɨm;;<źmgfX"E,bX"E,bX&Oԟ60#~/<òWnj6MlWW?~V†o[_a"E,bX"E,bX"/>ӿ;︃;︃~4&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"/>dpwr=wsqO~[ +bX"E,bX"E,bX"E,bX"E,bX"El_y;wq;w;^ް33oX"E,bX"E,bX"E,b0~k=~|E,bгvJ>ܽ3~O C?a']M?opE0>xhY9|Of>f+8G]Vf{{Xby͏fS"koo~h6EX"E,bX"E,b^swq7sq%³)Mf"f"aMlf3l kfS4 kgS4ٌXD34["ͦX"E,bX"E,bX"E,bX$bŇzW~y?qKgX{]%l4ó)ͰE,<kF,bX"E,bX"E,bX"E,bX" uu9s;8fͦX"ͦH3b Ϧh6ŚX"E,bX" ֳo',̇X"=k׬ݻ=C?a' 0~+tl\\G#Fxhؽ[63 0~O C?a' 0֮\/wG#Fxh^{?\y{#+V,gnn躎躎躎9֬Y];;*fO C?a'L {>/^?x){>~U7X"֌uWٔX"E,bX"E,bX"E,bXĢx?o-Cpe lN_(~zzWy8Sٰa_|2'sv|~+=֝ԭqrZէ͡,gS#bX"E,bX"E,bX"HB'o|ϵE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b1՞y궋8g?OGW𷯧,,S)afa~Z(ab>,,PY|(eMM{QZe2-SJxyaOvCWc.=5"E,bX"E,bX"<:} Gq8~+ncdђK+y\p{qc],,:>$Z *<z4>g!&E,bX"E,b8+X|n2~~Ŭ_9c=,:gsuu>g~qvKYoL>}K8rY7xk9{q~O8ݼ8C8yLf=;W?%'G-Y?#E,bX"E,bX"E,bX$oM\4ݼM|v;,{?C>%W-_dtqr1\ೞX"E,bX"E,bX"E,bX"I瞋?CAtW.>EqrcxϻjʼE,bX"E,b0~k=~|E,bгvJ>ܽ3~O C?a']M?opE0>xhL~滬/Xrun-p\v |4Knxwv~&=o=)GKrw\p\}㵜qyaZ"9d_t7?X"E,bX"E,bX"E,bX"E,bX"E,bX" u1O|]z>gyk>ڧc׏˒C[ 簣/ʻ~o:~ t*{-/8-9e ,:}!z}!.]r,+>{~[.{;/>#yz1oٗl=rwʹ\#{wK^Œso^wמ͹^YCcZ;`zb5}\wg^0#w|;ϯ|O=.o~r l|E,bX"E,bX"E,bX" m7"~>E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Hœל+字˷Ѯ1o|[~U6bطk_eڷӯIf|Wk{Y 7xeūl}}5ֽ{.8T[/~5hW|#o6_X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"łvr?{{o˙E,bX"E,bX"E2Oe'7]ɅW>};y+8Kwpso_dTnZ?D~CrA\pms98쫹Υy E,bX"E,bX"E,bX"E,PoO_ ˗3/8xzjBS<~tĥ<,98n{anRxs̚Ǯ၇_ ;`!"E,bX"Xo}{?aa>"tYf%t C?a' 0֮^Soe78n"h{n癕[?Gy38G?3ezVX]u]u]usssYݻvwxŬ0~O|.^:xR|./>k^o!E,VD)E,bX"E,bX"E,bX"E~Y3_ew=s< ןw&|1'z[0_o3 9_a?MOqgq ڛS/lቛ/߽¤ǹSX\~;L3O,=㔓.'~ϲn7]OyϷ?ZD!E,bX"E,bX"E,bX"E,bX"E,bX"HB~̓7_Uw?#םu=vxQ=n?Y|*r:Ko[~{?sw]yiCwp%w2*|+x?pqK8S/GWncյqggx7;y$S9S9U%X}"Gt.cRzN;<^-|9c>&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b+`܍Eq^X"E,bX"E,bX$d\v|Yn2~CpoYu\yerms9i~[s;8_S38 nB?c8%z%}BE,bX"E,bXbϒӮcx9޵CSpK+bYty<#\|=,նs gpu?ظ+O=O9{ _ƒ['`Qs䱧p#/m3~dN=<:^ E,bX"E,bX"E,bX"IȧopIKxby-9tnVοNۻr9B~ ox'^κ+8<{-/?ιk-gS/^o^|Gs+ sIwb!b7}Ҧ >{.>Dν|ξAh2ι2>e1={O8o3Nw|_vE>]ԓʟcoسg/1E,bX"E,bX"E,bX$Ɠ7]U}ӠiF,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"|fg8yq:/b1??Or ->6rWx7Ws%Wc9[3+pF?y֕|mx?=(,̇X"E,bX"E,<0~>~~9yc9Gwc{GxWλ|EG͟fópٷWsy殏XuqꙜu[_⯯湿Sώ?3s,xv}}-bX"E,bX"E,bX"E\vXg{kN=[ﻕ /λ?m+7eO`㯱cQVlYL,bX"E,bX"E,bX"E,b$sEgrDz}7P[ ?9;ǯO?-w>_^~ȉ7_GeC/F7E,bX"|x !E,C5+p.CO C?a' vJ4x+׿q;qFxhW#9Gn>P~x~Y"^ڼ?}z1pRy>N>rɜz\t=ꆳ9#~|"< N:f66c!b凼+9~a޹uxtQ{簓.enV^F:zw\tR^%gCdɕ~yOwq~N7|kbbX"E,bX"E,bX"HLe?3яOGW晷E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb>+Շ/̳š?'y>'f~N~}kL\xͼr9 8P /﹖X--|:lջvYtە~ <__^_e7E,bX" o~ܥ i/[.~Gښ_3rs?>o9ޞ~<+nX"E,bX"E,bX"E,bX"IxGߧXb?e??忾so?ǿ_׿oy㖣X"E,bXh..mV!E,C[,ΞAϮrݷ96;h6b41Ff#FǮM~,-[ݿ~v/}wd“'Ff#Fوlh6b4ĵ'tnݸq C1C1C1C1C߱\ ̮~7Cξ>KX[[iiiiN:6ΝX._¥)kkk4MC44MC44MC4q9ܾɵ+oc;c;}xgS{t@,b X -e>XoٻwH,bX"E,bX"E,bX"E,bX"E,bX"E,bvX{sw {{ %=~.b{noq8f]v=K>;l첿?ݾ{{ܿ~]qowg!X|.w?ͭ]XylYJx|.۴{>rIlMݠwm|o?7,?=:+w/_!O??|w?_"ۯ凿G__?? _o~X<("E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXh8="bX"E,bX"E,bb= }/;ﲹ|GXﱻy]88!^]M,bX"E,bX"Ų?=Ȳ~n 깷baeXtxu.bgeXyIoͻba?/qeunlqH̷ֹ{wÁX"E,bU*fYŬbV1U*fYŬbV1U*ab{ttX.YDv7`~GbV1U*fYŬbV1U*fYŬbbX"E,bXb8zbXK6eg޲G? t;l |GE,bX"E,V2hbXb1u ޹bxX*}zccf#Fوlh6b4q1^OڕXVL]>_~vko_ګ~{“'Ff#Fوlh6b4ĵ'tnݸq C1C1C1C1C߱\ ̮~7Cξ>KX[[iiiiN:6ΝX._¥)kkk4MC44MC44MC4q9ܾɵ+oc;c;}xgScwɷ+ougş!7^SK^q¯ϸ~/C/ͅ\0f_XY"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"kZb-E,%K"^b-XK%֒H"E,ba-XK%k"["HfeXE,baX"kZb-XK%ђX"Zb-E,%K"^bX"["+/غvчEZXE,b k-bXXK%֒hI,b kln:ln:ln:ln:ln:ln:ln:ln:[lm:ln:ln:ln:lnywݝ-bXK%kZb-XK%Zb-"E,bXXK,XZb-XK%kZ-E,V2hbXb1u ޹bxX*}zccf#Fوlh6b4q1^O /ҟY{#+/o2g?;d>?{|[#޸OΞd41Ff#Fوlמ'?҅wu:/* }w }w }w }w }r10oޠ9.]bmmihihihi8u;;\8w;d;c;c;c;c;c~ {ӧ4 M4 M4 MӰƹss&׮|οrX{gkO=,{bwsο?~L,bXXK.= bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Z.ظ[2NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3N\8ͻwrA,b k6}dt2f:3NL'c1ɘdt2f:3NL'c1Οe]\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX$=@,b>0NL'c1ɘdt2f:3NL'c1ɘd̛Ou#EwxƙO3}ut2f:3NL'c1ɘdt2f:3NL'c1ɘd&q5NOL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3y:CXXKZ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.mKҶ.|v˽=bb;9L'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘ7qG'Gpwls E,bz:wOf1 }w }w }wu Z,xvo=ͱ1Fوlh6b418vO?'wnyO~o㬽}Ε7~~׷|Ɲ)OΞd41Ff#Fوlמ'?҅wu:/* }w }w }w }w }r10oޠ9.]bmmihihihi8u;;\8w;d;c;c;c;c;c~ {ӧ4 M4 M4 MӰƹss&׮|οrX{gkO=,{bwsο?~L,bXXK.= bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX^q3^\]cKi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶Ӷsv}pO_f:E,;LEvwvh9m;m휶ӶsvNi9m;m휶G\fӗٸN,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"8ަm휶ӶsvNi9m;m휶Ӷsv|w볫ҋܹ} kI,bqo7xw;۴휶ӶsvNi9m;m휶ӶsvNΙpU^yEܾ$}wȻog`ssӶsvNi9m;m휶ӶsvNi9|Onbӗv#X,W?c?v>m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m]>uO_ڕX.bXlo[lom[lom[lom[lom[lom[lom[lom[lom[lom2awgݝ-vwbwgݝ-vwb=lXH >}O_9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m휶ӶsvNi9m;m)_0Gpwls E,bz:wOf1 }w }w }wu Z,xvo=ͱ1Fوlh6b418vO?'wnrGV+V&ˁE߱{ŷ.\~_/Ƽ~{“'Ff#Fوlh6b4ĵ'tnݸq C1C1C1C1C߱\ ̮~7Cξ>KX[[iiiiN:6ΝX._¥)kkk4MC44MC44MC4q9ܾɵ+oc;c;}xgS8W2{m @M^}eX,=7>{]o[Oslvlh6b41Ff#];Oɝ\pu }p'|{?sWyr$وlh6b41Ff#?91.í׹|=Va;c;c;c;c;Տ}}wק|pkkk4MC44MC44MC44MéS¹3!C1C1C1C1C1W;>=emmihihih5Ν;ǝ7vC~vMw }w }ǢXO=,_{gYcs7cbXZr\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"֒b ]1ˡgp7o| ]NO,X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"X|xÃXŬb>|K>?}UgG©5]bqo?_|r1_^8~;''/8MCbX a`1 ,0bX a`1 ,0bX a`1 ,0bX a`1 ,0bX {j/B)R j)R(}$6 @)/qO9Z|gUE,bֹ3|z6g;c;c;㭳gbdz\|m~i͎1Ff#Fوlıkxzi>s}r10C1C1C1C1=c;.9֫<9{lh6b41Ff#FO\{K֍\G0C1C1C1C1Gܾy;S>t5iiiԩSlsb+\zNF44MC44MC44MΝ\!?;&a`;c;cwy=̳E߱9|1E,ba-p Z.E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b kd {{ZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZCnݸN)Z+VjZRkJZ+VjZkWX=U̅uVjZRkJZ+VjZRkJ ^{CO,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb>|KJZ+VjZRkJZ+VjZ XŬb>|JZ+VjZRkJZ+VjZpxx/?<`٧wx}VjZRkJZ+VjZRkJZ+?9/p/Z+VjZ)PJBZ+VjZRkJZ+VjZRkJ)R VjZr<8:JZ+VjZRkJZ+VjZy7ϱΉ*+!G _|嫯(_}E)//R 嫯ZK/\.X,^8mjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJW^~Op 6GX"sgmCw }w }w }[gϠłgW|c41Ff#Fوc׎|r&W?b`;c;c;c;c;c;:sWyr$وlh6b41Ff#?91.í׹|=Va;c;c;c;c;Տ}}wק|pkkk4MC44MC44MC44MéS¹3!C1C1C1C1C1W;>=emmihihih5Ν;ǝ7vC~vMw }w }ǢXO=,_{gYcs7cbXZr\X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"֒PkBZ j-ZPkBZ j-ZPkBZ j-ZPkBZ j-ZPkBZ j-ZPkBZ j-ZPkBZ j-ZPkBZ j-ZPkBZ j-ZPkܾ1j-ZPk*PJZ j-ZkWX=U̅uj-ZPkBZ+>|_|NZ j-lnW_a9"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"*˗t}j-ZPk᫯#+jZPkBZ  XŬb>|BZ j-ZPkBZ j-Z^~>PkBZ j-ZPkBZ j-Zx7ϱ7%xS|ZPkW~W?s_0 =emmihihih5Ν;ǝ7vC~vMw }w }ǢXO=,_{gYcs7cbXZr\X"Ţg\2W2ZX"ElJ)R J)R(CocU+'<8zGy?/>?9|{c1 ||, V1NaZ+J)R(PJB)R J)R(PkB)R J)RPJB)R J)R(PJB)R J)RxYGpwls E,bz:wOf1 }w }w }wu Z,xvo=ͱ1Fوlh6b418vO?'wnrX.c;c;c;c;c;3gz'gO2Ff#Fوlh6kOs;ܺqhc;c;c;c;c]7ow}}.F44MC44MC44MC4:um.;C2C1C1C1C1C߱\ \zKShihihiX[[ܹsܹ}kW>gd9 }w }w,=3򵧞y=;9|?&E,%ΞAE,ba-;.p깟 /p >?yk[=_J-R J)R(PJB)R J)R(PJB)R J)RKksJ)R(PJB)R J|39|@)R J)R(PJB)R J)R(PJB)R J)R(PJB)R <͏ꫯ(PJZĿ7گP+J)R(kWX=U̅uJ)R(PJB7o?8s J)R(q^}Xbs V<8ZhŃV<8ZhŃV<8ZhŃGE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX~ΜLfr0'C&$z 'yl6ol -`lC0m-m-.tUU*$[Ri/RT-uy~{|,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*%Qa]m( `(8qx{͛)( ( ( `ii9֭$#Q!Qa]( ( ( `ii( ( ( `iiKxc$ S'm((((((XZZ"21EQPEQPEQPEQ0{P\aݚI<( ( Z~z+?sOロ?o}/o{XlW_}5w}7?OY~=Nbqa(((8~4( `(Ǭ/+:9EQPEQPEQ0 Y=:3ΣbIT8//<4tq6}߽]'./bvU{9z)n_^_y0b X\\W_nc>tﺋgyшE֭1 qn$b-KEAQEAQEAQEAQEAQEAQ>| 60)(((8tJ( ( ( ( ( ( prIDnq~z4QT,*%B57sq($ 0 0 0`ۖ8pZoq˱,.-Q(uK%JnerN<ʁ}{0qDDa@Da@Da@Da@Da@lۼM*\޽RD[-Q(uK%JUsپcG{ND€( €( €( €( Gt#<[j011yxyxyxyLNN2==f`( €( €( €( €( G:T<<<<<ǧnY`<ù1<'r19s87fYx<9s7<=|<ϔ]čyFcs8p1Þ\.Q8<93syNq9s9s8p9s9s1?z9k-g}ݼKs=|{c~~9sKKK 7D! ۷69v09s8pᜣ( 95\? 69EQ9s8WcEr 66 `7ذ 6 `7ذ 6 `7ذ 4 QXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQ$*ݡ s9 (|RDcf1s8p9GQ]ĺ5s$*$*ٽݻ8p9s%g`<S8s9s,s.ƚI9zNR۴p9sKKKAO~^YXXp9s8p1XsX.ΰn$y9ss,--1#Goȃ>Ȼn???#J|I&Of4T9GǏaclX˗SO#9rEQ9s3s<*D³O3L,|?c{Ax K)ʿ_&?Ǘ[8NMs2ߺF_g穋:-\яpuL]bwq//r3yr]|_od:0XT,*EŢbQ5lܰ X*p#{(wd=$`x~7?-|7q|||o?MŮ31#3`mk?ncx[n8W_q״c 7|/~U{ru_Wkvr.Z÷XW9V|]LqEs9s8p9s9s8p1?z9طo<{=Ο??L9sKKK 7D! ۷69z09s8pQGkxJ<)9s8XZZL_YBT,iOb78?SSg:Y25uLMej,SSg:SSSۻ3=uDEŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT,*EŢbQXT, {www9s9}//i4cs8pᜣ( .]bݚI9EgW9s8XZZٳz˿Klقs(p9GQ\t7Lϑ;uڦ,--9sKKKDQă>??W^aqq(p9shי9֭$2s8p9s9Flܸk7 <W\q~[iیcp9s9s?va91fI{_W8p9spיpK{y٧C`Lo˿s#]`wOl.O!S[x<mWK;HҔ| k&')4eqa4e,F,..0LSi58&Q!B֭Zs9s8p9sǏ3 W\q6l`(x"~;W^y%o(p9s9s8p9GyZN:I(-OO&EŢbQQȶfNg85*iB(ǛX*Kj.x\s-CXT,*͛ٲF kxLM HEŢbQIGU?ņ[8r\8=\oQ?1KW?+Ocᓜx|5ίqMG~C'wƞ4{ywZGȇ?T,*EŢbQX6nX̅ Eq㜳[G?iVTp9C2OW9;Gk~5{ONp'[8;f87ƍǸ7cxq1n<ƍǸ7cxsaras73Ps8(#Iis7cxRQp߰$*$*l#q1n<( N8W_G}Ņs7cxY* OWcK(onʮ]m1KEAQ,KEKKK,,-QEQTd44z AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠbP1T *AŠb1XT,*D;t;p1n<ƍǸ7㜣pI,[-cx)cE֭$#Q!Qa]tvp1n<ƍ,gno_o{x{͛q1s7S8ǥyc$ S'mYZZǸ7SQGGٟv~߱0Qn<ƍǸpי9֭$2xq1n<ƍǸ7TLOMw~+]DhD߸y{oz ( xq1n<ƍǸ3LSs<10ssαXq1n<ƍǸazuf.GŒp`^^xi!#Z/r`ik{(rIB|.^~ {^c?g"z _zt#Gpw~pHn<ƍǸ7cxq1n<ƍǔ׭iXT,*KlknQHDa@Da@Da-qvcY]F[-Q(uK%J.c8y`( €( €( €( €( €( ضy3U{9nRD[-Q(uK%.;x^}ǎbQQQQ&Gy6abb<<<󘜜dzz̈́oQXRsS_暛5mEŢbQXe;w{S EŢ*؋+>y5pU|#K-N}|r`9qЧy,# E?)xܷCD@_ŖMxsUշxk|f٘ǸC7y#^}#8EŢbQXT,*X e.?8ɲlqđ|-S).Ȳ,q⺏qC);o GEϸ/r׃?ڿ0sTf0i^o lD4g_k+_5qA/\{=5dk|O\##t=W?[ɿ\${"Ȳ,Ȳ,Ȳ,Ȳ,Ȳ,Ȳ,Ȳ,Ȳ,P=x<&2,c8Ȳ,Ȳ ,Ȳ,Ȳx^zL}k#2,#2|,Ȳ,Ȳ,Xؾ};7x#z׻!YeYeYeǎ&M,#2,p<ɲ,8Ȳ,Ȳ,Ȳ Ue*f.GŒp`^^xi!8ԗ02l)w⓼7_T-7/?9Yl #֬{G>=}t>&ITuk&1qLedYFedYFedYFedYFed|_}{W]uW]uW^y%W\qW\qW\qW\qW\qW\qW\qꪫꪫ+ٳ{79,#2,#2,#2,#2,#[\v O$M秧HEŢbQX(d[s3N'B0 0 0 mٌcw[β2JnRD[-QXvpO/ɣطGDa@Da@Da@Da@Da@Da͛t)uK%JnRD[-qX5;8vw$M( €( €( €( €( 0qD>=B̳=xyxyxyx$Slon& €( y`8 8V}_1ൟ?ϫ{MLLLyyy111Aܿ760QDDa@Da@\b%palmQXT,*[6cMEŢbQkRZy|e4n$AŢbQU'73Klgx gcoșT~?s3_7W|W:'n,-VDDxt5F~VEŢbQXT,*ʜba4b҄G?/gH@62Ll#=ןr*f1pg`S /r>c ~n#|y~9Ft/t O7^G+?//-wP nlGCi0M)4e Ӕa2LSi0M)4e Ӕa2JSLqa,c,F>t 0da4C7h0M)4ea4ԉcDDۚ$[\d Ӕa2/w~=B̳=xyxyxyx$Slon&D0w`~0 9N^ϏMlRusÔ$['O!V='V slz|}QjQXT,*ˑnoի\tǏqC0'QAŢbQU1~oSE%~mnZ0g3'ĵ+x!}±3}v}>O7orq>q 'B£57[}T,*EŢbQX6n(3=u0%Ma=xf;s0^:ʋȶ; YH"/|x?iB{\E6%tYWowgfcn,egWΝ?zgy~ç9sx |8w=}kiʅ7MC+W2w"4%M4QFÔ'NO}z+gg iQ뫘9֮H%M4QDI%M8 yhJw#?"  SDI%M4QDI%M4QFÔӽS|ͼfk2LDI%M4I8zK(4!M8 =ñGys6>O31:4!M4QDI%B&__̅X >096=_ "گ=A 9_w7]@ȑMO_xLK91qDEG8" K(" VaD8 Yf`~a&J(i&J(i&hHV#پm<#[\$[\ [\ [\ kp, !i&J(i&J(i&ʺ5{'Iew)DQXT,*8 ̩lj( €( €( €m[6cj-ǖRD[-Q(uK%\9q(QEΝ9ʼn93u pK9a7X˻S(uK%JnRD[ⲃj5:wp!vI(QQQQQ`}?z0gKm{:&&&<<<ş2>ϏطM <<<<<<&&&h6<~&€( €( À3W_38 p:"*E"ְ}fQXT,*0odk8;ZL=;hbQXTq~O~WʛVck?ɏ!۝\{x~/x-lB"EŢbQ<57rE1Yq'8~(aEŢbQR;[{~ x>s Nlg#\gsXwlZ.O}Q~evskg>LY]>jOn}/c݉lbQXT,*E"ְqCg aۋoǞc ~]\}#u<D=Qnq^yqxǸg_y֯izwW=oOZg>~ Ong/g#Cey}5nO|Y?}~ ]<:[/ڏw2=wyXn\w?2JDDDDDDDDDDDDDDDD(,..&=>Ųkxs6i‰cG7D! ۷59tѐDDDDD4QL ?Sn9LBBB0M8~~e=& ITkvlaMܥ]̅?s\rI~]ܥ]H8?zUi[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-:vNEݢni[t-vjukW*D;  Ms﷾6C\!MDDDDD4Qβn$ {whDBBsa0 MDDDDDǏq4 iLn$ S'ٴhHB#;DITHTHTHTHL4gQ$*$*Da뫘9֮HTITHTHTHTH~7wqΟc&$*$*$*$*$*$*$*$*$*$*r`> >яriBBB]DITHTH>p??^z($Q!Q!Q!Q!Q! |}3ΣbIT8//<4t@2_~ k$_^y1D,S<_wk.ڝkmW{oy7OV,,,{0g,{fg.pp^1?wKLN1 qn$ 4iǸk97=E( !O>wܥ %Q!Q!Q!Q!Q!Q!Q!Q!Q!Q!Q!QaݚIiXT,*KlknQHDa@Da@Da-qvcY]F[-Q(uK%J.c8y`( >W_??sÝ+ycW̟i?wXGeV*\޽RD[-Q(uK%JUsپcG{ND€( €( €( €( Gt#<[j011yxyxyxyLNN2==-5.qQN>ÉsL+l޺S:q=s2TdO{&&&&<<<󘘘lrQ˛[(" 0 0 NX_?~JNX0`y6dXT,*X-&FŢbQXZf/&L;ޢʺ5$MT,*Dغ1|mcwq'_ΏxȒ$Kڼ;_ž%T-*EŢbQ^d&L֎7iԫ[3C *EŢ"Hxpw/nhs!tj'O<5io׏?ǞT- 9w#|}Σe M/w>_>8;8|_=ޜe&|91Sxb˱ XT,*EŢbQ5lPfDEbivU^o};︃=S־yyc8y3Em]_/~{n='fB\ЖU/qǝ__e_" 6<(_xsluo2k,3+w%S/˛Q{xgGyb;ק;KU \8wp#O><{E$bXD,"E"bXD,"E"b 9=b "gn}6D,"E"bI#cDD75<0MXD,"E!> }{yPD,"K(ǎD! z;" f/gy.fCy秧v0f^8^8YMԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSԪ>OSl+<,[DŒww;b4LkXT,;+Z Γ bXD,"0uvՓs$*$*ݽ SD,"E"bXD,"E"bQΰn$ S'ٴqaXE"bXD,"E"bXD,"0gט9֮PXD,"˥|[vۨ "E"bXD,"EbM+??'GĠbX>HE"bIT:;>/abXD,"K0?1s<*D³O3L3s?})o=Cx|`a}}c0v ٽ'.+)0 Lzqqz]vvvpivK4{ɉU8&Q!B֭d~*E"bXD,"EĒ&J'ΠbXD,ilTO~T,"E"bXD,"E"ְn$)Dnq~z4QT,*%B57sq($ 0 0 0`ۖ8pZoq˱,.-Q(uK%JnerN<ʁ}{0qD`7x~MO~NZ.g +?W~aV*\޽RD[-Q(uK%JUsپcG{ND€( €( €( €( Gt#<[j011yxyxyxyLNN2==f`8 1%n=߹6n6nm3D3'w_g}޹juxyxyxyLLLl69y(ͭ LQQg,ׯX\b%g,q0{<[uET,*EaXbQXT,*Dap鰳 DEŢbQi0bqaˆQ0T,*Ue80baEŢbQXT,*%Qa&={{:lŁ{xqpHEŢbQXT4I,.X &J"Ue40LHe4LHբbQ$FCF, SRX$aa4bq4d&)i"$I(MHĒ2&jQUFÔT-*EŢbQXT,b 7 b1&Ƙcb5*i2 SE`M!I1c"ip&1D4MSDk0֠Ip2&$j $j&ZK& )i$$14ISDISEXSÄD-XDcL11cL11cL11cL11ca~ǎf4aL11c0??cb1&Ƙcb=rzL&'Icb1&Ƙcb1&Z%zMN!b1&ƘcbD,GƯD!*07`v秧87}sgp~sgpn8?=ŅӜ>˹鳜>˹lPMeyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgyFgd"ibITػC7Icb1&Z ۶mezz 11cL11ca08úՓs$*$*ݽ֎Hcb1&Ƙcb1&Ƙcb1&Ƙcb1&ZLuk& HT8}$~ei`L11cL11cL11cL113??k̜? k'=cL11BZ}/{/QbL11cL11cL11cL\s ?~ 11:Hcb1&ZCqcb1&Ƙcb1s<*D³O3L,,,0b~3;s7m+33\8^87&ITuk&t"1&Ƙcb1&Ƙcb1&ƘcbT4U5cL11*bcb1&Ƙcb1&Ƙcb1&Ƙcb֮N&vSbQXT,qS'G!QQQ۶l1z[-gYwnRD[-Q(uK,;姗sQۃc( CM釿#/|?=z;|Y_JX˻S(uK%JnRD[ⲃj5:wp!vI(QQQQQ`}?z0gKm{:&&&<<<T<<<<<S~2{ea~v擏?&,Fo1zc7Bs0zc??)7ۗǟ1Oo1Oo1Oo1Oo1Oo1Oo޻rǟ5 a27FoޘsFo1zc7|s^{p^ye?|>7`7Fo1zc7Fo1G/k?O[ g?e7Fo1zc7Fo1zc7,-&,9xxAs0zc荗a/wxuFo1zc7Fo1zc9:ucw7Fo|'D9:7Fo1Gg7Fo1z͙e eG_K;˙_ő_^o'~qG~qdmc2͙9:7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zჅ/߾ >ݻ8eaa1z-7zV[JoJh >y~*ܼffffff+«_<]_~-_O_w?_o_>ƓݛﲹٰٰٰٰٰٰOÏ[>(Oe[Jo*UzV[eͣ}9p=eaYeaYeaYeJN[Jo*UzV[O}oν{XeYXeYXeYw9g>擏o~&wzV[e_}?IV9_+/!,",š k? 3GJo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[Joo'|)@+UzV[Jo*UzV2GOo~썗a^ۙO>k[Jo*UzV[Jo*UzV'?eFXG~Ŀ?o ÿo7?oO}D]EXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEX ?¢Jo*UzV[Jo*UzV2zi땗a^ÇoCXV[Jo*UzV[Jo*UFo|/xi땗a_Eo*UzV[Jo*UzV[|bm93a stzV[ <7gzV[Jo*UzV[Jo*U|< 7V[ӛ07zV[Jo*UzV[7n7|/ ċ/^|#/^88iϲ2e=7UzV[Jo*UzV[Jo*UzV[Jo*UzV[Jo*UzV[ _ }|wyq< ,",b9ų[FoV[Jo*o|v-U^y͆͆͆͆͆͆W>yW/nO//|w5o7o;#ճ_ݛﲹٰٰٰٰٰٰOÏ[>(Oe[Jo*UzV[eͣ}9p=eaYeaYeaYeJN[Jo*UzV[O}oν{XeYXeYXeYw9g>擏o~&wzV[e_}?IV9_+/!,",š k?)ϿxFoVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]|sfs,Q+J+J+J+U>y/~Sfo 2o|J+J+J+J+VG?eFXEXzp| 7\/p| 7\/p| 7\/߰^/V&aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/ՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]xB[ 2>ߖ_9huՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWzg>m2/? stzՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]9fѿτ7?VWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]iuՕVWZ]9huՕVWZ]iuՕVWZ]iuՕVWZ]iuՕ/X~o8}/|pwwG\/|ş>^O{ox',^ڃ|ϴJ+J+J+J+J+J+J+J+J+R+?/߾ >ݻ8eaa1z-7zV[JoJh >y~*ܼffffff+«_(Oe[Jo*UzV[eͣ}9p=eaYeaYeaYeJN[Jo*UzV[O}oν{XeYXeYXeYw9g>擏o~&wzV[e_}?IV9_+/!,",š k~ uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+B]J]J]J]J]J]J] ;xe߽-z^땺^땺^땺^땺^땺^땺^땺^Y>|w7aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa2ͣyoD]J]J]J]J]J]J]J] ~ +/ü sc|s>Q+uR+uR+uR+uR+uR+uR+uR+§<? m2'J]J]J]J]J]J]J]ʺ^y/x9^>/S+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+uR+u^/J]J]J]J]J]J]z/ ",fo|#/;/;>Xx`Ⴥ>Xx`Ⴥ>Xx`Ⴥ>Xx`Ⴥ>Xx`Ⴥ>Xx`Ⴥ>Xx`Ⴥ>Xx`Ⴥ>Xx`ჅvO!=k>=kϟ|$,bw<3녺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^땺^O|η/./}EXEXx;'xv*UzV[n察+7ٰٰٰٰٰ'Wy1>=stzk˗'οS8lg>m'?9߽. ;O>o_UzV[Jo*U<ǟ[|cYeaYeaYeaY߿xD+UzV[Jo*Uz|;ܻweYXeYXeYX{sc>o2{Jo*UF<1} ?9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9i'>槯=矡1߽>|ßxs<9{=Þaxs<9{=?EXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXş~;O/9{=Þaxs<9{=Þar#FoEXp?)[axs<9{=Þaxs<9{>S~Cn}荗a|Û%_՗xs<9{=Þaxs<9{=Þ/?)z%,Fkxxs<9{=Þaxs<9{=Þaxs<9{=Þaxs< eIDAT9{=Þaxs<9{=ÞaxsyWgy[$^ }|xvzVs()ݛﲹٰٰٰٰٰٰOÏ[>(Oe[Jo*UzV[eͣ}9p=eaYeaYeaYeJN[Jo*UzV[O}oν{XeYXeYXeYw9g>擏o~&wzV[e_}?IV9_+/!,",š''Dz۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲ޏg7P+aa1xv{s,-n˲۲,-n˲۲,-n˲۲,-S>^ &_>#闯sޏXv[ݖeemYv[ݖeemYv[ݖeemYv[?z9a/ܿ#ݖeemYv[ݖeemYv[ݖeemYv[ݖ~w<X/a/GJ~/;ݖeemYv[ݖeemYv[ݖeemYv[ݖ-?y|޻3$,͙߽=ϲ۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲,-n˲۲mk? IXh>rs>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>c>gŚE+C~ڏYv[ݖeemYv[ݖeemYv[ݖeemYv[ݖeemYv[ݖeemYv[ݖeemYv[ݖeemYv[ݖeemYv[ݖ->a5e/on[Jo*UzVBc#Wy676767676767^^}*O=GgNo*UzV[Jo*UNן|͆͆͆͆͆͆͆|~tAy'ʇǷ/*UzV[Jo*stn}iu_?{, ˲, ˲, ˲, xxxuݻDz,,²,,²,,½{91|~7[Jo*U{Ob_O aa֤EXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXht|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|͙*aaa9|r>q9O\'.|r>q9O\'.oΌV &mr|r>q9O\'.|r>q9O\'.obM",",I[\9s9O\'.|r>q9O\'.3X&UߜO\'.|r>q9O\'.|r>+$,",b |r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>+$,",;;;;;;;;;;;;;^r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\'.|r>q9O\' ,}|wyq< ,",b9ų[FoV[Jo*o|v-U^y͆͆͆͆͆͆W>yWgy[Jo*UzV[JoS'?7esasasasasasas;|]|PˠJo*UzV[GqsZ]y뗯>޽{,²,,²,,²,,9huJo*UzV[Jo9:>{7x{, ˲, ˲, ˲p=r<}'MfV[h'r~W_BXEX5ykbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚX&ĚXkbM5 &ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚEXEXEXEXEXEXEXEXXkbM5&ĚEXEXEXEXEXEXEXEXXkbM5&$,",",",",",",",šXkbM5&IXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEX5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM5&ĚXkbM",",",",",",",",",",",",",",",",",",5&/|;8eaa1z-7zV[JoJh >y~*ܼffffff+«_<[Jo*UzV[)ݛﲹٰٰٰٰٰٰOÏ[>(Oe[Jo*UzV[eͣ}9p=eaYeaYeaYeJN[Jo*UzV[O}oν{XeYXeYXeYw9g>擏o~&wzV[e_}?IV9_+/!,",šVo%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDoeaa1z-7zV[JoJh >y~*ܼffffff+«_<[Jo*UzV[)ݛﲹٰٰٰٰٰٰOÏ[>(Oe[Jo*UzV[eͣ}9p=eaYeaYeaYeJN[Jo*UzV[O}oν{XeYXeYXeYw9g>擏o~&wzV[e_}?IV9_+/!,",",F1h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4́@s9h4 }+ϛ#ЦHDA B5Nܸuoaa$&1E?q1m i 2ſDINڼ4=tǢ=\k]KyqFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnFQnS~E]Kp~]矱 7p#7.ڛ?x.>8w?}מx>x<<k_ί?5p#7p#7p#7~y<<|𭏾3>W?mnFnFnk' mƇqqqq[|oxջ}CnFnFn~~ɇ?6///qqq+>>/ɏ~HFnF+7wƛ|n~ÿ]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%ǯ|;p#7p#{|y|x>x<kOXs;7p#7p#7p۟>~~|x>x<<[|?ӏ6FnFnF&}1nf|!///qqq[oŗ__7FnFnFW|;oqqq ^>_dFnۍ/yM~;o_Ɵ?G?%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kp~]矱 7p#7.ڛ?x.>8w?}מx>x<<k_ί?5p#7p#7p#7~y<<|𭏾3>W?mnFnFnk' mƇqqqq[|oxջ}CnFnF~~ɇ?6///qqq+>>/ɏ~HFnF+7wƛ|nWW?m%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]}~~;p#7p#{|y|x>x<kOXs;7p#7p#7p۟>~~|x>x<<[|?ӏ6FnFnF&}1nf|!///qqq[oŗ__7F7|oۿ???Y|;oqqq ^>_dFnۍ/yM~;o_g~L7RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJo_~W?pp#7pkΟO_k<|G?aA 7p#7p#7.o|m|x>x<|oLJO??OۄFnFn|Ǹ}{?xᇼpqpqpqpo_~.nnp?<_W_x7#}c3ym^^^888888xyyիW|'|_ 7pcW;o|7+7~ȇϸ?8:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::?8^ׄFnFE{O5|x>xx矰 wnFnFnƏ}?}6|x>x<<ѷƧmp#7p#7sM>cܾC^^^8888888z/ zo7v|o~#~ox1o#/Gӿ˟3};oqqq ^>_dFnۍ/yM~;o_F !5Ys`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`/'_7_nFnFE{O5|x>xx矰 wn7_ F|}5fwOo?|x>x<<o}-ǿop#7p#7p#w\>oxo3>888୷/v8ޛ ۿ&?{w~̿/x睷yyy888W^g/O~C2p#7_&7䋯v#7v8A w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;pp#7p#7.ڛ?x.>8w?}מx>x<<k_ί?5pcGo _O6{GU_owyox>x<<[}=>|g|?9&7p#7p#ی?8888888x뭷{?W|:^{w ?˼>?6///qqq+>>/ɏ~HFnF+7wƛ|nFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFE{O5|x>xx矰 wdcuw.?[?{ {7_=6|x>x<<ѷƧmp#7p#7sM>cܾC^^^8888888z/_w ~_x<<}:p[ɿǿ? ~|m|x>x<|oLJO??OۄFnFn|Ǹ}{?xᇼpqpqpqpo_~.?ž'w˿_/>w˟+~|ۼpqpqpq«WO藿'?!Anv㋯wxoWbnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFn ΄'wf؆6즄$mX dNiiCh Җ,Y1ϑόgd[zIccٖ~X|oHYU[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joުU{V[joު'vz3}==fqݸnl7n7ۍO=sm{ߺeV;_W^s}/~x'Onl7n7ۍvfO{oݵjoުU{V[i/]`zwNrggaaaa<|WO}{>q{b_fk=K'<~]OrĝapapapwvvK=޻~1onoުU{kw|S>kwԲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺x޼qުU{V[jo՛ׯ{ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺Xk~b[jo[7oɕ-bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.uW?bݿioުU{V[joުU{V[joުU>IJ.ue],bY˺XŲ.uOlU{Vn'W,bY˺XŲ.ue],╏Wo\jV[~R>e],bY˺XŲ.uy㚽U{V[joުU{V[joުU{Vzu|ZŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.uǫ7_}{V[joުUo\敏W˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺'[7[joުU{ﵫZŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue]V[joުU{V={;ߞ3?!7ۍvfqݸnkwrݸnl7n7ۍCgËyKX>;Woof3/n7ۍvfqݸn|>:_8o{w[joުU{Vz=sK/꾻Sqapapap>+œ{GmuުU{V[joުUotϝySo+qggaaaEϾ9~۽[joުzz9ԳyZjY_˞?_ă^ǽuU{Vw;v;wn go~VmuyWn0=K^xުU{V[joުU{V[joު/y[/{9>B@@@@@@@~3o~ÏzoXǏ x=w<+^{}rMޛG_}7s[7o[joުU{V[joުU{V󦯟8ች]~w~{{ׯ[joުUoݸ]_?y cuy¹U{V[ʷ⁀=r]>y⹭U{V[joު'vz3}==fqݸnl7n7ۍO=soxЛzǿ__w+7Go/;z#'l7n7ۍvfq'|=u ߿pηz[joުU{V[Aw{洗.^}w_=;N0 0 0 0 >|+W'꾽U{V[joުU{>;|W^9Ύ08 08 08 ;;;᥋}]s{joުUZ;>s~g;Ao^8k#UUUUUUUUUUUUUUUUUUUUUUUUoݼKa}U{Vzuk>|Уq{洽U[ȷeUUUUUUUUUUUUUUUUUUUUUUUUx߽'O꾽U{V[joުU{V[joՃ8>>O>DUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUիWZΝ;N/ ^xjoުU{^ {3[k~~^zUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU}?˗/C{O}{VzЛ.^#Ç~mO}{V[joު'vz3}==fqݸnl7n7ۍO=sot{V{~vnwZ;w4O=_n7ۍvfqݸn|>:_8o{w[joުU{Vz=sK/꾻Sqapapap>+œ{GmuުU{V[joުUotϝySo+qggaaaEϾ9~۽[joުzz9ԳyZ7ϝ=c޿wvOU{Vz5;~0}~y>|?"_}9eoV}/yUUQQUICssܿo>z?#{V[O?Ã?vY=cPPݻɓ'}/G[Ao^<c* <-{V[joު'vz3}==fqݸnl7n7ۍO=sot{V[joުU{VzQOntݸnl7n7ۍvg[_7|9~M߻koުU{V[jo^xV}:Ύ08 08 08 0xa\);jV[joުU{Vz{{z _y;;;0 0 0 츷燗.zwcުU{V=hԳ}xЪyS{yO?)V[.c???OOQ;|qŃG}cEUwwN[}_K^vUU@@|_ ow[_֯_z[??q_ z=jV[joުU{V[joުUz{=y|OU@@@@@@@@@@cw7Oz9U?~/ ~muoΓ7_W>{V[joުU{V[joުUo\xx'ޞgϞ??{?޽=www]G~|doުU{V'xxѣG{{{?^U@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Ǐ{-z-O??qGO~nz]O8}}/G[Ao^<c* <-{V[joު'vz3}==fqݸnl7n7ۍO=sot{V[joުU{VzQOntݸnl7n7ۍvg[_7|9~M߻koުU{V[jo^xV}:Ύ08 08 08 0xa\);jV[joުU{Vz{{z _y;;;0 0 0 츷燗.zwcުU{V=hԳ}xЪyS޽{yO?)V[x}\_+v׿_o7|/˯\?_^_>[7~W>;T=9eoV}/yUUI⣏|( swwu]}/ GV[jok~⋇=z亮|O3<__}/~* ݻw=qǏ_Ç^pޣ߲joުy9ΟثGl[joުU{=ꝃow_vfqݸnl7:{ȧ/?^w}[joުU{V[ꉣG=>}vfqݸnl7n7ۍO}o}S' |7﮽U{V[joުUotgN{[w#s;;;0 0 0 Çrxr鶴[joުU{V[3y7|#8 08 08 0ޞ^;Ǐyw{V[U/_S>痞z9/_A湳g<{L$&1ILb$&1ILb$&1ILb{wzxy?[joު7o\w+~ҏ?~SU4G_;/%]jo]G_/GkK{OԻ/cǼK?oOfGȏX_ÇDNݣooުU{V[joުU{V[7ϾwړTMb$&1ILbUgNAos&1IL" ILb#_|ah~sqILb$&1Is/x+WޞgΜ1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$?ԩSn[aڵk~>~$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1IL"sswwu]}/ GV[jok~⋇=z,Lb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1 $&1ILb$&1Myկ??3?W=~}$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1I|<yЪwţGwV߷ILbݽboުU{޼q7I<'.}ſp+EE籷/g'.}'.}ſ_PG_;/%]j/ū?~~˗ͯ}|[|DM{|xww~ʏ__~GT=s]}{V[joުU{Vzp=hߺikՃz_ߜ'o\.`_Y7lw>$&;w|ay~zުmn{p=ުU{V[joުU{޸v<ʕ+3gLb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1IzW=qb$&1ILb$&1ILb$&1ILb$& AC{^zǏ; /^C$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1IxުU{VzO|G\]<ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbćZok^v7nyp> $&;>~$&Ç~[~_g֟'~' I{~w_|C $&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbgy ?믿_<}uU{V=͋yWUUɟI~#Gxm$&1؏}[nyկ޻wO@$&1ILbUϟz#[V[joުUOg|뻯O{h{vfqݸnl7n=ӗ/z;>V[joުU{V[ѣye>fqݸnl7n7ۍ'>os֛޿wުU{V[joު3t9uʝapapapa^R/o3?s/G#߾gw??'ߟ?}㨺{UOsު7^O ^758'pz]偯{n{gNs&7-k:`@.0 6O03x 9L0!!dvm`cIdcYC$K<4Zkw.IS |sss }pwũ~?#'n]f# lټSn;w#xGm"Gvmg?Zblݲk f f  gw/Y{`aիV2y#mOm 6`g8>MooEc0Cϝ'4߻xrrv3ٷGq\~}S3ayd!;BGO7pCb;w#xG'gIsLOO31111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111s7W~N`0,0ð   11111111111111`y>q$fLONGr!ρؼy31F3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333a`۶mc8pΞɇ9t`?;wcQ~AϝLMM1پm ```````````````````````````````````````````````````````````````````````````````````````````` ڵ/y{\y\~vc+q{ f, "·mquqWr饗tR.} W]=?>wnO}mV1{|9͡00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110 $֭[ڵkyg9{,/mU+ps #xG<;ocͪ޵׿\tE\zwャ_x Nfʕ\7rEqeO~/HJ aؾm5VN#xG;wX7i[L/֝xf1.}k7o$;w#xG;w[;3`43b43b43b43b43b43b43ٰ9v_xew#xG;w603wwsLZ iiii/_Α#Y?^ws#xG;w-lx9V\$M4 M4 M4 cv[65#xG; W~?~ wm45a`iV=p7Wy^8,tvO[6OFv=un\v;_vnO76rг23-qU7sG8gSbC;z;w8u.: 5e勧ʗO}o=eV|~+?wy=>y?xyzϞ2_8Uz|7x,>I>XXX`ӫؼq;ɟ=XXi+_}o|y?ǖ,W~k}O3{kɏ?78Ooq_2_Na [6obj#xG;wG؞Ȼ|%&WCE$xnc V௸տLUGz 3XXX`LoHv0{e~t203 G&#o?_?|=33pzw#xG;NsaLOOcffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffg7.fM-`yivǓy5?_Cx~cv3vS{^p,aa0 303 303 33ΰ]ϳz<ٿ?'N 9 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 3cm۶1={G&Ё#xGcGsql۶a0 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303 303س}'_{/㣕\O8}F|€afcf @۶|_o㪫K.ᵯ}-+oM w_}>/^ʿ=Y/m_͉{ affaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaf !"[kr^ھիVN#xG6xvlU+XXX`׮]\|LLL011E]e]>9yJ),,,`fww|[=Vlgm˸ϒ2gT1SrO>ı #xGS'OILQ=ǿy?㵻ȅ/_47{>'xʃ]k)tof/_…;_>}ij5Ob n'Ǐcaf .K5UWz;k^k_Wy }8W?I?S{k8rlaزi#kV;w#xGs8ǾinBo-bѯ}s [6~SeX01g7U+ b,, ^igxm08'xUt42򮫯ၩ}Sٳ䑆{wOyMwϿ*g:w< ^?N1 MO_ew|?z79 *b*b*9f8+K_C?Mo>9J۶=s3T1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULm۶1=sG&Ё#xGcGsr`~l۶ ST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1UL=vru<  /=W<3fqr[nb=s'x[on-Mo/Ou\upqM7y;?6p]Oo},gϜm3^7w;wc6VZ ,, 2_|1LLL011K.k _6n+|;LLLpws)VX^LLLpEtR:cK;{STaa3[Yj~4;w#xGuSe4/Yny g311111xbnw v`zFb#xG;w#xǺիYI^1 F3#F3#F3#F3#F3#F3#F3#z>~ cKx)]&xG;w#xGl3ӛyyKx7ԪlܰIiiia9rx7G;w#xG l†cLNN4 M4 M4 M099x. Y'WpG]ew>u׽9EUI",|cG#xGNt]FUQUܼ牰? ORgN.oݷ᳧ėGN},;z k3lJ[Xa]|gϝEU5Ob n'Ǐc0CU9iZ?i(۷8~E+o|=|9'.?O~Bu+nv-eNϣ,,,yFNƻ9w#ܱ=s,oؿw7?,f;'=_p1K^y_xl+YEUQUbC;BXh-bѢE[jno;;wqr8.d9|0SSScQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTy䩗/wsgI;˯矦0hw;yw.Ͼo}{ohKL?|3_{Zk̙3wOq_^>@9r3gVΞ9 /vj5#xGm[oh"-ZĢEX+qŽ?d\DgͬZùk9W;]9ʙyVxigxm[9w,}2SV|c\|wKHgRGIݍws2̝>ɇ=v68.K߱h"-ZĢEXh{z3Zr#xGy˙053ٲy3}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}J_+}}OOW~zb5>fkG^Ϯg9_Ϯg9{&wϿ͍_J_+}J_+}מ3'xG;w;ʣ'ke=LMM1ٺVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZk̙yvlka̹#˷^z }| }J_+۷moEn&--p5o榛^;mM7{nsݵe~ecٲƭ:xowG/;}??g^vzlY#/,t=s~VZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZ{s[k3-^7w;wc6^sgro_LLL011K.eҥ\}|_cu];v'xK/ &&&`bb .]E]IJeWʡ93?3g޼5VN#xG;wX7i[L/֝xf1.}k7o$;w#xG;w[;3`43b43b43b43b43b43b43ٰ9v_xew#xG;w603wwsLZ iiii/_Α#Y?^ws#xG;w-lx9V\$M4 M4 M4 cv[65#xG; W~?~ w}4SWqjQ\}![Yu}汧ֱg67+9~߶~u 'S˙uRPKͱ9v0;wq m&mK-Z j)r(>.|;e>ys|ɯ܏ПtB-Z j)=V-_$xws<8|}PKBr4sF#F>W ũ}3{UGJJRPKϿ˯~?XUj)Ṛ߻xrZnǞfDߟ7\(j)>u1{mp[]ƿcѢE,Zr>v^N;G;wqr86ؿ?x͛PKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z t8}È_6wƥK>-6gc<'^>o/RNm;xG#PKB-Z j),:(>Cܼfr-7om)~Gl:j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z [2bϞ=XC:;w1{(.ž={b<uVj)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPK|Ҧ5wL-xǼ+Oz^{ۼ7҆Z j)Rpa{27ラ}7n|ӯr uםDzely\{y\qӍnu=O}~pם{o|/]ݬY]f>ͩPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)̝>ͺuXv-< 9%7of ۷ʟsm33\|LLL011,]O}S<3!o~ N9?\r LLL011E]ҥKYlyᗿ$PZ }ϖMX iw#xGV#mi^ųܺ,f43b43b43b43b43b43bܲv6#xG!'!@!xDi=Wf'y+͌͌͌͌͌͌͌8#xǩ'x erLΉ>σ'ʧN|O ;e:q7Y|ռ9*G)9L3]jSl";ɟ=CL3])8x1?׾ʩ}뛜|ϻ?Gf/cslbfٺtt9L3}lZws#xG{bl9uh;+w7;ʢ_9+!"<[lf<3t9L3% {|k.K˙.gj)LoHL-Noox祗?\C;y Wx˔.s ? ǎǾ7,_~UWp8Zb#xG;Nf$}njc6oD3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3%<;{Xw8c`g33~7??{w`G̣ .xa/ǹw&x۫9 t9L38ݞ=O_u[-7M/~on&JQL3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9S4񘩩1{v&Idr~w#x챣<|u޽1Ӕ.L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9Ska-;YS%0yu[y?sNr+Ͳ .gr˙.gJ l<[</r~0Ā;;g+_{^;_7]{˖Dzeqݵq 7:7{[|͇>p]?9tp;r˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.g)]S[k3ϐ$e&VZ;M;ٱ}O9=}-l_LLLpןkS>uZ ]| N>~8\r LLL011_g?Yr˙V6oz5Oϝ&xG;wޱnj5Ҷl_<˭;oabF3#F3#F3#F3#F3#F3#o]-naLoHl;Bܷy+=8u`#~=4+w>+f^hfhfhfhfhfhfhf[as|i/<#xG;wm`fz3/x Z6099I44MC44MC44MC4,_#G~':=G>>ԷX!_|<9^s\Iiii&''~y[l♵k!#xGw~]uZhgi<Љls<3;u29iJבĩ'Ynk׮g!Ɩ-^d ۷jJ2[y_ozӛ˿KSS=N2]N$$} :?F&&&+u81K-]N$$$$ұy<?w;w#xǺH۲}f~,3͌͌͌͌͌͌Xu1컅]w0y# k>~;|{jSbfFfFfFfFfFfFfF|: ?Η SL;w#xGf7nU+ظa4MC44MC44MC44M9r0ǫnmp?W;n>O=6<ʕ+iiiarrxwu&Y;wzǾYgUϾY6xof+k!I$I$D2˔.e!K$I$steI"t9%!I$I$I$I$I$IԉY#xǩ'xĻ9DDDtm 7{?_e5ly\y_[~w7~'9%DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDrя3p rrDDDDDD. yz%~4;w#xGuSe4/Yny g311111xbnw v`zFb'x=w|Q&q>pgX*+W099I44MC44MC44M$/`M$[6Hxgq~r$Hl=ˡWCKph-Y¡%K8d ,В%ZCKph-Y¡%K8d n'q8[$HlI/cj#xG;w#xG;w̖LyR:b"Eb-[$Hlؒ'`zFY?bz&.#Eb-[$Hl"EbKn')$IDb-[$Hl"EbĖǎ=v;w#xG;w#xGyyxw7_cٲX<-U زeĈ-[$Hl"Eb-[$Hl"Eb-[$Hl"Eb-[$Hl"Eb-[$Hl"Eb-[$Hl"Eb-[$ m:T]u +/S(alv<"1ATJҸ,.;BHIvqXvk#@A!hX Z}\ipu\Wipu\Wipu\Wipu\Wipu\Wipu\Wipu\Wipu\Wipu\Wipu\Wi=y͛7y׹u[˨7bX{ϫ/7|uu>?_6O}kwq5ݽƵ׸v^˧or;|oSO ,.|_ϟW?_k\{kwq5ݽƵ׸v/37o5E,bX"8pw>xey-J)qvvgggqvv"űoଠ80bFo'o|M7'|o|M7'|o|M7'|)?#F̈1#?)wnM,K/>i0bF+MƒOyX"œ_D#...Ν;F1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČpӉӉ/worqO' c/i3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈9/y&:n֛˨7bX{ϫ?׌_]80bF̈1#fČՉ|__8pu\F̈1#fČ3bF̈oވE,bX"7o|p=_𝏾Swk\{kwq5ݽƵx)}|I?C~q7'[Ooͫջkwq5ݽƵ׸v^k˿Ծ[o>|"E,bX4ޥs՗y筷(pvvgggqvvggg̣Gu;?S;?;|y/)?o/SJ쌳38;;쌳3J)\\\{\޹ͭ9%"Űo=X"œ_8}t ...X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bp'ND;qu^y?Hy[?"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,F̗sM^unݺz~kz#ň_X"E,bX"E,bX"E,bX": ~W_F,bX"y5~wK.˧x)|.˧K߽||ĝ_]훯O_wo?%>_W?럼_Wx)|.˧x)|._}_{ǟ7o5E,bX"8pw>ܸ2J)R(PJB)R =ܹ/Wo9 ~?{C?s7yy(PJB)R iƍ,wnssN E,b1,?[=|a1b>_9_]:VXcuձ:VXcuձ:VXcuy#Φ?E,bc ձ:V}QG!C<y?QȣG!C<yҿXcuF_z;&VFձ:Vǎ>@z=|>@z cuᗿxoՉE,bX"E,bX"#w9 _]:VXcuձ:Vgş޻0b޸i`uձ:VXcuNo u'?+#Xcuձ:VXGp#bX"E,bX"E,'_Po|\+7nƍcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcui}HXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuչ}67n}H;vo+~E,bX"iK!V||s...₋ ..._}x$\]j/o~??w~7npqq\\\pqq7n㓥rmn~)!E,'W|o=<\1,F̽?}cPo7 zCPo7 zCPo7 zC޸~^/X"Ǿ|~zCPo7 zCPo7 zCPo7 Ʊşpy6:%wzCPo7 zCPo7 zCPo7 7uX"E,bX"E,Fw/yg?; zCPo7 Ʊo⏹޻_޺/ozCPo7 zCx?{yy= zCPo7 ƺ,p.S./=c zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7ɗܽ{K>x}}/~q7bXzC^zzCPo7 zCPo7 zCPo7 zCPo7x F,bX"y5Nk/|\?!~C>qeuw4B,b zC" y핟~{S|\?!~C>q=o&E,bX".އX#~zzcX=zcX=>.sN,bP"VGk߿>dX=zcX=zO/x;9X"\wrŰŃ?g? oWlOǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾx? 'E,b~xgƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoF;6|~+~~-^ɏX9c8c8c8c8c8c8c8c8c8c8cط'}=^ɏKF,bX"E,bX"g/5ۓ/iƱoƱoƱoF;6|7t]G~OC>x}{±oƱoƱoƱocGyW_XoK?1' ǾqǾqǾqǾqǾg_oKbX"E,bX"E,ڱ7ysڱN;v}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7};Çܸ*]/X"88 _<|@o;c7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}7}m7>|./ǼyF,bXwnsy6wnsy6wnsy6wnsy6wnsy6wnwYۿ"E,bX4ޥ~>|;s;s;s;s;sw>Xcuձ:VXGpy6wnsy6wnsy6wnsy6wnsy6wnsy6wnܼX"\wrŰz?? /s\&21Leb.s\&21Leb.s\&21ܼvX"C^?Ϙ\&21Leb.s\&21Leb.s\&21Les~wߣ;K~[3s\&21Leb.s\&21Leb.s\&21L^ɏy؟|I,bX"E,bX"E,>x_&21Leb.s\&~8^OKڱv[2Leb.s\&22q||z#ۓ/_03Leb.s\&22~&E,ba5GK/s\&21Leb.s\&21Leb.s\&21Leb.s\&~p?ɏx_=yL,bX"yUnx[s[ܺ89.ιuqέsn]s[z7^un޸׹y:7o\ܼq7sun޸׹y:o\ssn]s[ܺ89.ιuqέsn]s[?;o|M,bX"E,N#.qqܺ89.ιuqέsn]s[ܺ89^?獋sn޸׹y:7o\ܼq7sun޸׹y:7ϯskz[ܺ89.ιuqέsn]s[ܺ8ܼ_~ӉX"\wrŰE,='.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʧ—_юX"<|'.uKe]*RYʺT֥r/>@ E۟Ke]*RYʺT֥.uKV'E,bX"E,bX"1uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*?Yx!X"E,bw/OXʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYg߾$E,bX7?zO֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKOoOE,bX"E;vFiN#F8p4iN#F8p4iN#F8p4iN#F8p4iN#F8p4oN"E,bX" iN#F8p4iN#F8p4iN#F8p4iN#F8p4iN#F8p4o5E,b1,?[=|aX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,baqzy~[='W X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX Os;zy?bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX" 80JTT Z @JM^{ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZY<"eXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXoY|?VYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYŭ|߿o|?z~yIENDB`idjc-0.8.16/doc/Makefile.in0000644000175000017500000003613312711167210012256 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = doc ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = index.html tour.html tour_main.html tour_jingles.html tour_output.html tour_preferences.html install.html install_standard.html install_build.html install_first_run.html tutorials.html tutorials_icecast.html tutorials_shoutcast.html tutorials_voip.html tutorials_streaming_aac.html tutorials_jack_ports_demystified.html code.html code_idjcmon.html contact.html main-window.png jingles-window.png output-window.png prefs-general.png prefs-channels.png prefs-jack-ports.png prefs-bindings.png style.css style_ie.css favicon.png site-logo.png all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/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 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 installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: idjc-0.8.16/doc/tutorials_shoutcast.html0000644000175000017500000001777112711160237015233 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Aims

In this section I'm going to walk you through the procedure of setting up a Shoutcast server and then sending a live stream to it with IDJC. In addition I will demonstrate the connection of a listener to show that everything really does work.

The advice below is for demonstration purposes only. Not covered are best practices of locking down a Shoutcast server for serious use. There are plenty of specialized Shoutcast hosting services to take that burden, for a price.

Obtaining Shoutcast

Shoutcast may not be available in your Linux distribution. Not really a problem since it's available as a presumably statically linked binary from http://www.shoutcast.com.

Setting up Shoutcast

Having downloaded the version of Shoutcast that's right for your platform and extracted it from the archive you should locate the Shoutcast executable called sc_serv. This needs to be run with a suitable confirguration file. There are some examples of these in the source tree as well as a configuration builder. For the sake of simplicity a minimalist configuration will be used for this demonstration.

Let's use a basic configuration file that we shall call sc_serv.conf which allows IDJC and listener clients to connect to/from localhost merely for test purposes and contains the following text:

logfile=logs/sc_serv.log
w3clog=logs/sc_w3c.log
banfile=control/sc_serv.ban
ripfile=control/sc_serv.rip
password=changeme
adminpassword=protected

Let's run this with the following command.

$ ./sc_serv sc_serv.conf

Assuming you were not dumped back to a console prompt the server is now running.

Configuring IDJC

Start the JACK sound server as follows.

$ jackd -d dummy -r 44100

This is done so that any media player, even one that does not support JACK Audio Connection Kit can be used for playing the stream on this machine.

Run IDJC open the Output window from the View menu. Click Configuration so the configuration section is visible.

Click Connection, then New.

For Server type you want Shoutcast Master, for Hostname, localhost, port number should be 8000 and the password will be the default password, which is changeme. Click Ok to add the server to the list.

Click Format. Select MPEG and click the right arrow repeatedly until all the option boxes appear.

Click Individual Controls so the controls section is visible and click the button that says localhost:8000/listen.

If the button stays in you have made the connection.

Streaming some audio

Click the down pointing arrow on the left media player and using the file selector add a track to the playlist. Click play. Make sure the crossfader is set all the way to the left. Make sure Stream is on and DJ is off. You should be able to see the Str Peak meter is active.

If you can't hear anything right now it's because DJ is off and/or you are running a dummy JACK soundcard, which is what you want for the sake of this test.

Join the stream as a listener

$ mplayer http://localhost:8000/listen

After a brief moment audio should start to play and within thirty seconds the listener count in the main IDJC window should have risen to 1. It's possible to add more listeners up to the maximum number currently specified in the Shoutcast configuration file.

idjc-0.8.16/doc/favicon.png0000644000175000017500000000133412711160237012341 00000000000000PNG  IHDRabKGD pHYs  tIME  8$gtEXtCommentCreated with The GIMPd%n@IDAT8˕kAǿL4k4 X!Ek I҃қTATzA'xЋPJ`1^-(D(-)M&Ɍ$Up}<='5@>$#](RVgN ɩ7x`00Gs˞JB)D" Ga;T-1(+8žRJ}q  r 3vmE?u} !`{ jc PJ5]g?H$dƒ\*J۶m۲\, cz_EQxKLv B=ȤrczM>m&&!!DC 3p@/ OX.!D%KR؊i`>t`#y k| c+^cht}*g`Qu]V/0ծ9 ޮڊ=K0S: sYټ%&s^j4w%˗;6lX59/ Rr-RP(4(ʹnþ;{?oIENDB`idjc-0.8.16/doc/prefs-jack-ports.png0000644000175000017500000145120312711160237014113 00000000000000PNG  IHDRӒgAMA a cHRMz&u0`:pQ<bKGDtIME   JCIDATx#}if"u^*e{%\vK岱]g[-٦MIf7Ş&AP@h l 59!d^)dzsssmvۿo[{/?`y,Q< G:G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(Xˣ`y,Q< G(X8q'Ns8y'q9N<lj(GH-9[?wt_0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$0>GH #a|$t^g|g|³W>+Ox'<{ ^o a|$0>}<{<{ ^g|³W>+Ox'|H #Gu ^g|³W>+Ox'<{}:kr?<\o_xsCϿ[t^!.}7=M||9 q.O]9{#KMx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mxx7=]:]:]:Mx7=]:Mx7=Mxxx7=Mxwwww7=Mx7=Mx7=Mx7=Mx遳7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=Mx7=MxޥIFŠ?M|y<=<=<=<}{<oz8;=w>W|y<=<=<=>_zyG!7=M<ɷt;Ot;Ot;OtϗOC֜hv9s[/mn?zߴ_?r$5ɰo?~?1~g@kњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IFkњd&IF`=ɞ_C|c/lx|58;8; Ɂ$uqOc<:PqGkњd&g'g;|ȣyt!iM2Z$5hM2Z$5hM2Z$5hM2μ!>&_mW7|CL2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$5hM2Z$ŌJo>rތs/so89s Oͣ/liM2·Ň<'F ν܋ ν܋ -x}?m#G[ywp7{qx9^\pfG&Tz+\x_z_~?{9sqOs)/|3qqw3\(]?>Ow9s19i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=h(~=~kz5ONyro㣏慔| |?I7(>:<g|;i ?9īk<|ㅏh^83hM2ZŌxOsŌ$u1xl?$=uŌ$u1=xϙIFkњdiњd.f99s15hM2ZŌ3=xObƙIƙ{=33ZŌ34{=qƙIFbƙ{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i4{=xOs9i=~ mNW~@^??';vjMs9>s:_wԾﬨ}gE;+j]qrwy߷(S=]X{<[w<5O}ʧ4_m !}:]so4{NK~Əo4G,?|3qگ~;_#]3|_kpKc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;юhGc1hv4F;}''c~ɕ_海zS_ly)uͷIg,f+hũ:Onq}s#^J2\Io}%<ԻI_@N?p:{'a=/&gcʽϼRsmW$oN}nQc>c>c>c>p ׸N>?pWsxk<5ѽ}|p (Sю.=;-ޤL}O^$ ̥i^8QAcxݏs$G{'_?;g>?GGdo?sg?˿fԇQnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-o~{\~?*B_-/OEo3o\彟5'~!1μ5|.oJ]Dsoc?ᗿ h]#oq[߼ŷ_Ac񣛌޼w/׃ks-? |ȥxOɧ [ _soSp~gd-obƜ|O]/x!9ަؙ<.\[߼[|r7οÃ農f$޻qFcW4{s7ƅ 篬;/xzknԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pK}>Rnԇ[-pcÏ_ӌӌӌӌӌӌӌvov5G /XOW}G_v#V|yq6O9?އ{x|D湘#Ï(?7npg'{j w1Ynv~wG?C;; `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6\!oگQ[\W/yu꣏_|+Xy2U3^? ߻Ʒ!o3vb7?̅޷cK=.}oCm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j `Cm6Pl 6j-wOs9i4{=xG{߳pMmx9>ǯpڎSOqe3/1x6Pܠ6P/yZ ނ{׈9pFsSm_~:G(_kOIm6p:\w7shwTk _}E~C+5Պ3/(~[Tk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jMsqWr:_*B_vR&O~]狥WI~ n.ngΔP}B_߾߾5jϾ̓(~˗ޥ\g)j'^Ow7k0l08 O)t Wһ|*_9{w~2 6o~Ft_(هJkϾ=g_52_lk|*o6[%N&ϹZ sWgSN>&_mk>^mxCKO_/J7q}Tk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jM_STk5jMosopw=NN뙄rIܩTk5SNu1㋵x-_ƔssK _zeS9 5]XN YuϾɇ%_^Gss9Q}O߾E nܽgqG;|&]yeo.ߧUk/~__;೟,=*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q(8~++$?Mƛ|_/sgu_E&9V;2_Rΰy_Q魨nrk{7Q5[s[ڜǂkU{ok/%|{\F>\0O;W{|{ůrڇLn &_|uY\c?&ss,~\!.\M\Ϲũǯ5g|^s<7GѸ}5k9\W7\z{Ź oc`vgNF\]L/+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Q魨VTz+*ފJoE[Ѕ5_{" <–WFTH*tH*^+_31NqTk*NJo\ŷЈsWuNTG |.ܩ󔟛Q魨^X4^מzS\]I?>w7_ kN/`oЅ5ފbgo{ŏ8.)?b;?i/?;|~w;;_pA9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R <.&痜|M4?{ _xe}{5~{ok/%{ g񗬮˟<㷋C{-J|;Wr|??OWkl/{ο=s7؏80Ͼw6?m]>y?9Vk|\ϸyzH)O7*N]N^oQ|gC1y_/Wy㟡c&pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pI9\R%pIzM7ߘ'|_/X+K yNkߤ PxqnƅW֜9?eͥ{ywϝ:σrߡ-Gks[zn˿p?Ӊ1I9.9.){wYO4};s'ߢ ^y2F/Oga?!.|:ֳ2Sf~\~cN-x/~#O,9xS%3oc=>e\_|7οy~z_WyAz—Ͻٗ>G?EZs30Sf~\~cΣ31\|۫Wx]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u JRwA]P.(u J>x_e3/cy˘g^>. ?ה D9Ï8?}t}+}+]N7.s:\S町 ﭹ+|x/?6&Û(_yoR.p3~}޳<>r{F3ؙS u5g"v뱗[udQc^+g _"z2|+A3ؙSlkOy>.N{N3ؙS8Ufė[װs9 ,*w?w=qc/Uo|w}35bgu^G#z2w7k|;ec39 |Ž]Fenɽ|;ec78;ec3<:X]gb7W+h]]N7/qףD©bgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;s9ΜbgN3ؙS)v;sNw<˗徧̧?????|}b<_S̩O=~=~=~=~=~=~Y ,=Oؙp͗<gS}} ={6 ̧g_RRwI39ߺm,8N{ӞS ^u |?PR/Vz=ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip3 =ip78u8:Sop )kW'CNT9Qr:DuJ 7)u8VK}~=NT9Qr:Duȉ/ϟsx8%]X}ϕˉ!'CNT9Q|xk<_s{Ӟq ~}޳_`)vb)zUgT{Yt8937;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H:}/^O\kJ9u>R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R Tkzye31\h^۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶ٶ϶}mm{mlg>۶a{/ݻOE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"؊X_[o wygμJ,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,N8][o2wdn&s{7ۻMn2wdn&s{7ۻMn2wdn&s{7ۻMn2wdn&s{7ۻMn2wdn&s{7ۻMn2wdn&s{7ۻMn2wdn&s{7ۻM~{/>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b6׸֛y]w3X"E,b 8vtg0{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =O3OqQ`~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠ==?շ?\e| voc~`;71 voc~`;71 voc~`;71 voc~`;71 voc~`;71 voc~`;71 voc~`;71 #|s< =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1xbO~cGX^\'g͠c1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc4{{ٮܵs~v]ٹk?;wgܵs~v]ٹk?;wgܵs~v]ٹk?;wgܵs~v]ٹk?;wgܵs~v]ٹk?;wgܵs~v]ٹk?;wgܵs~vk k $5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5GG [;M{9nYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5v0۬94YC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5vYC;khg 5lVybODK,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXllqۭ73g^%E,bX:ɞ<:MESOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4ͦ%|l4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4SzJSOi)M=4S66 n^{uc ^<ޅ 7,7,7,7,7,7,7,7,7,7,7,7,7o8fp̾aaaaaaaaaaaaaaaaaaaaaaGC{rY^_'/F0iB˯SLM˖kt 'Oӯ'9:9}3ea4=AW˯ӯӯӯӯӯӯӯӯӯӯӯybΐӯӯӯӯӯӯӯ㿾 K^::<]zzJ]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UISOlUI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]UI]4cSꪤJꪤJꪤJꪤJꪤl6MURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uURW%uU2-<6݉E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bmΜyX"E,b ${zl*T嘪ScrL5Ԝ5꒺ScrLU1U9*T嘪ScrLU1U9*T嘪ScrLU1U9*T嘪ScrLU1U9.Xxa +L U9* G:9/lqP_NnBʩWӯq+/rhFٜG~f:*T嘪'f 'f 'f5.ӒfJ]1U9*T嘪ScrLU1 f<-5SrLU1U9*T嘪ScrLU1U9*T嘪ScrLU1U9*T嘪z({v?J5PcrLU1U9asfL1U9X]_`4ScrLU1U9*T嘪ScrLU1U9*T嘪S6z:*T嘪ScrL9N̈E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5nfpםwp̫zIDAT"E,bXX'{crRPN IA9S9w|6be}tRPN IA9)('夠rRPN IA9)('夠rRPN IA9)('夠rRPN IA9)('c6'_>hZ2d~SN IA9)N ^z|?9.W\%%դrRPN IA9)('夠rRPN IA9)('夠rRPN IA9)('夠rRP;*Nya8_(rL9)('>{m|뛷qwzϱV;EtRPN IA9)('夠rRLWx`Wu奵/_g:)('夠rRPN IA9)('夠rRPN IA9)('夠2ݏ0rRPN Id4d?WsU9c;CژjRPN IA9)('夠rRPN IA9)('夠Ax夠rRPN ň;1#E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b6׸֛y]w3X"E,badOQV0o0.Fq>~q\|ɕ\mk/q/1)#ňq1b\#ňq1b\#ňq1b\#ňq1b\#ňq1b\#ňq1b\#ňq1b<.{G_ǵ~'pم_ј1.Fbĸ1.Fbĸ1.Fbĸ1.Fbĸ1.Fbĸ1.Fbĸ1.FbD9Y?~KƳ1xĸ1.Fbĸ1.FǏ'yW_}Μa!UG~rST+Ov>r7C&=?r!_^fi*q3W^1g_h}MfSp|kyёy>s|)urqyWpCf߿#opMMqΧ̏~=`~sn ֫\.ٿο{r1ԓy{/ 7~?s1?ܳE=o9bĸ1.Fbĸ1.Fbt?g>y8~5WV#ňq1b\#ňq1b\#ňq1b\#ňq1b\#ňq1b\#& V.bĸ1.FǞW:dvo_`u1.Fbĸ1.Fbĸ1.Fbĸ1.Fb#s\r%ňq1b\#ň=0݉E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bmΜyX"E,b ${zr|ebcbF1Zg2Y?|K/;yɄj|#{1=]|6oۻ )VO~m筼 =VFׇr9 h:#xyňbF1Zg2>N{WOD*/<;.=o;}c|> y[wiF2};Geo{m.+? 7\z%_w%xY~:ű/r; 壬Vyjv.9zY[~/x/o}{:hbƱc+w+pWfT:_s5$e}_$~4avѹ/i7q'ORl 'JG_xӧٍS_<6O͓9 w/]o{}<ڱ|Wp&>s7!}gu!ן1ٷAhۣz\|/x,1cӧ9/{5ۮ86!{g|<>s?-F>qmoe'W)c\}{y>培&{W8ЏַK.P5u. yla5hqq߾w_rW_~g뼰w;w\qy :'޷/=,[nG6 oz_w߿/| 7 k5}ČX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"؊X_[o wygμJ,bX"u=G9vtU6WX_,ρ /xݼKwƏOA-?7[ٵ1~oקy!w]|0q;qS ?#SO= 7q=1r>pnrn91bc}U/c56WX_?}97~VF#Uu&1&\w<'y9YXy|&~pw9½;ݟ痷\ϹgWVxz8ҫ{cv9V7rsۣK'BOy܏no;g'X_2ַO}Gf+/.dyUUý=L1Zcc}uKg}z+eOCwp=|-?\h~%Ώ^?c|/︟r_xng9.>Btɳ?t)?gwp{pnn|_{9|ws3cGl*ˋ ux_#;~UV=︀{xvo;l6n/矽<~w1֏/ғbn߸\w1OOpqѵU֎v|c~{v?1֎v89VY;FkKs+}jzחxW7sxze/N}ל!cyj'rzy~\Wo&㿽OO.ǟs._9t֎v|E~u#˼iY=qo]}7roŹ_ƅ_9yxðf~̳OPm6>'uW}q{+?tQ-:qىUnjnφNSآ:.,>'>yuo1νW,Os'OB]\{Vh|zsϼȋ6XWyOb#k+L_X;O|7s?z#gs5x \kyk!no->gξ=~+?q#O.3Y=/.7y\5 k#&|/}<9.{\X[f/s{>͞ Wp΅WrWn姿{GY_]a kWX_=az>1֎v|U^9/ȋ+ '.?%?r% 2Oksxz)v/eemCs|C~f3^_`棟g>o=1֎v|+_2G;X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"[1kvͼ;̙WE,bX"N(#XY^dey%VoO~X=vb)r%mo?/p=7\%9#o?c2G_z\vW|| sö?f;9]dG+?>yo|nY\9ʱEV9vt/9vtEVX="wR.Oya̱K,/r|󿺅ν k+ խ\tx|a/?s\ϳ횋/Y?Z>±㌎ί_'?]|^.x̽pGx驟sYoy|v |o=OwseQsɗw2 8̱EV.s˧y<'͎rUO˶-2ߺr9~)n νr.' ?7//||b=η|a:3LPWͷ.)vGL/r퇮'O,3iO1m6 /ͱ0-GW~._r~8ӓ?`ߑU^; Ӫ?ȱK,/rtƧKwшK.xG{8r v;r'S{g]>η>}%7K;h+w~%ﻂX[Y`ϯYѷW^~ǖ9"ǎ.q~A]beyˬˏ?C]e羃?'>y./,w7qgpq|9|垇YZ9Ʊ\?W|ko;v?%q[?ď{g~w;W^|#}q]{ߟyq[.b#[Sr?#7t>?6!c|咋ʎ?ptKC. YY^ xчYY^ҐKCV.oM?=sc{ose2G_s>˞w˿'p>=~z|ٿr즫u3x{aa-98r/ѻsw5{<ܿ#bw?xџr{Ǎ?2G]pxa^~4/+>S,=7:M34e3KyP ˇy7s k"8ht?ˣO-25̔-^8 KƳ04M34̌F}{ʦgpx4ci&Ki< vl?o+֦jþګ/SU5="G]ZbSKԾ<9|~G{s}.sC|=?ٹ;k?vp_xGoɽ7}Ss~֎>7>u9v>6>{ٳxQv s<׻O|}l>VYYrti"feyKCV.3|>}/w߽\u>Wn>z۽7}]w/9|[?>~q3~0c|]}^nnn8"G]rti~DK,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXllqۭ73g^%E,bX:I#9tX^\`yqyqÕ-ow/|K C]ӛȻ/ ? /=_yE>_=< ӛ'>/s_Y^|7\{y]\`sO޷o|˻cm߿,,/Gؿޣqtiˋ ,/.:ʅ|G˞շpcKsշaz;zodzW}_?8xOxqy/;Wn O?>{xC]\g~˵]ǃ/fշ?χ&sogyrU7䑃gvqUso}|Wrxq=RE^ɵ_^W_ogqM?fGX^\`yqŅ~A-E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bmΜyX"E,b $ݏp, 4<K#, 4aGXfx Yaq rA>3<|Ņ#, 4O.|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|ʗ+_~|υć+ ݆n~f٬>?^}dY][xޭ٭Wk ݚznf]]}dvbY][xޮmV6k ݚfnG͒v~bzfn~a۰m67߱m6w+vϻ ݆n~f^۬ح{lVٮW<6w Mfͪya۰mxlV٬z݆͊Mfzn~a۰mmVJV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-\Z?__۷Z-ZhjBV 7gyޮmV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fv?[xޮmV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊u_3!7oyvϛ{޼7oy=oyvϛ{޼7oy=oyvϛ{޼7oy=oyvϛ{޼7oy=oyvϛ{޼7oy=oyvϛ{޼7oy=oyvϛ{޼fÁe̿+vnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnf?o v5ϛ͊fnbY۬mV6+k>ͿwOW>}ʧ_+>|OW>}ʧ_+>|OW>}ʧ_+>|OW>}ʧ_+>|OW>}ʧ_+>|OW>}ʧ_+>|OW~7b1%͊gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gY/oٮ{gٮ{gٮ{`Y]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳY}WZ-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Zhj*?_w ߾hjBV Z-Z߾=߿cٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{v?<=omVl=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]>oqE,1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ1fcƘ!&C?_۬خ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{gٮ{fny~fٮ{gٮ{gٮ{_]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]l=uvݳ]r7Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4Ҹ^Kzi\/q4ҸJV Z-ZhjBK'~_7|vBV Z-Zhj3k00000000000000000000000000000000000000000000000#?0#lbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b1/_yxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx7Ga>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a>a> b`Y۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbY۬mV6+v͊fnbYq<?tBV Z-Zhj¥U~/~}jBV Z-ZhP˙8rOܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}O8X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX 1i>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ4q&}Oi>Mܧ41}F-g6?cB,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ba]3oLV Z-Zhj*?_w ߾hjBV Z-Z|0X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"3LV Z-Zhj*?_w ߾hjBV Z-Z|0X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"rBV Z-Zhpi~įK~onZhjBV Z-ra>cB,bXzB+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3iL+gZ9ʙVδr3^E,b?}|j9jBV Z-ZO?~׿%o÷o7Z-ZhjBV j901 !8xzo{-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-trA\-߰qE,b/@-gZ-ZhjBV VOWoFV Z-ZhjB-g3!"pxr<왾}6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pnmq6Ɓ8pF?cv#E,3LV Z-Zhj*?_w ߾hjBV Z-Z|0X"[N/FbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb'>F,bXg?P˙V Z-Zhj¥U~/~}jBV Z-ZhP˙aE,!^|"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"O||ۍX"ӗg3Z-ZhjBK'~_7|vBV Z-Zhj3bXC83ZδZhjBV .ӏ~/~ۍV Z-ZhjBZ~?~?~?~?~?~X}@=Oo;?ӏ.b'>F,bXg?P˙V Z-Zhj¥U~/~}jBV Z-ZhP˙aE,!^|"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"K?K~qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqcy3q u=˟{~O?Xb?o/mΨL,/wLn"ş|f>ijBV Z-\Z?__۷Z-ZhjBV yXbyH,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bQ˙wOyK9Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Zhj:'bXXW3+++++YnK,b!?,x}}W^__y}}W^__y}}W^__y}}W^__y}}W^__y}}W^__y}}W^_A _/b'>F,bXg?P˙V Z-Zhj¥U~/~}jBV Z-ZhP˙aE,!^|"E,bX `X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXXW ]/zA ^tp4lX"E,bX"E,bX"E,bX"E,br7?ӏZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV ݉E,ba]^__;߿|߿w;߿|߿w;߿|ZX">>ъ\:E,1o]|xG79'?|]o;G+V࣏XV>V+⣏VV+>##V<V+bS_`Xܺq/E,bq Μ~t1]Lt1]Osڻ|c>t1]Lt1]L] Ξ9rbX.åzG"ͷ_gkAqS?/9ƫbiX"y񙗸3w+ogys\yX"X;ʟ 1HђE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b œW裏xꩧc_~łeL,bX$ƙ;/_nwohEnrwW?2|Y|u^|v^N퓈X"E-8{In^t1].w6or ػ6*]foMn߼۷cw^7ylmݡ^ܾbtag6۷or&u۷nqowb)vso.woqun߾bwM7orMv2ǝy;q]fQt1m`nou[[Tu[np-2]Lt1]Lw[:olLt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]LŝM^x>}bXXмcͿx{<࣏>o> Xb7yu"E,nߺOе`.b.i_{<{G8>>b.b.k3Y.C,betW/_X"||ɇYm/%Ώ=oⱯ] &E,\3>?K;Wx'6ۿwwwY.M,bX$K{a .[w.W8"\«ϭYx~3O뗸Wbm^{i]_cY_|9o:<$Ͻp{gΜfs[;4;ok<o.{u[o_ṧϲq)^6]n^yO<Ϭ٧xWug_}'e>ؽ>ˍ{Lu>{\ye&m<ͫ_bg&^yg8ο]Lt1]L7k\Iw3]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lw7ygE,ba׾ݻ;Ï+?8oȉ79\}ă?dZ7׉E,byl<>~O˕X=s?h:o??w'{'4!{|џg o~~'_W"/} !˘[7ss?>"E,nߺOе`.b.i_{<{G8>>b.b.k3Y.C,betW/_X&\q㍗xM^y7ֿw+6_ݟqK-bXܹ~o\7{\{a^pI,bX/S|8&;WO̝"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX">p9y$}>O\~,˘X"ɒ%>?}m6>|g~ xsr_?Ͽ!K~o|['?+wHL,bXbgkL7S[7y y+u}^| ]z縶uŽ-nbQo߾4wyy[,ؽuywqO͝]鳼y[o lnsxwfڛ{9ݼGp-.˭e^xEoms9:{[yiοyuέmpނi5^\]w6yo/?su8_pxܫܾG\;ib.gʍMb.b.b.b.b.b.b.b.b.b.b.b.b.b >O,b ǿUjŇ~ȟ$=tsx\¿W9}KOCӋ\Ŀc`??jS|^'2歋o:~!Շ}qG?ʏOO_gd={C|? ?|5/m~|gGz}?+~oɇ~ȇ~$/{wX,cnݸqX"}gN?Aׂb.b.~]>C|Gb.b.gϜf E, \|Cb|o9<0W|'~\!E,\ ?7v.֗g6?#_zY.E,b8xE~;/q`q_zD IDATbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX`S_8/%y/|˷| O<}'>Y=1Ely? slq?~Ӝx:|~Kw__|K,YO 򈣽'$һ8&E,j3Or5=y]5^z2wvmͫ?;\>3gO//_`w7/3خˋkܸw{ۛܽqy^z ?4ֻ\x6>3gO>[\ νf^/r{[=w6qw]ŵ n+[P3] O~<})6~o~~=jb.f6ygrcf.b.b.b.b.b.b.b.b.b.b.b.b.b.lo³X:wxܿ].sǵ˿ۿ{v{+|{ c?c>}y\E,1o]|?~?"o=~G6'ӼvO;x|'>ۯȷo绿ο/wϓ7?c/}$ww2֍E,b۷npt-.b.b3?{.b.bZpiXp.]˗8>:$qů ^.pE_6]~sEZ"s+۹o/=qo'xK1%E,bqxxQLJ,-4wyXX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXB ^U~ooo~'gY,X"ɒ7O};[m//W~? w|e%}?[/Kqt|UON,X\c~{~q"E-8{In^t1a^zz7߾E]޹"/&[wwۼ>:wyr~gylmo͛.r+vٹy9v5u]^\ƽ]̂ͷ_ /s^{,vu?ˋ^&[/7pmn\~gyۻApyիǹg~o4u=έ.S~o>{\~x3."/{ vޥ.bf66zsa.b.b.b.b.b.b.b.b.b.b.b.b.b.lo³X:[rxd7of#<݋YuݿGC<y2;Ǖ뷹)~1/}>%G<ǹx bX,c.]|O9<\rx(lrNq<~~ou-~ Os|$c/9.k;o^Ko /.9<\Oxݻ;bsuο|G"[78s Lt1]Lt?kc=GLt1]Lt1]t-8{4eE,bq .^KXū'~;oOys_>ؼG/qYZ"ؾe~w.?cg#*?o`KbXyoOoOݫƏOqg8E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,tϩ/|w޾|_'>Y=17c>ɟ/fo.%>_e'~_*=>o .u~'__.E>}_7}?䝻,#bXĢ{=$7_c;os<˕KWy,zWy㕗Ӽevk/Wxusu=͋^_孷rvxgxy7x㥧9gOp&7.ē_}sʛ_r.ϜWM;\9wg_x^=ō{\z9^ifͫⳜ?*ork77nb^}|'λ٫b.b.b.b.b.b.b.b.b.b.b.b.b.b >O,b ǿglnf I أ?|?\;ޅS// kܾ?ogw_.IO< oXbs⛬=19Z;ǿ C .b.*/C?|)8[|yXZ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX":Np%%kkkZ}beL,b\[^kx[mIk|7yW_{_?S^*+}4[ <̯/ v.E,bXbgkL s\y&b._xm3n&^} /kt]v+\|e^u޹IՂ\~bq޾n{W˭m[׹r+/>ŵB}?ܛu@bN?u.^xX"˘Kd})=Շ~~S3"{\y<_7/|:m_=GO=Xy7~._}2Oxݻ;bsuο|G"[78s Lt1]Lt?kc=GLt1]Lt1]t-8{4eE,bq .^KX"6GGG|}?^X.-YZb\r|zwlom6!KC&9::ý-6dkk;w!޿EYZ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"8>g!'>Y>G,'>Y>G/˄eL,b2-YZ"I8>:0߿|%K!YZ޿8E,bXĢ{=$7_c.f`؟fzApʫl]L3~Ls?L3]L4L?t1O3]L7LO3]L3p?O1]4p0p0{ܸ /tibabibibi`{ݻ޽ݻ.p?t1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]g'u_3nߺup?HCCp?C>ɒC>`8׸x bX,c.]|Op`8tpr%!GKpi?\.9Z>I8::hh8w/dXܺq/E,bq Μ~t1]Lt1]Osڻ|c>t1]Lt1]L] Ξ9rbX.åzG"E,bX"El|/?oʷ}_۾8%!E,b ~ʷ}\giX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb 3,{bZ,أ{b21E,bX"E,bX"E,bX"E,bX"g<1]Lt1]L{Wy~oa.b.b.b.b.b.b.b.b.b.b؟=ns7޸n7t1]Lt1]Lt1]Lt1]Lt1]Lt1]-^,gd̓=$ϼt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Ltqg{}>xX"ϸu43L343L343L343L343L3_7E,btM>u$43L343L343L343L343L343L343L3Opݻ;bsuο|G"[78s Lt1]Lt?kc=GLt1]Lt1]t-8{4eE,bq .^KX"E,bX"8{bZQ"E,bh=jG-]-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"˘e2fY,c1˘X"E,bX"E,bX"E,bX"E,bXĢ{l?{t1]Lt1]L/X]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]LԂt1]Lt1]Lt1]Lt1]Lt1]Lt1]LE/أ{bt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lo'u_3wkAׂ] t-ZеkAׂ] t-ZеkAׂ] x_7E,btM`] t-ZеkAׂ] t-ZеkAׂ] t-ZеkAׂ] t-޼͟|$ww2֍E,b۷npt-.b.b3?{.b.bZpiXp.]˗8>:$E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"../=,;[Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lt1]Lwls?>"u7O7xb.]{,vYebo.]{,vYebo.]{,{ݹ7ߺH,be+xs]{,vYebo.]{,vYebo.]{,vYebo.]{,{\{m/{.Xܺq/E,bq Μ~t1]Lt1]Osڻ|c>t1]Lt1]L] Ξ9rbX.åzG"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"S \z}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}56X_cc}5\~2,cbXXWz2[lom&[lom&[lom&[lom&[lom۷xgyꛧڼE,bXlog-6d{kM6d{kM6d{kM6d{kM6d{kM6d{kM6ڻpy#˘[7ss?>"E,nߺOе`.b.i_{<{G8>>b.b.k3Y.C,betW/_X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"˘%-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-la [-laX$p2&E,b1^_SN}9uN:yS'Op N<'8uN:yS'Op N<'8uNKSw8bX:X;$_:N<'8uN:yS'Op N<'8uN:yS'Op N<'8uN:yS'Op N<W˼|: ˘[7ss?>"E,nߺOе`.b.i_{<{G8>>b.b.k3Y.C,betW/_X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘e2fY,c1˘X"E,bf]vl;[lo;[lo;[lo;[lo;wٽw!E,b iZqw;[lo;[lo;[lo;[lo;[lo;[lo;[loq6: Xܺq/E,bq Μ~t1]Lt1]Osڻ|c>t1]Lt1]L] Ξ9rbX.åzG"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"2֍E,b۷npt-.b.b3?{.b.bZpiXp.]˗8>:$E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,1n\|D,bXܾu3kt1]Lt1]L\.y!>أp||t1]Lt1]LEׂgN\X"p^!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bu:_>#bX9] b.b؟w}#b.b.=s2"8\K/p%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bḙ99X"o'Z0]Lt1]L4ׯg~=#1]Lt1]Ltѵ,!2\x/q|tH,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXO~}Y~'Y\bfMXs1gyh}3@Y ѤIA( 0iLJ$I" tPQ؝UNP>Ϯn;[ܺhXXܾuSKϓ12 *ʠ2 *Y%;[Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5V3̊{oʥ 73`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xs ƛ77on0`xsy\`5Vc5Vc5VW^‰9tK'8tK'8tK'8tK'8tK'8tK'8tK'8tK'8tK'xspy^0+jjYqEN.sr'Npr'Npr'Npr'Npr'Npr'Npr'Npr'Npr'Npr'Npr'Npr'Npr'g8ҋ}[ܺhXXܾuSKϓ12 *ʠ2 *Y%;[bJePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTS&\0ÇXXz`gym9>>c9>>c9>>c9>>c9>>wy%\X-\/q|9>>c9>>c9>>c9>>c9>>c9>>c9>>"|.V3uc}'cJePTAePTJvxxO=AePTAePTSNZb>7Vc5V?7/v2XXXX`\XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXըjjjjN8InloQTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTJ޹/;s|, łbb`XX,X,, łbb`XX,X,, łb^x[\8gX,, łbb`XX,X,, łbb`XX,X,, łbb`XX,X,, |_g}fnq5`5Vc5Vs N-=OƔʠ2 *ʠ2 flo񞧟z*ʠ2 *ʠ2 2>|njfn._se\`ٓ3Wc5Vc5Vc5Vc5Vc5Vc5888ѣ}3Wc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5Vc5V3̊;oYNx3/K'9IμtOq̋\ob K><>Vc5Vc5Vc5Vc5Vc5Vc5V O͝ *ʠ2 *ʠ2 *ʠ2 *ʠ2 *Y% *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2URTAePTAePTAePTAePTAePTAeP*f0+fTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTwXyQ<}1łbbb`XX,X,, c8^,X,, /zMjfnq☗Ϟ`XX,X,9, łbb`XX,X,, łbb`XX,X,, łbmͯ>V3uc}'cJePTAePTJvxxO=AePTAePTSNZb>7Vc5V?7/v2XXXX7w *ʠ2 *ʠ2 *ʠ2 *ʠ2 *֕+ܹKePTAePTAePTAePTAePTAePTAePTAePTAePTAePm_½ɔʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 rr[/9ZeW`oTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTas#jF=3c9::b8`z_5~>[|∣#ł##w ?:xqGGGx.7ťxX,Yo̝C GG, GGGqttGGGqttGG ł#8::bX`o=-nacjjnߺɘRTAePT-x1SOrxx@ePTAePTAƔӧύXc]>Vc5Vc ̦i~s\υXXXXXXXXXXXXXXXXXXXXXXXXXXM3/浫\v__<N[XXXß́y!ijFCW? :=0 Yí_gxG{tǼx.7ť8w GGG}^s͇>_sw~o1}!s f34?~<|}8::98|ȻGG<:0lF{w=舣#ķujn1ZVc5Vc5odL *ʠ2 *`VO<y'9<<2 *ʠ2 * cSKjj1׮\`ٽv?O}Yݾ?G?>?k7XX̓_]6wg ~OK%-njfݻ}w/?{ΛLa7e޼v;w?~鯙N'-js/>+l|Ƶ'C>/`i?Aٿjjjb:MeP97X={N׹qM^_YaA{c8z]/|Mjfnq^>{w={S| 4|_O?G?:oߺ_9s5Vc5VsoX|?8\ō?EzXXXbn?7.O?_4g~???m^O{jj&Nz;T&oSqy7u&_?D"[y̫l}ݻ7-6Μʍ;DL+,_]m+}>7.slz_aS\z6oompwryY{2|۷ٽ{o7Klf:Ƙ_ܼ Ͽĕ}{˷k9û˻bq̋'_x[\xϞw8>~O|Cckc==Bc_cƔ}Mx~_9?#| #S}|g5 .GjGo=-nacjjnߺɘRTAePT-x1SOrxx@ePTAePTAƔӧύXc]>VcM3h[mgC|}'>G>W{}5Vc5Vs~W~WCGyۯR9Vc5Vc5Vc ܿ<|sr3Eݿ|lnjf|_3~|;8q//X,|K_d:0}qOS\_o_+\9ϸt |g{_zM9;?|zY~o# N8}nlSTs5V^9*tˌ^]e}^mߺWϰ*_ֽ=*nqnݥ2x3/p9_[e} ';śsy^[ɃX9$l+}s]ܼr^~ *  lY^|E޼}WY]~Cs5Fxk/̍*f` vY}enU_δvyse^:yVX{'x6QIePTAePLpWX*AePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAepV^9;7~?7}C!=ѣ| '8~[\xsgNst.=ѣGs\Y.?n;<S$Џ٧x|C㋯}79:>~S_iX =zģGUo|ŭ;lxxxXX[78<S*ʠ2 *ʠ2U?{~I *ʠ2 *ʠ2Șr|q̵+9_sjjk>~>g`.͐a7^>wO}~'t WE s O_o/Ɨr_cΣyr{:׶>~Oc}y}oAVc5Vc51p ٦2 bwnlqgqy9˼6uo=ܹΛ\=k؛s\udw,^kW~ ׯ];UrEVϭq7b`BŔ`Vn_=yNYS*ˬr2o^Z)޺͍+#7;Me+K/sY&k/cJ縹{++q:QŬv:+pU_׸s>AePTAe0y{峌6r* *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 ݽ+xGXXzgo9s1 w8z!^"?C[<_|o~|a v.|cxx9py.jj/^xsz@=:❺wȧ?w^w<_ʗ㏳< ?8ɤ.!>77uS܈9s {p[ܺhXXܾuSKϓ12 *ʠ2 *Y%;[7眻xg1>gc\}XXͽ+GY?/oBP+|Xz͏gx Ƶ;zsbjjjjjjjjjjjjjjjjjjjjjjjjj5f;o|/}tjfo֫\.Yz-_rvk|5.N_ ~sb[GM w>ď|)޸XXtS/psgʤ/]ڛ[zkgr-j۾ cy&{174͛oq˼7wغ=ϕ[wqegxқܸkra.9y[ܿͅOy;[\~E9ōݻ\-y:Jf\e._m޼0歛wL*ʠ2 ڋquwnpMݿOfPTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAepV^9;_~kO~W>g?Cݿ!Vsv>?0q?ӯgl=[{c5s[7v۷npjy2TAePTAe0dg{'<ԓPTAePTAe1%sc5Vc5sskW.sxXԽ|㳟gO5>_V9o qXX2{ O>w_0s[|O>߾zanj,q0_x?O8?S_;[G {3jjjjjjjjjjjjjjjjjjjjjjjjjjz}7] "_N'-jK/|{s>[x3o7OI~gv%n _k$??7,jj&Nz;TSܼY^9wqoʬgu$7VY>w ޺)Ƭ;؍y˫p;DY^9w潻ܸO3Z{WϽ[M=n_^gY.\b+_>+^mrwr+}2[8|WΝ*v'TAePjʽY="/=+gOʙqM2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2w+wa5Vc5.wnFÄKI>˿˷׶k~_ ?S?̗ؼ03O{~G?̟?tnrqVc5V3|g^zÃ_?? f¿'~;i5O}_/@=x}?_g57ރX֍6Fk<<sfnfns?`n9웹N8}nlSTY% *Yߺ<LUPT%JfTAe2dVIePT%Jf* *YAe02 fTUIePTY% *`VɬY%Jf5 F1{5cVɬʠ2Jf* *Y%Jf* ʠ2 *dVɬYAe2dVɬʠ2U2dVɬYAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTwXyQ~W+'3jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjSsE._ȕr"/]\|Cjjjjjjjjjjjjjjjj&Nz;oQTAePTw7^=gxYIePTAePTAePTAePTAePTAePTAePTAePTAePTAePT&ܸr VQTAePTAePTAePTAePTAePTANn3^9˧_3/r,{*ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *;rwyXը{ܺya1dVɬY%Jf*U2dVɬY%Jf*U2dVɬY%0spqVc5V3|_<|nY%Jf*U2dVɬY%Jf*U2dVɬY%Jf*U2dVɬY%Jfܻ6{p[ܺhXXܾuSKϓ12 *ʠ2 *Y%;[|njfn._sea{ln k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+ k+k+VW<0؟Q_qr7o`dddddddddddddddddd6o‰y-jf.qM>`2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2;9{%^},V3uc}'cJePTAePTJvxxO=AePTAePTSNZb>7Vc5V?7/v2XXXXXXXXXXXI0=ol۞U)f-g׉cűDZ,˖d[Nb˖l'M$4cNJĖBҌ(p fLw><}!1ķzX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"XX'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdɘz$E,b1?:W_>opzwӻ;ww8Npzwӻ;ww8Npzwӻ;|7yc{ZE,bǍ׮}oww8Npzwӻ;ww8Npzwӻ;ww8Npzwӻ;wuw6zxL,1wo|"l"Ž9{jYjBV Z-Z8nO={lִZhjBV Z-Բ3,!j^>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"X&WK6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YqJ@iIDATWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^^X.C,bX"(9wFs n08 n08 n08 n08 npwhX"tr& n08 n08 n08 n08 n08 n08 nX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Xܽ=|YX"eAV Z-ZhjUF[<|gfYjBV Z-ZhP˂sgϰ\X"eؿzl+bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbs˗.fM,bXܻ{g^Z-ZhjBV oԓOgyfMV Z-ZhjB- Ν=rbXaYE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,be#._5E,bqmΞyZZhjBV [e4SO>Ǟ}i65Z-ZhjBV ,8w eE,bZW8f"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,1wo|"l"Ž9{jYjBV Z-Z8nO={lִZhjBV Z-Բ3,!j^>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Xܽ=|YX"eAV Z-ZhjUF[<|gfYjBV Z-ZhP˂sgϰ\X"eؿzl+bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbs˗.fM,bXܻ{g^Z-ZhjBV oԓOgyfMV Z-ZhjB- Ν=rbXaYE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bǍ|!CG̏2?:d~t!CG̏2?:d~t!C#jYE,bXzH- #G̏2?:d~t!CG̏2?:d~t!CG̏2?:d~t!CG̏Yg%be#._5E,bqmΞyZZhjBV [e4SO>Ǟ}i65Z-ZhjBV ,8w eE,bZW8f"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"t|v#Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`4pg"E,bQ˂6η9 NpjwS;vw8éNpjwS;vw8éNpj^:˝!E,bas{4K{vNpjwS;vw8éNpjwS;vw8éNpjwS;vw8éoo7.0X,cqE>جE,b{wos ԲBV Z-Zhp*-z >3O٬ijBV Z-ZegX.C,b2_}6E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"'}M^ퟣ;KGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGwW_7yxX"r+xчprr '''prr '''prr '''prr '''prrjݷX"?{kNNN899䄓NNN899䄓NNN899䄓NNN899䄓NNN899䄓NNN899䄓NNNxŜ=.]qbs˗.fM,bXܻ{g^Z-ZhjBV oԓOgyfMV Z-ZhjB- Ν=rbXaYE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,Z-\ym|uO,f3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>dۗ.2y6bXX9{veݲnnl[-vveݲnnl[-vveݲnn|}ܸ~X"˘{-vveݲnnl[-vveݲnnl[-vveݲnnl[-v9M#b{{K`&E,ݽ3/P˂V Z-Zhjqx'سجE,b{wos ԲBV Z-Zhp*-z >3O٬ijBV Z-ZegX.C,b2_}6E,bX"~HM=DZM,bX"E%KX"E,bX"YV|ffE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX1n ׮ ׮ Un~["E,bffbX"E,b^/Y"E,bX"E,bι/rg>Z-ZhjBV Z-ZhjBV Z-q-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV [BV Z-ZhjBV Z-ZhjBV Z-Zhjq77[BV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Z?sX"E,b^V~OGbeX"E,-^9E,bX"E,Ŕ%_}nWpjE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX<nspwM)jBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV O\x<}H,b !η9:X"X.jVK^VO?l`d4KX"E^a/O1,Y-jV˰^UL,bXf,\yg?g~_+9~s_WxbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"zx778<<'_*+e`X"9?uDbVKX$f\?t*"eXaX"EY9wEZhjU[Z-VhjBV V[UZ{\*Z-Z9nVijBkV9nV U[BV Z-Zhp*ǭjB*ǭr*Z-Zhr*ǭjB9Kphq-ZhjB Z-V9nVhjU[BV Z-Z8n  rzuxׇjZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Zhj ѣE,ba={6躎Ǐѣc7O}_¯k_U~<~nl{ُ-t?l[^{W%28Ǐ1.7|_K_uqf ]ױnntu[<~v?nc?~Ǐy1e#._5E,bqmΞyZZhjBV [e4SO>Ǟ}i65Z-ZhjBV ,8w eE,bZW8f"E^o~WO'Wx_׿9>g4oE,b SƍmvE>ʏO_B,#bX,S;x޹\+=W~s|2,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX1xp>~; /ŜeL,bX$ _9~䧿/?gw_ð1wϗş&C?¯=W=_ޯ_]Έ1E,bs ij ޹\z =jλܙe7x/2}ɋŽ5J{orL݋s>oڥWx*׆cj-ԲZs^W^pL\u^{k]ZLFy޺pWr}ܸ|vwy饗.d6Bw0~Z޾b|;,JBV Z]0?07aQ*~p1kV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Z?sO")<~˽+n"WK,be̵Je>1 o F+o0ъ/_~֟{>-] 򍗹gO?gyy0|G<~K~yf2/]͚X"w6gϼ@- Z-ZhjBV ǭ2'c>4͚V Z-ZhjBZ;{2"X-+\g^XDG~INe/+?|N>|w9LXZ"Yxp__;B,bX,K)pW<KX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXBۗ9</|yu?sw|s,_O>{E,bs iʔ^q{ܹ3ֵ\ڿKm/څw_浗_3LKƀP7xeart7{%,{_>\||˯;W3<`p&G\yko2wok?8|gxw{\<2 ޻Ϋ/X yF3Z-!^:ϝ)<Ǚsֈ+\|uny@kV Z-ZhrOxWxڈ*Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Zhp:«yCbXXw㣏hy?'.ɣl8U~3|o|+g Ͻ>W_ o^>ఈGGu/+Xbs{>z̖ ~%ۯpzpxo׮\䯞y~wɋ|~[uw?䣏>⣏>_b{{K`&E,ݽ3/P˂V Z-Zhjqx'س|7_-"ElRÿC<ޞwyov"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"cs<?q.]oSOqrrs_K9˘X"Ւ;/>?/owcoqxfy̵kw ]EV+*O?^9g3=1E,bQsΝ};!VZyWx7zu/Žٌ~wnf2/s+ 8{?)U˔+ܸ7y9&w97zr_w x7/tQ9ZZ(Gyckoq~eܾ~_z7t:G{phq!o^V hWs4xkaq85_;{wߧJV Z-Z8.9x"=Cw;hjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV c.zG>$}:ѣGyģGx}g_<+? 289ѣG<:9CM8gW? ~c>?Gkp;~;WN| .5s?SO)7ڟ~󓜽x=1_b{{K`&E,ݽ3/P˂V Z-Zhjqx'سo2f/?Њ2?OrC+VE,8/rush5&kX"X,cV%y.ן.z"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX":'?I~w}/Y,,cb8}?~Wį}~mM~p/ٟM%e㽳Ok8K -W|?o qL,bXŜsg_hHV wy+ruwSgv5_틗Mhy\8K/ܝj ᄐ_\tw._ar[\tY_Xb=zE./׿I>G?od.W>ϗE/;Qc^^X,~o> ˘G\t6kbXۜ=,hjBV Z-hx|=l6kZ-ZhjBV jYpXb Wpp}zE,b_s޾y7-޺y2?',+o}O= XY" OF[g?;ҖKbج2{|<=~~g=&<̕1KX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXBqшoW>#_XY"v';k}'? |?_>%>w?ɏpkO{. g$&E,bι/rg4J+xws\9Mk 7ڻ78ypo`0h{+osW^łVgk\x=&}p}FoqfU./2-rx7^z;Gy 7wrtg7_s=w=2[Ly ύcn_ȋ/xۯ;RfywwS .\9:WK>r{mU[ͷy›ݺR+Z-Z8 gp}2rϥwohV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhO8K~}1Wve^\RR[R֛ cG$yDڪVl4_g$&1э9}_}ުӟ\W[[[[[[[[[[[[[[[s{NGbXX{>__s}\?[?/_oX>x׾¿y/{|ǟ{/:\_׼o2~L,b -7W;׾>7?᭯~ϗO|ЮyϿ7}g{_~g[O}m\pKΫX\Ǽ|> E,b<hb>}z+z+z+z+z+z+z+z+Zx4:"x})ۛ"x _}>L5TL/ȧE,b'_3\oϾ!5E,|>W1oi~E~ߘ~Vz>>v-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b ~/K;, UvWW\"onX~O'3:ƯW*X ;~__/>._N)X"Ex>zފ^/邫~3>E5ڗ>W_ɇWzחOx| vmӏwۏ?痼X>?ބGy_k˳?>~?cOx|1ۓ O| _|c_R[w/>\LÏ/譸ŏw's16O>\[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[s{NGbXX{>[hXM̯17ӿ~g/w&a<"Y>;ߞp{{-_}~g~??~Yhko?/տxcۿgs6s==O݀-l[ΫX\Ǽ|> E,b<hb>}z+z+z+z+z+z+z+z+Zx4:"x})ۛ"ž]-]! ;5l ;u^p:8N[nW!Z1  ptz!W h+vWh赣^Q+z+z+Z]QW]jGoEvVv;z+zvWVjGoEoEu+Z+vW+^,>çWThu[ێzvWVjGoEoEoEu+jb:::mwWTb9O~=N#E,=|p^ klXK~@}q_j0 h/~]h?7l1E,cO#n^_j5͆]C͚fë+vWW ÀKvh?w_ffaW ~`?j!1/_<?p{C,bX|#ZzOy7ywފފފފފފފފV;.E,^_lj5E,bX"E,b.|+W;#/QB,bX"틏w7|_ɧ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"~^gpɣ1c&LYgnoE,bX"E,bX"E,bX"E,bX"Ex>zފފފފފފvu~{|<UkVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV ӏwz+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+z+O?⣧ччӟjGoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoEoyq:E,ba 0t3 a Cg:0t3 a Cg:0t3 iϷcbX\,fp1yuzc:0t3 a Cg:0t3 a Cg:0t3 a Cg:5_vC,c^xG~X" G[[[[[[[1g[o{ v\<s}bXٔrkbX"E,bX"67_׾U׾KX"S_|}|_|?"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ktON'tON'tON'tON'C,bX"E,bX"E,bX"E,bX"E,jww&ygVVVVVV݆?__z7Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+Z+31~L,b.&E:bqs>7"g/_h<Վފފފފފފފ7?z7{noohјXuX̦ no^X"E,bX"ׯ9n9n9n9n6E,bX" 77nE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"h0C~~쇎~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~h?h?:::::::::::::::::::::::::::::CڱZ̘#E,=o?ْV;jwEvW]Q+jwEvW]Q+jwE1dJ,b|ފ]Q+jwEvW]Q+jwEvW]Q+jwEvW]Q+jwE|WϫX\Ǽ|> E,b<hb>}z+z+z+z+z+z+z+z+Zx4:"x})ۛ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"}/㟰ZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9rj9gZY-笖sV9?z"<w.b}IՎU;vTQjGՎU;vTQjGՎU;v+V?[27姿 ű_o}?_U;vTQjGՎU;vTQjGՎU;vTQjGՎU; OG{%y9}bXⳗ/x4jGoEoEoEoEoEoEoϟ}o7VVVVVVVVqhuE,b:,fSV7E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bqS+>)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb6e1MY̦,fS)ٔlb Ϩq{X"s&1G\Lr1y!\Lr1y!\Lr1y!\Lr1y!\Lr1y+bXĢ?e<\Lr1y!\Lr1y!\Lr1y!\Lr1y!\Lr1y!\Lr1y!\Lr1yķ=o}g9똗/чp!E,>{GvVVVVVVV ٧֛޻p{{CoEoEoEoEoEoEoEoE\_X"b6e\p{X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"y}pxty'y1O<<}Oc>y'y1O<<}Oc~XlK=E,bV;~Z?<}Oc>y'y1O<<}Oc>y'y1O<<}Oc>y'y1O<<}|!z7b똗/чp!E,>{GvVVVVVVV ٧֛޻p{{CoEoEoEoEoEoEoEoE\_X"b6e\p{X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,=ўhO'D{=ўhO'D{=ўhX"E,bXD{=ўhO'D{=ўhO'D{=ўhO'D{=kO,b똗/чp!E,>{GvVVVVVVV ٧֛޻p{{CoEoEoEoEoEoEoEoE\_X"b6e\p{X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"y9}bXⳗ/x4jGoEoEoEoEoEoEoϟ}o7VVVVVVVVqhuE,b:,fSV7E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b똗/чp!E,>{GvVVVVVVV ٧֛޻p{{CoEoEoEoEoEoEoEoE\_X"b6e\p{X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"y9}bXⳗ/x4jGoEoEoEoEoEoEoϟ}o7VVVVVVVVqhuE,b:,fSV7E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b똗/чp!E,>{GvVVVVVVV ٧֛޻p{{CoEoEoEoEoEoEoEoE\_X"b6e\p{X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"y9}bXⳗ/x4jGoEoEoEoEoEoEoϟ}o7VVVVVVVVqhuE,b:,fSV7E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b kh?h?h?h?h?X"E,b {h?h?h?h?h?h?h?֞X"1/_<?p{C,bX|#ZzOy7ywފފފފފފފފV;.E,^_lj5E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,=xfvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬnl7k5͚fvfYݬn|k%bX"WLyp{<=ܿǃxp{<=ܿǃxp{|}>x_X"lG7=ܿǃxp{<=ܿǃxp{<=ܿǃxp{<=ܿo u8X"|V;z+z+z+z+z+z+z+xS~MxwՎGcC,ba1Z.yM,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,baze|;fxd 똗/чp!E,>{GvVVVVVVV ٧֛޻p{{CoEoEoEoEoEoEoEoE\_X"b6e\p{X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb36K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K6K~gW/s{{C,b k!?_-:x/V?#u/V?b򐛛g>{+FzE,c^xG~X" G[[[[[[[1g[o{ v\<s}bXٔrkbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b+~ >_p:E,ba=#n8Ϝg3||>s>9Ϝg3||>s>9Ϝg3M?&u| w8Ϝg3||>s>9Ϝg3||>s>9Ϝg3||>s>9Ϝg3XrK,c^xG~X" G[[[[[[[1g[o{ v\<s}bXٔrkbX"E, cX"E,bX\"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bK6_\sXb9_?gd%_n7"E,bX\\"E,bX:"E,bX"E,bQ+.ϯ?<8"|[3wwwqww|>g;;3󙻻;ɣMJ,bl |;;;;;$nu8X"|V;z+z+z+z+z+z+z+xS~MxwՎGcC,ba1Z.yM,bX"x}kxk^["E,b -Kj/bX"E,bX"Qg%Ϟ`X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"~?/?~!ѿ7\'\"E,ⳟ_j,bX /@ϬYgIWϤ'Ď+I~KrNRLS!ȶҎH,K@DAԽx{߻N+ EIDATD;Od8NsO 'p2 'p2 'p2 Gև>,7Ʒ1LST0LST0LST0LST0Lw6ST0LST0LST0LST0LST0LST0LST0LST0LST0LST09ޝۈ`* `* `* `* `* `* +ܾ`* `* `* `* `* `* `* `* `* `* `* `* `* `*Z-y32 ' S;{s|| D>9>>c9>>w s||1>ߥnr ܼ;9>>c9>>c9>>c9>>c9>>cL7ޝd8%#͹?p2 'Y\IT֘ `* 1ez{st4a* `* JI2 'é%|"W\hd8NL>*GUyc}~zwQd8N勿_|hM<kRp2 'p23Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8N ׸]wO 2 'p2 Gև>,7ST0U6c1lT٘QT06lTؘۍ1eK.ǵm6T06l7vclL0̔nؘۍ1T0LST0S6c16& ƌn ۍSL7r= [SL)`*lL16ln)ۍ1T0LST0LSEnxWX `* `* `* `* `* `* `* `* `* `* `* `* `* VK^y 'p·<{ÇyN3'>|Gax{{c3 wÇy!}Y.]@d8%7./C;f;“Џ}~^{sw|Çy!{1>Ç<| ݹMS28>Ҝ; 'p2uNDe`* `* SơG}O>8GG`* `* *kNڡ$p2Z˗.reJd8. ^y?}ywq|/oፕRp2 'Ñ[W⺬x_sg<_}6A 'p2 '#Hg>??WR3%)d8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8N 7>{/|9^S2p2 'p+VMkg|۠斛^{;G~/6I]7_wod8Nd8>g1 u^l89xs7rp+~*۷8xu.4rܸbqg^z7._&ٿU bmz"ot .\ 7Zx{qUL1L5n͕5o/n* \xU.\x7ocm:/6yKD|coUsp*ט ^1\ʝû,~kW^҅x5ɚ;x9x``* `* &wxKxn `* `* `* `* `* `* `* `* `* `* `* `* `* VK^y 'p·?˥p2 dƥ}}(goÇD87w6NHs,&2 'p9s5`* `*lL}=M `* `*9}jR 'pjI._+9*N.4[O"G^J_Oϳ.I 'p2Օ߾ {G~k7d8Nᔲk_|#+1Pp2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2no|7\|J)|+_f>dd8NFO|'y'GO7o<ٟ) O~{8Y}3O~|c?ɇ֝ % 'p2YrԳLۼ^7.u\lӿ_>M{&fʽ֛/@{"\~ 7_fmZo5t]Gw /û\OZr~|i^kZӜyo_~kofȭ"g_mԵUosy.o~n|i6-}^}7dqt~+^dsSAn]q<m:7}&˻4/z2/|]6& `* wyuU޼zW^Zب`* `* `* `* `* `* `* `* `* `* `* `* `* pk䕗0p2 '|O};wnw}o{_b<<~{|W>ƿ/}/|/> 8֊yw9>>?˥p2 dƥ}}!Pyg7C;~H9y'ΗO_i~;| WX:~zW_~Nywywqwopm2YMd8N,sj$*kLST0LSTؘ2=={9:0LST0LSTPYs$NԒ\tW.s4U2 S?瞺&bwiN<}Yn9~~k^d8NsͿ9{ /<#;gٔBd8$^x x+8w6J8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8N ?>Orpp8˿Lfտ!% 'pJ)"C>~~n(W^3>SͥMlxG?YEϟ(_??2Q7Wy~|s+g?K|Afd8N#CNz〩b|V+rknt{vyՖpMܹɒgvykq-{ Y\rsK/o2^>/Zv˙^]An]8j*n[-g_9➰5{wQ= nn/~~yWα*{VnVǹW9<9.7٘"w{ rw`]n]q.eWxy5Œ[W9"ݕ5T0LSEp9kY^aųD٨`* `* `* `* `* `* `* `* `* `* `* `* `* pk䕗0p2 '|O};oCyޙX->>׸p拿rxS>羴$ㇼ;;<<~ȩpbGd8%7.ΙO{;w)w.OhxM^}|~)oxoVO쓼*-o~{wn 4rh"p2 gqpS;'QYc* `* ƔqyGxߓO<ф`* `* ʚӧv(%p2 \rd$qU>_ jܟc94O}QJ 'p2[o?ÿW_OXo V N5/cO~|f Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd87*_ٟY>O?|z}H p2~>|o '_3G?\T-_O}KZ͏<_yi巈2Q'|՞ p2 Gև>,7ST8\ \zmN3{q]u.}7-+9ro>|C8po?EcSe*TgwNrbGd8%˗^34Mp.?3~U~C_ݷ_Y~K;<_ =ϯ/?O~ؿLSe*"kͯsm2YMd8N,sj$*kLST0LSTؘ2=={9:0LST0LSTPYs$NԒ\tW.s4U2 mW>)y>W>94O}sNd8;~ V'[/~ǿBdS.7'?oƯs?/>w\;]Pp2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2no|o^ao>_b>dd8Y*qE~#? ~7>oO?g_ yG+k|w?{̏z*Y+_q>ōCg~ؿ7od8Nӧ8`*aq:C4gNӽy{\/|ܾw[ܸ=n\z3gsg="o71SLҿvW7s(7ǁ;n3^~s.rϔ7.,+Qnܸ{׸Xa&~uξǵ-V+.>ً׸^s|7\r羿K.zϾH_u)z:=*X^}9͍+ ޸ڌY\>Wϳ}=n-TST06WxW8)I^:VT0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSj+/ad8N.7KRJ!:?<[_awy櫟]^:k"/NORRi<\ؑd8NysܿR Wڗy&z~uמg6z_OpN?g(w%|Nq?ι矧?4JIJIo~{wn 4rh"p2 gqpS;'QYc* `* ƔqyGxߓO<ф`* `* ʚӧv(%p2 \rd8[nO?K7Gg/\??Up2 'ùWu~'~WOy-_,Bd8N;7N~ǵrݫt˨d8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8o7׿µǿgտ!% 'éě|_K ϱ9̔ͷxgh w^y^|3/ȅ#wy}N=GӾ]֫gw{9v_|s^{{ܹgw_e%8{z+.{ra+u} CǍ7^̋y7mK ' JNFPJd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8NWW׾W|׾W|+_k_2__ҙ9&JNd% 'p2RNɠfd$NS2%%)d8Nd89}Ynoc* 1eosp ϽMb* Ɣ `*lL٨`* Ɣ)`* `* `* `* fST0̔)̔2^~Wv3cc`* ST0̔)ST0LST06lL٨`r*޼µWx+z`* `* `* `* `* `* `* `* `* `* `* `* `* `* `*Z-y32 ' Sݲnp%|vcl7fclܷonvKۍ[y).]p2 dp~$ۍ-[·vvcl6v!|Knl -ݰ-[|kl7fcl7[+sm2YMd8N,sj$*kLST0LSTؘ2=={9:0LST0LSTPYs$NԒ\tW.s4U2 'p2 'p2 'p2+ʟo~ԧ>ŧ>I> Id8NO>o>ɧ>I>2dK 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2wwwwwwwwy~T+Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8yg`* `*+ͫo/u `* `* `* `* `* `* `* `* `* `* ]s``G֪ `* `* `* `* `* 뛼ٞ㵳Wx+_ST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSTus+/ad8N.7`* `* `* `* `* qS\ؑd8N9)2UT0LST0LST0LST0LST0LST0LST0LjɷuݹMS28>Ҝ; 'p2uNDe`* `* SơG}O>8GG`* `* *kNڡ$p2Z˗.reJd8Nd8Nd8NL>3?8b*Ad8Nd8G3?>WJ8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8*ҋ\&`* `l7vclL1LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0L)S6* `* `* `* `* `* `l7vaٰln)`* `* `* `* `* `* `* `* `* `* `* `* `* `* vϝd8NScvSAևY"Cd}!>DևY"Cd}!>DևY"CLל<=x#p27^Գϰ1EևY"Cd}!>DևY"Cd}!>DևY"Cd}!>DևY׹w6NHs,&2 'p9s5`* `*lL}=M `* `*9}jR 'pjI._+9*Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nõ"õ\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- n.}-vus4U2 ' yu޽5"kDֈY#Fd5"kDֈY#Fd5"kDܸ>S\z 'pJõxܸ5"kDֈY#Fd5"kDֈY#Fd5"kDֈY#Fd5"k;'OpxNHs,&2 'p9s5`* `*lL}=M `* `*9}jR 'pjI._+9*Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8n.i_;/.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{_{[Md8N;8x嗸p .op .op .op .op mCۼƩgwxy w&p2 g}x3/r5. 7\8p|Å 7\8p|Å 7\8p|Å 7\8p|Å 7\8p|Å 7\8p|Å چsgyr12YMd8N,sj$*kLST0LSTؘ2=={9:0LST0LSTPYs$NԒ\tW.s4U2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2?x<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<0M 'p2 'Kg^gf vN` vN` vN` vN` vN` vN` vN` vN` vNԳpsܾu-Nd8;9ߜԳϰs;'Os;'Os;'Os;'Os;'Os;'Os;'Os;'Os;'Os;'Os;'Os;'OsϞ|o^Fևd8NHs,&2 'p9s5`* `*lL}=M `* `*9}jR 'pjI._+9*Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8[|a1c1c1c1c1c1c1c1c1c1c1·d8Nd8Ne1c1c1c1c1c1c1c1c1c1c1c1c1c1÷2 ')\iΝDd8:vNT0LST0L)أ'x ST0LST0L5OPJd8N-Kz2GS%p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 dpp}9wGNd89ST0LST06Cc>|q&LST0LST0T֜>C)Id8$/]+<ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZViΝDd8:vNT0LST0L)أ'x ST0LST0L5OPJd8N-ɕ7^xkچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmx
&2 'p9s5`* `*lL}=M `* `*9}jR 'pJa3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=cûwj%p2 gqpS;'QYc* `* ƔqyGxߓO<ф`* `* ʚӧv(%p2 ')L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T S-L0T SRp2 'p]%類a>(U%VpнGO&dI Ib2y|`_o۾y7om߼훷}w߮g?'/o۾y7om߼훷}s^GiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi?>}{o۾y7om߼?vv??//}o۾y7om߼7>zH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4۫}o۾y7omݷ?Oɯ~ |9훷}o۾y7omܷW@iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi?|紐v^훷}o۾y7o揷]~O~_m߼훷}o۾y7o澽ͧH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#{?}m߼훷}o۾y7~S_/_Nom߼훷}o۾y7o>}8FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiݷWom߼훷}o۾moW_~rz7om߼훷}o۾o~ǁ4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H~Oz7om߼훷}oo}ԟꗿ˗۾y7om߼훷}o}{O=FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF~k۾y7om߼훷}ox՟W_۾y7om߼훷}o۫|q 4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4_o۾y7om߼훷}w߮g?'/o۾y7om߼훷}s^GiF8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁq8p8ǁqAFi?|紐v^훷}o۾y7o揷]~O~_m߼훷}o۾y7o澽ͧH#/Ϝotq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8O<]tq.y8OFi?|紐v^훷}o۾y7o揷]~O~_m߼훷}o۾y7o澽ͧH#n~x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]u.^x]u]o_!4H~Oz7om߼훷}oo}ԟꗿ˗۾y7om߼훷}o}{O=Fǁ?zs 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<s 1<˗??)4H~Oz7om߼훷}oo}ԟꗿ˗۾y7om߼훷}o}{O=FǁriFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFo}9FiݷWom߼훷}o۾moW_~rz7om߼훷}o۾o~ǁ4H8}y_!4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HAoԷ/4H#{?}m߼훷}o۾y7~S_/_Nom߼훷}o۾y7o>}8Fiw/Ͽ9FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFio۫gn^?~v{gn^?~v{gn^?QiFilm^?~v{gn^?~v{gn^?~v{gn^?~v{쾽o6Fo}9FiݷWom߼훷}o۾moW_~rz7om߼훷}o۾o~ǁ4H8}y_!4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4ѿoggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg._4H#4x77{___}>W~__}>W~_'oH#46OO>W~__}>W~__}>W~__}>|oo|7HAoԷ/4H#{?}m߼훷}o۾y7~S_/_Nom߼훷}o۾y7o>}8Fiw/Ͽ9FiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiOy||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z||z|;O?r{AF?O?3|ۛoooۛoooۛoooۛoooۛooo/ϤFi˿s?gN7|{{ͷ7|{{ͷ7|{{ͷ7|{{ͷ7|{{ͷ7|{{ͷ7|__}Sqƃo_NiF~k۾y7om߼훷}ox՟W_۾y7om߼훷}o۫|q 48f_sH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#7?f&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&6Mlb&&/?߾H#>[}w}w}w}w}wU߾|陋FWUw}w}w}w}w}w}w}/Gk_?4O}rJ#4_o۾y7om߼훷}w߮g?'/o۾y7om߼훷}s^Giq7{CiFiFiFiFi??_Oo4HcG?_~~{߽w~~BIDAT{߽w~~/?37{iƃ7?~~{߽w~~{߽w~~{߽w~~{}WW)S߾H#4۫}o۾y7omݷ?Oɯ~ |9훷}o۾y7omܷW@iq;'tqP*CƉ>es^{K||K.//]^^tyy^l+K.//?Y>%2Tg1\.//]^^zwǯ\ޫ.//]^^tyyK.//]^^tyyK.//]^^tyy|QeJo駞tLe 2tW7OGy̓e,d'zΨ2t۷^SOw~2TP^}+#?'~?KCw'uv^}ֳ|Ie +}ٯ_޿%?KBW|g۞_|7WyS~kxs~>7;~͋^}Uߗ>zΨ2t۷^SOw~2TP^}+#?G}r>Ͻ~ԯ>G}?|^~}ʧ}W_{=sp/g?zzr5Gu՗/C~G>ֻ7g[7_~o{T*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2T0Ow}uxpe?WTP2N<)w.//}}{/7^s>6~s~Q?G_߮]?{/Y\ܿW_uyygP*CW_1\^}ל o|?ke{._Sx'˯G^o?[~W^W^}U*CW}EO?{g*Ce ۷\y:̓e,d'__=˹?wuγNO9;OJ}oxϽr?'tqP*CƉ> ۋ{v_Fʼn=yYԟx_'|O{wŅ_uW<̗UPWמpyyv{Ƿ}O?OW|+UW>?_=K7/Ǽ-?S|Ƀ>g|Oz^\l/l[''>zΨ2t۷^SOw~2TP^}+#~/|ǽ YVvf<,gol0W_i'{Ww?x~͓SiP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2T0Ow}uxpe?WTP2N<3ggNݻwӜo'߾퓿;gxWW|=={gNwg?gP*CWW\]\:??wޙ6ߺ?=^{~Mo3o{7?~=}t˟>cN?KݿOz;Yz٩O|#^3 ]=ԓ 2Tnr2Oy̓e,d'<9^f/|}agy̓e,d'e2Ttٯןw=o>ٿ}k~āv |qn?so~>+?g~'Կ7Z:P*Ce\< ~~?_,Cxݾ~/~{?__~򩵥[WZn=c_~];xK~oW_%+UP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2]x{eY|O>2TKu7=[~}w^7?9Nq^Oȿ~o|4~rԭ2t+ڳ|Ye +|+睟 Ǿg~=W_>{Wo~w{nIg/~ۜ:qງ?./'}"3d掿G|gT[/z';?S*Ce /ݾӑe,d'n:?;U*C<1}ټ,*OOwM,NfG/$Be8>|ɷf,#}v{.^{.^9w֩t۾oswBwzɷmG*h!OfGD#wM$w_6/PK||*c/;>9Q*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP,>'tqP*CƉvt2Ccovo}Ǵ,Xıe77|{Xb|K߸wcc3_V*CeJ7k}icqr,'woy-od򑓓cqrl;[n߾;w،w,dqwq|ɱ89'Ǧͷ}-_ɱ89'*CW}EO?{g*Ce ۷\y:̓e,d'2TocNjxq|8>^/Njxq|8>^/Njxq3y/ 2t~/xq|8>^/Njxq|8>^/Njxq|8>^/Njx1~QeJo駞tLe 2tW7OGy̓e,d'}{}拇/J2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP?/ss`ٟWTP2N<^ty2ϓyd'<O|s*<V W|j^yP*CƉ?)_;7OGg>)_3*Ce ]W+[tttttttttttttttttttttttttttttttttttttttttttttttttttttt4owF+ݾzҽ32T[^y<Y2Oy̓e,d'Ѓxݣ<2Oy̓e,d'_\;؞vhLӑi:2MG4#tdLӑi:2MG4#tdLӑi:2MG4#tdLӑi:w_|?wݗ7*CW}EO?{g*Ce ۷\y:̓e,d'k7_nX 7V pja5ܰnX 7V pja5ܰnX 7V pja5ܰnᆧ[/~y2Tt֋~ITP*Kozqtd'u>3๛NUP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce '2Nd8q"DƉ'2Nd8q"DƉ'2Nd8q2TP*Ce 2d8q"DƉ'2Nd8q"DƉ'2Nd8q"DƉ'2Nd8q"DƉP*CW}EO?{g*Ce ۷\y:̓e,d'u>3哯?jBV Z-ZhP˝o^X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX͏z5ijBV Z-o?|}'_}?~BV Z-Zhj;߼zI!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ӛykjjBV Z-Zx*?O >~@V Z-ZhjB-wyC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b7?rBV Z-ZhU^=)||V Z-ZhjBZ|%X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Oo~˯NV Z-Zhj}{>S>/Z-ZhjBV KzE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ȫ_S˝V Z-ZhjVy|٧|՗_Z-ZhjBV jͫbXĢnjFa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=X"ӛykjjBV Z-Zx*?O >~@V Z-ZhjB-wyC,b?W,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2O,2OzwcbX͏z5ijBV Z-o?|}'_}?~BV Z-Zhj;߼zI!zO;o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+7~w[z5?| E,ȫ_S˝V Z-ZhjVy|٧|՗_Z-ZhjBV jͫbXoǏa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Faat|E,b7?rBV Z-ZhU^=)||V Z-ZhjBZ|%X";~+? bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢǼ5vO?X"Oo~˯NV Z-Zhj}{>S>/Z-ZhjBV KzE,FwW>~"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Eyk~Ÿ>~ E,ȫ_S˝V Z-ZhjVy|٧|՗_Z-ZhjBV jͫbXo|0E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b {޽}'޽}'޽}'޽}'޽}'޽}'޽}'޽}'޽}'޽}O?&E,b ?O{ĻO{ĻO{ĻO{ĻO{ĻO{ĻO{ĻO{ĻO{ĻO{ĻO{ĻO{ĻO{ĻOG߱D,bc|E,b7?rBV Z-ZhU^=)||V Z-ZhjBZ|%X";~+? bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn zvp^]/ܮn X"//ϟ3^<Ƌx/?gxϟ3^<Ƌx/?gxϟ/xz|~~O,bXx?_/x/?gxϟ3^<Ƌx/?gxϟ3^<Ƌx/?gxϟ3^<Ƌx?{կطgbc|E,b7?rBV Z-ZhU^=)||V Z-ZhjBZ|%X";~+? bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b ߿{ۿ+_0O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O|>1O| ~} ~MC,b gӫ@)8x<qqqqqqqq<^5޾!E,޽}/??x<88888888888888888888888qϜį 1o~|o]"ӛykjjBV Z-Zx*?O >~@V Z-ZhjB-wyC,b핏E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Eoͷ {r;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩN-wjS˝Zr;ܩ?Ӷ_毹]?#E,{ǃxxoZf]~ͷ˯v5./ooIL,bX"C["E,b|01E,bX"E,br#߼%BV Z-ZhjBV Z-ZhjBZ-ZhjBV Z-ZhjBV Z-ZhjBV Z-Zh'֧ijBV Z-Zhj;Z Z-ZhjBV Z-ZhjBV~b}z˝V Z-ZhjB+Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZX_OE,ba̿g8x<888888888_r Ewqq={E,1]\ aܳ/}+|؈{y>ﳿ>ﳿ>ﳿ>ﳿ>ﳿObopmb͹gX {"k;=|fToToToToToToTo̫=c>;|qaf?z2"]c._`%E,(9'>_+/©1=aiX"͋yZ,E@9E@{7?'/X"qX ~eiX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXB9Wy\v_O_9m6cX"}/_?q؋h HWĻ_|b΢:["E,bfS= mFofToToToTQQmFo3zQQk &777mFo3777zیfToTیf677 `Δj3zیͨިިޘ{l+;QQQیf6zzzf6zݝp ܣzڌ>&ءcl߹GFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFƭ78ҋp}Ç<|b|ܻsX,clsVE,bqGlOأ'xaأzzzzzzzzǏf E,va˗6vE,b1z'>^o_??n\湯}?geiXfWpO߾?vkNf'g/ ][? g'y~rX"qX >t޸s X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXB9WyLS/ĉ|ol2&E,>{/7W}xcs6=_5o[P0?o-?_'/3E,bXٔGpu{BF_8QNk\x,۷Toی_9^?w; /mw3W׹:ޛq';‹/>1gOx_©y\|f]fr:gOxcYݝp vcvϟı#<8_[;_y[wwX? .‰r1^xƗ3kTrkuο|x-z6;Ӽs-;Ν{LoN~zzzzc^EM9swQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQq N"'pmy_\S?|5|WkWop8/a~]En7A_?{z÷f{<.G"XƼvq/<o?O|sm|mwlj`I~~xeȟyv/9|yg!o6>7w6X\3=bX>Do37777777ٞ\GO>8ðGFFFFFFFFo3=rbX.1/m0Xdq~?1'G/|/]~KXb4w.3v/S3|G7/,S|GϷ^$|A,b8_K2qc{̱|e9S777777 g{ToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToܺyS/ȃE,ba-xܹs}~!o~}짾g8yuo=r_5u W'o'lG>;wr~ox#\E,by:'^x~wG_|g_8>}8>έ _惿 >G\<~O~KDžK[ܺ+'p&NrasW9u[=r "XƼvq?Ç><. CW~xOcx<tO~&'}SC#<ė#?#;};&˘k;ۜ;{հG,bX\ÇmFFFFFFFƼ:ۓ+<#'gިިިިިިިmY.C,beظ8 ]bOٟg| ^{o}|s_KXbwY~̽%3^_2{~\7?'~O=صE,b? <헨]v!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"s|̿wΝ;|l2&HžO~O?w2_K>`ԗŅg}-^wO3xdy=K]D]|(ɏs[8&E,lG=zz}v4/oIɥs'_+z.q._<ϫ'̹יή\vN7Q^:u_ֽ;loٳcUՋ~ 7[ݽc'ع3e^yM8˩SՊEd g_-;ջw~i/`m</ijGXۘ0_+z;^ԩ5nbuξM.~Sg^a<:K<ܽ)΍/3vw©#p|fčS7777777-;{ToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToܺyS/ȃE,ba-x7=vw.Y.wY=x[\=w~n\_?_'ėpaCڗ.]2 {yE,bٸ Ǐq}vw.Y. o{guk?|S/~8oA~=~O__=//=ɟw؜]d6o~{wne̵mΝ=j#E,_C6zzzzzzzc^{3 {ToToToToToToToTo6,!2l\s.ExwO|˼x,O|{g=rivϼ|v'rZl|]|`m|~o|WsbXa7/y.-~﷿DKv-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bŜo}lqw}O 7>_f6E,{ ?pسE,O?]nܸ,f՗k8>g9{1yO/ 9l9[7;mx3Osq|X"˘<9V$-q7?&.ƅ;񹯝|pŧ?̙__oG/d/yG>Ʃ\:ftsF0woܻsX,clsVE,bqGlOأ'xaأzzzzzzzzǏf E,va˗6vE,b1>͓~~~||닟ӟ*7wXZ"ՔxqXz_?]|?>Mn͏'x~rX"qW?_WY?m{ϘhɮE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ͯ7.۷y'x75eL,bǞYaaXx[_̥7xo~y;ӟ\w־w0"̯ʟ:| 6E,b6rnOި>ks<9^9ͻS鷯c߸NU.{ǞӼsS޼cGyuNMo1Y77+~iux :Μ{~7w;^rpkopgr9nܛ2} Nr9i.]١UQ'{._3nL.y8/;ܙ65N=,?Ιg8s,Mmv68qͫhkϜ)u^?2k'L[zzzc^w8ljy3;o0[7opy>E,O?]n\Fbl3>?_&M~W8s{W~?̖Kb\Çrq|X"˘<9aK$ ޼__~4tp? Gw τ<{?e.Ģw~G{7[;|_ޝbsmgsgϰE,bv8zͨިިިިިިޘWg{r}w< 8~0eE,b \K,bXX c-WO}L?jjj`5 ks,Xšk h a=-E,E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,Ow//8z%N'_z_Y" E,x1GkA,^̱"-H bX"EM9~W'ToToToToTkToT,杻;WzkʼfToToToToToToToToToTQQQQQQQQQQQQQQ1{loٳcNFFFFFFFFy νr[Sըިިިިިިިި>FFFFFFyyToTQQmFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFƭ78ҋ"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b!͹{6 9se^9}WΜ3x)^9}WΜbg{j E,bX"E,bX"E,bX"E,bX"m6#\ݞPQQQQQѧ׹x%^zƯzzzzzzzzzzzzzzzzzzzzzzzzzzzzzc^8ǫgܭzzzzzzzzzzzOo+'ypiYToToToToToToToToToToToToToToToToToToToToToToToToLoo3z%N|S'_K'8?nkToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToToܺyS/ȃE,ba-xrŜyuՙWg^yuՙWg^yuՙWg^yuՙWg^yuՙWg^-Do37777777ٞ\GO>8ðGFFFFFFFFo3=rbX.1/m0X"E,^0}sWώqO<{9±c>"E,bX"E,b̂MN>{g#9rY^9:fiX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ﯸ+_qWܿb5 ,bX"E,bX"E,bX"E,bX"E,bfS^8,;+ToToToToToToT˛;[\z{gިިިިިިިިިިިިv7wz377777777777777777777777776׷'lMٺքo0ꍛ7s /vE,bXܹ}㙧♃Oq<8t:xCp<8t:xCp<3O?CO3۔X"Wg|<<<:xCp<8t:xCp<8t:xCp<8t8| Ǟ=Ţ26Ξa5X"ׯp!zQQQQQQQ1 =x=77777777zqaXbw6.|iaoX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"]ac5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjX a`5 0VjcwbX"ŽwxK_>:<γ>:<γ>:<γ>:<γ>:<#'WmJ,bX"loGYg}tyGYg}tyGYg}tyGYg}tyGYg}tyGYg}tyGYg:o޸b^"˘k;ۜ;{հG,bX\ÇmFFFFFFFƼ:ۓ+<#'gިިިިިިިmY.C,beظ8 ]bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbsmgsgϰE,bv8zͨިިިިިިޘWg{r}w< 8~0eE,b \K,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX,clsVE,bqGlOأ'xaأzzzzzzzzǏf E,va˗6vE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,be̵mΝ=j#E,_C6zzzzzzzc^{3 {ToToToToToToToTo6,!2l\s.E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b͹gX {"k;=|fToToToToToToTo̫=c>;|qaf?z2"]c._`%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,1v9w aX"~mیyu'WxGxǓO<0QQQQQQQQیG\X"˰qqK {"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"26Ξa5X"ׯp!zQQQQQQQ1 =x=77777777zqaXbw6.|iaoX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b?A%wb7Ӟ={=aO=7fs1`&` mg<$mcYgJ5jԭJ%.֭=yU>+p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 Ǐ LST0LST0LST0LST0LST0?"p2 'p(L1LST0LST0LST0LST0LST0LST0LST p2y{=]“c2 'p{;&*3LST0LST(Lvxx/1`* `* *3Νe>O2 'Y̓[ܿ 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'pلGC>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg8sh̦;Nd8NaΝmξ}Μ>řӧ8sgNS9}3Oq)Μ>řӧ8sgNS9}3Oq)Μ>řӧ8s9< ?"p2 '`k|;r)Μ>řӧ8sgNS9}3Oq)Μ>řӧ8sgNS9}3Oq)Μ>řӧ8sgNS9}3Oq)Μ>ƍאٔ 'Ùg+<99&p2 gǹo2T0LST0L”nwҋc* `* 2cY$p2<پ;/p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2#ƣnq4ުѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45zFF^QѨhk45oոv7G 2 ' ?;>>L9Ŝbb1gXY,,s9Ŝbb1gXY,,s9ŜŒ4>&p2 gtx@[\v#Ŝbb1gXY,,s9Ŝbb1gXY,,s9Ŝbb1gXY,,syr1ڛ]( g^kW 'p2ξ ST0LST0 Sz^x9K/rrr`* `* ʌsgϓ 'pdgpr p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p̄[7y!xdO p2 'p2 'p2 'p2 'pd12 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 Ǐ &C{]z{{{{{]z<~4 p2 'p2`s<2 'p2 'p2أ p2 'p2 'p2 'p2 g}t9 p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 '9*͋|7|[? < 'p2 ' wh( 'p2 'p'8 'p2xxcNp2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2?*xosgUUQU _yWW 2 'p2/=G{3x< g1' ~}' d ONxr`Ad8Nlڹ:.`fFaRb* BaJBaQaJaJ!C_ȃE BaJQG* fJaJaQfFa`* RRqT)wܸhPrTGQ`* rTػ{[L(L1LS00L)T0L3(#S Udz BaJa`* BSuwuK\_cf``* `* `* `* `* `* `* `* `* `* `* `* ![(%Nc<:*={Ƴ2_e>+⣿_?&x³gϨV+VU|}XU<{gϞZx:۷nd8<;۷~gϞQ19ǟ~C|G>a>?{,WPVTUEUU3={FU`UQU+`UU<{gϞ3"ӧ^a2:$Ùg+<99&p2 gǹo2T0LST0L”nwҋc* `* 2cY$p2<پ;/p2 _!O,?~yշ7p2 g_'_M^uRͿ[{dW7_woտA>JLd8q }o/) `Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8NG^'ܿ|>3 ^}Uk̦3p2 'TZ ~++}N;k_,;|o+_}S%1 .d8Nd82vN`*Lun]MڷnohMo]u.s;`:c\ټk71L&<޽\zrqhNKyb* `* `* `* `* `* `* `* `* `* `* `* ![(%Nc4:*yV;,/6p3uH{2sɳw^:'O}oQy?~x]ϞjlߺAd8 lyy gF4޸ʝ#>;|]VV'<=^]fRX>_?;ZϞ;3"~ g^kW 'p2ξ ST0LST0 Sz^x9K/rrr`* `* ʌsgϓ 'pdgpr pҧl'_=̋3?o?w?=~O1p2 g>t_?|_9Ƿe~?+7->ogK#w޾`d8N<ɇ|C?ƿ_+=.x|Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8zl߾EDZXV|k__??\.:ٔyNd$9> | O[zEpW|Ŝyv~g~+`f46o|~q1O'p2 GfSv1UL:6}yk)6xxͥ l߻ûsua]޿l^d7s=6o_ls8=s:Ō^{֭;d-noΝ[y5Z) 67[ܺhݼÃ;ٺp;t6`b{.}vZؼXqo/ps{wna˕viuUT0LS000{ܼɝST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0ڸ@Y.p2 '7^!UU;(Ki>WDYŊ~3y>k].9 :gxwߪ}N3}xg1WqRR-ߝzsgK+|K>Wٛm.~O^{_E;;Csۯ03qd8N37Qa* `* BaJo ?ǻ^~ENN1LST0LSTPv,yd8blNd8An?~x{|+3;;gNjcd8b^k۬? >borOԯpV$&߽w^,o2z8 'p2'/~]c2B?5 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2?*87y/~wr]~O;p]q~G'|<]9кNgxϿ=i>ə7q>f&o}OO?1 >}ӧO9::_a2:$Ùg+<99&p2 gǹo2T0LST0L”nwҋc* `* 2cY$p2<پ;/p2\ڵ>9_߽sS_ ?xq< 'Y̍>Yn\/}|>ȩ[}2xO烜՗{y8fNd8ɓx?qtjpdAd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8NG^&~[ggG? 75f) 2 '#8ǜ^Q}7_un];>?v1ɼN+C'm>s?59g7ßu>1?f>oGAd8̦b* =lr.^awpnnp=n\iو~"ϯq.ـkSdH{,o7ڼ͋\j18<[LL9osM)L1 s+Wn0R&\jq+'nsuc͋yx;C47}7-Gmq Fjلޝ\DF޸\ڸօF|k[\~̔Br:\~T(T0LST09Ջ\zh`* `* `* `* `* `* `* `* `* `* `* `* pxrId8Gk<~4,'ωb7ߡyw> ݿ>_079͇淹f /8>^p|ɓ7پu 'plf}AY.9>^p| ON,|W?EfQ~į|üg~.w5OO#u~?[~gG?>O}q|x̦pv ONp2 'q웨0LST0LS0]/"''ǘ `* `*X;wϟf#|w]N}3|s1p2 g>w[?_rko>Lm?}{?^`֩ջy=^?Wtl< 'p2'/~| l8m( 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2?*87yp _ ^~e>} 75f) 2 g>_p9}}|7/~//|/̆ܙ~?o>?=?pDfd8N#)k{*&2<# kܼٔ{׹ܨپh:ehnwl%.\hγ*/r:=`yNWo11尿օ+<E.7.Cwoٌ˼uv:;}f].7.ox2e:ϕr.j3\~f{tB:{z:;{tx8`63wFx£WtIш}&.WxػG{<=F`* .7/gm `* `* `* `* `* `* `* `* `* `* `* `* ![(%Nh8`3 o[]2N'~Gcn"?~8s[\yw{>Fo,|z o$p2y;۷9x'O0'Nj7q-ca]>A? rNx?Ԥ?~}OZ뱈ɿxi^>}><6|?}~C]~?o|%>~_K߹(p2 'pd6e\~oSt\Yo?c4\2y˭Y ~脽[8_lf$qFk ^t޽6ׯo31e [ Ə׺̭h1cUjlsux\pxaX{-.^<uЃu6cu.UgcmΟu [v\St2K\8Wg}}{f 菧LuySLST(lL%jy:덷8y<# `* `* `* `* `* `* `* `* `* `* `* pxrId8Gk I6#?y_|"E|xϻq>/ۼĿ?W\b67d8N3`g6osrrL3'?y8\z8ho|؏} o<N#?:$}+Ͽ´|''',m£]v;<͈t2\>\>\>q00%(d8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8NڙW`OG5߿~.?`3p2 Md8y4!Vxtppfw;8 g}?B#2 'p2 GfSv1LM0NQU c6ǵf!1" &11FLSLMM *Sf d Nf6eoWxt`:c6*L0Nf3G޼Bg80AgC) &1T٘3f1 锢0 0 Pd:f|x)`* `* `* `* `* `* `* `* `* `* `* `* lm\,d8N~`OG~TP}}jQ>x@xZ){t?ᘣ?*pξ}o$p2y;۷98bQیѰG}>ᄣ#<|aGhQGh Ș>NGG~TG^pv ONp2 'q웨0LST0LS0]/"''ǘ `* `*X;wWȋ/~_os0## d8Nd d:N,Gt՗^ċ/~/6E2'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'nξw*9kgNڙӼvU^;*}4ZM0 p2 'p2 'p2 g< 'p2yp2 '#g0O'p2 'p2MY;Wb* `* :{\ڠ}QLST0LST0LST0LST0LST0LST0LST0 лӢټ،BST0LST0LSTwnrmk0T0LST0LST0LST0LST0LST0LSAܾl߼7#+IDAT`* `* `* `* `* `* `* `* `* `* `* `* `* ![(%N믱GEaQQaQaFQEaqTGqTEaqTGqTEa~Dپu 'plfsIaJQEaQaQaQFQGqTGqTEaqTGQFQEaQaQaQQaO2 'Y̓[ܿ 'p2 'p2|ΓyrrrB|B|B|BE:Nd8Nd8Nd8Ns''''<93'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p27/rw6*3 S S S S S 3 Ȕ””””””””””””””””””””””””””””””0 0000000000000 L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)?*?*#00000000000000000000000000000000000000000000000000000dF=׮\>!p2#x*3d6EfSd6EfSd6EfSd6EfSd6EfSd6EfSd6EfSd6EfSd6EfSd6EfSTfԾ=ܾEd8 v 2")2")2")2")2")2")2")2")2")2")2")2")2")2"2cWpv ONp2 'q웨0LST0LS0]/"''ǘ `* `*X;wo/O?~y_~/߯gFi\%4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4HPcH#4x_w?~y_~?׿?Ǐ?_~/?~y|~_Aiq ??kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5~?4H#o?}~~y_~/?_˟?7~y_~/?wF//.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~oWo?}?4H#o?}~~y_~/?_˟?7~y_~/?wFi}~~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>oX#4Hۯ~O߯_~/?~_g?~y_~/?ݟ~qiFi]kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5Fi_埾_y_~/?/ٿ?~~y_~/??} H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#o?}~~y_~/?_˟?7~y_~/?wFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiF~~~y_~/?og?o~y_~/?3H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4/~y_~/?>o/O?~y_~/߯gFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi<~կ_~y_~/}_~/?~y__/ 4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4x_w?~y_~?׿?Ǐ?_~/?~y|~_AiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiW~~/?~yy˿y_~/?~~O_84H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4Hۯ~O߯_~/?~_g?~y_~/?ݟ~qiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi_埾_y_~/?/ٿ?~~y_~/??} H#4u 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp4H#4/~y_~/?>o/O?~y_~/߯gFi?vu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW]ݷvu߮}oW_FiW~~/?~yy˿y_~/?~~O_84Hqq>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8<|q>y8}?Fi<~կ_~y_~/}_~/?~y__/ 4Ҹ_O\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp 5\kp o}!4Hۯ~O߯_~/?~_g?~y_~/?ݟ~qi5O?XH#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4_?4H#o?}~~y_~/?_˟?7~y_~/?wF?__cI#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#48~7H#4/~y_~/?>o/O?~y_~/߯gFi\%4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#I:Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>Apg83 }>A=2 'p2 G+˼S9}3Oq)Μ>řӧ8sgNS9}3Oq)Μ>řӧ8sgNS9}3Oq)Ο;=K2 'p|\rސr)μ~3Oq)Μ>řӧ8sgNS9}3Oq)Μ>řӧ8sgNS9}3Oq)Μ>řӧ8sgNS9}33v2d8$[ZAurLd8Σ,-.R`* `* Bi=^x9K/rrr`* `* JE&$p2I'Gd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8NݝǬܼΕKM.7 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfVA٠lj6h5 ZfW.]`u) 2 ' ia"!Ϟ=c61͘ff3fٌll6c61͘ff3fٌll6c61899fiq'p2 'y򘥳lltNf3fٌll6c61͘ff3fٌll6c61͘ff3fٌll6c61͘ff3={lƵ+d8 noqk1Nd8nJ`* `* )[xx/1`* `* *L 'p&w{d8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8B{u}FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRb#!)FH1BRbndQU'd8N>l0ϙs9||>g>3ϙs9||>g>3ϙs>t-]2 'Ùdux<Ϟ=`>3ϙs9||>g>3ϙs9||>g>3ϙs9||>g>3ӯSL2xŭT'd8N>xd8Nd8N[(Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8^;Oisgu;Ws{;Ws{Uyo@d8Nd81q2 'p2 'p2 2 'p2 'p2 'p2)F\X:˃ `* `* `* `* BiJ`* `* `* `* `* `* `*C!`* `* `* { `* `* `* `*C!`* `* )Ƹ4JSLST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0Lݝ\|Od8N>7~>z0k꺦k꺦k꺦k9뚺뚺8t;d8N3ɠFb뚺3󚺮뚺뚺뚺뚺뚺뚺뚺뚺뚺ԫpG3oPd8N6K  `* Pyҋc* `* Rpai$p2 hlqNd8NLr.59`Nd8Nd8Nd8Nd8Nd8NFpܾt;xNd8In 2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 ' KéW_kpW8+~G| ~L2p2 'p\s khNd8N 6?> p2 'p2 'p2 'Ñbą.y?nww-(dd8N췿/ow;8d8Nd8DV 2 'p2 'p2 'pqa,61LST0LST0LST0LST0ULryTST0LST0LST0LST0LST0LST0LSA6h?T0LST0LST0Jݻ50LST0LST0LST0LSA6h`* `* cۧ⅋ܾ}; 7Pb* `* `* `* `* `* `* `* `* `* `* `* k/ 'pǼƏߣkfϦ3nyl6c61͘ff3|]ٌll6c>sYd8$zKf33?3?wb$ 'p2̂/}w~ |o 9>q6o?77Nd֏__c<ҷ?NO>ɯ/yqNd8#.,&i\bݣr{#L9x@ge{ K\j]cp,gYξ(6^W.,Ѻ| osj/кtnOE.]HgQAR6:^&.4>`si6ۦrCL=|@2k\>W\pC tރܹRcWnrEsb{boWqBST0ƶGo*k}R*`* `* `* `* `* `* `* `* `* `* `* `* c]ӧS2 ' ?fyf:^s͵<ó㒇{SfӒ?{;C9,Ň~_۷p4ٳg9ϝe}NL2wh]l py>o<ɁPM'{w?|x_ov8#nW?X&o~Wy'ō}>3fΩ$[ZAurLd8Σ,-.R`* `* Bi=^x9K/rrr`* `* JE&$p2I'Gd8AmGܹ;.o/C!O=zd8Nstl&y.rw7<hGO_7{/7ѻu'p2$G7̻>.o?K_!c&d8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8NW<|y?E]b$ 'p2ػʿ/K8g]FqwN9dR~|ݟ'7y.`2i|üc/xgn=(d8N#ň KgybZb{&d{ƽ o7ykav\l;ڥzN>Zlo\7βv>wj6xnrwY_xgܸr6[Mnoܿŕ뷹۹gi߽ϣ][Mڃ'hmh]_ݻzxy[F>^:O1LST(͵4p,/XmrX`* `* `* `* `* `* `* `* `* `* `* `* ;vONp2 '|̛o=ٳ?=z̷|O/ۦ1fm>4||&w}KCt<᧳Ϟ=kΟ;2 'Ùd]кٳs*:|(xV _{yfu^'^cpweν >ſcooqxϞ=#9W8#Ùdp{[7Np2 'ypT LST0LST(Mڼ ?^~ENN1LST0LSTP)dd8Ns4I6׸ '#Hw>˟_kJeͿc2wȸ~b$p2 '#89:`᯿70-M>Opy8Jg>OqcNj/BytDd8NF|]Zkop2aNd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8K^}˯_\~+_ Ϟ=]b$ 'p&G֛~ꫬ'xkcޥo 儓II->;JCb2ab<:[ 2 'pqa,61UL޺իWi׸QQƕey wxrKMo?.^']:GM5k4j0xnhsWx\(?z2sof#7v6b omppp#tǣ}zkltVrAw]n^Ã^>7Vzm]1z,l02{f5o_<L1LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSaw1._)NᄏyOS>-/{n~N?˯6__5Kl #)~O<}:ٳg,]d}Md8 .5/P3>O|7W4~79&_Snw^]y#7x;o-+_ǹmӧ<},9W8#Ùdp{[7Np2 'ypT LST0LST(Mڼ ?^~ENN1LST0LSTP)dd8Ns4I6׸ 'p>1۟ʀc2}?:RnWއLߏ8 'p27'|K⾟0m~-) wtv:{>΋]Ǝ&d8Nd$9g~tgфId8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8>.y`͟}x;;;KQdd8ɱoO? :w.~h넓vk{H6C"'Lt^~a#IM" 'p2)F\X:˃MLSAuZ0Arz[7W9䀝lWq7W2*zw`<}\-ګX[+,/qhރu_(rp#JSJSJ̵c_hwos%Vi^EV76)F;n]z՛l?eµkc_JbK\v۷V}.}`:wb* rɵZ\Ɠ`* `* Xv._Nw1T0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0Lݝ\|Od8N>7cNN9:pt4j:ezܿ77ğ~<^|/=g|S"B~Hck|ooq7{>>}?( 'p2cg_wo]e>._e +|:}\ۿ7G:ŽCd8Nuϩ .oI8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8>.y0y1Ggwwf3ߥ(FL2p2Y ſ>gΜ̏o?&W.w׹_|_~tG|=͗_,<>~^:gӼ}sck$ 'p2)F\X:˃ML]6}<ɐKM>ʂ';\;Ww9(F>ݻﲹvOhܹ֮rmͣ=vr]+,/qhރu]([<8esw=@˂Y|<{}pM!\?\ʣ=vֹ&Rعڹ7|A1A:?YbCer;Gϲ` .sl;ŕWl?=9<ύ%6gEldST0LRyt`x]p%z;)`* `* `* `* `* `* `* `* `* `* `* `*"pr׿~_xxl&%>.p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2qi, ?1VXEn\eVo-|:?w(KcAd81.K" '3.p'FPƸ,pbl*fD8`fD8Nd8N#ň Kgy`*bJ2.Z^a{gDiRST0-bJ`*h1BT0-P)0LSTP)0L TXaf}T TSTP)0L)F =q2[;#JL T T (PLS@e#T T LS@jfIDAT*R`* &*BYƸ4JSL)F `* `* `* `* `* `* `* `* `* `* `* `* c]ӧS2 ' gxc|\qh1"EAY%Rbt0.K|lZ x\ 7Z 'p&lwp~ >.qF2:0S|\㒱 RRF x\ce<.qKJ-!E1qK|\k?!{d8 noqk1Nd8nJ`* `* )[xx/1`* `* *L 'p&w{d8Nd8Nd8Nd8<|ꓟS$ħ͠3 'p2 'p2 'p2 '#89|瓟$'yb2aNd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Nd8Kvw|֥&KM._jrR֥&KM..rop:!p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'Ñbą锧O<}:)ꄣId8Nd8Nd8Nd8Nd8Nd8Nd8Nd8NH1ya* `* ZpsmF`* `* `* `* `* `* `* ih ;; `* `* `*hs[ `* `* `* `* `* `* 2p] rop* `* `* `* `* `* `* `* `* `* `* `* `* `* ;OqJOd8N>7`{Ҕ6NL2Xp92Uac^{L2xŭT'd8N"p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 'p2 '?Axe};׳w{u{ۧ MBI!@) 1M3ؘ)at2"Ÿʲ[eْ\* \޻vU}ޟ]kW<}E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX?< E,nnpv՘b-{sxx@FFFFFFFF]N8bbX/n\[`X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"XlnsyX"w778q|jjjjjjjj{~=y9<{|qըY,B,bEX[kkX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Ҝygދy/潘bދy/潘bދy/潘bދy/潘bދy/潘 X"E,b kygދy/潘bދy/潘bދy/潘bދy/潘bދy/潘bދy/潘bދy/؛w7'"fscsX"KTۥWWWWWWWcދ۷xGxϓO<v9y8EE,bkWqmÃ}bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXX{Tak:f21GL#&xd8jjjjjjjjT,!"^Ƶ5E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,=gS^_aey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey%VXY^bey'OzڛE,baq5~7do>GCCCCCCCCCCCCCCCCCcwgs/+2ۚX")?w /Dk iiiiiiiiiiiiiiiiiiiiiiiii9wnrkٛwbX?< E,nnpv՘b-{sxx@FFFFFFFF]N8bbX/n\[`X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbދ+;{͍uf tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a6pwcϝeXz0%n^F,bE8rC>|Ƚ]7&͍u.^8bX'/Qm^^^^^^^y/oG=O>8jjjjjjjjT,!"^Ƶ5E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,Z}oryE,baSb0 0 0 0 0 0 0 0 0 0 2W.XbsuuΜzaaaaaaaaaaaaaax!9="͍u.^8bX'/Qm^^^^^^^y/oG=O>8jjjjjjjjT,!"^Ƶ5E,bX"H"E,bX"E,bX"E,bX,aX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b ٙmqoh;60ڼhwݽt2E,bXf&E,bX"EXX"E,bX"E,'O,sg67z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5zvvjjjjjjjjjjjjTۡҫѫѫѫѫѫѫѫѫѫѫѫѫѫѫѫkCUWWWWWWWWWWbދyojjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjL#Ν=oE,b k>da`x!00 00 00 00 Ca`a`VN,zE,1WWp 0 Çy8 0 0 0 0 0 0 0 0 0 0 $7֔X,b67ֹx<E,b8D]z5z5z5z5z5z5z5X}}<ЫѫѫѫѫѫѫѫQm'XX"z8<'E,bX{~cnX"E,bX"E,bX"opwmbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,^_}7y_}/˿S>7~E"&E,b]޼koE,bX"vXqnX"E,bX"h;<̝7l2fgw^^^^^^^^^^^^^^^^^^^^^^^^^^6[♗؜Ыѫѫѫѫѫѫѫѫѫ1;l޸k^e^^^^^^^^^^^^^^^3/qgk^^^^^^^^^޶ 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFd<Ӽ["xo1mCa``5.*Wt~0 0 0 ۇ{N9xw`a`V]f%bX,b^̩ax8vv5^tۣ~0 0 0 0 0 0 0 0 0 0 @|kloM"fscsX"KTۥWWWWWWWcދ۷xGxϓO<v9y8EE,bkWqmÃ}bX, ?pg~/buX">CC,px"I8<<7y?ǟ=2y>E,bxCC,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ڛ_ Ww}w}P}.X"oc\ à X,w_OKw8"6}:g?&E,bYMFFb>;{U{1FFƼj{goٛ^kkgh|^jj{7͋y5z5z/޼7{1ygޙ;{μmv;^;{μy/Uwٸv /_a{>goޙWWW1w杽y1FFF޼7/hۼiַ՘μmy5^>dv\Su<x<Ç?ȇ?a~ӿKx8 0{|qըY,B,bEX[kkXs]z? \%~Go}ͫO6mbXf]N+/|s|+ڴ{oYX{_=,}?orswE,b-| _! -L[,XX"E,bX"E,bX"E,bX"E,bX"E,bX"|k888G۾WAaX"I| #F|o^//O?~ ]s?gox"E,'O,sg6;7Y{<οĕo0kwը{Z[c4K\<"\wnʱo3zmݛWx}-_y+ŋxsc7\_愪FFƼvlK2|7٭FΰCLs  ^]vf#޸x{^s{mW.p.vW^~6m^L6~tW/rwMF&׸|_{36;}[vk轱qcuwxBUWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWc2qi~-bXX{<Էښ2 >xk|u^z4#C6_YWwx 勿1ǿG~uCxٍ3&?7=d;!͗9Evˋ_s~3G\w<lq_c{kJ,1\p" N_.^߾c>{|qըY,B,bEX[kkظ]>_/!Ϝ??_|o|?t"b?L.|_94_>wG㜙t#&Opwql%}X"q9%# O|x"E,bX"E,bX"E,bX"E,bX"E,bX"ޜo|ˬ]]|+|۷}W!_ewwEL,b8duc|/}s W sV/ٯ%Ϟymw^/?)_?!>_""E,'O,sg6&\{/ׯk~&;ɫ7G^l߹ g_K;uW׸z׸{:/?΅Kqer^<{իr_a=ccO+sܳ,/?׮z^bkg۫q5ec%94^µ+8w ֧m^z wfS6nΥq5n\9ϋ/ t7F^l^ų/sK^µ+8w kSjwՋxUn^_O+n;Wyi^|kW.s7ٞp^9.p{sBUWWWc޷y9Ξ:ɹ3'9s 7iEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFd<Ӽ["xo50x;O?s}sxwxC_?Ư'yOo5]<Ʒ8Wg`weV]f%bX,bΙS}}wUzMv8|]"G/};~?/_S-6?o峼G7csIwwEG5b x@,bX%ҫѫѫѫѫѫѫ1[<#'^^^^^^^^jUǏ}Oxj,`?'wuot^?iΎ[G"9= g'"EsW!u~3<}u"E,bX"E,bX"E,bX"E,bX"E,bX"ޜo|ٟ '}6o//pppKE,b_0y?^o\;|ßeup1'>^>q:ϯO0_P7)yE,bYM W_<ɋ/7׹wo6nK^cÝK/ʵ7ټy?[ܽ{mz˫pyۘճ+*waeΜ8ͭ=.pܫL[1]ęrgѦ7xl&ܼ k7ש.k/s+)jK/rlΰlFwm\3rMys/xw/-\{_.Ɉ{w0ڼ͋^9)/֘mvsǟ˜yw՘-nrϝ6o^gދ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^xĹyE,baSbk:;ۇL.?~Gv?_,q9G~7x+~[~Fo.?\=|wwX>"X\]}ӧNCyy]vnOY>};>7[x\zg7^~?3k.__v|Ϸ4ywxwG5b x@,bX%ҫѫѫѫѫѫѫ1[<#'^^^^^^^^jEgy~w8u,/(.>'>uoX"68ǿ/>?ۋ_+5n4t~>?xXX"qy>k6pL,X"E,bX"E,bX"E,bX"E,bX"E,bX"ޜo||ԧ>ſw7n;,bb,||G|wo'2WN gYs1&ۯYK|?_p/؟'[8&E,'O,sg6uNp˼9ڢmgY}&_hڝr%.ɝلμ^6/.=ʉ fy5z5z5z5z5}[ vzg&\"ަWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWc2qi~-bXX{<1Fppou~D߽Dž}+o?ſ?‡?|?ɗ/rQ>~}sp,_bebX,bV_x88`W>ï||o_uO||wS}+/Eַ_/}??!>>Ñ)XlnsyX"w778q|jjjjjjjj{~=y9<'ٷE,b9|>Sck8w}?q6}'?&?osfE,b8d<~K8!Gﹸ1%E,bX"E,bX"E,bX"E,bX"E,bX"E,7_27o\W_{{_|XbGoW?C|ooۏ&?c^z|OO~;zr eBw/}W5c1%1E,bvw8yb;m;oxMֹx$oP};.5;lﰱ1mӯ;ӧ>53t]jw[L… W*Ng܊6Kϝloޣ6sb4oݢM7)^]`w6/=w; o\< /1eM^~nWަ.7^kkLs<'O-W^:uvw6pbKoܥx9lhe^+o2ijjjj{ce^}2vo3~sEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFd<Ӽ["xcgX&|^Ik8$h׾6f];ɅO|>=qX}y+E,bY[}[,`zK+0n{1~Vx~v6vg\໾G>u}C_<&for27",aggWޚE:/E,bqwsǗKFFFFFFƼoأ'xz5z5z5z5z5z5z5z5rqXbVp"6_xSk' +ٷE,b$h|;?~{o?kw;~g|Gm^o}?O!;sEs_'9regAv^|E,bX"E,bX"E,bX"E,bX"E,bX"E,b9_?pu^y>sE_bwwEL,bpg£xwh#<;㽼>~?m'w ?Y3׎O|׷~߇o_},,bXĢp2woӫkƝkq N=,g]dތދ6's7f[\>w3'ԩS\~V۬_z} WjɛΞ|Sϟ勫Lظ*/݋5^>{q+jv٘kmjƵ \Z̩8,/|[M^~̶Ss+=<'Opmڼopq^Y[.7.rqΞzS+Kܝ۔ۗ^srsp$-bcC6v,Wv.;\x̶ճsq6;ѫѫѫѫ;xy^8yS+'8ql^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^xĹyE,baSdQ9>}>n&Ẇ>~gWos2Ǐocw E84W.Xb:?X,:}}>;Ǐp_]^A}?;FN3_97=Fw>#.3en [b6Ub x@,bX%ҫѫѫѫѫѫѫ1[<#'^^^^^^^^jE,}uVWظ7C6kL6np5ۻ)c, y!o??g?F:W^._guu7lqV~MzuC޺3N1NX"E,bX"E,bX"E,bX"E,bX"E,bX"|7x3̶Lc._z7ofk:a:pot/RX"["6ϸ{.wj͵Yzͻݼb>ͫq{n~olHD,bXĢp2woӫѫQ3f{LͶ*v_>ьyo֘ɽը-[-m{tq\|-7ڣFZ•W~h^lݹٸ7eO{hoN,?Ϭ^L,bE< ho樶~+U6m1{:_ĕWƛ5ݾɭ7G9ڛl ֮\kܙl7G{s7gk'~5+?aܐ 0X$Ara[Ȣ/7nX"E,bX"Oɟ w-tE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,N....[1E,bX"E,bX"E,bX"E,bX"E_-oBV Z-Zo_˧_o{Q Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-Zhp;lkBV Z-ZhjBV ~/߽娅V Z-ZhjBV Z-ZhjBV Z-ZhjB~O?Of~ůc)ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBq?r]XzG?+ެ+ѨPkBZ j-ZPkBZ j-ZPkBh|?~F,b?ωMZ j-ZPkBZ j-ZPkBZ j-ZPkBZ Z-ǿ?˿1o|:O|tX"S˝V Z-Zhj*{w>NZ-ZhjBV jzE,F_| A,bX"E,bX"H7|7\~7|͠["E,bX"E,b1~ ׷p} ׷O<X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,jy/99ZhUV9ZhUV9ZhUV9ZhUV9ZhUV9ZhUV9ZhUV9ZhUV9ZhUV9Zhǣq*Gr*Gr*GrGr*Gr*Gr*Gr*Gr*Gr*Grxǃǣq*Gr*Gr*Gr*Gr*Gr*Gr*Gr*Gr*Gr*Gr*Gr*Gr*GrJ+~W|7"WR([-rKRo)[-rKRo)[-V|_g"1_<V)[-rKRo)[-rKRo)[-rKRo)[-}|/G,z̛5<"frBV Z-Zhp믿坏>V Z-ZhjBZ|C,bƯsX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX<_?嗼^o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+o+oW_?8A,b Ox?wr;)N)wJSʝRr;)N)wJSʝRr;)|Ï~ȯKbX5f}JSʝRr;)N)wJSʝRr;)N)wJSʝRr;)N)wJSʝR_~)GEyy⛧X"߬<ZZhjBV VyW޻чtjBV Z-ZhP˝O?{E,b1z՗_tbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX>L7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘtcnӍy1O7<ݘ?n oy:E,b7kG?̯^2z%̯^2z%̯^2z%̯^2z%̯^2zO^MK= /'E,-'= _d~KW/_d~KW/_d~KW/_d~KW/_d~KW/_d~KW/ɫ?/*1o|:O|tX"S˝V Z-Zhj*{w>NZ-ZhjBV jzE,F_| A,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX[.......................................................................o<E,bXXo׏ˋgxgxgxgxgxgxgxgxgx߿x~X"?s^<{ų^<{ų^<{ų^<{ų^<{ų^<{ų^<{ų^<{ų^<{ų^<{ų^<{ų^<{ų^<{-?ǿKjX7k>'y:E,b󇏩NV Z-Zhjh_;}OO'Z-ZhjBV X"/>_}O E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,ba==@z<x=@z<x=@ǁGbX"x=@z<x=@z<x=@z<x ="1o|:O|tX"S˝V Z-Zhj*{w>NZ-ZhjBV jzE,F_| A,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX7k>'y:E,b󇏩NV Z-Zhjh_;}OO'Z-ZhjBV X"/>_KFa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=Fa0z=F{V Z-ZhjBZ|C,bX9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣s9:蜣3zE,bXoV?|L-wZ-ZhjBV G+]xz:ijBV Z-Z'="E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"߬<ZZhjBV VyW޻чtjBV Z-ZhP˝O?{E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bYy1ijBV Z-xwy?BV Z-Zhj;<X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbcjjBV Z-Z8Z_{G~IV Z-ZhjB-w>y@!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"frBV Z-Zhp믿坏>V Z-ZhjBZ|C,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b󇏩NV Z-Zhjh_;}OO'Z-ZhjBV X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"S˝V Z-Zhj*{w>NZ-ZhjBV jzE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,7+>;Z-ZhjBU^.|<=ZhjBV Z-rbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXoV?|L-wZ-ZhjBV G+]xz:ijBV Z-Z'="E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX'O5-4O|}NNWW:U]])82(i*  `)"}g}w;E#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#Gr88888889<ߋ..iiii{vrFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi]7;Kqpqpqpqps=x`]x'\v%noo988888888K<#4H#4H#4ئ6'MMMMMMMsl۔FiFiFiFiFiFiFiFiFiFiFiFiFiFyv{kvnFiFiFiFi^H#4H#4H#4H#4H#4H#4H#[s#4H#4H#4ҺrkFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFZW[[?4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#4H#Gr88888889<ߋ..iiii{vrFiFiF_~eO/I#4Ҹ|V?<=W\/=lgjՌ3FZg*4:ϳƯ՛n}liW3DiFf\͸HL48Sg"PW3no\[p//~[xƶB]͸qH#Qu\{y弼Fjv5Lq3f\͕FW3TiJ#sƙq5j[ x'}ؖ+\unFZg㱭mkv;no5J#3f\QiFZy_|_'z)37xar{.=oxZ?+gg8ݓ_ujxރKƭy?YqW3fY+7{Z978SW3f4:ϸqk??|^=j<ē"^'}iڽ=Xgwz}A4H#Y>;}]lƹ:3/,lgB=|{]?ķMG?K!?/Z*4l_~>SN˽~7{-ywz׽ K/>{'GE9߻׻߃ϼhz'];&<'ty3|wם>{l}־Y==?{}|q3΍4;=>ww<g q>pwuO~c3Qww}vF)O_-x^wӷO]_lᛯ_wޱꗼy-N;{=w &iqf{8[x<޻-7Ϝ:1gANA?9|Qx~yC'g?={}\nFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFi~W_w^q~coկ:ɓ^q}c4x7.gO~:~I{هW~|j{ه?W~|􌿹v+<|'x|۽<^wyYw\͑-?d>o|k_^{+e׾ ]}ϽSN|'$ǃ˃g<=?;9z/W7Wwmsn\o9O~+<; F;^{v;nmۯ}=r8M~_o;nS^^o{zHEw_s;>=//7yi'ҏ\kp˷O3OwtCwi:ɓN?O/I#4c?g׽~?'y/Nk^xԫ>r_S{O.-g~_wxoW?//+Gs>K=s8z_sO'õʳN|>k_o:}z{/u[S|;RU#㫃^sA};On>{?3G~9o>ݯq7yǮHqg~?~p-.W+gf~oOs{o~<ݟoxdS|KOȇY;?cHEw]u>~w???xt}wz[_ǝFoֹǧڏ^|ΫD Y;r^>30-k^=:7Bo{^|o?rm0.}g7~֙:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL4H#4HÇܽfa4N4N4N4nN /.-qpqpqpqpaݻgFiyw{辇ꫮ?OoKH#4>O|= }W_y|^۽+yxdOgї>/ǟgc?-||/yﻼǷ9ISyOS_/lYi$~oէI/o6|Q/}߻W[ /y=޽*qy7my|5y߯o}G#ƧЧSZ=M}ҏ\xϭ)٧>`e׳O}+.?xý?Ͽ#Ƿ+>ϿC9srgt[pnή)p>/m_;^:lm{|~ү}ӿCƿ_իN5>ſ鉯G6qHqg~?~p-.W+gV;1zsgxǵz0=oW{k?}#:US=?=ԇ~Ǎ57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57X_sc}͍57׼{;|#H#4HÇܽfa4N4N4N4nN /.-qpqpqpqpaݻgFg}tC.`mg>|`aN:k3Փ;c><KNǷݙݳι={ FO{+O;]ל?Yǽo߹a9G/a݇o~{4w|3;z9L|_9񡋽ŕ֧Ǿ [+F,Suwrk{y׳O=}2;/z >Ͼ?j۝ۮw|stq̻?Ow wV~>7|=~?zns^w޳]|hsv{o7烛F;<~];7K~yVy/=7W_|{׃:7Rܙ/^ǼtU> =Mv\GyW_.z=Z<;6=Fi^讫.􃟸'O-[~N|?W~~;q:Ƿg_g~"s}>x=q6=tGnƳ^qq{ۯ~F{==7ǽ{푧ƕG_xṽ+<_{}{wqS7apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. apX. ŋzw~=3FiCutqpqpqp7у{хxe^88888888t]3H#?{+p5L~+Oӛ~4H#>roz۽5/<7?jY䥟Oҷ7| ^qWڿwww}koׯxo~={ =W[ο{ G[ox~w_Ϳ3?p^~}7տ^}Nz?/ ?sK?a_xG\*2=Wėo^?xn~켼&xky˭sk}9_+=׿axįdOE~㊯zYNssO z9ju{?7}]^t-mknţOϽӷ^+?׾}Omֹ_yWgL>t ^ׯ/Ʒ~p7wgzS FiFZWG>>zg橅s.3ݑ՗ oo=~]/\淯_ۯͧ#nϛ>|;b_Ͽ$ɋʯwy >so^W^5_8|3qozWً/0JL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uԙ:SgL3uO<w[Yi#{͎iiiiܜFE^ ]z[N4N4N4N4=w9H#4f|}lnoFoEKsp̹K}?y^|zLF2m?K|O9/{U7z`y~Kso\巿}o3n_~ ~{?)o{g/gO}=2unF:y{y{~S| Au u˝.[g^釻|Xiÿ[_}{_>~3zyvW?sG=ٷ| rxYH#[? >1?OG8S=m?}?y~秷zx7]s8I#4H#+F'c/Ҹ#t͍>tл4H#Gr88888889<ߋ..iiii{vrFi\͸|}noFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiw%4HÇܽfa4N4N4N4nN /.-qpqpqpqpaݻgFW3{{d[+iFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFgC{loI#4x!wqX:888888 ?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>?ٟg3|f>gvK%]%]%]wM;}޹g;{ƹg;{ƹg;{ƹg;{ƹg;{ƹg;{ƹg;{ƹg;{ƹg;{ƹg|أ=%]%]nz=#>w3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3Ν=3z' 7KtY]|SO>tItI\v~w84q0iL`GsϺuzzb84q0iL`=v~b.r .>XKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKM/pK[67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰaks憭 [67lmnܰQ} tIti>/z_~r\.-Kr\.-Kr\.-Kr\.-Kr\.- S}^KKx] qrrb\Z.˥ri\Z.˥ri\Z.˥ri\Z.˥ri\Z.˥ri\Z.˥ri\Z._vxpK<'h"Kz NOKKp;4q0iL`88F{=w5w84q0iL`pHtIE]p}'%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]i#>w׮JbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$EbX$$]jg!_uTKtt/|zm^[zm^[zm^[zm^[zm^[[\K,.>/=W`^[zm^[zm^[zm^[zm^[zm^[zm^[׮zsuxtY]|SO>tItI\v~w84q0iL`GsϺuzzb84q0iL`=v~b.r .>XKKK,]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]m.............................................pQ=pKortIti]~ V+jZV+jZV+jZV+jZV+jZ?lwK"mwW8XVVjeZYVVjeZYVVjeZYVVjeZYVVjeZYVVjeZYVVje^K3qtY]|SO>tItI\v~w84q0iL`GsϺuzzb84q0iL`=v~b.r .>XKKKЕ.1ItItItItItItItItItItItItItItIt;9Y8NItItIt矻lY%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]G?a\iO|rtItiϻ~zmZYVV5`mZYVVjeZYVVj͚jeZYVVx.|[K,{|ˏjeZYzeZYVVjeZYVVjeZYVVjeZYVVjeZYVVj%gpUHr|­../\q84iL`84ѥuwy4q0iL`88z"%]x{\|zɱtItItIGpn..............閣z_k%]%]%]=oOo&............................................2>{E`ڷvz% :^id;suڑ`&,/KtI׮YVj啓=ܙ3x+jZV+jui_u}7_YYVVj}a{-]%]i jZo7~|jZYVVjeZYVVjeZYVVjeZYVVjeZYVVj%gpUHr|­../\q84iL`84ѥuwy4q0iL`88z"%]x{\|zɱtItI"NO,}f-qrpEJ/x' 'XKKKb' 'DZHI/ZKҎ?+̮XGKK\7oK............................................2>{E;Z_ƣpGwhOn}-4M>Y._..]7m?y׮]Zܾ}۫#_W~7Nx}-o߶Zju3۷ݾ}z#ۻm.H|ˏ۷o[7o}7Nww׃O|ϭ5`ZV+ovmzrmXVݾ}۷ݾ}[w;{7].+/y':=..•C84q0iLh]zY}߽NOOL`84q0iáZ,"]%]wŧKtI^_0\wxϽ/O|us?C7 *-]%]%{_w/=yq߻\ '#{ 6|_?OZOR..W/>M?Ҩ#...........................................pg.^^otӫFη;W]q;=~fûm|/-n;z)/:\憏o?_ymַ_꫷6M;>яֽ#gѧ?>9[i|\,]%]n~]jZy7gg^/W,s{8^J?k 6y[z}Zݏ->y5_}z#ۻm.H|ˏW_{xnt۷\}i~píW}?}k^opo֕_zѧ>1<|ozЗ=}۫ۺO?Ƶev%O=['%]%]^rph84q0iMK=랻iL`84q0q8]EK".ӓc.kοWG?z8s? o>oۮ\__y_/OW'..7]|G|g<__ح;~l?G̟l..ro_l} b!]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]G?a\,o=}|cˮ{×_Io>o}e/w|'oZߜܯKo?>pu9zy˯s/s_=x0#p 0MO~c˗KKM}޵kWV+zr񼏼>'+,^mmom6w׾oئد8Ӯ^}Uʣ':6ݿ_myY|_7_񥏼//|O}ok|٫W_U~7].+/y':=..•C84q0iLh]zY}߽NOOL`84q0iáZ,"]%]wŧKto9c?s̽_GwA;~gs-/JJK:NsȩOxl?ɇ?Ϳ^Oױ[ɷ?WOyk3XDKK\7o/"%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]e|#ŋǝnrŋ#{x?{;_:_~\[ooyK8w'zҥ/xo>w'_pn=n_ Į}WtuW܆[gwCVF|niO|rtItiϻz%rie?|;~{n|dϾ9uhK.?waۯb\Z.^}U޵w;%]e6ߛYV˥+x~{O_KG^Yܷ=~~g ~gC/<~7~w~MY~_'W^ye#g?׮JEڕ˗<nHtItyewwáiL`84qp4.={k^'q0iL`84cw-..Nj߻NOK:_g=yIP/ ^ЇW|Ow/{>|޵'~ߗ, {k{/HZK:N}o޿ԭ'O>;~[/JtIt;>uo=[_x۝{y~ok'=/^w7.a]%]%]^|7K_h..........................................2>{E`}N{х폸mx*<IDAT~M ~g]=o|^{[塧c^?;~+V%NO_qqr{z>wypr.d`Wtzzjʫ'?1%]ҥ/8>^X,~'?{?;?{~_;x'\..rG7=cco ..........................................2>{E{wھxV7x[>w^ʫ/?yǞ;M_=x}O]g]/(|Q}ݰW_W}Gw @|ɟ~_<i|\,]%]n~A/p"]臾{?GG>/nl}xoow~З_0^{'YGtY,bw .|GK,fңNOOto??c?G;?o۟7}?c7Ϸoܴ蛮?O>_ݏˇ]_3׮JEڕ˗<nHtItyewwáiL`84qp4.={k^'q0iL`84cw-..Nj߻NOKK_pxfݔ:2^wU7ݬ_WOqtY]|SO>tItI\v~w84q0iL`GsϺuzzb84q0iL`=v~b.r .>XKKKKKK~NKEnzaq{=۝C*]%]%]%]%]%]%]_3.yϻ=yGJKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK8G>왋?~냾sk܇>!Ї|s_siO|rtIti]yyhrt49:M&GGhrt49:M&GGhrt49:MnC.|GK,f{"hrt49:M&GGhrt49:M&GGhrt49:M&GGhrt4}OqtY]|SO>tItI\v~w84q0iL`GsϺuzzb84q0iL`=v~b.r .>XKKKKKK[~ǿK,rӵO|?q|ōn.......v7|+_7W>?o>JKtItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItIq8?]|i~ۓ{/uU?/<'kC\,]%]n~A_h`88q0q`88q0q`8d w;%]e7أHq84q`88q0q`88q0q`88q0qL?xg׮JEڕ˗<nHtItyewwáiL`84qp4.={k^'q0iL`84cw-..Nj߻NOKKKKKKKqJK,nz֩oz։ӓEtItItItItItItIt;>>v֩oz֩o8YtItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItIq9/|KKtݴ{OCpx`8<0 px`8<0 px`8<0ϛ.HtIE=px`8<0 px`8<0 px`8<0 px`8<0C/^gpUHr|­../\q84iL`84ѥuwy4q0iL`88z"%]x{\|zɱtItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItIyw}?}.f{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3|of73ߛf{3{ O_/;9^HtI/?楗~h áa84 0Cph áa84 0Cph áa8txxw=tItY]s=spx` áa84 0Cph áa84 0Cph áa84 0Cph ák׮o|ݗ?uHr|­../\q84iL`84ѥuwy4q0iL`88z"%]x{\|zɱtItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItY|+{vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶmwgζݝm;vwlٶm_^|''%]%]R/Gv=Ȯǿt_:/{Oufg̞d $ ` !bd2E̛Cx1n,d%#D[6r nQ[75 =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~׿3Og[X"֔r&vr2L('Ʉr2L('Ʉr2L('Ʉr2L('Ʉr2Lre/ ~q׮E,bkW<}~u񸠜L('Ʉr2L('Ʉr2L('Ʉr2L('Ʉr2L('Ʉr2L('Ʉr2L\ȑo_`[YgNs}1'E,.lvU9JꪤJꪤJꪤJv늭K9tn?cSW%uURW%uURW%uURW%uURe6 E,faY6oX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX3|;w6)\a\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQ0. E(`\qQP\…*I/,o\gy}|fbX̹Xpun\c/&E,bܸq9l6c11l6cX0ov7/_bE,bX$as}`yc|fbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Crasn^G~oL~缶б;|~缶Ǹusǝwwwxy[\ 5Ǹ:v7{|7sȟ>~d:m[&G_|%еﳿOu<;E,f1/{g>>mע_3_7nSsC]GutmKA׶ﳿOuеmKtm>c\bř\_̉E,b;۬=BUN***ݺbE[X,UI]UI]UI]UI]TkGB,bY8w,{"dcp'?MkK/r_ӟ{·91;}}U#w]p}'\bvuO=ξ@,bYK^䙧Opsq+Ώ8{m΍لXٗXߤ:|﹗$;5I~uvȲ\~YYs?}^nﳿ>?ڸ -Μ^bN,bX\frB]UI]UI]UI][.r=b1JꪤJꪤJꪤJꪤ*'_;lbXƹl`1#J~oC O>z?wg?CyW{z7ػgࣼڔX"̥' 8}Exǧؘq}Vqy~zpckrffXb|'_x_}=~spCxmE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b|> 67`yϾo˿g1}oG_o|={?<%~-o>w<ۂK_ϫW;n;?}q/\?Y5{GWw ys@ŏ?_&C(|7y[\ 5 ۖ7Y}˭Sl_ٻd躎I"GGڣfs7oҶ-O=ξ@,bYK^䙧Op>0_O1B9˛-]O?5ڀ 7?~G?ûQz>gKn޼͛7ď!loq:sbX6kGPꪤJꪤJꪤJdغtC=9uURW%uURW%uURW%uURW%U9QfXbo6ΝesCglMmx"'o~_⹗꯹_ǧ~W_6oCm^!El|cC_ #/O7ﺓ?y!Ӝg5KyǽlNo4d1cfX" &y~b1g;.jfE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,5Ѓ\+|x傽T#;$:Nyy|k{wCl~~ ?czūw<&7/ą}߸J@?_xuty[\ 54MC#_ͷq3~]8S/ֹĝwp#bsl\}n6 MӰQΝ-E,f1/{_<}h7/?ʟbW^~ _aG-og~]wf*}᳿[x+uOin6ܼ M?ڸ -Μ^bN,bX\frB]UI]UI]UI][.r=b1JꪤJꪤJꪤJꪤ*'_;lbXƹl`1#qgmo/0+ǹo]fwC7?(_[ox<*)NWcb8,|䳏z:7/?_qyYsrOw37`U;Vekg|Cx-@8ctm \9YJx+7xZ*~tA;N9G'Kk,7E,baMy|u\`>c>_1ӒWx}3w&n퍼WV׹Ü>c>c>O=¹%,f܋<} =9o\g1R63?oN>_SO/sx+?繫|'yǿ1׸x9>o5cn6nVa||GYN?ڸ -Μ^bN,bX\frB]UI]UI]UI][.r=b1JꪤJꪤJꪤJꪤ*'_;lbXƹl`1#I}}w?r¹??sp4'OoRCVK|yiw~ -5Xfw#xsW*~m_^`yőrmox4=ρ7ַX"E»_\ٳ8ǸT2E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bQՇ&,_s?˼̵4K|~Ow37`Ux>؇`g*V7 Zf>p=KgMnŹ|Uz=?E@]/wq2/o7ٟ?L|Cooư6zmǏs鵚,f׮ϏkXbv8sz9E,bqygG uURW%uURW%uURW%uU[Wl]ȡpKŜ****p|(YE,b7 βy~|X"eorכn37[m^>>?[.>gG?ӭ oڮE,b՗7ɭ?sy/-7_ǟŽ\߿_'{?"*y啚=c+{E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,5Ѓ\+|8raw'$=>oJUsTr%#VqrdrT)W0V-b;!X.{1値y޾gfm_/o_- Oy _@k_19ǓM/q~_>{ʻ?/WgK_|0Λ%n~@o.xxU _ }X"֖o}_||nl~ok7w_4!_ :WqC>~70e#]8yģX"G+r}}mvw?G_oտ_;_ў=~o_o_w^w1ˎt_{2g[$Wg]'ܿwW"Ou|Z6ZhjBV Vyc^U^y7BV Z-Zhj 'B,b]8}l}%E,?'>Okۧ<]?gws#/vvWח;vxt͏}<Vs/>{~ǏN()}^^W%c6-PnE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bZ.G'G'\~CO}  ]_VÞs38O{sM5?=gp詟>'/?>uCkxsZk|'KbXX[M>>9жCێOx]}~{K'~?;d3w_~_i8>X"G+[\]жCڲ-xOxG/i-6>=.\tnxOX>n;+s>?=vۡm> կ'bs E,bSnߤ Z-ZhjBU|_{Wz hjBV Z-ZeɭcvXrN-9[r}uI,bXv2\.,bۅݎ]%wGks./w\e|z_} _}+||'\\&\."b].\.\L,v ;vN=_o-VO~E."ܙE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXr~΀ŏ 2wn֭o~Wh?/E,bam979?9nvmn;-kƶkt]c퐶X[vmnX[mlF5-v--"Ŝ>Zq[v]v mX[-vlF5kEc5]CbulF5]cbmhvmvOW|'bs E,bSnߤ Z-ZhjBU|_{Wz hjBV Z-ZeɭcvXrN-9[r}uI,bX"E,bX"6G<8F,bK~| __moRY"E,bX"El+/~/| | /8~%"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ >~p\7㣇?vgL>sh?/E,bam979SjBV Z-ZhjBV Z-ZhjBV ]׸y[!O./E,bϟr&lhjBV Z-tǼګ֛op}}EV Z-ZhjB-NnۅX"phKbX"E,bX"%1E,v/_ ׼ڱE,bX"E,bX"6WWW| /_^s3E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E-?{w9 Á=~7U/E,bam?壟~Hl.( 悲l.( 悲l.( 悲l.( 悲l.( V7ܼ񧼿ZXbs[3V) 悲l.( 悲l.( 悲l.( 悲l.( 悲l.( 悲l.( 悲 |_O.߻ˋ+bX:I-Z-ZhjBV ]<1*\__jBV Z-ZhPˆ[v!.>Zr>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb5=h>Q6j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RP6C>}KbXX[n|?}F)JPʆR6 l(eC)JPʆR6 l(eC)JPʆR6ŇgkbXbC? l(eC)JPʆR6 l(eC)JPʆR6 l(eC)JPʆR6 l(eOY-~ .>}F,v1Op]^\_X"?MjjBV Z-ZZGyWy7V Z-ZhjBZ6:f E,.wђ)W"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"|>O5l|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2MϦgS)ٔl|6e>2M\]]X"x8֟;?dX<|x,>`X<|x,>`X<|c~x6>X"\<~~瘟<x,>`X<|x,>`X<|x,>`X<|pw979}B,v1Op]^\_X"?MjjBV Z-ZZGyWy7V Z-ZhjBZ6:f E,.wђ)W"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"%˗}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ=g}߳{}Ͼ_X"E,x򳏸s|G78> np|tG78> np|tG78><{|X"'{:3np|tG78> np|tG78> np|tG78> np|tg) b]'ܿwW"Ou|Z6ZhjBV Vyc^U^y7BV Z-Zhj 'B,b]8}l}%E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,baoѶc5mml[e*VٶʶUmml[e*VٶʶUmml%E,bXX[]c*VٶʶUmml[e*VٶʶUmml[e*VٶʶUmml[e*VٶvۈE,b9X")oRˆV Z-ZhjB*O>z믽+oWZhjBV Z-Բ1]E,bq O$E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,v1Op]^\_X"?MjjBV Z-ZZGyWy7V Z-ZhjBZ6:f E,.wђ)W"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX".߻ˋ+bX:I-Z-ZhjBV ]<1*\__jBV Z-ZhPˆ[v!.>Zr>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Ŝ?}{wyq}E,bX||[7eCV Z-Zhjk'=^啷|+Z-ZhjBV jpr."܅GK֧\_]X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"O./E,bϟr&lhjBV Z-tǼګ֛op}}EV Z-ZhjB-NnۅX"phKbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbs E,bSnߤ Z-ZhjBU|_{Wz hjBV Z-ZeɭcvXrN-9[r}uI,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbbv1].fbv1].fbv1E,bX".fbv1].fbv1].fbv1].f".߻ˋ+bX:I-Z-ZhjBV ]<1*\__jBV Z-ZhPˆ[v!.>Zr>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"жѵJ ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]+tеB ]lF,bX"V/qνr wnp wnp wnp wnp wnp wnp wnp wnp wnp ?sG+E,bXl.j6wnp wnp wnp wnp wnp wnp wnp wnp wnp wnp wnp wnp wnp wO3u"O./E,bϟr&lhjBV Z-t,DlIDATǼګ֛op}}EV Z-ZhjB-NnۅX"phKbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXr}3O#&xdz믽+oWZhjBV Z-Բ1]E,bq O$E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"v<ϗ} Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj?>X"֖m~>}pqo/E,bam9֟8 0 0 0 0 0 0 0 0 0 0 |ַy E,v1?ZraaaaaaaaaaaaaaH76ϟ}B,v1Op]^\_X"?MjjBV Z-ZZGyWy7V Z-ZhjBZ6:f E,.wђ)W"E,br_{~OE,bX"E,bX"l[eX"E,bX.#޿Y"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bZ.p>c88>sa5%E,-GS>Áaa}׼xg3 00 00 00 矱|> 0 wo}G˟Xb%wnaa/~g|> 0 0 0 0 0 0 0 0 0 0 $_{>!O./E,bϟr&lhjBV Z-tǼګ֛op}}EV Z-ZhjB-NnۅX"poz2a3tϾfv=gvw;$НCD@;@Hq:88J8 `a X%P-[%ջR=*I֒~s߇yww- noo{iwם˿CmvwY],tg{ww.K, p}_knmotg{K;n/]6Xb%xů_'_&Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb=_cT__g^Z} _xk?}˨罬N_^ʕ˖XbdGz^~y+n<+oɻåםkׯz5]^~O}.O^Q_sgyucYb%./~ާ<{u/'_777߶곧'^kUUUvׯkלyv^k׼^vyk׮Y煍s,Y?%Xb/YG8888888xq=uw~o;qqpqpqpqp>~`e-C;zݝmK,n]~kط o|~Ysw|k|[Wv뜇>>39b%Xp >xn=O?og-K,s7SM^vg%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%8E_:vLU-s/%_;9x x>=#܉ /]ݼ N=ɟ6^SUUUU_=r]??byYUnlþݟ'^VUUUUG~vt^RUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUi/yeK,D#=9]<_Izۯ>?vv;M})_<;y_GO_ʵkcYb%./~'<;Ӿ=/#~_7>εgÏ䏏yq_9]k^vI_/le)}栗vw,K|̺?8,iiiǽ|w88888888].k%G#l[be77|;;&/<ƛ>_w|Aoomow_Mo]Xb%z{n?3_ݛ{V~?Kb%x7Ob%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb=_cTI?{->zUϝ8OG?>Y^}/{G?{wӇ'>x7|ԉ׎<3;}x{<]7N>~s/^?#o}į꺟->p5_#;~_|?_z]UUUɯ~^RUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUi/yeK,D#=9W^ ɯ!v׽6׮s~nƷ~`e-C;zݝmK,_z/?֖|G:k/GpiowO~N7nKK~=7yןo/ۼ9w/=mb%xkG{o _}qK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,qt/ұcz够yUNOuiΫOuY??oiW>7wyflϏd+~+>{s{TNO~?:yZ?a _xk#/{5 {TUUUUU?=_;%UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUu&W\K$[>Ѓnlsg^-?q9v/?}w}3>sxSϭw-^zW^ڵk~oy,?}իW]u~o?==/ᡇ{חсƛ?l'7xg﷼_v/o?>W^իWM{9K\ϬgziwK,ėϬ{`iiii8:q;n7}ם888888888 ?岖Xbz!=ζ%ʅ~W~yem{;|ƍK_/Nͧ}}3..7ͿN)XbxϽ&w=o|ǧ|1;^ڞ/>ѭm%XcxÛn{m=wAK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,aӕ{Kǎꕓ~[|l7v?~nn]OC/W'|vy<{/>xTCG^u{05?KWT_#E_=_xkWo<}N~:M~y+W.[b%-y_}/_rwwK^޹/&ūO~_z/?Ǐ~w;^qww/_c,?w~www|yI=}띾_?x3_/_??}'7{{7O/qwwq/le)}栗vw,K|̺?8,iiiǽ|w88888888].k%G#l[bAƣ_{qZW~%={y+~ϗ}񟟳%X%^sɻ]~Oy4^ZN_]7|ʣvXb%;7=~x9yM%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%æ+|їS+'ͷ͟OX ?>~onL?c7|g/^Oo=ݿ{G:~. Ňn#5nMO>m#9Uug~_?OpV_}iWpA/4y׼r%X"+r{2=gxKn'/+za~c_%Xx>|ҝ-Ϯc'_uyu_:]tң8#?OĽK>3mw~?~zɻzw<9Ͻ|>Kܷw6Yxf>sK;Xb%|fuN4N4N4NiԉqmtwwiiiiqX.K^#yww-2zhߧx?oet '{}ȏ-Mmǿoo[?{]K,R/qϼF>/ηG賏|۟ytkmb%xo_v.?I%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%æ+|їS+'ͷKO7'?{OyïW?}nL?ַ/^O9Ϳ}'_xȏOspk3=7Uw{>~/>yK_7~殻m7yG{˻zLJm:/>C=cO󒪪:M~y+W.[b%-y_yeb/S?['>[cE|Ȼ}>'c~#yy_EGѧ_pZ.mq{{G,#|])n/7ُ?cxOwy[wGğꍿ?:_o}vG_xNwя}̏V?g.l 6ܷw6Yxf>sK;Xb%|fuN4N4N4NiԉqmtwwiiiiqX.K^#yww-^7瞇C|/?ӏc^~yw ,.uSOziϞzާnC>g@..xq)ώ>|3Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%X8lr}1Ur|xk?_{_{~G?K{yCWjv˞yO:ح|'/=/=sukK_|9_ye/^Gt}_ɟvuU ޷~3{?zu{'qW]zW~kкUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUik^rK,lCʙ3l^~a0.?_z3G\g9d?=g%,9O|;;&[-S}{#^O?ʗڷ7}W-O?>-ɖxO>g+>񳓎L$[8羽{q3|^ݱK,3pqpqpqp/NNo wu;N4N4N4N4w%X9|cGm%Xpgg˗vm[]/n{{ gtwnxG^%Xx>n/ɭ[[mҝKɭKwn\ܺx.2ɭug{v]ɭ['Ͻㅍs,Y?%Xb/YG8888888xq=uw~o;qqpqpqpqp>~`e-C;zݝmK,K,K,K,y؟_=鿾7MMW/3Y$Xb%eOF77o~GZK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,aӕ{K^RiwyMxx;|n4z׼r%X"u.NN4N4N4N4N4N4N4N4N4N4nm]ч,#oiiiiiiiiiiiiii^=xa%.gO3c%Xg=Qa4N4N4N4^FO8NwwwiiiirYK,e=rǎqwgK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,KMC?ׯ_WUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU+x߿W._K$[>:qipqX8 a8,pqX8 a8,pi|=|9K,ecEŦpqX8 a8,pqX8 a8,pqX8 a8,p³q=^8gS>A/Xb%uqX8888888S'{qpqpqpqpa\K,q{Y>䱣GٶK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,/NO}q…^zyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyzM3?rwwK,l ....................Y?/yK,qY|Q?^{bbbbbbbbbbbbbbbbbbbbbbbbbbb_:vԇ7,qY<~g9K,_>: qpqpqpq4zq6p]w4N4N4N4N8,|~Zb%n/Ç׵VW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵVW\[]qmuŵѧ}[\K,DG\?u'=~'=~'=~'=~'=~'=~'=~'=~'=~ʓ'wo?櫯b%XsǾN)OIOIOIOIOIOIOIOIOIOIOIOIOţG|8 K\ϬgziwK,ėϬ{`iiii8:q;n7}ם888888888 ?岖Xbz!=ζ%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%XⲸ ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X` ,X;KK,/NG?7yzq=ۻ}{o㾽{ܷwq=ۻ}{o㾽{ܷwq=~>Sf%XbdW^>O|ǯU㾽{ܷwq=ۻ}{o㾽{ܷwq=ۻ}{o㾽{ܷwq=ۻ}{o{ $[,Y?%Xb/YG8888888xq=uw~o;qqpqpqpqp>~`e-C;zݝmK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,&Ŧλy~np7< 7oy~np7< 7oy~n^8ﰸ`.Zb%Xbdi\\8 7oy~np7< 7oy~np7< 7oy~np7< 7oy㸐lYbS>A/Xb%uqX8888888S'{qpqpqpqpa\K,q{Y>䱣GٶK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,qY<~g9K,_>: qpqpqpq4zq6p]w4N4N4N4N8,|~Zb%n/Ç~`e-C;zݝmK,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,K,3|^ݱK,3pqpqpqp/NNo wu;N4N4N4N4w%X9|cGm%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%Xb%X |0r~~vfv3M`87C7$95 9q$C0BJ+vK>Hc9vgIV=#WU,=uuKKKKKKKKKKKKKKKKKKKKKKKK2mL[-Ӗi˴e2mL[-Ӗi˴e2mL[-Ӗi....˴e2mL[-Ӗi˴e2mL[-Ӗi˴e2mL[-Ӗi˴e2mLKtItY]\zg<<..rnjÞiL`84qp}{^q0iL`84aSǷ-..8 ϟwx/]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]ҥ ......................................................................钾tItItIty+wΝ9ܙΝ9ܙΝ9ܙΝ9ܙΝ9ܙΝ9ܙΝ9ܙΝ9ܙΝ9ܙΝ93..v]&...קˋ;sgN;wsgN;wsgN;wsgN;wsgN;wsgN;wsgN;wsgN;wsgN;wsgN;wsgN;wsgN;wsgN;w ϟwuݐ.Lܳϸyx ]%]Ņۏ=84q0iL4}E}߽L`84q0iÞo[.#]%]qi?`_KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK\F/~'?nsXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXnscƺ͍u67mnXuζwAKK˕˯9S|bǩOۓ':y©':y©':y©':y©':y©':y©':y©':y©':y‰c|]F..ק|Ƿ|)Np Np Np Np Np Np Np Np Np Np Np Np {S';yܥ ]72bs>tItIKo?fL`84q0hs]v}:<<0iL`84q0{:mtIt_]xÃ}.....................................................................u ϟWU<7vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{-;[vlo޲eg{/ŗ/KK >NY.`g//Q//vK2ŮoyKܼygщ'0{evqgq@K˥ Ƿ3{q0iL`8iҋ.o{4q0iL`8=O߶\FK/.<tItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItIqV|I7wf<v_z=wmw84q0iL`ۖHtIe?{څ;<ؗ..钴e9_?NK2m.L[-Ӗi..nGl=X-Ӗi˴tItItItY-Ӗi...............................................2<ppzݙ}q Zc_G?1ǿc4M/uM.uãz劣#w1߹_?]'_?;ܹcg<r lO{>s_~Gylg<v_z=wmw84q0iL`ۖHtIe?{څ;<ؗ..xw{a(5]}eo ץF_Wvx^ZbqCKK- gs4KKwỾ5Ӎ...}c.z}\/-KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK5~/\^Kk{zo|s3}3]~ŋ\vݛo)7Mwq7zŭ۷-7z׮ovwqo\,]i{7KK\p|1g84q0i\F/螻iL`84q0qmeK2Ο=KtIs~ؿq=nw`׮__|P-]%]q/~̃o=i?/ӧ%]%]w/O}x}[g]~CKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK8\… [/'>WݸrCx;?sMoOG?~7o_?]Czag폼z/~>+_??ke܆;?~ݿ~}ӿW}-[߽b'˱5?/Ͽn|#&.o|n[i|+_v֛%]ҥG7ve<}7o|'~yG.nuǭ뻾q'?^xy׏ow?;o;;{K23Nxܾ}}˿[7t<7~~ȮoYOOqw&;_o|o?C~vky۷o}WqtY]\zg<<..rnjÞiL`84qp}{^q0iL`84aSǷ-..8 ϟwx/]-_w}nKq_y?󫞸WO?x3]k^z5կg_&]%]q_8/?KOƮ~tK˕ ~_|꯾t ~藜|}%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%].\n}? ]xե=gonϸYnO''|~ԯ?q'?+ϻx}.s1{GkN-^o~nń׿w>^\W={ѯIow? { o-·>w}sAw~`O}ǽ#/Liկ|٭[oJtI|ؕ+;޺~Ͽ~1_[.ͽ:(>G=|2߾n߾mgO<..˴sg8uipm[.݊>_˭;{qr}ǯo=o_}˛=㞏_}Iodg}۷o*}}W.KeŮ}....~84q0iL`קK/uxx`84q0iL`?zY'C^{?}=O*׾C?|ܗמEsKf q3y7ܟ|{yg=c~tIt|o'_LWǞvqa%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%].\n}? | om}ݟGOaWo;?6o}?6_Ǜh#>\<|~W}e3 GοW_tnG}C7_?'<|u3^}ңz#>-_?ۿ>`&_ʗݺtIt [tM7߼%?~/\s?wϼһƿow~q/~wûꣾ}Э7oy7ou떝-gOGK,Ν=O}7oyMoX|焕/Ƈ;_7_w>z/1=Y|o?_QmMoy47\.˴]=%]%].]\8q3iL`84Oݗ^twy4q0iL`88y2%]eϞvKw|9߷wh<_u1}^u?.钎/} <%yݾ[n.'z{Y׾..r†w.}cƕnTItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItk^p}'l+o:_OCLw~ڷ]_'ɿƛ_?wɌ;׿3yA1& ۟Y74W֭7KK nnxW__^{M[~~?aeSO:E3Oӡ7//x|1gOGK,Ο=駞7/i3\>K~sOO}i';_OӞ>?{9wԏ'Ot'=߹4ްwC_?+2bs>tItIKo?fL`84q0hs]v}:<<0iL`84q0{:mtIt_]xÃ}.7?q~k~W~_}<{|V==O_~>O}KWKtIt ~~ѽ=rܣ{;>}]%]~;~|}rG>^,KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK8\… >a׼pk~?+<則̇~|𿬹<}q4/W1_{~w|}ߜ{ o}ocy~?n޺ seW={}Oghq+_~CϿ‰G~ӧhswy`G^֟za iկ|٭[oJtI+,/oO \\~ccķqpן=./m?#]%]iϞO8y(]_+k=x3i>#?>{_~?7}O_ ×? vl_{ϽzMҒW}7\.˴]=%]%].]\8q3iL`84Oݗ^twy4q0iL`88y2%]eϞvK+ߵo>3~yU{/'7}O>GuZKAb/{S{ ~I{b%]%]^?\ػnex[_k-KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK8\… > oxky>>?%W:qZꑿz+3wO=ܕƾo?8wpFO?sW<ЦgSln37gpz~7V|O֜C#;w?ozC0M~nzSKtW.]ƞ{?Q{g~y*]{.7|S=~W'|_ŏ˝ iۏ=HtIeg<U]|?I_z褋{7zK>x>A_za~3>{ﺗR7\~?KtC ]7\r׏yeLܳϸyx ]%]Ņۏ=84q0iL4}E}߽L`84q0iÞo[.#]%]qi?`_K7oyx7/`ܫnyӛS>O4q}˶\ҲK,qx}cr}]FקiT-KK...............................................p̓_z .3~}vs۷o}۷osgvWen)]%]nxtså/ɍU2Rݸ>qt7q$}C]ܸ>aMgOGK,Ο='_.ݸ>q}R7nH``i7ԍɍue7[.cYɍ%q`?}C]ܸ>]ƕevqgq@K˥ Ƿ3{q0iL`8iҋ.o{4q0iL`8=O߶\FK/.<tItItItItItItIG_y%-]׽C?vo{˵%]%]%?x۽ 97.................................................p̓_z ^@_ oȍW3~wwٟ>;iկ|٭[oJtIp74i4MiMhF44i4MiMhF44i4M7ztߑ..˴gx㖉iMhF44i4MiMhF44i4MiMhF44i4MiMhFק믽jm7\.˴]=%]%].]\8q3iL`84Oݗ^twy4q0iL`88y2%]eϞvKKKKKKK&׮\1ݸ!]%]noxeŮ^^,U%]%]%]%}ݵ˯bˋ]//.6%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]/9 fo[rtwTdG8Q;W[ޔ..]7Mͺ~1k+Ǭr1k+Ǭr1k+Ǭr1k+Ǭr1k+Ǭ}Ƿ]F..up[Z_cVY[9fm嘵cVY[9fm嘵cVY[9fm嘵cVY[9fm嘵cVY[9fm嘵cVY[9fm嘵c־~xߝ:W..]i{7KK\p|1g84q0i\F/螻iL`84q0qmeK2Ο=KtItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItItI c|qkIWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕtq?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<s?<O]IWҕt%]IWҕ}žb~oط_/}žb~oط_/}žb~__=LWҕt%]IWҕ?cط_/}žb~oط_/}žb~oط_/}žb~oط_/9J.ۿ7_CWҕt%]ɱo,5oO_x߇ k.3??MWҕt%OJ+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+boއ+JcX kaaa׿aaaa`]f~~+J?t&]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%Ǿ ,",",",~??}",",",",4]IWҕtqο77\0qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2qd\':ɸNu2q\`Oo+J7yEXEXEXa~7?/CXEXEXEX5X+J+_~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~VgY~V/o~J+9eaaaa{_?o aaaaa eJ+J.yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy᧋+J7yEXEXEXa~7?/CXEXEXEX5X+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+JcX kaaa׿aaaa`]f~~+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J}c'AXEXEXEX#_>EXEXEXEXXui+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+9eaaaa{_?o aaaaa e*J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J+J83MX=̯ƟG}ʾ~7]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%]IWҕt%?_` ",",",0!,",",",",?;? ~c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8cGXEXEXEXa~7?/CXEXEXEXEXh\w6<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<Mߡqaaaa{_?o aaaaa5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5 ",",",",",~??}",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",~??}",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",~??}",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",~??}",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",~??}",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",~??}",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",~??}",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",",_APE)85iѝ8wo~zXa=zXa=zXa=zXa=8*O~߱gqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgq;T;G4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;N4;7_2ߨ_2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *ʠ2 *_~Eߎ%tEXtdate:create2015-12-03T10:28:20+00:00z>t%tEXtdate:modify2015-12-03T10:28:20+00:00'tEXtSoftwaregnome-screenshot>IENDB`idjc-0.8.16/doc/jingles-window.png0000644000175000017500000343275612711160237013677 00000000000000PNG  IHDROegAMA a cHRMz&u0`:pQ<bKGDtIME  IDATxf/ U݉YOkǬ7p8g^}Bӯ2Ahơcr>F6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơC6m8qhơCܽ+ܮܮܮܮܮܮܮܮܮܮܮܮܮܮܮq]c#.k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k\;YnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXnXn4lܝ|LuݢVQKWsI/YTmQEd9t ?ӺWpOz /zU[TmQe/j-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢjZKU[TmQEU[TmQEU[TmQEdɗ,EՖ|ɒ/YTmQEU[Tmɗ,EU[TmQEU[TmQEU[TmQE-Y%KdQEU[TmQEU[TmQEdɗ,ڢj-ڢj-ڢj-ڢj-ڢjZK|ɒ/Y%-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢj-K|ɢj-ڢj-K|ɢj-ڢj-ڢj-ڢj-%_KU[TmQK|ɒ/Y%-ڢj-ڢjKdɗ,ڢj-ڢj-jɒ/YTmQEU[TmQEU[TmQEՖ|ɒ/YTmQEU[Tmɗ,EU[TmQEU[TmQEU[TmQE-Y%Kdɗ,%_KU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[Ԓ%_K|ɒ/Y%KdQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[Ԓ%_%-%Kdɗ,ڢj-jɒ/YTmQK|ɢ,ڢj-ڢj-ڢjZK|ɒ/YTmQEU[TmQEdɗ,ڢj-ڢj-ڢj-ڢj-%Kdɗ,ڢjZK|ɢj-ڢj-ڢj-ڢj-ڢj-ڢj-ڢ,E-YTmQEU[TmQEU[TmQEU[TmQEU[Ԓ%_%ZK|ɒ/Y%KdQEU[TmQEdɗ,EU[Ԓ%_K|ɒ/YTmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[TmQEU[.8|UUTWQ*^EիzUUTWQ*^Eի%Y jɢUTW9Yr^dz*'UN֫W9YUTW9'UTW9Yr^EUr^EիWQ*W9YUTZ\hܕ{%ZZn_+\H8Y2wkj ŁdgÿKv̓-Ło|ͱ HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHўsjyu#@V @Z @Z @Z @V d ]'Wؗ_$rQBZpxH50>7]j j j j j [HkfN j j j j [Hf[6?ǯslQIHHHHHHHo^ݢ_gyU+Y5Vi5Vi5Vi5Vi5Vi5Vi5-$=zj [HHHHHHHHf\x j j j`;f}s=@V @Z @Z @Z @Z @V >{:q.iճ/ī ~$: i5Vi5Vi5U+|y r|^-d@Z @Z dGJ'뭳|v#j j j j f}ȮwIlq Wyw9fŁHHHHlq zgKn ~?pm86伺&:ߓ.@Z @Z @Z @Z @Z @Z @Z @Z @8U=K?pm86gr^WIj j j j j j j j j [HV8+[gTGR d@Z @Z @Z @Z @Z @Z @8&8P-spvtq V8x2m:[@8Ui5Vi5Vi5Vi5Vi5Vi5Vi5Vi5Vi5Vi5- =럕losj j j j j j Łt6[k dvȫ ~?poTv2}e\s-񹖙IVj ]0,N![Ha* ٢!8sG>wlq j kQKH7G7psCeO\dg=l'{rwG?c~K/_1/?_KLϭ=ӳ=W8W0sd-ӳ+ [afnٞg{flܿsM׳uWw[afn3s+LeO<3=g{'.{ٞ/O䣽sl?2GOjȻ{y.ӳ=s+8< ӳ=ӳ+̭03 W[azBE;p'=ӳ=s+8+V8s-2s'92eO\eO\eO\eO\L?{/qa?=y{9f/Ft{fV8C9[98{G.5:ơg`2==qs*i5=ʞk߼߼k߰L3ӳ+h#*M_GK1?~1~S6m#*:N\8{LGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtD]>?y'#7k| o[/kl̛x%*:*Ymlss?WqWOk3IGn=nyW&\5[O&*:#*:.љ|z2oo׸ ف7gvfWyo ήQw->9K8oXƲmGo5>_yތz6QqZKa<2\_CTtD]>/nqOfS]i9603ʓ {Ol9*ޏtǮcxg"Zf*Z٥>=SubJydܰ]>/:vWxw2{/1#*:3-?_`t m_ oWxw22۲ng:՛}\*>>6f.֮y9xQwMZz -y|Tom\]ȝ s fW.oxg"o]>?x"|~}6UVmӳe9{7w;+gftmG֒oLx?oތ.i~ўY6hGؔw|^tDEGTtDEGTtDEGTtDEGTt/־On IZ$-or`\Ǯ3 UvꈊDnK~ ;+{?ě+>.;Kn7I˛Wox7;{*>xg:ǟ/yoMGo˾&xe>:p7v.P:%gQQQQqԄwwα;{o}˓')Y8xoގY^꽁'QQq}'6~q=iW⽭-|SɎ!*nE2%͖'}V 9 a%6kDgnm2o% %*:#*:cϱk{ܳoY3=vãw{tv\b)N,gxmguv-[%5p&{tL |xDwNi>ysW#;{x}"d>;K| y{%KTtDEGTtG.=|Dg;v,IzKTt|^|wyێ>Z}{78vc3wy"*:>/ZC7X)G8Fyǽ'nyܨxcwMx#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:#*:TswtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTtDEGTt?ӑTI5LGTtDE3o19>fs|DEGt๻W舊9yi.~uo8>û3ȹӯrlNLDE3G/gg:_?W?W8}hّ?qxn'Zv{N7{^z%~8a盿? ?yO 8r0o N&[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼%oMlVY{wE8sy;.r-5e£W9Y~_aǡY+g x?͸y6[ϳu<ć{+>: 0o O4|Uw\K9{O8w.ޮyޏ2/9w(.0J47g컰{O~m,磨ygO'39t*x}g[{+g3q ^ctQM"o}8h̡י9[>}q7/G]c|:ZƏy v-a޲=Ò##.w/xgΑs%9{Gysg/7ϱ˳xetǯexb+|-O-jϻϗx߅N]ȹ|qS{K~9vine<\㗘ڷGy-u0o 0o 0o 0o ͇.57~˥{W?!%?^`lj^cߑE}ё뼷ggo0.szs]+ʖE͇.57~ţ/~C`7v/ULt*Qz7y̹k>3xkOŮWuү9{G.֧g}|+Ggxw"[¼%[¼%[¼%[BղEdTs͛3 a-&Wxk,,e6}>k[\OP/.V8GG%ތ.qϸ\}ś[N}VW ;ϲ5buOu/|z%[¼%ooo[r<`\~En>~ʅۓ̜xlJY/>sϾ\@n;[. ۿH}x}9}3._38r%L76j_/xk"|'`3 \ޮ97o1~_0;.wgx n?ɅKlmv}^ΡxBz ?T2N&|-gˆ%~[yKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyKyK0m¼%[¼%[¼%[¼%[¼%[¼%[¼%[¼elj/wq%[¼elj[~S3o4{Owo,S&[¼e$@yKy lwe+ |N0o 0oqezgߙ;[h9}__!%m2Nr]Lm^t??17|<~u//.fQsw-Ld &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4A 2MiLd &4[b[lKڶ}VY{G69O6äa[aOrc}O?ރg<J~>Wl=b[iSLt<~'Ϲ>ǎ-=Klnhfy/mÇԗ]91~փ?Î]ٺx~_}XuyOk9x6qy}ȱY~+6gؚ\7s#z5w zKIeWU| 'd OZ>ڪy0x[?/pf~'Oc;~x"r9~eCm[dCvG5[3ͦ >'0l=^߻č'#>7vm'%9s=3>["org<ʫ7`/^z=zo'v/ofKr?l?yý/xOa`g{־~V 55x=y> -I̯?T5}V➾ѓg޽=%o~q &HnO v._«';ngs~돿{/ïW#'ps<{goH\4З.ڻDmq}vW>8==}{oVWxs惇dG摻|[j>SƑ;kff y#1_3=}-e7ys,Ogطٿ/KW<}?]l;m`b_twO=ȯ7*6y 揕0s,,w#t+8{O集w睙Mv~'2Mg95Ox ;ΟT)nsO؜\w[ϳ}p'̀{cGJ~e3)xH'8yb8?~tO_ý/5luuYŅי;g/8I~3׮斜cg+(?[֓L{-Õ+c{Osn?/?{HLxo=\%{|6QMys |]ʫ+Nty)Ã<Φr[ԑ\~Oun>g*~^# W#n5wȪr홦_lj W='SGsfӼ;sɓqzm~7wwn䕷ws~g]fFދTka._eG'~ӵ9x?V3\~&im%nؔLe^^f+[N~Ƥa*ZDYx;v>WxsϞG{瘹]ON,Wy)6wY}O + 5n:ow^bj&~0-ޚOGL\|vu+={m9F9onSN/ɄO3sby.<9ʷ/x?}n=f->tW_ec4lV4u~m;[Jދ~y\vwp\+[x{+?uw'ؿ44|<{s_7]fwܽ?<ʧ_=A߳ikίv]ft_e|Z=9;c߁Y~"7|9\~=~?cu?U3s7#jWw<];Ӗr2:p3̕ ?4XV{ё?iؔ%Ngطٿ/K_q2/o[ oVƓf%C7X})< Ǔ^Y!l:r>ylLOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOؒiOO>{xs;ņMOa㑆'o-# L8t?Wׯp*dtx–LF~v_ğD'lxWK/ҟ ˌ6'Txa40O'F xho<IýgطSU=4|9~W`X >ǸyD5l= 'Vo9˛37=!9P_wlU8Ϋ9}cbߥG<73Y^/pq[9~e/kwoU/{j></.'v<~6+nTr΍Y {WvTv[(ƙ+_?;~u>In?4%>>Gvݜ3䓂73xl/-~xW K67w{jn<w3Tο半wN<x5_|9-5~?|3_O9%>h:Kϰy tU?9Ax!/->gOTiWi+Of}!Y_Fҕ.$3Lud&UשәEs2&qp̣`M@L "b ,G2CfOs棼pdwܲݱXowܲ}[;[osvzcq6pǹsy.}-;^1.y,Us_޻DZFr ~sQzjB'sI/qݧ( \u$W7ٱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;vzcݱXow;^z۞}vzcqﰺ% x0%6KlpC{vzcݱ~fǽ/˽~3;3$ޜ;qY%_^gfݱٷyecݱe6ՁyDOyŁ]{C*g&3;C;{3;n']r)R;DO»TOOsOR/?y_?{odwQ==QU?qgvTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTwH?(>C~_<57[u79\tA߾ ǹW8-ǯxg}ū<|;\wKw#qSޣwb櫯f~0?0H|/>27|헜qw;pۓ>vmNsm;qSΣZo;=ǍZxWz{l_VOqg8/m8oUw+/9y+Ϳ|*_}6sp;?}_8;_痷!| G=E7|{,=o8. $|-6WO\v1c/ޜ'~8x3~(0o;>.Gy__>}1pnOe6'gsN6=}wvG}s;nz-~}1y68g} ޜ^_W8pr?k#S7gzue[<:? z+n ?˷|0M\?Cgf>/Y};%7?}_܎#gϓt?%;;^G7v\wa.M8N\s1vGO^cInmNR>t?rkc#|77/}oK>O羽=GNr˓'9IW=ᩞ>~ww%}_z[ڜ?W^8ƿ^"a}7GȞ︩dwׄyfs ׾#gfT>斻^G#<17*O/^|ہ۞xU&Ͻy铬?~zyշ9w7~;< ~;_>͋|cY> ^r}sN;ہځ[;c9).4;~'p2>x@ .\̥~wԏd綗gyѷxxWuE?G_sG{Nr'oo|^:E< V/ropݿϼo>IMTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOTDOT#7?'~'nzm. >&U'~zz?Ýz鉪鉋olx#㎃G7 ~ā%~9MϼMOT`'~wgċa<~xD~\ě鉻[}N+_._/叧@nw;]7>;_'?~}{?|?7?OsSe(ϽÍOM]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e((9ůy/x/}g_}G8?EVO|oG잁[ pOo|sQ }-Yn}o&{_w>w_䂛;q|z+׸=_}|W/yC35>Q}/buW?;%/ʭ7{|g᧤Ͼ>x: ;ܻѯs;Оһs_O> o/˯8ud৷wo?>/+{8;|緾ea[xo0qKo}g||BG'*5ޝWd/=qn>Hy_Bٟ&~Kї0rqwO9#?I7{'O ▣0rɍyvx0opv3/^ӟ׿GJ7N|({}['>/xMc??'_~/~W+__/%~w!{Kޟv\sK<|\wA~>KSn?IMTnS:OMTVao'}St \i~s))]孷?Ww7||wxeϑɣ\zMerL )@GO{O3} 'ⲻç)}5_~~G~_4qx}3_|G_^gwge~W>n䎣 xoo>/{[OrҾ)pE'336\~8%熧K:v/>^xo/>m wO[ᩉx^|^7fT?;qMGx O?q >>9pf|Ǟ8%7@~>1_׸#\|?0xm_qWٝoÏ}7_K:Cԧg>>N#__r\~B‡|'S{_}5 _¹w7w.~~O?g_ޠ&nx*ṕ\ٝy9/n=•Oy9%|js]Ǹ9<<}_9{߲y!~tQ>=7'A+{p՝Gȟ?/>Xp+{\rime(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv ]e(@.Pv;7>=Qv ]w\~a~}݃\}S\uS\uS\uGO:E.Pv ܲ}[} ]e0$ =?;0pSe(OMw(@ʧ׷CAn<wDyW߽e&9{Se(| \xJpm3R<ᩉ3;{2P m;M?G{?+(ډ mh@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P mhE(@6P ?3:8N#orY=ĩ7W&^=86x ~} .ߜ=/n=ό p\qcԯo+ox׸׸[> Sx\|iy2P3\|q:?7^:ý~\w{Gd>=~)uVx'tGop{\-.8|Gq9?`s nNg>Egi>>O y [Oq/Oѿo1^9S?or /rw8q&pͭޓ4{r~ >ͷ?pw^?O~ϫ(?8|Ws%rG=or](@6p}7q}7q}(@~4فS?O >(@7'<ǜi6^wGsoq](@~4ف?Oq퓁 \\|m. 'G~y+ r̎;:ʯ>>~ijϝⲻ^㙷>O[^'rdN~kQO6PwwE(@ڼe[̅w&^98popm;q}{?w=Gr繾׹b3YKwCg?##N$W>:y;&l\|)<~KNs}s\q1i({80|(@Pg՞y9GXuνσO7sm֓s2ϝȥAQOޜ緛n~8=tk}| n8?o9ef$oFf$oFy-.(?߿ ?0?{̓7A*$?]ďo# }g{ٽop➣\p!~xI|̏n9䏿//[^_G<6#y37#y37#y37#y37#6 ׹ꉑɛ7?m>IDAT7oqYx$?]O_7/k5HތHތ\x~w`7{^'Ff$oFf䪇N_w'Ff$o<4?0?(rG\ӌ\\x\t)UEՋ\x)~ ~t!c\yf$oFf$oFf$oFf$oF&?v_y̙2??x|$oFf$,vTr  t+>77%oFf$oFfG_ʃ[ W=1?qKo{ n>f$oFf$oFVA*o77G<gW:叜'-.(? /_;QOތH9.UYf$oFf ?m ;Ǐ\t1~za~pË\t)~f䒻p ݧ㞼ɛ?p+8͕fu`ꁬꁬ+ d@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@XmXcꁬf`u`f`XmXmz 6{6{6@XmXmz  dff z`cꁬꁬl3:j3  d@XmXc6Y=Y=j3mz 6{ df`u`Ձ=Vl3Y=Y=f`u`Ձ=VXmz j3 dՁ=V6{6Y=mVXmz VՁ=VXmz j@Vd@VdK8/ye~~k6{ 6j3 d@XmXmjjj3Y=Y= dj3:j3mV=V6{6@XmXmz 6{ 6{6Y= d@XmXmjj3 dff z`u`ǹc. ǸWꁬꁬꁬꁬꁬ6{6Y=Y=Y=mV=VXmV6{6jj3mVXmz z z  d@Vd@VdՁ=Vꁬ6{6@VdՁ=V6@VdՁ=Vl3Y=Y=Y=Y=$?qtK꾁+7Y=Y=j3 dl3:j3Y=Y=mV=VXmXmz V=Vl3Y=Y=mV=Vf`c6Y= d6{ d@Vd@VdՁ=Vꁬ6@XmXmV=VXmz z`Xcu`f z @Vd@VdfՁ=V=U~z) ?zl3Y=f`cl3 d@Vd@VdՁ=Vl3:{ dl3:j3 d@Vd@XmXccꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬꁬ@ꁬꁬꁬꁬꁬꁬꁬꁬXmVꁬꁬꁬꁬꁬꁬꁬꁬ@Vd@Vd@Vd@Vd@Vd@Vd@Vd@Vd@V\XmzO/?_#G8q>|p>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q]Nw?V'#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#GΜ|ww9}>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>οi%e#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|ș#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G8q>|#G^|)Or)ӇEٟŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔYٔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔŔYٔeVSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSffSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSffSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSge6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6gc6>]ÿOr)Or)OYLM1LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔٔŔӿ\?ӿ\JSSfSLJB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* lllllllllllllllllllll2l,̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦̦,122222222222222222222222222>KK ~blJB%PI$T*<2/b02`̦$T* JB%PI$T* JB%PI$Ty6fT* 012bPI$T* JB%PI$T* JB%PI$T* JB%PI$T* UaY* Ƭ JB%0S_eVL* Se1$Pf3SL* 02/3l*$T* JB%PI$T* OI$T* JB%PI$T* JB%PI$̔JB%"f*$T* JB%"̳bPI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* ?Ax=Yy s33TgftUMZ a@ bDd1 "*X."!Ⱦ Ⱦ!}y> {^0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:LppppppppppppppppppppF?6wMppppppppppvX?1Kc~[oA8{8{8{8gs[/}}|ˏiZqO.3{8{8{8{8{8{8CmU==============\Һ+kbga:L0Cn7~#|}q}#MX||k0ta:L0ta:L}|Vztn%r??.&ta:L0ta:L0ta:L0t!Ŀ||Lisħ> a]/|goO=~kžf6s!}/~#|}qß<߻e1ta:L0nq7?χ? ta:L0ta:L0)~_Otfzo%ta:/~a:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L0ta:L鰧9{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{80>__3w vWK~ʿ؜;ןO|W3} .pppppppppppppppppppppppppppppppZ|/^B?{8{8{3_<nW\} _Kogwpf9^_u?۹.;k+K.p111m_; _y#G\{o~MW<zSßŧogs_n?n111111u\+9/13\\~z.yzm.&콹pL蘎阎阎阎阎]7/xw{ȳi3o]ǣk<ಛpb7Ow=+>].pL蘎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎阎Ӝ=================s>|o6| x_^vnml z;x_Woo|_xKiuGj.ppppppppppppppppppppppppppppppc(/{׾׾5^׼Zw)|~[o.|y^;\uxū՛~!?:os/Wϭs{8{8{8{8{8{8{8{8{8{8{8{8{åuW^}-?wri:&E,:OVkw?mnw\.0?zyG?_dgKw?\;58&E,bX"ʇ_~^=a&~{ӗ͇^(%Ww<>Un|  EOy"E,bX"Elf]] |'pw oO牯_iu/ߟ\ߏW~qww;OWg_ýjoE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXi9MwO_w ~_}}vw+_׼<=?9~}ᮏy5ߪ3==============================qo=7x#_җx{滼)WWs8r>a'ͥO?|p9<=============\Һ+kbgE,b$_/sw劻^}|{?͵O~u\p߇!׽%\+w)/~3z ^ocX"E,bX$U^qc^Wo̍|Cygo{)#yGgw_~r_eyNjÞ7л/ߗyS_^~L,bX"E,bX$|7^o?^|}yȟ[o /+yS_˷ow>7냟vD,bp[y'~ï}"H­_~~}puoϽ׹A׿GJg涯߻<}~^?#y2/S/_ >mE,bX"E,f]~ v]+_^G׼}3z'?ӟyx?_=7c/OW_ɣ_.nVE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b=9#<9nFB~!O/~o3|_L~aUV^w|Grϣv w9׿ _B^k_qGw6>'ǿ~P~|3^gO+ n›xUO3? O-e/~\b\yܕW_˥u{8{ ;Ʒ_ {X/ej]}\W_dg<_/UW]U8W3y *****ݗ۞˽pO']|;~ #x[_˿\ꪇs#k?>;z g{ _I/|O^/l*****;/nMx O;?q=ϿWy{w}3ĸ6n7w/y=yO/W>t3 -_~y~窫UxOE\_pnG7w?>%q[Ыo\u-$.3iw3w}缊 K?}wg_u*{;ؗpr#xUa}|OOǿ\u)!z iVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaV9{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{807}>ao.~Oi}$~K?=g?xl7׾|A8{so?!<1OᏞ |}'[>Чg8{} zx֋-s{8{8{8{8{8{8{8{8{8{8{8{8{åuW^}-?wri**?--7s6g7C 'o}'ySo Nz #x_#uO/炋= y qɯ| #ރ߸|K?$VaVaVaVaVa-Wo8z/^x Nw/Oy?s]~WOq+ȫ?m&6 Y~7GKwy$[їc_/]]Xmnp;]_|ۜÙfӯ!/T·xoܝ'}O~W]g.[Ыo\u-$ƅ.ʷn$zs/2O~)VaVaVaVa? ?3?i753;^J 83tC~_^'?_zsy~op͟VaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaVaV9{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{8{/^~ze\L>_"^o埿#.%Wҿz=~K\k/`qq6ggggggggggggggggggggggggggggggggsq_nnxk^o/ożq.Usw>ɧuggggggggggggg{ʫ箼Z.;كUjZH/Wyu_P-T '=\WO>y:#<7}~/>{Z?⟾CT BP-T BP-T BP%ݟGZ{sU/wxLJ?Gb~QOo?M/ߕ˼}3o#O|_jZjZ2_N΋W(C5ֹ}_t>~J'?ɍ#w~/x ~n?^~W*jZHF7ޕ{?1Ϯ.|$oԗW<+L>qt+{ӹ{yun+su#U BP-T BP-T Unɧ~P ;\Wcy{pk?:^G̗-<8{~\`^_"\ BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T bOsppppppppppppppppppwg8{8{8{8{ןq8wOw\p~z~ ~~69 .ppppqb\yܕW_˥u{ӨjZ3y47Z$| ċ|/Ints>\Go~rBP-T BP-T BP-T Iow~<-k>f?~üiw \W7n-|tK\yȟ'jZjZjZo*oc=wK{ OzxǾRRr ow?kqo] 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnMAePTAePTwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwTAePTAePTAePTwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdܑqGwdQTAeP n?)An´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L ´0-L׿=_>kiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiaZiw2 *ʠ2 *p}\_=Wzp}\_=Wzp}\_=Wzp}\_=Wzp}\_=WzϞ.*ʠ2 *ʠ2 */~\_=Wzp}\_=Wzp}\_=Wzp}\_=Wzp}\_=Wzp}x_3~'2 *`gpkG?>Ow 2p3܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnⷿu䷆pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pn3GIDATM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pnM 7&܄pn"~GePTAePTo˻ ]xw޿݅.w ]xwe]\vqe]\vqe]\vqŻ˅.w ]xw޿݅.w 7ٟ)AePTAePTe/ë_?O߽w޿݅.w ]xw޿݅w ]\vqe]\vqe]\vqe ]xw޿݅.w ]xw.xJ*ʠ2 v~S~[{ ~Ǜ1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zccvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvngvvٙy1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo1zc7Fo5FePTAePTW?粋3^>x/?g|ϟ3^>Ƌ7|GoٕTAePTAePTAe0y^>x/?g|ϟ3^<Ͽoz5ʠ2 *ʠ2 *ಋϿ7.^z3^>x/?g|ϟ7x 7 *ʠ2 *ʠ2 *`W/x/?g|ϟ3^>x^>~t?χÏG|}>>~t?χÏG|}>>~t?χÏG|}>>~t?χÏG|}>>~t?χÏ>>x39yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&19yLcr<&197Oʠ2 *ʠ2 ~λՋ<¯'_}ɓW_/y՗5?ǟ_|k>5?ǟ_|k>5?ǟ_|k>5?ǟ_|k>5?ǟ_<+v%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%]ɮdW+ٕJv%AePTAePTW?޼z'_pߣcO~Lɏ/G_/ͯ\vQTҮ[c?FRT '?cO~Lɏ_/>/>/>/>/> ?+7.*ʠ2Ko?o[GST^/xW_O *ʠ2 *ʠ2 .x~q?_=%}߿>ܿgGoNAeP\[~Co%ۛ.^>/e}܋?w^|y;|w΋~om~WS=**ʠ2 v~S~[{Π2W/7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|7x|o?p7_{ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽOrӧ)>}ʽDePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAePTAep}sͫW_ʋ ^yϋ|_opk/2 *?~?W u^;Wo *?9?ʋ|?>/~}^y??/%?S*ʠ2 *ʠ2 *.^<߼ndqϾ_/"y|w/w_|;/1FϞ/TQTAe3w|{;vC~)q'\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqe]\vqމCW[z˓Woy-O^ɫ;_}}C}w||qw||s=p'?|ɒ?~_RzwE?a/^{վx OίgNɭnɭnɭnꙻ꥗^>/G{U%KG{ׯwzǻ۽zzx}տ7?y/{x}^_ח=e/{x}^_ח=e/{x}^_ח=e/{x}^_ח=e/{x}^_ח=e/{x}^_ח=e/{x}^_ח=e/{x}^_ח=e/{x}^_ח=eWşپUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU}0Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YQ_: T_o٣N=٣N=٣N=;ֽ{O/ݹ^}ddɺ?ԟ½`Ǟ?oN=٣N=٣N=٣N=|ws?>fdɒ%K,Y^}d'wn/zȇg?;>>㎏;>>{O~ד%K_}P}_'j=/B/|S+왓gur['ur['ur['z3z ?^dɒ%kv^_]]뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.뫋.8o~>O{z>O{z>O{z>O{z>O{z>O{z>O{z>O{z>O{z>O{z>O%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ=k;O?NN=٣N=٣N=٣mWܝ۟G&K?;o?_0Y>{w[g:yg:yg:ygݯO~,Ydɒ%KWɝ}/ƾ>>㎏;>>㎏;>>p8>dz>S{?Ⱦx OίgNɭnɭnɭnꙻ꥗^>/G{U%KG{ׯwzǻ۽zzx}Gvyq填CW.]]{w򛿧uN~ۏ:yQ'o?G~?W^bgz[L,Ydɒ%K֫c_cPg{qw||qsu8ɏ?zdݞE?pGW|>w3:խ[:խ[:խ[=su]ҋhjdɒu]x{wZXȿ.g]κ8uq8pᬋY.g]κ8uq8pᬋY.g]κ8uq8pᬋY.g]κ8uq8pᬋY.g]κ8uq8pᬋY.g]κ8uq8pᬋY.g]κ8uq8pᬋY.g]κ8uq8pᬋY.g]κ8uq8pᬋY.ggzɓ'=yfOٓ'oɓnnts󤛛'fdɒ%K,Y^}d'wn/zȇg?;>>㎏;>>{O~ד%K,^{o~㵾=bz}z3_ygϜ<ӭ[:խ[:խ[:3w]K//|_&K,YX_~ow{ׯg;?{iO;v8?p~iO;v8?p~iO;v8?p~iO;v8?p~iO;v8?p~iO;v8?p~iO;v8?p~iO;v8?p~iO;v8?p~?^}훽|7?雏E..Ʒz^7{mU?~7?Ǐ{|7?Ǐ{|7?Ǐ{;/׾ћǽqo>~ܛǽqo>~ܛw%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ=k;O//uţnxQ_<_z[_{^ڗssdɒ%K,Ydɒ_p_nxQ_;_}}C}w||qw||s=p'?|ɒ%K,Ydɒ#/g>;Ξ9y['ur['ur['urg>ӻ^z_|UM,Y];޾~o_Utvz=Ag]^^t~Ӯ.>㎏;>>{>c_O,Ydɒ%KW|>w3:խ[:խ[:խ[=su]ҋhjdɒu]x{wZX:?Ot?{_~{u8Ow~z>?~~;?Ow~z~?g ܟ/|s=~gy{Ow~z~;?Ow~z~;?Ow~z~;?Ow~z~;JZox;|~~[ɟ~_}|[j>_֏տ_SKã^O|w?7z ?c>Jg~_x_/l?O׏?B~Ǐo|7NNɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,YdǞGɝ^җoݣn=ݣn=ݣn=w^yO/ݹ^}ddɒ%K,Ydկ|ww}w}w}wW~'?W^bgz[L,Ydɒ%K֫c_cPg{qw||qsu8ɏ?zdɒ%K,YdȾx OίgNɭnɭnɭnꙻ꥗^>/G{U%KG{ׯwzǻ۽zzx}Շg:J_+=x?ԏVB+}_J:r^Z_Z{~dԽ{=r_ZW:J_K?۟/twwɿ?[mo=+=xkk=r_+=r_+^+Wփ{tzN҃{/׺zpNW:J_{gzko|7x7_}~^7{o{?C_kwt_W^띿g?O+W~;{O'~___~?T띿/>ۣ<||۽o?dɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Yd}cڣG}N/|S}ݷuQuQuQ;ok\>2Ydɒ%K,Yd}W>Gݾ{Gݾ{Gݾ{G}w+~+/~_~3o&K,Ydɒ%Gvrv_򋱯|}㎏;>>㎏{:ǟ}=Ydɒ%K,Y^}d_^̧zW3'tVNnuVNnuVNngzwK/v ~ɒ%K#ֽzǻwk=b=C?3=r܃{/NM?o/wz}wo#^+/t7T}?O ~{~o7?^@7޿:Iz~^=T}?7/=O?Nu?Gۿ/C:>K_?_ۻoo~}~SG{/O|_{p{赾oǾLo_{W?3K}' ?G?Gξw~w~;+3=8{/7?Km_?w^ޝ=jߺs=v~uW|ܿꛯ|}ۯ?,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%KO|^{/O/}=ݾn=ݣn=ݣn=ݣ>m}׾ܝ۟G&K,Ydɒ%K?|_ʇ}{}w}w}w}~W?/~S}//|׿dɒ%K,YdN_~1>~w||qw||q=\y'K,Ydɒ%K֫w T;{nɭnɭnɭL^z~W5YdzĺwZx{wݻ~GW}u|{R^yw~?CG]'}S=?m~Ϗ˟~}_o_~?ZWzK{^ܿ=x[?e/u8ח?7?_cO?C?܏S}?oG?˯t~y_D_}?г/~;x>o~/T??/ο_{/Խ_}ݣG׿շ_V{ï?[{^x鴳{p^گ ?_V[s앟o? w>7^}㍾o^ڿ>}޷3=oޏOoz~[}o׿կ?,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ%K,Ydɒ?AaugsYsz9k͌N`uCbTJPARAAt"Hvk[Ӧ%i߽K6Pmd_}^/rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9r|=y|=x{:O:O:O:O:O:O{^:?<׫̑#G9rȑ#GO>D?|_w8t8t8t8t8t8t8ts{3O=}왏M9rȑ#G^}d燞p>ܳcuzzivzzi=}SO>l9rȑ#G.zOouŝ\ŝ\ŝ\uk/p~CU͑#G^z7}Λ^zGO~7~/<W|Ao;ڗO_];7~7wO<{={ygES~_M ӏ~oƯ{s{{N7/}~oK_ oV/+OˇݿT_~'zOK?|Ưz7c?ۿ_ֿ_z_|ɟ/}ٿ={{^xx{/G^n{^{_W}Ͽz'Zk[z]W|wӷt_E_o|Q??ktsskvɏ_E'??_k3O>#7>o{^{W>G/V9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G~OtQ.{#Ow;xxxxxx7'_|^}d9rȑ#G9z'z:?+yw~޿c|norȑ#G9r#8?}{NOO;==NOO;==Þzgsȑ#G9rGvy~3}<|Kx]w.tNw.tNw.tN;[{@j9rhWmswW=}Oۿ޿޿zw /Ϳm}t?oW>zCwKz~U_u_ۗ?%דOo~]ھ˿_~\#_|ן׋=c}{G?O|˗}~/뾶/ߟܓz]Od}?o}?xo7}౟;+{_s7վ8p=wѿѫv{M^_~Ǘgo^lsW|ܧo~/}7s{ۏJ/~g;;\|S?ӯo~?>+=xx}?on^K9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9>գGݻ8<ݽop|CIIIIIIwЋx{Az9rȑ#Gn=9r'pǓǓǓǓǓǓǓn|}{x=^ɑ#G9rѫ7>ޞ{{NOO;==NOO;==O~{'͑#G9rȑWY|-uݹӝ;ݹӝ;ݹӝ;ow<~9rѣK/_淽yK/_h?o{zp.zx~`/O|C/n|E=;; KQ_}śCo g.~k/~^{_5?K^z>^|xϟ'Ko}^?K}_|U{z_~ᩋ'^腋uܷ~Ɵx^^}[ow=޻_x==zۛno?7MM_ЛPmc}?ȿzן\Q}>z_ʾFW{o>7/[ן?~'/7o|c_ֿ/|Annۛ^y3=Α#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9r|=y|=x{:O:O:O:O:O:O{^:?<׫̑#G?}>ӟl==}xxxxxxxϼ?t_g>k79rȑ#G9z]zgs>c=ivzziOaO=D9rȑ#G9r#[];wsq;wsq;wsq_[gw}W5G9z4zw9o~;z>_w/=wу{=J{Ob_'_> ?ƾGY?_7r%o[;߻{~_?}___]ܻܻ셳E}7`?؟_o7=5䱎.;< L?[o˾|/u?_?ܿ[U݋޻_ӣG溛n__꥗>K/}^D/R3M^ӯ|W~Gۛn3^z%]u{sUѧO+U^{饗^noۛ^y~~;G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G'z{=󑧻op\>2G;ʿy ד?"GO>D?|_w8t0ԌIDAT8t8t8t8t8t8ts{3O=}왏M9rȑ#G^}d燞p>ܳcuzzivzzi=}SO>l9rHۛ_GWY|-uݹӝ;ݹӝ;ݹӝ;ow<~9rѣK/_淽yK/_h?owqc/ݿsO/~O:}?wij]oؿo=|w}?=ܱ_^tϾ{fݿK~{k}ӟѓO<'''''''=^̻SOe{棽v{#G9rȑWo|==cvzzivzzi?xԓO4>#G9^~'_yO]=ӽ[zsq;wsq;wsq;wzu /xvzUsȑG^o{G淽^/wwy<{dzϺwqރ{=#sW{W[{~빗b'pǓǓǓǓǓǓǓn|}{x=^ɑ#G9rѫ7>ޞ{{NOO;==NOO;==O~{'͑#Gsѯ}ӽ.^ם;ݹӝ;ݹӝ;ݹ뎯ow<~9rѣK/_淽yK/_h?oڻ\>2^KA=?}~k~gz4z'z:?+yw~޿c|norȑ#G9r#8?}{NOO;==NOO;==Þzgsȑ[~臟?xW=g>t_soT?{}?{}?{}?{}?{}?{}۽gw}W5G9z4zw9o~;z>_{wdz]8?tq~C.]8?tq~C.]8?tq~C.]8?tq~C.]8?tq~C.]8?tq~C.Ξ~ɞz]8?tq~C.]8?tq~C.]8?tq~~իvs}U7W\_us}U7W\_us}U7W\_us}U7W\_us}U7W\_us}U7W\_us}U7W\_us}U7W\_us}U7W\_us}U7W\_us}U+͑#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9r|=y|=x{:O:O:O:O:O:O{^:?<׫>~?/˿}'}_~{uOu8~~IIIIIIIw?W>>=Ǟhȑ#G9rGvq~o=l=Xvzzivzz?'?=葏oM_}W}yM_~?ի>g?_yWw_yWw_yWwss:w?^9r襗zm襗z4˟7W;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;xvݎgw;\Wnnnnnnnnnn?+}͑#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9r|=y|=x{:O:O:O:O:O:O{^:?<׫Swo}7oG>'x;O:O:O:O:O:O:O{w᧞>G{&G9rȑ#G>C?l|{{g{:==NOO;==>?'h|6Gz~X??ou_ƾo}ѫ]z}}_=XvzzicO:w?^9r襗zm襗z4˟7W;?|:?|:?|O޴fcP `}7]6aLY.TNsRʥK*OH(ODs1}߹i|]X"E,bX"E,bX"E,bX"E,bX"E,bX?󏙣3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ3Gg9:stљ?߼ܞ;nwܞ=ӏ՗t-^&stљ27{?/љk=|;nwܞ=?+~+?7stљ3Gg9:st>L~t#^bYeaYeaYeaY>#o|5O_mo?w{gO~şa9:stљ3Gg·n|{~1}|իW,²,,²,,²,,G}ķO޼f3Gg9:ׯ?~1:^&xy˲, ˲, ˲, ^͛7|<3~|9:styo?g|x*E,bX"E,bX"E,bX"E,bX"E,bX"E,~>~ݱ2stљ3Gg/^'~Wr{;nwܞ=q{|gO?˯W_~|xљ3Gg9:stљ3G|{n;nwܞ=q{㳧W>WOo~Ϳљ3Gg9:st|xѿG^zŲ,,²,,²,,²,|G|kF9:stљ3GgљeOW^, ˲, ˲, ˲+޼y×_|>ʇ93Gg;O~7߉9qUa} E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,|o|%/s0Gg9:st5zy᏿7o?)q{|;nw|#|<~ˇ9:stљ3Gg9:st޼~/ܞ=q{|;>{gO~şa9:stљ3Gg·n|{~1}|իW,²,,²,,²,,G}ķO޼f3Gg9:stљ3GOןr1^bYeaYeaYeիWy/}/s2Gg9:/w?o/s;ڸE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX7/x9:stљ3G y+O=;nwܞ=q{㳧?/?[>Lљ3Gg9:stљk=|;nwܞ=?+~+?7stљ3Gg9:st>L~t#^bYeaYeaYeaY>#o|59:stљ3Gg9:^&xy˲, ˲, ˲, ^͛7|<3~|9:styo?g|xUE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"/s7/x9:stљ3G y+O=;nwܞ=q{㳧?/?[>Lљ3Gg9:stљk=|;nwܞ=?+~+?7stљ3Gg9:st>L~t#^bYeaYeaYeaY>#o|59:stљ3Gg9:^&xy˲, ˲, ˲, ^͛7|<3~|9:styo?g|xUE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"/s7/x9:stљ3G y+O=;nwܞ=q{㳧?/?[>Lљ3Gg9:stљk=|;nwܞ=?+~+?7stљ3Gg9:st>L~t#^bYeaYeaYeaY>#o|59:stљ3Gg9:^&xy˲, ˲, ˲, ^͛7|<3~|9:styo?g|xUE,bX"E,bXC1?X懈X⇈X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"El~!懘bbX$&HE,bX"E,bX"E,bX"Eb~E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bCE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bC1?CE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX/޼/eљ3Gg_?淏zeYXeYXeYXeY裏ۿɛ׌=stљ3Gg9:st|xwo7?}_ӷ"E,bX"!~E,bX"_/+cX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX|'W|W/|-bX"E,bX/sE,bX"E,bX"E,bX"E,bX"E,b;6&E/_7__|Wo;E,bX"E,bX/sE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"]@|諯SiTeu&'GTDPqPtNtę"N E, 71Ĵb=k} {>X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"];s~6i,Lca X4s;፽<:gm}WX[_am}v=}]{͉i,Lca X40i,Lca ;og~!k+ k+t+y7>u0i,Lca X49wa,w6ܵUłbb`XX,X,|;v;3i,Lca X40i,Lcaks⡽{u=~mX,X,, łb*;v}M6lMX49]}q7p NmX"E,b$r|mc۶vE\rG8tM\gws~_u!ϾۯwQ2ٳ;wsg+5&r9yFo=~-Qjrsgyz^R#bXĢ%v뿸X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"I83^w7˹3O3gkX&=;ٳ;[1˄gsgyz^R#b3ϕ5"6\9[r3gΜ;4VjL,b33g걖5elxѥ۸y_g?E^+5v=>qY>{sg+5f\g9̼4<Ϝ{i==3/é=7q͕װ8I].y̼4˄ggΝ{sg+"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"؜Fڱ9Lca X4pם&o{}ױ~>k+ k+{8tcڃlmNLca X40i,Lca Xر}; Y[_am}WX[_am}v}_qλyx0i,Lca X40͉kc]X,X,, łbboرܱ Lca X40i,Lca [îocuubb`XX,X,, VWWٱcc}nak40ͱpˮ'X8u8ms>wX"E,bX$]&{M6'oz泹_{|>Գ_}+|q$ay}e?#OGNs.n+_?ˈX"8{>W?ǧ%5"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,pjm|eA_`Ko_|[6d}/#7fD[[cnq'Nq__2/Y;r d<Ξ;o[%ݛoQ#dO]8Hڗ̷k9M"bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bi9x`?40i,Lca wݹmn^nwk糶 k+ ρCq>=40i&ca ӄ-ڜhog~!k+ k+t+y7>u0i,Lca X49wa,w6ܵUłbb`XX,X,|;v;3i,Lca X40i,Lcaks⡽{u=~mX,X,, łb*;v}M6lMX49]}q7p NmX"E,b$1q{^xk mm?v'b~/UW7o#WGxUWO3t+WM|G<Ə?z5/}[?̛_uӗy߫og}w~5\~?bwv^Wj9̿=JE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbݫKȭϰѽo}_:S׾k1>󪋞?|G<ox ^|W[f_}tŋy;>{t93?l{;Ɵv7*^7׼żs|/_5't{ K஛>O}|cϿk?{ G=Os _?a|weX"ofۅ|=ls_%\>sݷ7k1> +?z3?+^ɻn{U_}W\ݏ7W>q+c7r`5"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"];s~6i,Lca X4s;፽<:gm}WX[_am}v=}]{͉i,Lcazt'?O869o |\wwأ~!k+ k+t+y7>u0i,Lca X49wa,w6ܵUłbb`XX,X,|;v;3i,Lca X40i,Lcaks⡽{u=~mX,X,, łb*;v}M6lMX49]}q7p NmX"X(CTEj9|ضb]t!/柹{1G gYNۼowͰF^qM;9x#\piwx`Y{ws`헼E/w9GٴE,MʩG^>v#G%5"(S2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS X["E,b mm23 H©y_GYmlb.%?'nx-{9^Ǜ? NM_e9z)[%|=Sس}⭟3fgo/_:~QRq㇯=ox?Ew>>qOsʫO` ^0n{#>p_xKyW~Ie>Ͽ+p??K޽O0 ;&.nKxˉI<3}-X"YV~5.䣷a&6'v|>Gqٳk=y3O_?sy>ue䩭%X۽#ݿs?>\ҷXC|/7~]}y`ϣKXhk)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =e)COzS2 =c96E,bXlN#wٜF0i,Lca Xhs7rwX[?WX[_am}Wؽ|wA6'9_x~h`>~xg)^k k+ >gt#O<4u׏  wv22ag~1_yۯ^E?yWO}e&rx|c7rd\R#bͱpow]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]۰sGý]zQI,bXb,{׸t gz1I8F^>?qA:C8vrD| Y݅xgo֛߹KdE<~.]|Y.ÞS>p>/};jg6E,b?Wk?}MX&>xN6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmpIDATC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmCkd?q bX"E,bqqv;w4-bϼv2g]weqȟu-^YOmLW^t_m;_|KyW~Ie>Ͽ+1.zv<әX#ea~[_>{ChYS}|ulbXdY l޲-yEW'1~ݼWg ?}%|{٪K s]rj\_/_Q}b첰㪋;^w'XmKeSG`玆mچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچ;k4"4r׎œ7x ^ϯ+'肫e86\^u;òRٳl>~K׻9}^ngyw}}DE,0_>v#G%5"\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s%OǏE,bamv?p?82ٹ$}#?#,c1˘rI^> |Wē'w]w#Gmn(_XZo+Y OK<7s|":Þ~WR'bXĢ.\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+s̵2\+sDbC'6B,bX"ƒǾg\bݫ_]>_+y;M_e[>owW?}ǻ_B>\Vpv>g}+ŗp7sx xۗș,׿~^J~vdo6 ~4;[^ʵ_5'uzr|\[ho/Olr6#/{w>GKh9'qK[7زE,beez7\B>zlbsmW='PU^o?6W|-|M\\.9;WN!/~|K_]»pZaaxw/ٗ\˯&˘VZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkeVZkevﺏ}oX"];s~6i,Lca X4s;፽<:ן +l +}.g2,#51k׾;ak*lN#gdO?erpX6WX_ac}6WX_a}?➝w#Qa X40i,Lca [{ؿ2po]X]]eXX,X,, łb7̱cGٹc;c4ib).ⲫoI9N8Nϝ#^ΕeL,b:?^'yb};k^p#:p7WG}-/|Y?EE,0_>v#G%5"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX|QfX"ڤ0gX"I8F^z6 dksbksB2>v7xK.Tk>sᅴ /zk{Yջ9oxl牧_|/fV=u7wwWy3X%oB>򫇰E,w7'LxkiX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b5۵ }2&E,b9}lYeE,brp3,5/2^k=ʱnC/#1[os/˟J~v;b77oE|s۾ ʮC{`5cc+<>~Wux}bٽ.w?};翊=]zϻ=͛Z =k|.9٥E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bq ٲE,b9ܵc;gs40i,Lc;M͗}=o_~Y\,xo<77_>|5G|cuW/t''Ƒ^NwXĢ.{yG8;WbX$Cc/g Ͻh۶]̶/f%/#??$gy8vy+uk/+/{b n{1ownr︇[彼rEŏ|fiX$aO_>sԈX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E, >Ȟ3E,]wA,bX" +<Ƕm⋹‹x>oZ>ݨƏw~Z2?^p`"^zlnWx/ .W^˿O1n7m_ŗ7Yĸ?タs/K.‹^KԈX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"2枝;(gΰE,bX,cN8ν]<}v&E,'x_={Elv1]|)xs`˧B?^Z+g8|/ y~Ɵvk_~ 7mFGӯ}-<=_Eϻ]R_ ܴ~eD. /W(]?W^sWk+_r%50wlF37pM<]w%_x1/{\ܗ;A6E,%?p[7ز͉qװ~?7\_ _:+%=2Ԟ7_E+p/=_9c7xGO'_|^ɟ_ ^~)^t!|wptbiX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXb,;w4uI,bi9x`?40i,Lca wݹmn^n^?7363636363636_5/?*;({#ܷ g±ykAs g{W#nG;Hãl7LLLLLLLO];G.40i,Lca X46'6#e?ƃvb`XX,X,, łocǎsv20 Gv>..-qf9v!lgOq׏k_N~, łbb`Xʎ;8{vӵ [40i,l'eW_\v >)6©i;s"uc\E,bxr)tÇr䉣 gNL6)Op2b9|0OْXZdp9|':f9z[[ 'y N#E,3'sA:ȡC8v4[E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX,c޹r ˘X"2ԉwN3E,brcȡ>tÇpd18|ǟ8$'`KoRN=q䉣e[NlnS?~}?'=W.&:qE,bG;qY"O<q:y~,9y["[4'ObsK,x)8rO=ʼnƉX"E O<ř2Xx '`"18|ǟ8$'`KoRNÇx)8uKoRNɞ©ȡn6VWWY,, łbb`uu;vp`>ki,Lca X Oˮ8|RlS'6wsE,2<ٹX"2fY,cbX"E,be"E,E,bE,bE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E, GdσٙX";X"E,bY,c1KX"E,bX$fX"X"M,be2"E,be2fE,bX"E,bX"E,bX"E,?Axsɝw~wyC ^΃xodY~1lwj@^V,33hdTU$]󰪫9szMOU]ErnXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXA}3XX>}›oV`V`V`(ŢXXX EQ`V`V`x~ +++D++baV`V`V`V`V`VP, XV`V`VP,+++++(EXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXxȃ;\^,,2O,2<'33NϾ 7orm|ofa۰m6lv6 ݆o| ~ܹ:!o&ϋYeXeXeXeXˋo`N7Ν;QUUUQUUUQUUUQU/?'}???Cor']>Ϗ;\~3***8??{|5\. <<ģ=~[g>kn򋯿 y1.{|y++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++(6?y m[cV`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`sg(V`V`VP,> o޾ŗWWXXXXXXXXXXXXXXXAq0?ys!aV`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`V0O'n7\=/XX2=}.eXeXeXm[m= 6lv6 ݆nf^G/= <<<<<y1<<<<}B_Xb]9V`V`V`V`V`V`V`V`V`V`V`V`V`V`ŢXbQ,E(ŢXbQ,E(ŢXbQ,XXXXA(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E( bXXآXbQ,E(ŢXbQ,E(ŢXbaV`V`V`VP,E(ŢXbQ,E(ŢXbQ, +bx+ ./ض5V`V`V`V`V`V`V`V`V`V`V`V`V`V`V`ŢXbQ,E(ŢXbQ,E(ŢXbQ,XXXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ, X?_'wǼ=W%[?ׯ_쌪3yx.u 2O,2O,{./ bx3qqqqqqqq=>ωK '?3=3=3=3=3=3=3==EqXXXXXXXXzqqqqqqqqqG?{tzXXӉ}8C8C8C8C8C8C8C8z>?bg y1Ͼ᳧R,Xܾu g>۷ + ~~XXXXXXXX\=/|w}e `N:oz^+ef{^\,3<<<۶&..wwy|{|v/m6lv6 ݆n ^{}./yb'yb'yb'yb'yb'yb[\_曻om6lv6 ݆nf|<>wn8|obyb'yb'yb'yb'ybaw=ksgggTUEUUTUEUUTUEUUTUK/GnӉeXeXgkn򋯿 y1.{|y+++++++++++++?׶ׯqtmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC}_y'./+ࣇyU]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е m}k/;&V𼘟}'ξg (6Vpq1>7B[ߤkkkkkkkkk׸+ܼ*m}mچmچmچmچmچmچmچWo\K ym~~+bx+ ./ض5V`V`V`V`V`V`V`V`V`V`V`V`V`VrfN,2O,2O,2O,2O\,3~>w|ׯqvvFUUTUEUUTUEUUTU<׺ea'yb'ybx4wo|;b'tM~XgO+xgܼ*C_ Ϟ~W^a> W~cn޸B8?p8|Bf_ύW_? ϟrګ~_puu_y2OXXXXXXX\=/~= |#m ++ mXXXXXXXXXXXXX|Sn*{׿bYhn\ݷ }@}:t.7ϱˋ??+/??@ ׹}keo\wFqXܥyyL~1^yG boտ?׮sXܾu g>۷ +|S<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbNӉy:1O'<tbŅgbS,`N:oz^+ef{^\,3<<<۶&..wwy|{|v/m6lv6 ݆n ^{}./yb'yb'yb'yb'yb'yb[\_曻om6lv6 ݆nf|<>wn8|obyb'yb'yb'yb'ybaw=ksgggTUEUUTUEUUTUEUUTUK/GnӉeXeXeXeXeXˋϝ7_kQUUUQUUUQUUUqvv9嵮rYXeXe'= x4'> ]s_|5V`ϋvwy0˫XXXXXXXXXXXXX민p믿/G?cV_9/x;qK|5~g7_Wz^(Ç;y|+/KďCN_|XXXXXX\=/m;x+(6?y m[cV`V`V`V`V`V`V`V`V`V`V`V`V`'/̯~+>z_bVwsG/珱ˋ;o "./x/g=ubb{0xۼ֛XXXXXXXAXf}oy9VP,n:gzbaV`V`O[|yu| 뜞}A(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,EE(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E((ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXآXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢX [bQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(ŢXbQ,E(⫯g_|XXXXXXzqwXXeXeXeXeXeXm]sm|ofa۰m6lv6 ݆o| ~ܹ:!o&ϋYeXeXeXeXˋo`N7Ν;QUUUQUUUQUUUQU/u^3O'yb'yb'yb'yb'yb'./>>w|ׯqvvFUUTUEUUTUEUUTU<׺ea'yb'ybx4wo|;b'tM~X~6_}yX۶ y' @fd&Ifd&Ifd&Ifd&Ifd&IfcS.bQ,-d&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&Ifd&/K~??ˋ??yr<|B ~?gNd&Ifd&Ifd&Ifd&Ifd& G?/syP,ySd&Ifd&Ifd&Ifd&IfWoWoqXXXXX{uN_|N ~q`zơgzơgzơgzơgzơgzơgzơgzơgzơgzơgzơgzơgzơgzơgzơgzơgz?? @qO8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8zg />㣇qqqqqqqqqqqqqqqqqg1NXXXtzƣ}8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8CGQV`V`2c{=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=g~++ˋ C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8Cq#qqXW_^q9Ͼ++++++?._|batyX\,3bYeXeXeض5qqA[o㋼{nfa۰m6lv^^|"{py<<<<<ۺ2}nfa۰m6lv6 suC~M<<<< qrfN,2O,2O,2O,2O,2O\^,|x}:ׯ_쌪3yx.u 2O,2O, 3L2$3L2$3L2$3L2୿zz6K 2Ow__|y+/sXܾu g>۷ +ڛ9}9"./oƵWitmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmC6tmCs:^)X+P\chnޠkkkkkkkkkkkkkkkkk^)69V`V}^Ἡچmچmچmچmچmچmچmچmچmچmچmچmچmچmچmچm8okn^^(.+\q&]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]е ]P߸εW^x ۷yXXXXXXǏ[[>bbatyX\,3bYeXeXeض5qqA[o㋼{nfa۰m6lv^^|"{py<<<<<ۺ2}nfa۰m6lv6 suC~M<<<< qrfN,2O,2O,2O,2O,2O\^,|x}:ׯ_쌪3yx.u 2O,2O,9뺒J+互J+互J+互J+互J+互J+互J+互J+互J+互J+互J+互J+互J+互J+互J+.mQ\ró;w8oor\=/~互J+互J+互J+互J+互ʯ+/qdXたLr]u%ו\Wue]Wue]Wue]Wr]u%ו\Wr]u%3Q?xXXXXX\=/~5=X ו\Wr]Yוu]Yוu]Yוu]u%ו\Wr]u%ו\Wz 8.+++++Xf[7o˫|W_y/csg(V`V`VP,> o޾ŗWWXgO޼)O?}W_̓^)O~~ `N47op/~@fx?g`Vq5޸WWWLgܼv%V`w{ٞk\^,XA}n\{O?믾 3 ~W_~ƺW^!^y> ۷yXXXXXQ,`N:oz^+ef{^\,3<<<۶&..wwy|{|v/m6lv6 ݆n ^{}./yb'yb'yb'yb'yb'yb[\_曻om6lv6 ݆nf|<>wn8|obyb'yb'yb'yb'ybaw=ksgggTUEUUTUEUUTUEUUTUK/GnӉeXeXeXeXeXˋϝ7_kQUUUQUUUQUUUqvv9嵮rYXeXe'= x4'> ]s_|5V`ϋvwy0˫XX'O,?<ˌ2ό㌶+:Z~ Hd@hBDFqT8@ҩӝNkzzꥪ=s<71xb'O <1xb'O <1xb'O}n͛*bTUEz=z^^Gףz*4 /Ծ**ff`f`f`bf**MӰ~Z^!O sL UT!W]#=~qK=~stK*}&X\C <1xb'O Hz oy[ett<)f/]S$1xb<{ǏQ Jb=E <1xb'O <1xb'O <1xb'O <1x^a13TUEUQUT=^>v<1x/gqq303 303 303 303 303 303 3>f]~<1x 03 303 303 303 303 303 3`~_|DǏCfaffaffaff`ffaffaffaffuwn$OγcVT303 303 303 303 303 303 3M/K%&Y\C <1xb'O "E]8vy'ry1x%&wS<1xb.&wq9zy!vȻn!vطg)tgVsW.ZvVEݢnj]] g9u8^Nw;yޥu;yޥ=y]6׶_Kݢnjh[-ZvWfYNdf ǎH!vȻn!vȻnۡi:t;KٱG211AedYFedYFedYFe]瘚EDw;yCw;yCw;{9gN衃l߾ ,#2,#2,#2&&&¹>2yCw;foyx)^cO1{v}swRStg2( b(aU1J'O ,(S O <1xb(Ġ,)b|7q<lٲ`ժUZUVj*VZŪUXjV'DDPUTUEUi_˳3}֣***`*********** ɗ$)ġY7Ǐ2g';o,)^ifj^TUEU13Ԕ#~~GߣzmfggQUTUEUQUf2w 1xb\Ʀ7`*fRggNS(1B}k8y7hAUQUT3>g,.!O <1xb,^z~9(?81xR ^ȧ>IbI1ry"'{۳<1xb!P"'O (VAI1xbHAY0( "'O (9s]F<\ QTUAUPTUAUPTUa_ ?o=CgɫSAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAU8q$>e8tp?&pQ&dE"+L@UP̔K./>GãG}>kkǩS'CUPTe֯˘z<1x]cӋ/ f[:}a=Խy߼ƅH)r}~ 'O <1xb)y[89s'쥋|ꓟ$O #g/r1AI <1x|Ǿ='O ",1sx{NHۜzYob O <)Οalڸ/ˉ'+l޸3EUPTUa8xG9s9s8pcddݻw* W.ϲm&yN&pn,* * * * * * * * * * * * * * PC_;k|bjr7O̚gܵ7gii3EUPjΝ;?z?GãG}>{QwKK )ETUAU lߺ~/'@ݻprA^NLno[ܼ}+s6e* }<1xb'@_8pcll];w0( A׾Un̠,b$ER 'O os$[ٹ;<{m[6`)fb)fb)fb).\~~}0a͚g?c3L1S3L1S3Lc˦9K < wnº,/ט)fb)fb)f y3?30S3L1S3L1S3L1S3L1SClX<^3L1S3L1S3Lz*o|Yr%9y!fJY9V\o@IDATopm0S3L1S3L1S3gٵc#@ ];se3L1S3L1S3(x;x_ʕ+Yr%+Wdʕ\+WrJV\_z?b)fb)fbp ,b #yQ3L1S3L1S3Lԧ> /b\p~\z3L1S3L1S3L1S3L1S}s<).?Ǯ0S3L1S3L1S3LO|+Wdʕ\+WrJV\ʕ+y_χ?acf)fb)fb)fb*7gbTS,.!O <1xbS˗g?(9s8vy'ry1x%&wS<1xb.&wq9zy!vȻn!vطg)tgVsW.ZvVEݢnj]] g9u8^Na}>카H{#)v &vkۯnjh[-ZvVŊ+X,G23}cGQHw;yCw;yCOi%G 2,#2,#2,#2֮]sLMY"vȻn!vȻn!vȻ3NrAoYeYeYeLNNrYN|{wsn!vȻz<<z౧u;ܾ9;Cb)Rd}3g%Eqyw}[7ob~f "ׯ9s9s8pctt~4M ""2/`q1xb'OY$[VFGGq9(?81xR ^ȧ>IbI1ry"'{۳<1xbgw1+(S_~w}o9rC1xbLNOO>ϲgȻbz7" "TU#<9s8p9s޽AĎ˳lۼ~b =9 "" "" "" "" "" "" "" "" "" "" "" "" "" "" " C_;k|bjr7O̚gܵ7giqUEDg~KKࡇ⡇⡇⡇⡇Ybg1"""qoLb ]\8AUpnaa67oͫ=CGr}#GqyDAD8|%t'O <q9s1v,%_Wٺe3 OStI1'O <1xR ܾ9ϡS ʒO***eFϜ%O ;yaZUEUQUTUEUQUTUEUطow}7{/?8ܾ}UEUQUTUEUQUTUEUQUTUEUQUTUEUx~>D <^΋럧13TUEUQUTUEUQUTWrcll~pRx;9}ǭ[13TUEUQUTUEUQUTUYv؆H1g׎\|UEUQUTUEUQUTUEUI)qs8p9s99v**bf,ܹÆvH1bؑü|(**<s=}{sss****`Pn9nߜ'O ϱkvTUEUQUTUEUQUTUEUQUTUe۶m:8p9soxزe "***lًܰS JLMp<1xbHW.}Qs8pg5R 'YR vMY$b˻ ]n!vȻnaߞ]^Wڧ8Y]h[-ZvVEwzv5/ԉ{9yKs>ĞKWXռ篞7y߻>s켰׶_Kݢnjh[-ZvWfYNdf ǎH!vȻn!vȻnۡi:t;KٱG211AedYFedYFedYFe]瘚EDw;yCw;yCw;{9gN衃l߾ ,#2,#2,#2&&&¹>2yCw;foyx)^cO1{v}swRStg2(e;e ,V?}yq1~7><1xz.o|QQ~ ?'_ܹuٺy70SDDD֯_wߍs9s8p9(ieDDDDy\wM/ `]ƑcHE֝ynܚc]|3gOrLf-,,AUiPgϱp<1xbSC/-oy 8p9(?81xR ^ȧ>IbI1ry"'{۳<1x_?x=x'+t/?y?r]%"EfN}uqE6ׯ{v'+l޸UEAAA*yp9s9s8e]444)g/m&yN&pn,`4444444444444444444444444444444444444444444444444444444444 ϯ5b{]o15'_f3aUR ~ֳ*ٳ.\`qqEYZZdiiNgWp!6fqoLb ]\80DT}Y,ع7q 3prKjdND0:}<1xbI1˻|_`||qs8pcll];w0( A׾Un̠,b$ER 'O os$[ٹ;<{m[6cf" "" "" "\rw]7y̌,˸{y^g>DADDADDADPUlp6׭kDADDADD`޽2>>(ozӛxφ v4M!"" "" "" "/Çٰyzy""" "" "W\{9?0UU!"x;89>nݺ""" "" "fβk6|G89s8p9s=zADDADDADP5ܹ͆vH1bؑ?vADDADDADPU>׽7MlܸYFGGyǘDADDADDADʲdsܾ9O Οc׎" "" "" "f'ell1cdd'x[naf" "" "" "" 뙽x<ՠ$ w'O FGGq9s?s׮b >O>$W.ϒb On"'O ^e..^8G/w;yCw;z>őjjEݢnjh[-Zwճ9,OL|yy|eϥEۜXgQFx_g[qn3mVEݢnjh[-Z+N`:9D"yCw;yCw;yC>usgvسcǏebb,Ȳ,Ȳ,Ȳ,Xv-ׯ15ng!vȻn!vȻn!vrΜ:Cپ}dYFedYFedYFeLLL099Ʌsg9}eM?ɻn!vu;I <)F.^cT<1xb~}{v'OL̮;'~D 9oru^9"񡷳ݟel2e WWLOOǏ+_ /b +l޸UEii*yp9s9s8e]H M4 Klۼ~b =9 fH M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H M4 4H Mðx>5b{]o15'_f3aUR ~ֳ9] f** "+qoLb ]\8̐AUٵ{; wXXͭ;78aL<ö9v0]l޲fyii/KO <1xɻ/2>>89s8pcll=45,#[lfPI1p`j")b'O79t`AYyR \Ķ-03DADDADDAD03fggYz5ccc8xӛYns㌌|3CDDADDADDUe˦9?s<1xf!" "" ""w^FGGqc||q7}[rD3CDDADDADD=|<1x 'sTADDADD̸r {/9xᇩ !vqq}qMTADDADDAD`Yv؆H1g׎\DADDADD#> 8p9s9ssQDADDADDAUs6֯Y"@cGsQDADDADDAEG>cccod˖-\t{<\v 3CDDADDADD, MFGGq9s9~nݜgX 'ry1x%&wS<1xb.&wq9zy!vȻn!vطg)tgVsW.ZvVEݢnj]] 3|w<coV^~-vVEݢnjh[-V^g9:u3;r"En!vȻn!vȻn~/}N,g6=YeYeYeYvZ_cjryCw;yCw;yC9u}6&&&Ȳ,Ȳ,Ȳ,˘`rr r߻~w;yCvy౧x=-OyI='O"S9`0ɯMT (;Ƨ;}\EL|#1xbܾq>s{g[}Ż>yHgMܸ~fy뚺13֭[wߍs9s8p9(uM]uM] ֭Yb>Nj/gyy뚺뚺뚺뚺M{_x|y1*z917KkO|>s ?=g#M~կ?M/2ks׮b{lܰŅ~w=u]\uM]uM]uM]uMŋyk^__4 Οc{9)R ݳffyy6qg晞9Cپs+'Od휻8^xy!u]S5"¡8'O/ロGFaddFFFadd׽u|0s?ζ[1xR H<1xbbybP}k=;pg/mfLiiAiiAii0U#0::s{/_ۿ ox9sO3CiiAiiAiiPlz3ggm֯[K="M4 4H M4 4H M4 {ett9s8p oxGشq#4M4 4H M4 4H M4 4HӀOq!br6<iAiiAii0U\̽ދs1~aiRog||w7oDEAiiAiiA3c4vl{kv._̐AiiAiiA#> 8p9s9ssiAiiAiiAEs6֯Y"@cGsQiAiiAiiADO022sw˯گ9(}{TAiiAiiAiʢ`sܾ9O Οc׎m4H M4 4H M4 4H M4 4H "e ,-." ,.,P%"4 4H M4 4H M4 4H M4 4HӰ^@ jPr`jŅ;H ###022###kk?}g}g.~z2)bt;KLM,1xb]Ms.yCw;yCo.|+SyϬ]-ZvVEݢnqX=q|<87]n\LJ\Z"O?t;WWz|qamVEݢnjh[-Z+N`:9D"yCw;yCw;yC>usgvسcǏebb,Ȳ,Ȳ,Ȳ,Xv-ׯ15ng!vȻn~G?w;.~Nj/V~^\sq_UUzzիxի~Ugo>>ȟc?ŗ?'~G~0;#>Ɓ9ՠ, ʢ, ʢ, ʢ, UÇٿo/)ġY7Ǐ2g';o,)^if,5êLͻ~=wS,--@YEAYEAYEA5pa~(H1|6+s}7 (j0ܹ&&$϶[XZ&f\z7Ȧ-t", eX\C <1xR ǚ5ϒedY6AMedY6AM01> > |ٽ<1xR\Ǩ%1xb"O <1Fʥs|?_\H|AI~q'}|["q>On:87n|g}<1x]aӋ/0*ʢ, ʢ, ]bll 9s8p9sQmr]SeQP`s3lۼ~b =Lrz8, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ 1w<^~[LMɗYwvcܾuAYR ={=bܼy=eQPeQPeQP!UU13=rR ػg3gVeQP lظ;w8k73o/8αG9>ٺ ((VOqD'O wn"&Ȳ l, &Ȳ l, &Ȳ ֬ygygy5k%b$ER 'O os$[ٹ;<{7,/3*UŰVêbXU aU1*UG~W9s89s###! aU1*UŰVêbXU aU1*/nYbYs2eɰVêbXU aU1*UŰV"ݻ9s9s8p16666oD50*UŰVêbXU aU1*UŰh90'Oa::KK!êbXU aU1*UŰVêbt"{/9xxjR ~vqq}qufXU aU1*UŰVêbXU fy3gصc#@ ];3{"2êbXU aU1*UŰVêbXU{=|Aq9s9s8СCH0*UŰVêbXU aU1*UE]ܜvH1bؑ;riUŰVêbXU aU1*UŰ<9s89s9^|UeXU aU1*UŰVêbXU aUgnߜ'O ϱs6aXU aU1*UŰVêbXU aU1*UŰV˳|+_k/\|z8dXU aU1*UŰVêbXU aU1*UŰVê3{1xAɁI'O "EfΞeͳϒedY6AMedY6AMML33ϰ,-'On"'O ^e..^8G/w;yCw;z>őjjEݢnjh[-Zwճ9,O Hu;\?<카H*;izo|8׶_Kݢnjh[-ZvWfYNdf ǎH!vȻn!vȻnۡi:t;KٱG211AedYFedYFedYFe]瘚EDw;. l}_vdGy_{ҷy~0dmLLLeYeYeY111$Νɗٿw7<'vȻnۡ0{cO{[^ݽz8$O "Eۧ8?s`@ѹӟywi.%ٽ|ѷo죓)&a>x[X<1xb?vď=Cef ͛v*H"%C 9s9s8pctt)RH"%H1~m+3}?Ϡ,)RH"%(RH"%(gzY_K؏|_?x/??9w?~'/]{g8>oȲ8pj}_{G_~fwz˟ӾxO/Sw78O+?S_ә;_g ʂ"%(RH"%(R 8z%>e8tp?&pQ&dE"+gNwn!EJ~kWYZL>O駟駟o~~o~ɟ K("%b05J6Oշ﹟}nE t;K|?q|3|eUbvM/@5PDEJ)}Ì9s9s8p1::֭[C(RHAYrn,6oH1orgPUEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)QDEJ)|uqc1x./0w*)| }&eQP;\7^կOOO7O?׾5{1O,-.R+lߺ~/'@{v13=M5PĠ,Y>mg^s> >'!HEJTqD'O <)AI5(%ՠTjPR JAI5(%ՠT"EbI1p`j")b'O79t`AYyR \MVe(DY$"QHE,e(Ġ,q}~#9F<,o~9ԧ"QHE,e(DY$"QH ʂM^YbYsk3)DY$"QHE,e(DY$ᐝ;w0::s9s׿77?#ϭ7)DY$"QHE,e(DY$"Qa5`j$"O ~/gu,.,0( "QHE,e(DY$"Q JΟ;ǽދs1V^(D>89>^ ,(DY$"QHE,e(DY$jӧصc#@ ];syՀHE,e(DY$"QHEYqs8p9s99x,e(DY$"QHE,e箱ut;KH1pa>D=RHE,e(DY$"QHE322s13p=9(yeAY$"QHE,e(DY$"Q^enߜ'O ϱcVaEY$"QHE,e(DY$"QHE,e(čsAnݜ, "QHE,e(DY$"QHE,e(DY$6<ًS JLMp<1xb)RTjPR JAI5(%ՠTjPR JAI5('On"'O ^e..^8G/w;yCw;z>őjjEݢnjh[-Zwճ9,Nɻna'XX"vXyS;زu'^e]lkۯnjh[-ZvVŊ+X,G23}cGQHw;yCw;yCOi%G 2,#2,#2,#2֮]sLMY"vK8ΟfY=o:x˯|?üS̉ؾ}dYFedYFedYFeLLL099Ʌsg9}eM?ɻn!vu;{?wOޏҙ}|~ /p[OW(}%};E"H#)FRI12(Kz|H:uk8q({vcV"b3ٻg7UUb$HY ~~5a<+V`ŊX+Vb mo{{!@#{Ϟcb>w/gP)3gl۱j8lܼLOڵ+áCyp EJI1r-eϱp<1xb'O <1xb'O <1xbbEN?F5('طg1xb1R.>{ ;q~mo~[o}ߞHH<)زe31ˤg6mxAYb$H#^~1s8p9s9FGGٺe `@#)Fʢ`46oH1ori3(KRI1b$H#)FRI1b$H#)FRI1b$H#)FRI1b$H#)FRI1b$H#)FRI1b$H#)FRI1b$H#)FRzXÍk|bjr7O̚gܵ7͛)bHj0`Wx_Yb+V`ŊX+V+V++|)b, _9rR ػgg_aP)R⹉g}KENarn^>Å 9w~[^w)FR ʒS8A'O <1xb'O <1xb'O <1xR H<1xbbybP}k=;pg/eF)ERI)R$HJ")ERE֭<o|#W\f߾ZQFFFԧ>IYI)R$HJ")ERI)R(7YbYsk3b I)R$HJ")ERI)RUv(9so}+s,--RHQ$RI)R$HJ")ERI)RdPñÇٰ~ w(R$HJ")ERI)R$HY$ffrcllիWYZZd||wW._()ERI)R$HJ")EReS'ٵc#@ ];s9eAJ")ERI)R$HJ_rfAW8,+Ų.cڿE5Ʈalc9 1@CwWEū(J- =t*"#3ʈ{?f. |:iw[ollllll[oŕ+c|}L:m봭ӶN:m봭ӶN:m.9q֍֍7s55m봭ӶN:m봭ӶN:m봭Ӷoooo?ܸq'O?lllo;;㣖ui[mui[mui[mɏ^঴nx?/_ӶF:m봭ӶN:m봭ӶN:m봭ӶN:m봭㮜c~g~ ~gg?umui[mui[mui[mui[u㓏O27LCz⦸)n⦸)n⦸)n⦸)n⦸)nH 9>jqS7%'a4$$$$$$$h"llllllo&fn˝9nrSsԶ*nfnf݋6/C?;;|ow~~|~{ˇLo-e~o_}~?F61'گ=?ޟszȋqS9[Z7 7p3 78j>di+{]f8 8>jix>[˼~Sp3܌5?яFl l l l l ܹ}q3 7ВWMqSvSa-gQ/,\up3V>׸)n⦸)n⦸)n⦸)n⦸)n⦸); ޺ɗqS7EKf4MqSw(qgOӺQVϹ_5_=$њ⦸)nbZ0-7MqSvw8s0U 7H"|{;llllllo&=c 78j[>MY0tPiؙ}#L n⦸)n⦸)n⦴n7|2/?7/_;Q)n⦸)n⦸)nҺqS<{7M+N0S7MqS7MqS7Ο7䭷;c<!1স)n⦸)n⦸)n⦸)nr:en^⦔8}z}⦸)n⦸)n⦴n<~acc|;7&I"nJS_z-666e1 7MqS7MqS7M9jwpdZ7ܔ͋x Gm⦸)n⦸)n4~[llllll[#Z7MqS7MqS7ucwgH nnܼqצ>>MqS7MqS7MqSܔ_ 7W1f3~7|~+7MqS7MqS7MqS7%}nJƋgOxs^aZpS7MqS7MqS7MqSܔ֍㣖zGӺᦸ)n⦸)n⦸)n⦸)niᓏO27LCz⦸)n⦸)n⦸)n⦸)n⦸)nH 9>jqS7%'a4$$$$$$$h>Mq3k|}qk)nfqn⦸)n⦸)n⦸)niX.Z Z Z GG|or N8'8q'Nĉ8q'N[okRRRR(9qcMqS8}O뎖9::19n[\-Smx}|룖-{7EKAUiGaZPUNq|jGbqdҶG>r\--------֝ӫLF[Z]BέmK\p㣖֍3Z Z Z Z JN;nfnah)h)h)h)WMqSvS-Z ;̙O曯''? =S'y!k׮SBKT9<8^㦸)n⦸)n⦸)n⦸)n⦸)n⦴,/{&_>MqS-`7MqS7#MqS܌#5_>57MqS7MqS7MqSܔΜEKAKAKAKAbo'Nĉ8q'Np N8'8qy;={#܌rghh ΝDF`GpԶh)~cvw||?;1^t{TRho >kMqS7MqS7MqS7MqS7MqS7MiݘĦuMqS7MiX:dcܔK֍|٧hhhhhhhhhhhhhɸ%[OOS̔֍M_+|%%%%%%%%%%%cZy1nRW||Qw;35jAKFKFKFKFKFKFKFKFKFKFKFKFKFKFKFKlr57S}VdddddddddܔG3?lll|7&1d ;,_|ӂqm._L놛yϞ>uCKFKFKFKFKFKFKFKFKFKf:lllll[%%%%%%%%%%cZY9q֍֍7sUZddddddddddT _ko3h[Mݿlj'rr7EKFKFKFKFKFKFKFKFKFKFKFKFKFKijN~!W)/=¹9:jђђђђђђђђђђђђђ1-:6UN&K_K!WN^[75--------------O'xc&!MMqS7MqS7MqS7MqS7MqS7MqS$)n0nSrDDDDDDFM4gqc:{Otf:YάCg֡37xw.Ϟ?ޝ[HIIIIIIIIIImnrY=6YάCg֡3Йu:tfu[t_ɣܼqIIIIIIIII)91w!10x[z=***ɓs)k/m~wvkl?>>'~{/o…z=***zOsml]DHHHHPyw{%zuK|W)nQ<ٓǼ>>MqS7MqS7MqS7MqS7MqS7MqS7M1-;;9fJ)R2dT Knܸ o}lo`{7޾y`F)R2dJɔ)ѯ>bwg>F)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2Ƶ&-L G-׮^;75 8>jix>˛)%SJL)--R2dJɔ)%SJL)R2dJɔII>bo'Q-sSg??OO??,_s«{k7MqS7Mђ MrΜΜΜM&ӂ⦸)nJbnc7Mђ 6qS7MqS7MqS7MqS7MqS7MqS7MqS7eow3OѶN)R2dJ䜸w7n\g{7޾ o}loƍGPJL)3?%%Z7Z7Fh)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJFbG]^⦔,?`<~#vnhɜ9}/Q-)%SJL)B)R2dJɔ)%SJL)R2dJɘ)fp,%'Z7Z7+JN$$$$$$$$$h<~o6U~WBSZ~x_%'rrrrrrrrrrT wn hɴn)/cL 9 9 9 9 9 9 9 9 9 9 W/"?s?oooooooo12LIIIIIIIIII(9}$Z7Z7n޸UZwrrrrrrrrrrrN1-$hܻ{{rrrrrrrrrrrrrrrY:Mix)Νu''!'!'!'!'!'!'!'!'!'!'!'!'p6//˿˼//KK|Gh$$$$$$$$$$$$$$W_>MqS7MqS7MqS7MqS7MqS7MqS7M1-;;99'rN(%c)fb)fb)9'rN9$ү>bwg>fJΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉf&-L G-צOOxG-gxm9s"DΉ9'rN9s"DΉ9'rN9sB$}r7MO>9s"D]yr=c=^իАs"DΉ/>׸)n⦸)n]NOч|?W>_L n⦴,/{&_>MqS-`7MqS7MqS7MqS7MqS7MqS7MqS7MqSvw8sFΉ9'rNP-)fb)fb)fJ)9'rNP-<|0()ѺѺ1ݿs"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"DΉ9'rN9s"D '?ro7d?e߽MuCKS|O)9'rN9s"DΉ9'rN9s"DΉ9'T p,%'Z7Z7<|0L9sB${ﱿ{|KVCRrN9a\^ŵস)n⦸)n%s9O=???|W)n⦸)nJd<$6 n⦸)nJ&c^㦬\@״n̿ӘR $$$$$$$$$$$$$$$:xIljDDD$^$I$I$I$I$I$I$I$I$I$I$I$I$'>Ϟf2k7MqS7MYiz~cC>?ч\^%IpS7Eb`\ٺLI$$$$,{S>C%Kdꀭ˗pSܔy4dz'y}|⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nbZ8w3/ВIIIIIIIIIIIIIIIIIIIIIWMqS^qTS%I$'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'AKf:dit?[&G\p㣖֍3|֍$~r7MO>LIIIIIIIIIIIIIIIIIxGMMqS7Mi[gg~r}+|w#I$+nmߠ 7MiY_pM|}⦸)Z2&n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)np)ܔ$-?%%Z7Z7F0UrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrBSsyR2ަ]Һ%s)^Qr"'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'AKfv.ΝDF`frrrrrrrrrrrrrrrrdF\^ŵস)n⦸)n%s._:rLpS7MqSܔ֍xHlZ77MqSܔ֍իMƼ>>MY0tPiX,8s 14CC 14CC 14CC 14Cbh!bh!bh!bh!$4ԫC>=1/=MqSz'{Hh!bh!bh!bh!bh!bh!bh!bh!bhABClj6/)nJɉ'Hh!bh!bh!$4Hh !bh ABbh!bh!bh! 7Wٺl 6}bh!bh!bh! $4Hh AB $4CC 14CC 14CC 14Hhx} wndkIl$4CC 14CC 14Cbh!bh!bh!bh!bh!bhаnJsΞ9M^!!bh!bh!bh!$4Hh AB $4CC 14CC 14CC 14CիW|?)_>f2k7MqS7%IONKKZ''ABYx'wnH 9>jqS7%'a4$$$$$$$h\ٺLI$$$$,{S>C%Kdꀭ˗pSܔy4dz'y}|⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nbZ8w3$H H H H H H H H H H H H H H H H H H H H H P}7M9xhH H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H ,\2f2´p|r}z}?!s9ZZ7>`nĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀ@hjN-wpSܔ]>=1$%^^㦸)n3.]8oׯ1Sb4[Q>ᦸ)nJbnc7Mђ 6qS7MqS7MqS7MqS7MqS7MqS7MqS7eow3´ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]ΟٽhH H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H 4yR2ަ]Һ%s)v)"1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1pm.;Kɉ֍֍&gђ(Ylr}zׂ⦸)n⦸)n̹gl^`wgxkʈ 7MqS7MiݘĦuMqS7MiX:dcܔK֍ꐋ?g:zM^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWMիL'Wt{)nJh8`yz^+z^+z^+z^+z^+z^+z^+z^+zj;oq/cZpSdn޸SWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWׇ<~|ʣ3d7уg?gOSWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QW Ν[7qSZ3v_pi߽zuH^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE^QWzE][r&-B]㦸)Y_M^+z^+z^+z^+z^+z^+z^+z^+z^+^%͋91 _}cdBS>|=^~37MiY_pM|}⦸)Z2&n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n.9}O 1PCM 51PCM 51PCM 51PCM 51PCM 51$ ܿ{FIBFƕѐ[7H&jb&jb&jb&jb&jb&jb&jb&jb&jb&jb&jb&jb&jb&jb&Gr7d?ݦ]Һ%٧0 1PCM 51PCM 51PCM 51PCM 51P$pM.hx;n$CM 51PCM 51PCM 51PCM 51P$0|׮ZpS7MqS7Mђ9w o \_ᦸ)n⦸)4n)n⦸)W\y}|:<`p^ӺaZX̿s|\8u{].^~Kץu{].^~Kץu{].^~Kץu{].^~KץOSJN)nrrMN+N{].^~Kץu{].^~Kץu{].^~Kץu{].^~Kץu:x8O⦸)z+cNdKץu{].^~Kץu{].^~Kץu{].^~Kץu{].^~'{=s7 7MqS$n'8u{].^~Kץu{].^~Kץu{].^~Kץu{].^~Kץү>'67M)9g>u{].^~Kץu{].^~Kץu{].^~Kץu{].^~Kץү>>ew7JϹpsGu{].^~Kץu{].^~Kץu{].^~Kץu{].^~Kץu{].G|I._34gܔ/_3i5n⦸)nkz}O~|}CC:}^1ؼ 7M/s|⦸)nJNhɋOIHIIIII 6ќy8Ǎ=y7foЙu:tf:Yά<{{wnQr"I$I$I$I$I$I$I$I$I$I$Id'gtf:YάCg֡3Йuom>d{|'p5Z'I$I$I$I$I$I$I$I$I>~ynmo'Ox@HHHHHHHHHHɉ}*.QUUUQUUUQUUU<wose2%%DDDDD;O,ի._믾MqSZϞ<n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)ni1e_Db $6Hl Ab $6Hl Ab B>9n^riB $6Hl Ab $6Hl Ab $6Hl Ab $6Hl Ab $6Hl Ab $6Hl Ab $6Hl AbĆKq-L G-קW]tQK|٧|$6Hl Ab $6Hl Ab $6f̓i^MqSV8i=O 5$6Hl Ab $6Hl AbĆS.]8Ghj7MqSܔy``|5_G$5^r^>ᦸ)nJbnc7Mђ 6qS7MqS7MqS7MqS7MqS7MqS7MqS7g?gP#Ab $6Hl Ab $6CϚIDATHl Ab l2)9ᦸwndy^"Ab $6Hl Ab $6Hl Ab $6Hl Ab $6Hl Ab $6Hl Ab $6Hl Ab $6Hl iܿ{?ÃܔL[ݡ]Һ%3^+$6Hl Ab $6Hl Ab $6Hl8x%_PrMqSnEb $6Hl Ab $6Hl agΝ{7MqS7MqSdΝ=`;s[&WF|W)n⦸)nJd<$6 n⦸)nJ&c^㦬\:OSqSB:dwr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1gwgKJN)n⦘)]\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.#IMqS7Mxr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1gro n7MqSܔ,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Bƴস)nRr; 9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9{; !Z2n⦸)Z !; 9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g`ꀒnc&!MMqS7MqSBч'?o믿cJNpx𒃗{ 6/y7MqS$)n0nSrDDDDDDFM4gqc:{Otf:YάCg֡37xw.Ϟ?ޝ[HIIIIIIIIIImnrY=6YάCg֡3Йu:tfu[t_ɣܼqIIIIIIIII)91w!10x[z=***ɓ1n"1$$$$$$$$$$Rrl_ʅ zTUEUUTUEUUTUEUUz=!ϟ>\ٺLI$$$$,{S>C%Kdꀭ˗pSܔy4dz'y}|⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦼1ؼɈdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3oq̧ܿ{#nRrbv.g?=͕ѐdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘ1.c&pUZɣ?1ؼ@h8s|~ Οcow 7MqSZwܽu/_㦸)nh⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)%%޹32b:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'cxsw7eu˗.py^1NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:seOOpv,7EK~O>f:uô矝axy1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘ˗.r97/y'|7ܾ 8g|~S?}̫}ؼxӂ⦸)eZ7MI 7y)9 I"I"I"I"I"I"&3g1' :YάCg֡3Йux;gs-JN$$$$$$$$$$$679,ߞ}άCg֡3Йu:tf:ߺ-͇ln޸Q$$$$$$$$$ݻǏ\<ϭmzUUQUUUQUUUQUUUqI7HIIIIIIIII)9]]…z=***zOsml]DHHHHPyw{%zuK|W)nQ<ٓǼ>>MqS7MqS7MqS7MqS7MqS7MqS7MqSL ܼqph8`40 Fph8`40 Fph8`40^#bS㦸)n^3^f40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fp!n%V2nC_{H )n\  Fph8`40 Fph8`40Ly114)n$=y+#FˌFph8`40 Fph8`<pc:a D7MqS7u>1ؼ@h8s;{Kα]zx`⦸); ޺ɗqS7EKf4MqS7MqS7MqS7MqS7MqS7MqS7MqS7%Iٓ\ /3 Fph8`40 Fph8`40 ܺq%%'7MqSVs&ph8`40 Fph8`40 Fph8`4rwKG@d% Cq܀?$؁c3H&lef'E,b۷N)/^pX"3ܾ~ŷϟ&z~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~Ⱏ8'~bNyX"E,v8+O㏼;yu^~+|ϟ==y7n` "ʎ[7 bXg'|C+] }WBt~Ǜ{yi͌fl3c1̘mfKe>>ἧ }WB{Aٽ}WB+;NNx5~9͌fl3c1̘mf63~x+ܽ>w޾xw+] }WB0lЕݻ4 M4 M4 M4 OpBw+] }WB};oq4 M4 M4 Mptt)=χzuBw_?/ţoyW3V7'/'{|>i$E,bX"E,bX"E,bX"E,kkkkkX"E,b kkkkkkkkkkkkkkk9αbXbxxbX"kkkkXE,bXkkkk9@,bX"/mhOÁox1OgOk>hC,b/}a?XB9g E,bX"E,bX"E,bX"E,bXXր5` Xր5` Xր5` Xր5` Xր5` xp5X"E4` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` Xր5` x8E,bi`/E,bXXր5` Xր5` Xր5` Xր5` XրXE,bXDր5` Xր5` Xր5` Xր5` x89@,bX"E,b׮]=/qkr{}?|O,bX"1oR^"&E,bqgܹ}4w߳Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-Uzղ^W-o\?"E,b~o^᧟~D~O/cMN޸5XĢ+;nd/E,bqwg9;w+] }W8kO9on^K63f͌fl3c҇/{]+;{οo_oY ^;9ƃk|sf͌fl3c1̘mfßW{-|}"] }WBw+]a8{?+;7^ݻw9::iiii9O> ]w+] }WBw+ =wƍ9::iiiS>{x?x&Cw+] ]7_G߈gnO,b1^O6}H,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"/mhO`8?>]G|1G?X"GpO"pY{B,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXh8kWiOnGZ^X"E[/E,bX\|wnb?Mʎ{Am)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKm)-e추ݖRv[nKWvXE,bXqW駟o?iOXE,MX"}  }WBwo6e^ڼl3c1̘mf63f/}/?zO?Ͻe8黎<w_[xgݖ~7'S7\盟3̘mf63f͌fl3gW_[ox; }WBw+] y< ]Ѿ:޽M4 M4 M4 M0y NOʎ+] }WBw+]a8ܽ7nM4 M4 M4 GGG|{W7+] }W8 _WhC{&?ÞX }˳k>hC,b/}a?XB9g E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b׮]=/qkr{}?|O,bX"1oR^"&E,bqgܹ}4X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"w~'~G?/.‹w|k}MN޸5XĢ+;nd/E,bqwg9;w+] }W8kO9on^K63f͌fl3c҇/{]+]+;G>_tO޽?+n<7?g1̘mf63f͌f>x'w/Bw+] }WBͽyx}u޽{#iiia>nЕ}WBw+] }Wpѽ{-nx#iii8==峇Xn2=}WBp}#~_gx8 >"EdsOg?"E,bX"E,bX"E,bX"pNw] }WBw+] }WBw+] }WBK"=0] }WBw+] }WBw+] }WBw+] }WBw+] }WBw+] }WBw+] }WBw+] }X"k E, }WBw+] }WBw+] }WpcX"{w+] }WBw+] }WBs"X"x>hC{&U/%_3~W_k>hC,b/}a?XB9g E,bX"E,bX"E,bX"E,ba] }WBw+] }WBw+] }WBsbX"9}w+] }WBw+] }WBw+] }WBw+] }WBw+] }WBw+] }WBw+] }WBw+ =E,b kE,bXh8 }WBw+] }WBw+] }Wy_0X"+] }WBw+] }WBw@,bX"E,b׮]=/qkr{}?|O,bX"1oR^"&E,bqgܹ}4X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"w~'~GN޸__οO>ͳiOXE,MX"}  }WBwo6e^ڼl3c1̘mf63f/}/?zO?Ͻߡ /(eG+%?[' W\q5~9͌fl3c1̘mf63~x+ܽ>w޾xw+] }WB0lЕݻ4 M4 M4 M4 OpBw+] }WB};oq4 M4 M4 Mptt)=χzuBw_?/ţoyW3V7'/'{|>i$E,bX"E,bX"E,bX"8;|1_?fhX.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s+|6} E,bݷ߲\4,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.NxG9ΉEw>k_+_맏5cnZ~9Er1g\Y.,s9Ŝbr1g\Y.,s9ŜoݷX"~ [\oY.9Ŝbr1g\Y.,s9Ŝbr1g\4_n#E,b"|цM]~򘯟>_GbX\$|s>xX"9kOE,bX"E,bX"E,bX"E,boyΝnse[br1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1ghx1yXb>\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\4\o?[b k'q_Ww޾pX}}k׮\4,s9Ŝbr1g\Y.,s9Ŝbr1g\Y., 7 =E,?{ț7^chX.,s9Ŝbr1g\Y.,s9ŜbrEC|#4 "E,bXB9]J{r_>֪~X"E,.bn:xEL,bX"ϸsi"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,v8+O|#6w᝷ȗϞҞ7bXteǭӛLE,>!}Gw+] g :?=m˼yfl3c1̘mf63^%^~2~wnSoG'?8<_{:?Wk|sf͌fl3c1̘mfßW{-|}"] }WBw+]a8{?+;7^ݻw9::iiii9O> ]w+] }WBw+ =wƍ9::iiiS>{x?x&Cw+] ]7_G߈gnO,b1^O6}H,bX"E,bX"E,bX"E,Oڕ+|嗌L4L4L4L4L4L4L4L4L4LŖ7Yv/E,3N[0M#42#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#82#4bͽ~ XL#_ڵc~9ӛ!~7nݷ4L4L4L4L4L4L4L4L4^lܾuFWv"`}ꔾ똦iƑiƑiƑiƑiƑiƑi }kW{2"E,ƋGړ7p 1]oy~WmE,bqţw8'bXh8=!E,bX"E,bX"E,bX"EٽيiƑiƑiƑiƑiƑiƑiƑiƑi?=|5X|#_ʧpqidGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGidG}Ǜ7^]!yѫx_\X|׮^'42#82#82#82#82#82#82#82M# =|?}H4X|诹v }0M#82#82#82#82#82#82#4b v혧OX"E,b v* [3~{bX"}1E,bo?[짉X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"m7O??8^w;y5Ͼ~B{&'oE,bѕNo2"8;NO}WBw+'7x/%f͌fl3c1x×x|}|9~ǟ?_?p sxp{Ϳn<7?g1̘mf63f͌f>x'w/Bw+] }WBͽyx}u޽{#iiia>nЕ}WBw+] }Wpѽ{-nx#iii8==峇Xn2=}WBp}#~_gx8 >"EdsOg?"E,bX"E,bX"E,bX|!V{'E,?+?#w޺;50y6y/[5޸xEО@w\gOX<)׮<}kW~Oٽ E,b1^?|4݋-}g_?맏9z|цX" _<}~"sbX"E,bX"E,bX"E,bX| ׮^! ӟ{nX\y6.ӟ(W[y5;_s޼oy_㯸p΍׮_??xӛh8'yk}{ϟ'~֫S>xbX"E,b׮]=/qkr{}?|O,bX"1oR^"&E,bqgܹ}4XB9_?]+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?+\?k׮r?b1E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,^lW駟9$^?{Ҟ7bXteǭӛLE,>!}Gw+] g :?=m˼yfl3c1̘mf63^%^~2~v{p~ysw&-<?skqrϙmf63f͌fl3cƫ/^xGƋw+] }WBwgs}hxw舦ihihihi<}['teGw+] }WB0|ty7^舦ihihih#NOO}>=֫ }Ow+wG߈_W/~+}#λ·ϟ&?|=x>O#E,bX"E,bX"E,bX"^vϟPkJZ+VjZRkJZ+VjZRkJZ+V.//r/ x WOVjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+Vj|{>[a Lw޺}珜|7n4^pCnPkJZ+VjZRkJZ+VjZRkJ˟o❷0^+] }WBw+ ={'teG{.GGG4MC44MC44MC44M|>':=+;w+eGٽ^u+]v{p[ܸ:GGG4MC44MC44MC4qzzg^d{w+]+~E,bX"E,bX"E,bX"5ڵc?@Z+VjZRkJZ+VjZRkJZ+VjZ]E,=}/ӟDZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+Si[kGw9m1\|[g+jZRkJZ+VjZRkJZ+VjZryys|%'9{jZRkJZ+VjZRkJZ+VjTmxX"E'9{1}O9_?'_~_ _}A,b/}a?XB9g E,bX"E,bX"E,bX"E,|%׮^JZ+VjZRkJZ+VjZRkJZ+VjZ/x1CsssvjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZ<&y_ſM>/y+.b4sKn@Z+VjZRkJZ+VjZRkJZ+5󞋘ӛ'|٧ZRkJZ+VjZRkJZ+Vj;bX"E,4ڵ'7x#nZnE,bX"Sʋ\"E,.b};o&b k戾ﹼK.//K.//K.//K.//K.//K.//K.//K.//K.//K.//y7|집X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXx?Pʎ;=}“wo|@,buzi yqvz=Bw+]=A|͟?x6/1̘mf63f͌fKˏ^sw{w+] }WBw+k|sf͌fl3c1̘mfßW{-|}"] }WBw+]a8{?+;7^ݻw9::iiii9O> ]w=?_'R8|t[Νquhihihi8::c] }WyWx/ş◿7+|oX=>}p4X"E,b /ΟΗ^ӝ}K}YlכI:qbgN'-yIŒDJ;d+#$+mA6EJ"K$b8d AHgVׅ`* `* `* `* 2~n߾@!B!B @!B!B @!Bp׹6XT0n`ߛ{B @!B!B @!B!B @!B!B @!B!B @!B!B @!B!B @!B!B @\c+˨&cN8 ΰtw ruՕ!B @!B!B @!B!B9okW1L֛!B @!B!@{a* `* Bezs/3v}|祗y{?_>{Խ0M0LSal` lO3LSTѐELST0LST0LST0LST0LST0LST0LSTظv}oB @!B!B @!B!B @!B\:~Fiؔ)+K\v!B @!B!B @!B!B @!B!B @!B!B @!B!B @!B!B @!B!B]uL0WX]>FkqcSd4dߛ{!B @!B!B @!B!B`ЁFÔ)cS,rw!B!B @=Ż'c2T0LST0LSAFC,ciׯztVg `* ؔěM1LST0Ʀܽ}SWf2bwѥ#x8~.[lO3LST0ƦLF6Md1dL6Md1dL6Md1dL63`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `*ܹ}⟾ /_kgϰy`*$G&cLST +ˋ\]b&ILĤILĤILĬ,-"!ZMN<ΣGxVB@U*Ph( سI۷8z0 STNEST0LST0LST0LST0LST0LST0LSAeāܾ} ={ !'xO={\׹6XT0n`ߛ{'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'x@^2*#ɘS'z¹3,/C&cƦ\hgu({ 'xO={ B xO={7^Ƶ MB c8L~*Ws:}^[޽;̶ !'xO=!TFjl޿`* `* Boq}OmjmJڼ0M0LST1XBc, ST0d4deiST0LST0LST0LST0LST0LST0LST06]ea['xO=! ` )cSƦ,/q xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO9{v׸qSa4L(VpQګl\ ^-={ 'xO={ 'xO={W8t`0elؔ#\] xOlwnq:W3gp5{ {8&#LST0LST0d4>q:G8~l|`* `*M9LST0LSal۷8u|ia* *#vʬ]&hγ=0LSalJ9N_c<~Ǐq1N?8y'c<~Ǐqݓ `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `*)76/-=_xFiEĨ0LSTH-VMƘ 0LVһ0MH4I4I4YYZDC.>yGP! VB@U*PhxC<{i[c4LI4I4I4I4I4IEvxO=Z VB@U*Phq~2gVO9{&1i&1i&1i&1i&1aJyK;$KdjQEQEQEQ{nn`uy$"Mb$&H-iLзxqۤY~ R:tZFEDQDEDQDEDQDVcyyޥo9v4%Mb$&Mb$fĬ>س{;0{Gf>a* i5ܽ4`* 2VT0LSTb* `* `* `* *#,[xl]vk.vŮ]صkvb׮]ڵ^xrs={x7ε:p܋={xB @={x{={x{={x{={x{={x{={x{={5,2"9u*[;a9tl2flʅyVW{={x{l={x󜽯fULSu&>xѺdpk^[gpmWg$#BxLJȈ=Q0LST0LSTpm+zmk 3ڧ?Bsy{xpI=y`* `* 2r`aK~uգK?|>T0LST0Ʀ_]&dl`* 06[:40LkeV.B LJ@={{ [ٞf &1ǏrΞ9MF}m5kk֨Q_[F}m:}oһ| 3T0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0L|LJ־u^2Ƙ `* Bo|l2T0Laȕ%iBĤILĤILĤI"2r<}ZQh( Z VBCGܻHaJĤILĤILĤILĤILĤILĬ,.r{Z*Ph( Z VB;l9znӧ4I4I4I4I4 SZs\!Xz kgPՈ(((ݻwsˋ[7om$1dg?wv/so~bO}󼺼S'8t Z(((Z2K9ߨsFiJĤILĤI0Y#|g<,was-9|6T0&cjr{i6Tt6}^V:L04ϭܸ} `*MQq]nߺɽwѐ)2~nߺ wxgٹs';wdΝܹ;wsNvΝ;_>O\;wy{vsm`*ܺ7{=>a{wpmܹf2bA;wx#MOg8{;wxFxJ;wxgct{;wx{;wx{F}c+˨&cN8 ΰtw ruՕewxzvؽ;bݻ#v_2i{yGl\`*ظ{wަ:GL1j#>׸y D{Ȉ=Q0LST0LST0.]w ^{g3LST0LSal` lO3LSTѐELST0& rs QT0LSau;w3T0L)is-nߺIXST06]ea[{lO;wsNvΝ;ٹs';wdΝܹ__x` )cSƦ,/q{;wx{;wx{;wx{;wx{;wx{;wx{;wx{;{v׸qSa4L(VpQګl\ ^MBxg8L9}4{wG{w믿/̧>)~rwx8t`0elؔ#\]{GgOgSe)p;wor-;zwxpI=y`* `* 2r`aK~uգK?|>T0LST0Ʀ_]&dl`* 06[:40LkeV.B <؇y3_g 8++|Oя~羳~ @xg^s7{G}~<ݽmrϾƓ}'>o8y06u:m4al`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `*lm?>̷yqU;\c1LST0L$bud`* 4aey+K ӄ4I4I4IEd8By*Ph( Z V?#pw5FÔ4I4I4I4I4I4YY\`wCU*Ph( Z VwP,sfNO1i&1i&1i&1i&1i3tCoAΜVEQEQEQEwƍ;: ?ŋܤ{5yߤW;¹rAjQEQEQEZez.rQ#Ҕ4I4Ia~Gc xY$[=rl`*LFr"lؔ~wp-,ơ?˟_M~ѧ1T2L׿>Y_䭷d=Ʀ *#,p9޽{ٹs'bbHXX,R,)E"?0O>$y9sy7`STuc}o9sC4*]w|sO,9OBg_ᱏ|u驏7Ls9䵯>y$\>7w s{s8p\}c+˨&cN8 ΰtw ruգ8!$ _KKر;vcv;ر_o9skW1LxpB훜k1ΈMm֝ X\,i_8O}l9F#D56T0LST0LSTte]6xa"60LST0L+4β=0LSAFCV1LSa2^?ͷ?QHnjU0L ؔkW<ܳ| LSTظv}o9s9Ї>{^"bbHXX,R,)E~a9s9B 9Q26elp9s9s8p9s9s8p9s9s8p9s9s8p9s9s8p9s9s8p9s9s8pc6gw1FÄ_auu*kMѐ}oekk=9{/"˿̎;رc;v`ǎر___#q:G8~l|`* `*M9LST0LSal۷8u|ia* *#vʬ]& k~.p䟿:'7&ʵn6(\h{1|⩯x ܘ(׺]n<˼Gp}}1>1g󉧾b|'>62@ui`* ݋xc1͘l޿h8d2smob23͘f<Ϲs6?{'=FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQ٨li64u:FfNQrX(3X^]fqK>ɡi؟lm,8p]ܾ~ž6U^W(x饟ֱ $w;:VstqWc^[8NJ?A.g&795^Kh9sqled̩xVΡd1cS.γztSooͿYXѣGYY9QVVrG/LMʕ+q:G8~l|`* `*M9LST0LSal۷8u|ia* *#vʬ]&Xqڻd@~|/;=&k{eb⋯}7W^O|FqR>Mɏ9܊;%>9r=7G&/|r O%?:|hγ=0LS۹=fLl2a>ƞש=kOmoLl2aeܺy~EʥSUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJ*%jJZDRV)QUJDxkdST0LST0LSak_aϋWYl`* `*$G&cLST +ˋ\]b&ILĤILĤILĬ,-"!ZMN<ΣGxVB@U*Ph( G>>xK?(;_r9Ξ:CjDQDEDQDEDQDEj5]FcG0JS$&Mb$&MbI=/|gY# oqa0V݋LSw'۶9?oKysQ6eb)g=ͻ7GLL._Wjܹs۷os* =Wz sM<9.ػw/;wX,R,)E"bbHX'$<9.y`{vsm`*ܺ7\s\ɡi؟l,Yqys9ٽGyW~oTᇟ{?W>|{A~?q?s^;g?"O[>&{,cO~>(O~8@Y,2"9u*[;a9tl2flʅyV.@\t=|/!xB 'xd<&sk\΃Gl\`*ظ;s\߸ƩwO`cν\Xg2/Poks z۷o99F!{*a* `* `*\2.C |og `* ،kgٞf !+K n|K_?=_a#36L=s=?5w̄d̑|K_h`0w_:?O0LkWY&;\!R,)E"bbHXX,sdq<9!x}.gMĥE<9.qys\<9.qys\<9.qys\<9.qys\<9.qys\<9.qys\<9.qys\FkqcSd4dߛ{{Go~/"G,B OT0LST0Ʀ_]&dl`* 06[:40LkeV.P`G=dn,#~yib?=擼tG0gK/ǿƅaS~CgyO;WWO| Yo/ng{a* B122)GU=u?1~X_AFCF :X3.w; =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =~AǠc1{ =}r,`* `* `*lm?>̷yqU;\c1LST0L$bud`* 4aey+K ӄ4I4I4IEd8By*Ph( Z V?#pw5FÔ4I4I4I4I4I4YY\`wCU*Ph( Z VwP,sfNO1i&1i&1i&1i&1i3tCoAΜVEQEQEQEwƍ VI-$&Mb!ؔ)&CILĤip|3NpAjQEQEQEZez.rQ#Ҕ4I4Ia~Gc xY$[=rl`*LFr"6'g~pɔl?cPbCM'dc%+-=L n駟fyyk׮q].];gyfdʈ u&9<'s<`=ܹbHXX,R,)E"b~'|yNyNsسkuLS֍ << srxy/|h';ۯ{u ?ܟg^q7/sO}?OI/?'<[=#s3,F<.'=ߏ|s¨7oseϟIz=>~oӋ,S_w|oU[E~eo7!s<'sBrled̩xVΡd1cS.γztow9y?<|t،qܧسgkѼkd&lO3 7hܹs7n?)_b*l\¾7qΑ?x@yNLS>bHXX,R,)E"b~E<'s<{zҔ)cSVt"!9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y9y͍͞ aB篰|:^e5ƦhȾ7s>(9y9y9y?xظ~__swC SƦM9zdK88onܺƱGyk;#Y=yNx =y`* `* 2r`aK~uգK?|>T0LST0Ʀ_]&dl`* 06[:40LkeV.)p  T:/~~rG9Ky#f#˗.vt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦivt;m6NnMӦiv\vUJ\:`M0LST0LST06[*e.1Ƙ `* Bo|l2T0Laȕ%iBĤILĤILĤI"2r<}ZQh( Z VBCGܻHaJĤILĤILĤILĤILĤILĬ,.r{Z*Ph( Z VB;l9znӧ4I4I4I4I4 SZs\!Xz kgPՈ(((ݻwsˋ$i&1i&1i&1i&1i&1aJ̩:tZFEDQDEDQDEDQDVcyyޥo9v4%Mb$&Mb$fĬ>س{;0{Gf>a* i5ܽtI,5m]Gs>r}8!Y?O~1Lwn*gϞhp)^{5ӽxPq`a?7_g4˘f,#QΝ;)E"bbHXX,R,yy'&Y4˘f,#Lػ;uLS֍ zcmY4ޞ:77ryp&o_M^~wyok7S_>P??|N1ʶfɐ/=>M. ̦Sf>?/e9h~Q>2k?O VGϕN3]g?Ǿ\^s=w~wxo:}sf,ceg3Ξ~c+GQMƜ:qkέay0:@636B<+K1͘fg3 8feLc쮱q*pc:l{i1ަ׻%t,:},z|cGrŃXx~lOL锭M^l޿`* `* pʀm+12Y4˘f?AR,)E"bbHXX,sAf,ce̶]Ҕ)cSVx|>geLi12Y4˘f,ceLi12Y4˘f,ceLi12Y4˘f,ceLi12Y4˘f,ceLi12Y4˘f,ceLi12Y4˘f,ceLi12Y4˘f,ceLתܸ0&~ G8ߨSyU6_cl{s/a{:e>SO[[ CfLcfg3ٌl|6c>`>ӟf.^ЁFÔ)cS.-rE,c;7yk6Ǘ9|vw=I`s>&Y4˘f8ʻ'O`2T0LST0LSAFC,ciׯztVg `* ؔěM1LST0Ʀܽ}SWf2bweO}:|ͽMg^#}[='/>η]`0=?=6pc?c='/>8a0?8yfhγ=0LSwZ4wob]ӧu/Ul޻K\w˽;w6r"T%ZZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&ejZ&)~νw&cLST0LST0L{|LJ־>/_}g{L1`* [.!1LSa&,/rwa&1i&1i&1i \h59}8vCZ VB@U*xd..>"㌉fS1??G|t8#L#}q~Ͼ YϏ><27d(k=Cg٣<Eӫ>Ǿ7)+/?{yWcxq4#L&Ʉl2a{{3QTFd1NZskgX^:;MƌM:ѥ#g3Y;wXؿ+$qLV;tp.\Bͅv 6'O7yg?clF6`jl\`*ظξ7=lOt,F{#Z;8~׮_c}d ɕ+=YF6M&l޻Q0LST0LST0.]w ^{g3LST0LSal` lO3LSTѐELST03KG6F._`;_y|v[[#&c_ʗyٳgoyꩧ8{ q*zl<&L&࣏bHXX,R,)E"b~0&Ʉl2a{:rҔ)cSV̶&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Ʉl2!L&Z1FÄ_auu*kMѐ}oLl2\;1V\kF^s.\Bͅv .p__u.uLn,0MrtimɄi߼GbUZ`iy IηlnmR*LcɄl2a=y`* `* 2r`aK~uգK?|>T0LST0Ʀ_]&dl`* 06[:40LkeV.og˯6N'fO>>s},^a2YS|2w_|\mn~x=1}#|gO6g+{K\mnO= {'^:4T0ƦظNTpnߺܺ׹uc[76y:nlpun֍ nU||6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌ |5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;;kV1E,bX"X.=G7[<^X"E-KNmc{kE,bUNnG7[BV Z-Z8y({>_❷O Fxh޿7Z-Zh"XxhZEP_9u(3G#Fxh7]%:ąؠ::::l6QjYjBV Z-Zhj7\sg9|t]Gut]Gut]GulllG7q{>q5Z-Zhj[ŗ:𥧿έı#"[pu|_6۾5Oyy{oGGW_=.~5X>`W_կ{;ZXXɄ-V Ulllvݻٽ{7wf޽ݻw{n/kkfJX%b &wnXܛMk*aNo9bjygs]6~7ޟ {?3~ĿgOKC7W&_?9Toy~ȬUN<Ͽ,owO~_'\>rǏ~UjţmV w'x'y'y'y'y'y'O?O}ZJīb.Y%<p!mqgg8֛|putvp͟WlomJZxt/?$E,bX"7n=Ok7ڟ%mbX"X%ܾumbXh9y(E,oĴBnr|߿Om U˗?c~}~:XbzomoJX%V C/'|ݻw{nvݻٽ{7wf޽/| |M֏JX%qU|peGX%V U*aJX%V U*aJX%V U*aJX%V U*aJX%V U*aJX%V U*aJX%V U*aJX%4 L9y  =_~-֏ч7/Į]x'y'y'y'y'/?GZJx͵> }c9q(׮~GX%lom%0.g(eɥyA&;rX%mosI~YX"E,b =ܽsS'sIvv"E,b9sjXE,bXb|zsgNh{Xط"'OlgQo_Wկ+7?G6}ڟ+o~_|Fq_ ~W~o>>m/??[o~7./z(k_W:q> Co2mXbW_xܽsܝ6w';mNnswrܝ6}xoGޢB,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"X.=G7[<^X"E-KNmc{kE,bUNnG7[BV Z-Z8y({>_❷O Fxh޿7Z-Vyx~G[bo_7Xs /U~_?'{lEbӷGqU9[XXV+b<~_~W wf޽ݻw{nvݻٽ{7__5,&6xu;E,ͦګlmm$[x6<_OwsYoOWk<7\=);˿3V&6.S|w;_͋omw~ÎiG&?_6Nͯ=~;P ~ʙ~q%~5@lb-96gNZqi^x/g:|\c<~&69~/+|ggggg6'O`Xhx{lz?y-bZq%^ۓ[=Ox+W.w楍-b-N<>K4X"E,b?zwnqqΜ>ΚX"E,V1gNmR V1E,bŨOq)moXX6^M>3osy޿zsb-&ׯ3+32>7Kv3osy޿zsb-&ׯIy_˼ܘv3oq\zsy+<~M,b kҽ ?x~~_❷O Fxh޿7Z ',{ӿƿ}gǿ'__^ȇoG#Fxh| :::666׸|=N8Z-Zh­KO__}ƒOqvkbU:ćׯh{X<rܙX֞d=wns&>'A"*l*bbXXmV %mo?صkvb׮]ڵ]vk.vŮ]/KKh%,ay`r6Žٔ_{ KX+?r||&;OXKD=&>[w`$:{2IXP]por?CgS?\2HxY>{{<\V<,|Ka-`6͛ܙXKXZg9s֊sgOK<ǏloX|p2ǎh{KX0p㏹}VZZijbc KXb{^^f:C,b1?y K.^|7)??gkW8b1Nƍkyr{X駼2CbX"E,bqmݣ|ovQ&E,bU[7x]?&ǏX"QOy)KlX"h!6%bϹ~ijJV+V,J%,J`< }c9q(>j%bC,aՊ'O "E,bXh9x`?Ǐ[:q3O&E,bU̙SłUL,bXb{;sG"9yb> Co2mX"2sɝLfr6;ܹm&wn3sɝLfr6ӻwxSX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b\<{o᷾ɵy"E,bZ<֊X"}<͏nзJV Z-ZhpQ|0;oן#FxhM}<7yoٻw/Cߣa@À }x`r6ŽO+$az4 h0a@ 4 h0 H4 h0a@À 4 h0 H4 h0a@À 4 h0a@À 4 h0a@À4 h0a@ÀĜ;{3'O` lo8w4lγyo>֊UW.y([[[ C 4 h0a@À 4 h0a@À }2b.?ɫ7o~+v>sgNqIN>ɩ'9t q ]Zh0{2CbX"E,bqmݣ|ovQ&E,bU[7x]?&ǏX"E,bX"E,bX"E,bXbz_* C Zo?}<7yogɳ~g&>M~޻@b4 h0\Ё7Zc9y+/Z 4 h0a@À 4 h0a@À 4 h0a@À 4 h0a@À 4 h0a@À 4 h0a@À 4 h0a@À j-{%>%C_ sj/K?!ӻV1z>Kh0a@À 4 h0a@À 4 h0+>xobV1'+4 X⭷q>sgNqIN>ɩ'y'#N:ǘܹ4a 1Nl "E,bXh9x`?Ǐ[:q3O&E,bU̙SłUL,bXb{;sG"8ub> oe?&E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b\<{o᷾ɵy"E,bZ<֊X"}<͏nзJV Z-ZhpQ|0;oן#Fxh{3'O` lo8w4lγyo>֊UW.y(}F7o}}F7o}}F7j-2b.?ɫ$Skc:rCr:&C8!N֭)eI71 =xee"E,bX|G)z&_dM,bX"۷nr»<~M,b ='%E,bX"E,bX"E,bX"IF7o$f UXjVZ*Va Uo}CʘC`hU*qƗ/o}}F7o}}F7o}}F7o}}F7o}}F7o}}F7o}}F7o}%^~OwW~<ҏU'̐o}}F7o}}F7 Y/_ }c9q(\o CϽO?̙S>|Cr<&79r-޽pZ}߰gbX"E,4_❷O Fxhy ^{S?)- m^|k+ .M孏G#Fxh| :::666׸|=N8Z-Zh­KO__}ƒOqvkbU:ćׯh{X"E,bX"E,bX"E,bXX[ӷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJW{6ŽO+آoUV[oUV[oUV[oUV[oUV[oUV[oUV[oUV[oUV[oUV[oUV[oUV[oUV[oUV[oUϜX[+Ν=+/l?[bl;*oUV[oUV[oUV[oUV[oUVe+/1!MӟJ,V[o =E,bXUV[fS^x!E,bX"q6_Qwxʷ^(YmX"*\.mXBCGE,bX"E,bX"E,bX"E,b1{FlV[oUV[oUV[oUV[oUV[oUV2U/_"}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*}R "L9y  =_Of3ѷJ*}ҷJ*}ҷJ*}ҷJ*}ҷJ*zƗ.rYŜ8~E*} }E,bX"7V[okq~YX"E,b =ܽsS'sIvv"E,b9sjXE,bXb|zsgNh{X\t Mlb&6Mlb&6Mlb&6Mlb&6Mlbq ^{u,ZX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"ro9·̟q&n?X"E,jYrj[+bXrr(7?A*Z-ZhjGQ}/_'O0G#Fx[OG׹x|oY~;?ɟs_Wy~cȑ3G#Fxh7]%:ąؠ::::l6QjYjBV Z-Zhj7\sg9|t]Gut]Gut]GulllG7q{>q5Z-Zhj[ŗ:𥧿έı#"[pu|_E,bX"E,bX"E,bX"[3V Z-ZhjBV Z-ZhjBV Z-ZhP˂W{6ŽO+X.ijBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhS9yk`{kŹye%޿pGxAVb>rǎVZhjBV Z-ZhjBV Z-ZhP mtrXb6O*@KZ-ZhjBV Z-ZhjBV >啍YX"E,b7o{|뵛|ώ6E,bXnߺ 6E,4<~X"E,bX"E,bX"E,bX"ӻwkآ%Z-ZhjBV Z-ZhjBV Z-Zh0+K:CkbV1'73|kBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjBV Z-ZhjB!^~OwW~<ҏU')}ZhjBV Z-ZhjBV Z-Zh0˗ }c9q(\jBV Z-ZhjBV Z-Zhqr?{,@,bX"sa޹ũ9s$;;kbX"XŜ9IY,X"E,V1>ǹ3xM,b k7yՎas{>as{>as{>as{>as{>as{>as{>as{>as{>as{sܿE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX,ƞ#|{wlrCmE,bXĢ%6"E*'7rjBV Z-<~=/gxbxhə'V;{W6^ <~d{k*+c9F-sjYP˂ZԲ,eA- jYP˂ZԲ,eA- jYP˂^~lz_{UjS˂ZԲ,eA- jYP˂ZԲ,eA- jY0{}/?$E,bX"7n=Ok7ڟ%mbX"X%ܾumbXh9y(E,bX"E,bX"E,bX"E,w''ҷJ-sjYP˂ZԲ,eA- jYP˂ZԲ,eA- jYP˂ZԲ%Ks YŜ:q_`+,eA- jYP˂ZԲ,eA- jYP˂ZԲ,eA- jYP˂ZԲ,eA- jYP˂ZԲ,eA- jYP˂ZԲ,eA- jYP˂ZԲ,eA- jYP˂ZԲ,e}^]b1<6q{ޝг׸{6.eA- jYP˂ZԲ,eA- jYP˂ZԲ,eA- V<7V19q(/WjYP˂ZԲ,eA- jYP˂ZԲ,eA- V8q(?{,@,bX"sa޹ũ9s$;;kbX"XŜ9IY,X"E,V1>ǹ3xM,bXloX?~z1cǬ׏Y^?f~z1cǬ׏Y^?f~z1cǬ׏Y^?f~z1cǬ׏Y^?f~z1cǬ׏Y^?f~ǏZX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b\<{o᷾ɵy"E,bZ<֊X"}<͏nзJV Z-ZhpQ|0;oן#Fxh]u]u]ulnnэk\OchV Z-Zk}񥧿/|sk8q;5*\_xE,bX"E,bX"E,bX"E,G Y.RsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9gz?yub~믽rNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNYΙ?ωGyX[+Ν=+K<'Zq|QsrNY)9e9,圲SsrNY)9e9,圲SsrNYι;O^lzX'3~+̦rNY)9e9,圲SsrNY)9e9,圲Ssܸv?y!E,bX"q6_Qwxʷ^(YmX"*\.mXBCGE,bX"E,bX"E,bX"E,blO*L'圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNYY.rg8~-VYŬbΝ='YPsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲SsrNY)9e9,圲Ssr-~>}2#C_ sq._z~Cw'b4>x,)9e9,圲SsrNY)9e9,圲SsrNY)9e9gx;βyCX3x)圲SsrNY)9e9,圲SsrNY)9e9,[ywbX"E,4?wsxr}[jBV Z-ZhjaKsUjYrC\8 :::c߾}fSNm%Z-ZhZBV Z }ʥ?wÇAut]Gut]Gut]|t/ZBV Zu_| _zܺ/Zx=N;zM,b WǗ5moX"E,bX"E,bX"E,bH\z WƗ޽l:a60NM'̦f tl:a60NM'̦f tl:a60NGu OnxXĢ%Nl֡7G̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'ܽ{?;ǛoZq;ҽgNq8~UŃO79}rɝ[̦f tl:a60NM'̦f tl:a60NM'̦>#|3NxXĢ.<Α}&tl:a60NM'̦f tl:a60NM'̦n\/B,bX"E,nܼW{n?;JV"E,bJ}&/G"sQbX"E,bX"E,bX"E,bXǏqCܾutl:a60NM'̦f tl:a60NM'̦f tl:a60{gqU"?{3{tl:a60NM'̦f tl:a60NM'̦f tl:a60NM'̦f O}y}9ZsȅZ<9ADZivB-CݖW[Zq+ĶbE%YݖݶRk? )_ *oU7n- [6*~s]{q{q{q{q{q{q{q{q߻Éwf:jE,=Ƿ>ud~1!~7ьO?`=8`=8`=8`=8cO~ oMܺ"㭟+8`=8`=8`=8ӽ`‰wO`X"E,b5gO'={X"E,jdwjL,bXĢ,=dgGG"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bOo}̷/}gX"E>ew4GJ,buqng{wo;ZZZΝF5ͮsa:ዷ^ـl`6`00 ks&ׯ^pw-}w-}w-}w-}w-}w-綷9q^`6`00  fـxɐpƜKγZZZZZ=W}]3ŋlmmQJB)R J)R8~8lӵO黖k黧~)-){||6{~ɓ'ڢB)R J)Rbggo\ik黖k黖ur!^zU+r!]CΞ>ϟXlj1Ν[7yv!E,bX"E,bX"E,bX"Xfr|4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ!?}8.>:$rƻyPFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2z}=޺ɺoEyx' ̉wԘXX| ;ۧx}kD )!e4ѐ2RFChH )!e4ѐ2RFChѐ:'ccXb![ѐ2RFChH )!e4ѐ2RFChH )!Ƿ^퟾ɕKY-"E,bX"='I="E,b=]gώE,b5lX"E,bX"E,bX"E,bX"[ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFC^zōYC E,kܾʼnwhH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFChH )!e4ѐ2RFC ` [7q|59\"}\[? e4ѐ2RFChH )!e4ѐ2RFChH )!e4'y]X";nr❷9>RFChH )!e4ѐ2RFChH )!e4QF~$߹aX"E,b y8}O?3L"E,bQc&;OPcbX"5f!'<;:"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX<}~c'|;;|gGX"E,);9TbXs;ܻ{uw-}w-}w-}r6Zhv _2f fـl`6Xs̝7~2랾k黖k黖k黖k黖k黖k9͉[Eـl`6`00 мkO\[7\pM }w-}w-}w-}w-}r]7ڧy/^dkkR J)R(PJ98gwg}JߵՃ+k_e'YZ.X- Vrj`\Z.X- Vrj`\Z.X-ϟXlj1Ν[7yv!E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"{w}=mRE,bXĢ&<k/ٳ#bXp͹3"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"׼[>ɧg&s|sbX"1'O1E,b|]X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,>yWpo1zn>x̳J,bX"]ݝm*E,}ǹmݽͺ軖k黖k黖k9wf|4΅/zcc fـl`6`0p9_ݛ\zuOߵ]Kߵ]Kߵ]Kߵ]Kߵ]Kߵĭwxq"ـl`6`00  f^h^'C.~s.]8Ϧk黖k黖k黖k黖k9\̮_tSμ/E)R J)R(PJ쳻M>ew]zO֟o̫.?~5+o?ʥ ?'E,b3ݡ}X"1G9?E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX|[?K<;"E,bѵO9ѦXbw۬k黖k黖k黖sgzG\N⭗96;`6`00  fǚc|eܽ9\]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]˹mNzg/2  fـl`6^{2ܺ1҅lj軖k黖k黖k黖k黖uUn߼A>'|"[[[R(PJB)R ?>gѧsM~ǪP~oy[=~+.p (PJB)R 4׮0>{þZZeݵ_^y/ʫ_uײ|O"n̮sMmE,bX"E,bX"E,bX"E,bScjL15ԘScjL15ԘScjL15&E,bXĢԘScjL15ԘScjL15ԘScjL15ԘScjL15ԘScjL15ԘScjL15ԘScjL15ԘX"pljE,bX$ԘScjL15ԘScjL15ԘX"E,bQcjL15ԘScjL15ԘScbX"E,bX||>__6G"E,bQܿǵ˗E,tܙmbX"E,bX"E,bX"E,bX"15ԘScjL15ԘScjL15ԘScbX"EbjL15ԘScjL15ԘScjL15ԘScjL15ԘScjL15ԘScjL15ԘScjL15ԘScjLE,bXԘMhS1E,bScjL15ԘScjL15ԘScjLE,bX"15ԘScjL15ԘScjL1E,bX"E,twI>>g0ϟX"E>yBE,bXԘ壇X"E,bXbg|3>ώ*5gG6E,bX"E,hQ5͆gGjX">p!X" Ϟ=ϞQF"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX|[?K<;"E,bѵO9ѦXbw۬k黖k黖k黖sgzG\N⭗96;`6`00  fǚc|eܽ9\]Kߵ]Kߵ]Kߵ]Kߵ]Kߵ]˹mNzg/2  fـl`6^{2ܺ1҅lj軖k黖k黖k黖k黖uUn߼A>'|"[[[R(PJB)R ?SΟS~[Mg\2Q`gwG?c 7~3?gOG\!'O`kkR J)R(PJakk޾Is 㳧9{ZZ]xWKXw-G9{?N,b:wnцX"E,bX"E,bX"E,bX:d\rdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3p~{wYE,b;>w L'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NƜ`̼cbX͸p~|v}J,b}­q~:a:3NL'c1ɘdt2f:3NL'c1ɘdt2f:s{bXbw||ONL'c1ɘdt2f:3NL'c1ɘdt2f:s"E,bX"='I="E,b=]gώE,b5lX"E,bX"E,bX"E,bX";\8ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2fkW.xX"xxAsL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘdt2f:3N\pʃqE,bxK?҅!ußpE1ɘdt2f:3NL'c1ɘdt2f:3NL'c1\zGX"UNL'c1ɘdt2f:3NL'c1ɘdt2c>7<]E,bX"Ŧsݷ9>~d,9_X"1'O1E,b|]X"E,bmݷO7Oxe=Lyew4GJ,buqng{wo;ZZZΝF5ͮsa:ዷ^ـl`6`00 ks&ׯ^pw-}w-}w-}w-}w-}w-綷9q^`6`00  fـxɐpƜKγZZZZZ=W}]3ŋlmmQJB)R J)R8~8l>]>yB>7"O_ϼ/c~~8W.L9y[[[R(PJB)R [[[pMkW=aw-}w-}ײZ/K^zU/ĺkY>zӧsbM 7f׹s&ώ6"E,bX"E,bX"E,bX>x{L'cfׯ1oMüi7 a4̛y0oMüi7 a4̛y0oMìΥo1~uO,bqNW._b4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 +9>ΜfxI,65ܼ1g?/~lc\ȦXtS.I]¼i7 a4̛y0oMüi7 a4̛y0oMìΥ o15{buϬK̛y0oMüi7 a4̛y0oMüi7 :?[?E,bX"{w}=mRE,bXĢ&<k/ٳ#bXp͹3"E,bX"E,bX"E,bX"8\4ׯqwza4̛y0oMüi7 a4̛y0oMüi7 a4̛UvϞ"x\szݳ;4ׯ1oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛y0oMüi7 a4̛Ysݷ~ƍpM,tĻo?!ŏy\PcC?fuMüi7 a4̛y0oMüi7 a4̛y0okW9sS'O"X.qfsgi_c4̛y0oMüi7 a4̛y0oMüiv `|,OVE,bX":\3k޻oݟgz8 f5=E,bQc&;OPcbX"5f!'<;:"E,bX"6G}^^w7W?_'k"|FD,C,Xa}}~U>$?{__6G"E,bQܿǵ˗E,tܙmbX"E,bX"E,bX"E,bX,=w`_m6Lvt"׮\fYjꗿ;[ bqџG?..?=jK|l6\8?Ňkb+.2>wͦе-NG3bX"1ׯ]坷|'<1wnhƥ yx+"E>yBE,bXԘ壇X"E,b/w9swk&okocN_rk?տǿzm%y Me?˟Ly|ۯqpOW7o]wo?{"6#~o?軎Cj&ɓ'ڢB)R J)Rbggo\ik黖k黖ur!^zU+r!]CΞ>ϟXlj1Ν[7yv!E,bX"E,bX"E,bX"!'y_7"O䗿%W\9C6))O8TjGsg?o{"O¯~+=?ytX"E,bXܾ/wo+&X"E,jƒv=;"ל;M,bX"E,bX"E,bX"E,bO?᝟_W<1.ScvϞ<?y8G9}W.05FkOxZ;:ScΞ[\8?)E,bXԘ78΃/_gϰYwGx<}XĢLvwh<"E,jCOvyvtD,bXԘM 5&9y_=~s~g<{z{/y/opĿtw#_'oNk?o˟{/}' /53??E~W|SbX_xG{7y?+E,65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM 65lj԰aSæM bX"E,bX"O]to̱1ـl`6`00 8/sM_ầZ{$Qcu=1>ĭwxq"ـl`6`00  f^h^'C.~s.]8Ϧk黖k黖k黖k黖k9\̮_tSμ/E)R J)R(PJ쳻M>ZZZZZp3~?lmmQJB)R J)lmm7i]a|4}Oߵ]Kߵ]˺k/*_xWe!gOωE,65ܘ]έ<;X"E,bX"\ukHUrMtX5U"Oǐs'm'RlӲcݬXdǶˢ.Hٸ`ą7h\;fk{w}LST0LST0LST0T&ٽDADDADDADDADDADرm++7o`* svܝ "" "" "" "" "" "" "" "" "" "" "" "" "" "" "pYFeBSO9y].Y>tS\=r "" "" "" "" "RJu +0L;" "" "" "" ""Ua[G `* `* W[Vk|%l`* `* S3n޸ƅg `*d#0LST0LST0LST0LST0LST0LST0LSauwCDDADDADDADDADDADܺݻTSSY>ĕ "" "" "" "" "" "" "" "" "" "" "" "" "" "" "x)۶,rw6d䍟_8[o+LM;wlX_ "" "" "" "" "n\ξ=lTLM|pkWDADDADDADDADz$8ST0LSajʶ-kf)UY!ޝU./֛S 05e5 `* SS޿cGiST0&U >7o\T0UUً['[:_'_0z=NmS~탟 u,6^}6}S8|SܿUlgC?Mʷ]zH=;~|UkSLSTwϼ/_KSTʂᥜAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAg}yAgpύkWST0LST0LST0LG|뼺2Ûh)`* P]>HSO1LSa*9ĵWبJ* * * ZB66_ԉc|t"ϰ//////L^"C.?d* wC[W=8ݵCُxz<{-wggYXXXXXXx_}3N=hp3NRO,ʂ,ʂ,ʂ,ʂ,lTse8,9/gOfqq,Ȳ,Ȳ,Ȳ,زe wrtyX* * * * * `QqN<ξ}{Y\\$2,#2,#2,cqqe^ҿpwdRUTeAUTeAUl7/ ?KpばQ<d>T01/2 iST0LST0LST0LST0LST0LST0LSAežݻADDADDADDADDADDAJ۶rp*;wl݉" "" "" "" "" "" "" "" "" "" "" "" "" "" "" eT&4e[?{CؿoM=ej#" "" "" "" "" [r STz] "" "" "" "" "Pe=~`* `* pM>%~ool^[¦ `* 05k\8{Y`* L68rh ST0LST0LST0LST0LST0LST0LST0VWn{;DADDADDADDADDADDʭݽIU15ejʑC\" "" "" "" "" "" "" "" "" "" "" "" "" "" ""Om"wWoc*L6JO8|s^ajL6عc;:ADDADDADDADDADpudbjԔK\: "" "" "" ""{'y1L& `* SSmX__#|6TeG<{wVԿ[oNYc* ԔcG)֘b* `*LMyx'mLSaQq9N0s tl^|?&?/,?ǁeQ>/E(G>~ߞ_>o}U.ݽñ_͇rg^ڔST0 2a:%g<~GLU06WGCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx4d<2 GCƣ!ѐhx42Ϝ3Te`* `* `* kyu->e76SLST0LS,9|b* FUrdykWQTeAUTeAUTeAU9llp9ȩEɟa!_`!_`!_`!_`!_`!_3xEW\<FEULxiKWx˗S|wql,       뿏~ .qIQUYPUYPUYPUYPy :,..eYeYeYe[lΝU./QTeAUTeAUTeAUTeAUTeAUL6*.]ٷo/dYFedYFedYFe,..+CL,ʂ,ʂᅗ^^xn<6ʂq B=5Eƣ!mSc* `* `* `* `* `* `*Lس{ wp'"wp' wRJض70L{wVٹc;N;N;N;N;N;N;N;N;N;N;N;N;N;N;N\8w,2<.[,:}{h)SS.}9 @;N;N;ND;N;x{VWna* wVoDNtO2ږmhۆYd>=;ND*¶lǏ0LST0LST0\翷kKشT0LST0fܼq g0kLSTG-a* `* `* `* `* `* `* -v| wp'p' wnݼݻTSSY>ĕp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp'y ۶,rw6d䍟_8[od;SCN;N;N;A;Np5dbjԔK\: w<%9e6mC6f-ӧ;N;'x1L& `* SSmX__SBExWy:+wwK:`*LM9vtbm)`* ԔqQڦTr Ng}1m5SSLZe~_7sғOf-fJly~+7x_}-oku~~5ʟ} ܫ>Ç<~轭|6[neß6) rG5pe?K`*LMiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiib}sOr5a* `* `* kyu->e76SLST0LS,9|b* FUrdykWQTeAUTeAUTeAU9llp9ȩEɟa!_`!_`!_`!_`!_`!_3xEW\<FEUlY\7Oe} EN];vn͟e!_`!_`!_`!_`!_`!_`!_}8}8%Μ:I=5* * * * `Q_<ϕဲX=}E,#2,#2,#2,c˖-ܹ%b,ʂ,ʂ,ʂ,ʂ,ʂFť8}8eqq,Ȳ,Ȳ,ȲEzeH9=|IUQUYPUYQx + /FY=<ST x4mjLST0LST0LST0LST0LST0LST0L {v{;e˗  ``0`00 |2nqwwI]۶rp*;wlqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqw eT&4e[?{CؿoM=ej#pww݉#"pwwqwc-T0f;;ܝm[F9wgٓ:sgOri;{gNrI]8ڈ wqwww&LST0L)۶dpx;~|/8R"o:e`* SS]X[cj`* 05{sKcrs?zێCs>xwۯs_`**C͋M/\_T0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST013|1LST0LST0LG|뼺2Ûh)`* P]>HSO1LSa*9ĵWبJ* * * ZB66_ԉc|t"ϰ//////L^"C3NN*&?;oo~y]x'9POA~hHԘ J]ږY[LSTѶ 󶡭 `* SSzJ4)`*Lس{wqwvx{M6i&6mĦMشi6mbӦMlڴOӤpww麎me LSޝUv؎{qwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqw.;˻GQSNoqi`=4)>G,;NDɜﱲ +++-ϱcwqwܝ{+0L;D8NDxK?3hښ1&ܽwr7ɜqw" ۲E?T0LST0LSTr&?ط7_ -aST0LSTq5.=ìm0LSA&9`* RSa* fF4g-Y˼i`* B=5zJST0LSauwCD;3 z6mbӦMlڴM6i&6mĦMشi?<qw[7ow.&UԔ)Gqe4qwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqw45Uc޿;Կ[oNYc* ԔcG)֘b* `*LMyx'mLzj\/mLST0UCN!Nn+ 0 nw_{Kwrf_O_.A x_o) }]gS=zp?{?'O}ow+]>w? iŽ|}O-riu ST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST01\btmSc* `* `* kyu->e76SLST0LS,9|b* FUrdykWQTeAUTeAUTeAU9llp9ȩEɟa!_`!_`!_`!_`!_`!_3xEWG;5o<7&褢?oi>?s뗗k}\ó, , , , , , , >Zg4ęS'FUTeAUTeAUTeAUTeAUL6*2PڿOHedYFedYFedYFelٲ;wV9DYSUYPUYPUYPUYPUY0٨tOg߾,..eYeYeY2W _8ǻ2** * 6ʂ^z{W@( ޿x2c* MbNWO./_睓c*UZq^{< LSTr&۶n7xp`* *{wRJH)}vzz=z^^GףsO~H)R"DJ{۶rp*;wl'DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJϝ#˨Lh)'ŷ84ˇzԔyGH)躎cǎO}_͛7yf6o͛ټy37XC?^L6\|7ud¶lǏ0LST0LST0\翷kKشT0LST0fܼq g0kLSTG-a* 2ݸDZ?፿?ɣ1N)o/y7~7|?{ 0٨8I˿d߾=~`* +ؽsNJ)%RJ3>zz=z^^GףsqARJH)͛7ػ{bjԔ#ˇ2R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"ē'smYmLF? Gҿp|+LM;wlg}} w'{bc//Ї>>6o͛ټy37o??GOL&D8\v}{v3٨25eWWH)xF脢|`Gp\ )%;yNd`* 05eۖ5O ?xaܻ˥EzubST0;LST0LSaj8y(m`*SxD~f45TSژR5e61UajF6jc`* S3ڶa>k5S& `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* PO˗hST0LST0LSTX_{WxoΫn.3b* `* e4ST06#K\z* * * ȡ%dcEN8GG/;      /2:7;ʾ~_o[?ɫ'|~׾ggYXXXXXXg[ .qIQUYPUYPUYPUYPy :,..eYeYeYe[lΝU./QTeAUTeAUTeAUTeAUTeAUL6*.]ٷo/dYFedYFedYFe,..+CL,ʂ,ʂᅗ^^xn<6ʂq B=5Eƣ!mPOK.G~?ݗPW//yRSajʕш_|-7y啗y *Ž{wRJH)}vzz=z^^GףsO~H)R"DJO-ܼ`*ܻI)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"sgy2*zu-Ο=߷25reRJDggӟ4/e^~e^~e^~e^~e/~|#ܼy'Oж-)%RJ<}[3VWna* wVo띷I)R""{gϝi<^ȃG6+wnޙ=v3gNsqDw'DJdm"ka* `* `*\vo[ۯזi`* `*L͸yΞa6 ZT0LǷ8GƔ1n6?}}?tQSLlmV{G?+_ wx!r;wH)R"l68?<^^Gףzz=z= DJ7ػ{bjԔ#ˇ2R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"|>gۖETlӟpt xYlsvpwRJoͿK_/2/2/2/2 >__4 MRJDׯ]eߞL6*LMY>RJ;G()7yp 9zl'q)..H)w&LST0L)۶d<~K/ܙӌGC]R"o:e`* SS]X[cj`* 05{s3`h3G_%~-ωգm[XySTwg;R":RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#: 8 YFeBSO9y].Y>tS\= @s=^x~˴MC6mC6mC6m-ׁ`˖-o45)u<}[3VWna* wVo띷H#Y©'Zy.w0r3\]B~w>=RdX{ST0LST0LSʵ|{K`*~/MLST0LSaj׸p T0Llp`/ksFMW?99vkwװa*ԵqYpAܹh4|_oc* +ؽsNJ)uԑRl68?<^^Gףzz=z=H#:"7w.&UԔ)Gqe4:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RH#:RglzSaQO/7_g SSdY_[=lݺO _יL6hۆmhۆmhۆ٬*KVnb6k)u菾ѣG "~*fQ15ej%AJK?fxwy\||xqypRGJ)u@w&LST0L)۶d<~K/ܙӌGC]R"o:e`* SS]X[cj`* 05{U LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST01\btmSc* `* `* kyu->e76SLST0LS,9|b* FUrdykWQTeAUTeAUTeAU9L6_ˌ27d|oސ!{Cr5.;glTTeAUT돸{;)ʒx[׸:ط~~%27d|oސ!{C\7d-c4̙S'FUTeAUTeAUTeAUTeAUL6*2PڿOHedYFedYFedYFelٲ;wV9DYSUYPUYPUYPUYPUY0٨tOg߾,..eYeYeY2W _8ǻ2** * 6ʂ^z{W@( ޿x2c*  s?|wkӖfmOwܙL|Kc?BT0߻Ew?ʕ+ٳ/}K>Pg.ݻu`zz=z^^G㓟$ӧ#uH]ӧOy{VnT0YeH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:3{d M=wٺϞfCSOr9s2{!7H]G:Rבu#u?gH]Ǔ'Oؾ5cupg6ywVVnqĻTy.n\a-ܽ0ҧ(8w) eG `* `* W[Vk|%l`* `* S3n޸ƅg `*d#0Lun^8E~4ğFlۇ?~+̇? ^yMYSuKƟseָsgϞ7u +ؽsN:Rבuf3>zz=z^^Gףsϱ@:RבpݽIU15ejʑC\ !u#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבu#uH]G:Rבuc>-[mLF? Gҿp|+LM;wlg}m O "'?="D:Rבu#uH]sguDׯ^eߞL6*LMY>"uxr,#?8u~ƾ{8~7o_w>%u N0`* `*LMٶ%c}} "_~~O~#=rr|XT0L)ǎ.S15T0LST=N;J4 Ը6_m `* BYst M=T0L׮^a*ʂ,ʂ,ʂ,8rh LX]G9uNԉc:qS'q1N8Ʃ8uNܺyl0٨lTL6*&FdbQ1٨lTL6* x:qS'q1N8Ʃ8uNԉc:qS'qI_s潓S* * * * * &\(uӧY\\$2,#2,#2,#2l;]^,֩ʂ,ʂ,ʂ,ʂ,ʂ,lT\x'o^ɲ,Ȳ,Ȳ,X\\dyyW/TUYPUYPe /Ͻ+x l<1Lzj GCڶer |/Y[bGx?eiC_o~W7s&ܿw/~ܹ˗/sU.\;!yO=5T&ٽwVy ٌl|6ٺu+zz=z^^Gףx=fm|6c>1͘fږ[3VnT0Y坷ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌSΞ>ŻG2<.[,:}{h)SS.},"u8|0mJ3ϙfs9||>g>d>gֶ>,EQ0im[Y]`*YoO<]ұIDATy06˜x8s4G=؄=[ndl|>,ٚka* `* `*\vo[ۯזi`* `*L͸yΞa6 ZT0L鴦-Q>oQLrﲺ ԯ"~ɔY[u'O2F?~|_gjrӧg3ٌlt:c?<^^Gףzz=z=Sb>1͘f<}kWݽIU15ejʑC麎l|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6c>1͘fg3ٌl|6kfۘ 7~.o:W" vGx ]я~{Ls9||>g>3ϙe|eľ=lTLMrшSOukDSt'eMI]x<Ȳ%[NlCI%ˉX5 )bLq&Q$>tRuIB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI `*$T* JB%PI$LSTquW/_`* `* 0i7/dƇ>,ׅ|/o| 3~7l:?1LȦ\vo~O9P2ٔ˗.07{{rT ޣ"~__})z)z)|I|I|I>X|rTQM1`*,ؽk')}e353|ñGq:kwyc8?ݯs5˙.glю70LST0LST0ݼB=♝73X1LST0Ll[79w-6K`* "fg0LS'oQ*s Χb)vL<7_Y͆d ";vl'w]y/xcST--,.gr˙>`0`00   `C=ľ}I3]t9SkWRdS)Y._f)t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9匤m0R򛗘or2;dS$Ev]I _yyꩧxꩧxꩧx'yꩧxy?~I.gJse}{I1MɦpuaRr:wL1^ٻ'qQ&sQ7xmd3rfı$LST0Llʎ銶myW ]h7Y_]euy +x7T0Llʑ׶dSLST0LlU=BׯrYJ1lu8n޽{R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R tٸyS[_+1MZ6X[[-Kwɦtٸp/QST0LST0LST|C~mݳc?mr{gLST0LS A.c* B C 7o\#O;w'@)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @;w#xG;R \<kWn>u)***bzz M#1g3Yoet M&ssN?J]gjj)Ƶ+\8wsI!#xG;n <4ȣOskMޱ~wC߻`*tXxWP.GnͿg?}|-a(|_?9> _9֣`* ٔ;wپ}=<2W.c* Jb=,Y:ٌlƽMmw~w  ``0`00 x衇'?fd3*Ž),T0VGs}בUfd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#f]8rhDe==}fvȁz}ɦ\tكlf?<{y'x"ٌlF6CSb{ѝELSayw=Ju\x}l/,.f_'r1^Siv*]d3klю70LST0LST0ݼB=♝73X1LST0Ll[79w-6K`* "fg0LS'W?_ë,Ŏ=>3O|/͇'9+b/z> 0ZZdϮ)}fd3b|``0`00   =o&fd3C lJ6P3K)}O6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#fd3ٌlF6#bdzj++%L=%曃\8whIݻvvw.gٌq:̿w|<<<<_]~+dB6#w /QKlJ6env+ )}O6˙^e}c<':N:[Oq5hfo~f}Cs8v`* M9{4s>pKwns@͛{vT0Llʑ׶dSLST0LlU=BׯrYJ1l>yA]&Gq=߿f黌J»v],czcGL z0LST0LST0LI7~1'=<ӆ+7(}T0LST002`*9p5b#xG;w#xG;w#xG;w#xG;w#xG;w#xG;w#xG;w#gve&S****Y^1݄18^'O|?_||,^>Q>?QW9su)***h׮p$@;wD︵&<#>ͭ5!zUecy_B;L,cˋ~WS&n`_'Y ST0LlJeJwl`* *}{pgql"ٶu+ۿ`0`00   `C='> $%TAEP$%vTSY`*.صs]Ψ*"*"*"*"*"*"*"*"*"*"*"*"*"*"*B3'ȡ9T}9~0ۧr)!}]&rfg(}"xcbffW ,,,pea; AEPRl1`*,xt]gٳw736k\|Ns.\0   ``0`0Cw^Jߣ"*B6eC lJ6P3AEPTAEPTAEPTAEPTAEPTAEPTAEPTAEPTAEPTAEPTAEPTAEPTAEPTAEPTAE!0=BW~A.;W_ftl];J6CEPTl3gضu+Ξ ,,,׮^eA3"t9sE}{I1MɦpeCEfʯY[_/j­7po=Zw]ea* ]6.+T0U&6{ BΙ{>M0LST0LST0LSTPIۻ;ocHJHJHJ]ǎ;?l–-[زe [la˖-lٲ-[eǿERHJHJHJHJQMqg62bd3$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%Ǐȡ9T}9~0ۧr)!}]&r3]"f)fb)HBRBRBRBR"m,b* ˣ%x} I Sڵ#)%D3EMYzK>ÄPVW>v`* `* pmnɗr`* `*d3nߺɹoYzLST94;`* w3 =mroϊ`* `* `* 0ZZdt9#)!)!)!)S$GĖ-[زe [la˖-lٲ-[elrrFRBRBRTY|{B M9r3=BW~A.;W_ftl]; )!)!)!)aQfb) )!)!)!)a\xz^R dS)s3,\DI SqU$$Tˆs׷syvQ$%s '$a* `* U.?s߽<ϗve;c* M92ږl`* MY#TqU.?K)=B'.M|.R$HJ")ERI)R$HJ")ERI)R$HJ<ۧ1`*,x)E$%66֩_~s~ϟg/ǩ'9{Rx.>Õݹh,u)***bzzqa~sY{4yF7{G>WC<瓏>ٷNP***bjjiq ΝAR#xG[k#>o=Zw]ea* ]6.+T0LST0LST0LST0LST0LST0LSTPIۻ۷I1c @1b 1c @1b 1c @۫m,-T0VWFڹU!O1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @ı9rhDe==}fvȁz}ɦ\t<1b 1c @1b 1c @1b x>ѝELSayTc @;w#xG<1b 1m LST0LST0Lk7os3PxfM {LST0LS!qMΝ~c* ȡLST0LST0LST0LST0LST0LST0LST--{N̔<1b 1c @1b 1c @1b 1 |"!@6%r 1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b 1c @1b I0R򛗘or2;dS$Ev2)Eb 1c @1b 1c @1b I\pz^R dS)s3\tU!@_2_We?>lrw:NcJ{kLȗexͅ6yK˶7΁{oSGϢe#͛'[׷ __aڽܨoW'?/<׾-^=/|/~~s;ܜyO}_13]qb)^ǟ>{:|S>|_u6w%>?㓟2O=Wo2X2۷x}L p歓ܼqsiVWFlen L z0LST0LST0LI7~1'=<ӆ+7(}T0LST002`*9p5b#xG;w#xG;w#xG;w#xG;w#xG;w#xG;w#xG;w#gve&[N155EUUTUEUUTUEUUTUEUULOONf_x'k,}S|q2|q355EUUTUEUUTUEUUTUMp.;ṃ#xGքG}zѧ&DX!T0l,\ K n>ŧ. _{k|_sjqv?Svr//yOp>vxx^8S_;k/?6Ow3.1=ǟd@7:ʷ?W|c,.},w_5K;{W?{g5N;OCf7~g~^qnWG~&<縑}{_~/c9;Ǚ?#i4;snea5ʼn%^:_OxM{Я}[_{4x]Ŀ=6߁:;_|wuOoqɗ_|YnvV}|5V{7ow}o[޵ܼqDՕW._ k}quW/_`* `* 0i7/dq,]>W<سW|mN?{f+?z>"W=r k+-;b1a$?~q~~!N?~/? ~ai>N]J~ŷx9<|C<7O/߾ϣ$C_ꛜr{??>hLhc•?&gܨG?N8?]3k>^rgt3oۿ2|oǾP}oS?aǮm|,glcx}| __?_g{nO=}N_?7?GM^|g>g3wxܜyO|y:O~t<ؗy Vt_~ƞM~|>> ;g?chw׸6׹x{-oka¾|O}o~.`|s:}n߾G)=}ww-:wXAw.W.q%Ja* `* `* vobOvͳ{y WnoP`* `*x7a9HeLSTsk #xG;w#xG1$%T";bD#xG;w#xG;w#xG;w#xG;w#xG;wx,׮,݄orgKK,/X^7?~nq\0}_}̏~q/wտ߽Cñӗk/_xW]]//>3?]uGns&1?}.\yսfEOW]=^O{6^E񭏽~y+[??_+f^s{nG}7A?^\䥅;?A1{ot#kxՓϹ_LJS oyo^<xީ N_~Qn~ϻ)G\|y=7}5>U&_wu=}n39j3íw9q_q>' 僎._^6>-{7‹W_jܣn~~x1/珏{K3'~V?7M%vS߸ x!mnc\hϸryK?z˗\oCΟ?u/]uedi;ۗ\KW8r?+O?SOvP*Ce 2TPv֗|}zyԩ]2TP*CeڎGwʾP*n9v>c]wM5}]wM5}]wM5}vkgO8z3.n_3]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5{'=}J:vcG{;cG+*Ce 2TP*Ce 2TP*Ce 2TP*CƞۅZֵֺumkk][Zֵֺumkk][Zֵֺ=ݚXT*e}c3|w?O|>//ǎpŅnF7I;ܽ7?AW_brǟԟˎ67xoѧ릟=dSuώ{7ҿg~_l2'n?'=2wf^}_񳏺w{g?"}gLw ^}_bk[ū`{>^dnx+ϻ?^Z^n?oɇoK;s[3~;EO :57fOtG} rF}|>O?3Kʟǿ_}Ͼ/{LNm{m[M{9|}|u~5?k~ˇp ך}owO2}1 /_U5G~iچ˯`xեŏ _?ǫi/qG}Wm}ϟW^yK׮vl[o_޾#pW컲_N?O=+*Ce 2TP*CeY_vsvyQ_vP*Ce k;+*Ce }>ݾwM5}]wM5}]wM5}v.>|{㛼-ow'o~sN^+#T;*C垽w=b^ە*ޮ̐{ݾ2dvk黦k黦k黦k=ybcG=}rn>{| 'gOϞ0=a>{| 'MMMMMMMMMMMM=a>{| 'gOϞ0=a>{| ';]wM5}v͹ /pݍ] ]si+/2T+'9}ʵWTP*Ce 2TP*Ce 2TP*Ce 2TpE݇FmMƶ&c[dlk25ۚmMƶ&c[dlk25ۚmMƶ&c[{>䞻'9S*CzӶ&}hdk25ۚmMƶ&c[dlk25ۚmMƶ&c[dlk25ۚmMƶ&c[dlk25ۚmMƶ&c[dlk25ۚmMƶ&c[dlk25ۚmMƶ&c[dlk25ۚmMƶ&c[d잻:4?>h}pe;{]_'ͯN7^~#Z 9{s~ooN6t^oo;|g;|?Cn郮zű;?탟KƇtoCN?~_;ίOg~GW\}?^7츧y+ ~?v/j3\Pf뮯zxɍO{㻾{{]p ]\[3ٟ3[gu=c}.c{>]oͧ^؝W_7~} >s&V/8s/zro5|=70 =ѽ >t˯]|w>_'z:^rrVo·ow?vo6Э=\rMo7ӿ| @ԯ-v5_kfڏnݝ?4^~a7wN7/}qc*_K? x=7ŝ_?koue׮ 2TP]2Tʰw=;}]wM5}]wM5}]w^t9M?ǾawOOmz9m'.z)|7t߯=o/Aݞ}I|^7^n뻦k黦k黦k黦kvrSOt)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr)gNr쳮엾k黦ݮ9w1ѹak.^yUpe<}3OvP*Ce 2TP*Ce 2TP*Ce 2TP*z36MgS|65MgS|65MgS|65MgS|65MgS|6?ok*Ce !v-.੓s泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>:yb3/_2T۵\gϸv{2Tݾ{|65MgS|65MgS|65MgS|65MgSS'Oy}S*Ce kŸ=urn>{|65MgS|65MgS|65MgS|65Mzn2TP*Ce 2TgΞo{/Yڿ2TP*CeدrYҵ*Ce ؑ*Ce 2TP*Ce 2TP*Ce 2TP*Ce !v]xϞ:y|lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>:9zS._\U*Ce mggMgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65M=urŸw*Ce ][;sg}P*Ceؾt3O?e>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩lj>:9:si/d 2T3MgS|65MgS|65MgS|65MgS3ϝye{*Ce 2TP*CE=??{.ѧK*Ce 2TJ?+UP*Ceدti<ի*Õri'OL]vUe_a /xmϾnQO7>wg,N:'?|눶wx~yw?ٯo~|g^XZ?W_|~EWw=!7_l{ѿaoК}Kʱ;>w?{|oVg.?!g~r̓G]0\ubVo}{}_\|S?3ߜL=ݿ}<#>΃=ww~7ӭ{{|wk[Lvߚ?;?wAP7_v/?p%]ÇN{g}_^=_~UO73ou#>/t޻s?즷|ks:[}Kp^z<vX?~?ُo|gwӏ>kq7~rI=yw螧zכ> @/Mt߅k V{0s\^~}=~fG󍏿} m^ye˯ěkO_W,w{Ǿ᧟q'sݻ>?z˗\}ٽOsONx;O]o}̧s=ڕre~IzҵWTP*Ce 2Tʰ|>ͣN}2TP*Cv?zWUPvα}}k黦k黦k]z港}{>5wy̩~7~:'{}+w{oqׯ|ح>xG|oop/);o|}{|)]]wM5}]wM5}]wM5}]wM5}'cOe 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce]wM5}v͹ /pݍ] ]si+/2T+'9}ʵWTP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2Tʰ_~ٯT*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2W^R*Ce 2WzQm_2TP*~K=q׮^U엳gN;ybڵ*Õ#[\x/}y߿ϲ^}Oz;r~e rۿ1o[{N{xʍrxNX^[7z[=ww;;3=q :_ۯ`֏|{s[7z[=ww< }~t xie/OǾ;K=w#{[~ąW_ͻ>):8[o񻓗 θ/ݓk^vϜy_}+?\ x_+?\??[7u?vwbϸ;`U)߾C>/}ѡ/}>wG͎Sjk.<+|?_{呍oO^yݥ[-M^>.<Ym{Ə[sg/ˎ>y_߾3G|ox K7c_ॵe|K|u뗿K/cy_CGnOomo{m>|\8/Vpp/_rJs'߽_>|kk^yޗG=pµ+~9N?kW 2TP*Ce ag}M߿ڡ}G:ٵ*Ce 2T8~~W 2cG;3vN5}]wM5}]wM5}]wnogu!O~VLJ?o~^h[>_97}|n?MCp陇}'|_v켮k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦ݮ9w1ѹak.^yUpe<}3OvP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*3gȷ|q㬏vX_U*Ce 2W9yU2Tua2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TPѻwO n#~{)P*Ce a҃ǏjJ2TP+]Zvpe=sS׮]Uy 0`ppp0 `8880 80888ppp`0`800 a0888ppp`00 a`00 a`888ppp`0 `0 ak"~7yۇ+`0a 0`88p0 a0 `0 `00 0 0 a000 a00a a0 `0 8880G}kWʝ?Ckw>p|ᆬoL^n<疻s>}ǣFpJ_N?O=+*Ce 2TP*CeY_vsvyQ_vP*Ce k;+*Ce }>ݾwM5}]wM5}]wM5}۞}g_ljwa[~Oʅ3}[~r'~t[oC|7}M7{O|#n}1̯~߽ o]lM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]5.7\wxu7:w1vͥՋ>P엧Op)׮^Q*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce &@IDAT2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Cexya߾/n*Ce 2T*ϝ5{1/]2T{92TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*zw! s ?xo>W^R*Ce 2WzQm_2TP*~K=q׮^U엳gN;ybڵ*Õ#[\xy/n>y?ç]}G}kWʝ?Ckw>p|ᆬoL^n<疻s>}ǣFpJ_N?O=+*Ce 2TP*CeY_vsvyQ_vP*Ce k;+*Ce }>ݾwM5}]wM5}]wM5}k7ݛmo}ҏ~k7zG?_O}W^¥3?//} w7_[q|gG>o8y{}g?y[xfk黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦ݮ9w1ѹak.^yUpe<}3OvP*Ce 2TP*Ce 2TP*Ce 2TP*n߹tqe\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅rKmg-cOe 2dY[Z. jZ. jZ. jZ. jZ. jZ. jZ. jZ. jZ. jZ. jZ. jZ. jZ. jZ. jzqaE{*Ce k;ۗ=2T]V/. jZ. jZ. jZ. jZ. _\j;k{*Ce !cζՋKjZ. jZ. jZ. jZ.\\oMF 2TP*Ce ᙳ}[} qGo; 2TP?wǼtP*C:vP*Ce 2TP*Ce 2TP*Ce 2TP*CeسmjZ. jZ. jZ. jZ. jZ. +}2TP*nV˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ng-#TPboze}2TPxqe\X-V˅ra\X-V˅ra\X-V˅ra\X-V˅ra\X-._Z{2TPv{/]Z. jZ. jZ. jZ. Ņ˗P*Ce 2TP*zw! s ?xo>W^R*Ce 2WzQm_2TP*~K=q׮^U엳gN;ybڵ*Õ#[\xk<3#>]}?z˗\Rw~/ZK~xd{-}c򂯎w9/m;5zkWʕr'~I׮^Q*Ce 2TP*C7:ukWUP*Ce ]q^W*Ce;ǎvgk黦k黦k黦:O==L&[S^|Î?~ʩ3tnmyv'Ag.\~9{; 'sO|s^xᬧ:N\xv{'GY\^뻦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦ks_vEW^~Ye W'O8skW 2TP*Ce 2TP*Ce 2TP*Ce {݇FFwmnmnmnmnmnmnmnmnmnmnmnmnmnmnmnmnmnmnmey#s?S*CƞŅkRe]g={620000000000000000ڼh.G 2Tʐ vƿ0ڼhshshshshshshshshshshshshsh.mx]tQe 2TP*Ce Ϝ=#:^ō>zaUe 2Tʰ_f?kWUPboױ#UP*Ce 2TP*Ce 2TP*Ce 2TP2>mmeaaaaaaaaaaaaaaaaaaqh=Q*Ce3Lmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaay]8rrqAƞʐGwGڎPv&meaaaaaaaaaaaaaaaaqw?k;*Ce }gS[]FFFFFFFFFFFFFF~[L9Sv{2TP*Ce wٟp=GS^{%2TP*~k*Ce 2WzwU~9{洓']2\/?Ņ۾|ɵ+|g⡵;GVw7&/yns]9QNv\/~駞t2TP*Ce 2/9_;|S/vu_e 2TеǏ}2Tݾsag}n黦k黦k黦kn/dn{^黦^ɽ]{};{{boWv{{ݾwv;}]{b5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5}]wM5]sbxu77\wsn\Z/ ~y gNr2TP*Ce 2TP*Ce 2TP*Ce !c nmvpp`00 a0 a `00 a0 a `0+W9rl_V*ζ#r500 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `sϝu=2\?/SGޡm]2,~n~ګj00 a0 a `00 a0 a `W:r>;m2/;r>?^f00 a0 a `00 a0 }?>dTP*Ce 2TgΞo{/Yڿ2TP*CeدrYҵ*Ce ؑ*Ce 2TP*Ce 2TP*Ce 2TP*Ce ˎ{O<^z0 a0 a `00 a0 a `00 a0 __uhɓ'd gNg2\,a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 W^R*Ce 2WzQm_2TP*~K=q׮^U엳gN;ybڵ*Õ#[\x?z˗\Rw~/ZK~xd{-}c򂯎w9/m;5zkWʕr'~I׮^Q*Ce 2TP*C7:ukWUP*Ce ]q^W*Ce;ǎvgk黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦k黦ݮ9w1ѹak.^yUpe<}3OvP*Ce 2TP*Ce 2TP> JNJNJNJNJNJNJNrZg8~db˓O8sgluњW_y+/ k/A/瞱:1)١oޡ &x';9O?K.E[| 畜s/|_<7;ɚI)N?f믹$,۽s3sm}jK.xۦ?geyPJ6) طlg,~_>S&%K+gϞp[fvlV=kVƫ{4>w>;+AKJNJNJNJNJNJN&%{avFwIJNJNJNJNJN&%[?f)9Yǎv`ߛהNi0;3Ң-G ص辝~ONĻ~q7vZNo*9)9)9)9)9)9)9)9)9)9xaɭl-'}g3X6QrRrRrRrRrRrwL[[(9)9)9Yzgv8vCo;Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }gy }g;Cw3 }g;Crw3 }g;Cw3 }g_H{MBw5ݕ˗Ns!kJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNrZ-ρ"BD!"D"BD!"D"BD57=JNJNΝe&!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D߽KN+V'^~y=;om=ՉIov."BD!"D"BD!"D"BDz̝:iO?"BD!"D"BD!"D9'O< 痔s/|_<7;ɚI)N?f믹$,۽sS'm!"D"BD!"D"BD!"DN֧,&%lNG9 "BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BDzM=i%'+˽s3}S&%K+˶lޤ."BD!"D"BD!"Dwm{fdLp"BD!"D"BD!"D{^y+/%'%'%'%'%'%'%'%'% o?ϝʽ{<>sx咒I^]`RIyYkkJNV'ű#5%'=/;3wL;h}x`+Q{v-o缻ӭ詓x=eRlMAD!"D"BD!"D"BDpw=V+˃I&%# "D"BD!"D"BDW^zAI+JNJNJNJNJNJNJNJNJܿE~h;{x|%%'%'%'%'%'%'0;pd%'%'%'%'%'-Ο ֔NcG;MkJNV'{^vf4v~ijW~Ztywo?[OS'q{]?xSY_-V'r[V\{ɖw>N,Y_(9)9)9)9)9)9黋fgN,3;;7 }g;Cfvf̴ٙi3fgL6;3mvf̴ٙi3fgL6;3mvf̴ٙi3fgL6;3mvf̴ٙi3fgL6;3mvf̴ٙi3fgL{~״mxeCw3 }g;Cw3 }g;CwaV?}q߽:z䈡 }?lѿ {>g^oUk%I˽ }_|3u/?g=w3 }g;Cw3s|!y7^ rY?gvW._VrRr:)>ϑÇ*9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9i3[6?D"BD!"D"BD!"D"BDN8ܙ9[6oZ"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"} ӊՉ_|<_5sm=cmubRݽ D"BD!"D"BD!"D8z̝:iO?YD!""BD!"DrJx/)9)9)9)9)9)9)9)9)9y _xn7;w(5%'%'%'%'%'%'R8~_si}MIIIZY{%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'sNں)!"D"BD!"D"BD!"D":q³[2 &%lN> "BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BDz'{ٹJNV{~3}S&%K+˶lޤxD"BD!"D"BD!"D=gZYLJ6)ǎ!"DAD!"D{^~+/%'%'%'%'%'%'%'%'% o?ϝʽ{<>sx咒I^]`RIyYkkJNV'ű#5%'=/;3w@\de-J 3/-Z_-p^]9gti?z;<{OOwzj>8[|ڪzv??}g6Љ%k%'%'%'%'%'%'}w̴Չ塷{fcG߱<3 }g;Cٽsa:)&bRI)&bRI)&bRI)&bRI)&bRI)&bRI)&bRI)&bRI)&bRI)&XL;W^:)3 }g;Cw3 }g;Cw3?O߿{n /m{>g/~^V|'u}g;{wzC^W'~K3 }g;Cw3 }g_H{MBw5ݕ˗Ns!kJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNrZ֧ϟ5555VuqTQGuqTQGuqTkZZZZZSѓO<ԉJNJNΝe&55555555555555555555555555555555555555555555555555555555555={FN+V'^~y?7_=ՉIov.ZZZZZDk5њhM&ZZZZZZ3'ܩJNJN̝SEkZk5x⼃8ppo:ωM&EkMkMkMkMkM&O< 痔s/|_<7;ɚI)N?f믹$,۽sS'mZZZZZSkUQGuqTQGuqTQGV5555pqn}0lR3;s0hiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiz'{ٹJNV{~3}S&%K+˶lޤxQDhiiiDk5њhM&ZDkZkZkZkZksx咒I^]`RIyYkkJNV'ű#5%'=/;3wrыO=hӋG7j~num?[ Ϳ]o[k=sZ tGsf5/4+g;7olyN?t[n'v|9přwoz[Gܛǝ;˯^:_{_o|7;w>7#ͯ&{=m{ ~ͷWu*h͛?޾ 0;3Ң-G ص辝~ONĻ~q7vZNo*9)9)9)9)9)9)9)9)9)9xaɭl-'}g3X6QrRrRrRrRrRrwL[[(9)9)9Yzgv8vCo;Cw3;wX{Cw3 }g;Cw3 }g;Cw3 }g;Cw3 }g;Cw3,Ǐy핗N }g;Cw3 }g;Cw3 }',{=>}o~Nc~䏟t`y'y-;??MG~>.Z;0( l|G_h;Cw3 }g;Cw{M/$}gq]]|YIx>Gd2)VN䤔luubRI:)V'Ťd%'%'%'9xfρ֚֚ؽ{6nhƍ6nhƍ6nhƍ6nhƍ>O;Zִִִ֌'wq%'%'ٲy֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚=#k/y؛jfv۞{Ĥd7{hiiի\ʕ+\ʕ+\Ξ=kyyYDhiiiѦ3wꤒ3s=fMkMD:a ϻpa'N}p֚֚֚֚MJ+x/)9)9)9)9)9)9)9)9)9y _xn7;w(5%'%'%'%'%'%'R8~_si}MIIIZY{%'%'%'%'%'I:JNJNJN&bmu$+9)9)9)9)9luRNIQrRrRrRr2w꤭[ZkZkZkZk\nƍmܸƍmܸƍmܸƍmܸ'> :hii'{vVdÇAkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMk͕+W<#ΝVr{7~N2)YZYe&ŋ"BkMkMk Z]rŕ+W\rŕ+W\rŕ+W;w˗E֚֚81=`RIfw8vh.v\xޅ睿d~ᬷ;oti]kMkMkMk y%V4>w>;+AKJNJNJNJNJNJN&%{avFwIJNJNJNJNJN&%[?f)9Yǎv`ߛהNi`Q_{Zs?zo9r7u;gV]<𠏾F[/Y.ꗳ5@W^ons|o=g-wjh.O\wc^QVV^roo{-O>>yn9J\rpOzfw>ٙily]8w/^Ew~=uO''W=kbuR~-e}mUIIIIIIIII Kngly׏>?qĒhvfDII=ñXzCw3޹w< V}g;}w₥yK --[Z0oia¼yK --[Z0oia¼yK --[Z0oia¼yK --[Zw+/[Cw3 }g;Cw3 }g;CNZY}^oشio}[Μ9#_x_z|7XzO>xL_© V0j]#_s3 }g;Cw3 }g_H{MBw5ݕ˗Ns!kJN&y0~x_ubR|q[ourSrRrRr2);zoCoty$l}Bhjj'x¿چ lذ lذ lذ lذɟظqZGUUUUxՓO<ԉJNJNΝe&UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU={FN+V'^~y?7_=ՉIov hj]י?oosvw}я~ԩSD֪֪֪WNTrRrrfzRkMkUDXX{|}=rx=i[{>䍟v}zw?tOwfX}憏v9}K>§?ί\,y'Zn@]1}Wp˯^g?a#>w/ҙ7/>躏Oy}|ڳ'&nvYk6kqGyu't=O;~oMϭt)_Mfc7 ~vZu_? { Cu5O7>sӟ͞g~_g't<猫 #w~~</xWN,o^g>w0;3Ң-G ص辝~ONĻ~q7vZNo*9)9)9)9)9)9)9)9)9)9xaɭl-'}g3X6QrRrRrRrRrRrwL[[(9)9)9Yzgv8vCo;Cw3;wXzC;:w2N􇧞k6vؽmvؽmvؽmvؽmvؽmvؽmvؽmvؽmvؽmvؽmvؽmvؽmvؽmk6m᷽eb;Cw3 }g;Cw3 }g;CYzo8;sݾoS.^`e~_he#3o|=w~ӧ޹+ '{u'=;Cw3 }g;Cw{M/$}gq]]|YIx>Gj2I<;zo׿_o$+9l~[|tm5cdI[lZSkUkUkUku%]w??555ejjԔ)SSSLMMaӠ֪֪*"8~ܳ[2 &%lN>jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj._qvރ̴{C5wIʲ-7x֚Zq=O?O6lku׺k]{Z'?Iˠ*"{jey0)٤d3;=jyYY^靿ha3:tq/򢹹Sjjj_K/(iEIIIIIIIII7ssr4^dRfgt.dRs^~aښIqai}}Mx}̝NO};u3~~mn/rnz'_~'{y?!?޲;zsh@]1}Wp˯̭5ouHI=+OU_N;I_~i#V<^9ʸs?_t|[?y7}~WgwҊ1X9?\+CܡC/_l;[>[dJW7~}嗳{of}ݭ^?}̃}.-y[?{_pFC~9ng?灗+7:[>?ooФf- xfwG͍qgYY9no0{{N7;=mgu9z{垣w]9z{垣w]9z{垣w]9z{垣w]9z{垣w]9z{垣w]>r{㍅NΡ^I1 }g;Cw3 }g;Cw3 }g;:׿~=weǎ }oz#[n>>_{W/N+͞`e,;>!g>.w3 }g;Cw3s|!y7^ rY?gvW._VrRr:)>ϑÇY[ONw߸?l> NNO׺rNJNV[nk.Ϻ{]pޤd9xfΝ;+uTlڴ{SSSLMM255ejjԔ)6lp7ǫj:uTի|1NWrRrr̜-7uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uT|uӊՉ_|<_5sm=cmubR5Zrξկg쟹Ο;p`#G8r#G8r#G8r[l1==ի_te^b㏚;uRIəӞ~IV"3gN{WLV[8:j7~a7as.^Qʲ' 痔s/|_<7;ɚI)N?f믹$,۽s:ۍ3˫Wl}C 3<^<8'ldNp{۷ϫ|kQrRr2w꤭[6kuTQK.)SSSLMM255ejjԔ 6j:uN׳[2 &%lN>PQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uT˗=#ΝVr{7~N2)YZYe&/\ZZo_ ;vlwaGqGqGԩS&;v8uꔈ&"{jey0)٤d3;=B֚];].؟t֙NνȻڋf_}o}~֪ZG_K/(iEIIIIIIIII7ssr4^dRfgt.dRs^~aښIqai}}Mx}̝NO[ln1+T'pg/ ?=@T>~c_ >_~Ie, =G{o~/Si]]5|_9(|8{Z{97}/O~y ~ܰv½7;>|3ysh565u_u-rznϯ[W[?m~}7/4mc~={;iij_aM_ Ĩ?_'_Ky}CUr1r7?<4\s_qi[|{m: ͻSg.}޷>= .oX8orEN-݇]>ٿVFO_xMY݁hˉ W=w:nJpn͞zgW~+P{V+ ttGq?7/iP>{i=v~ijW~Ztywo?[OS'q{]?xSY_-V'r[V\{ɖw>N,Y_(9)9)9)9)9)9黋fgN,3;;7 }g;C;,O'c_bd'/N8ŝok\׸59pk\׸59pk\׸59pk\׸59pk\׸59pk\׸59pk\~[{f_p^I1 }g;Cw3 }g;Cw3 }g;C/,K+VCwv?q?G;zfމ/ؾU.N٭;_h yW??o>pB3 }g;Cw3 }g_H{MBw5ݕ˗Ns!뗔7g~䒵 3wlPMο~ݿ/iŅy7|zEi&𡷭NVoxt=>c^ٳǞW_wa ˫&kZ9iywMpf?~?:ɻNw>߾`s3쯿֑>_On_xo~ʷ|j`)yp]gn}]7>x_sw ꅻ?[w~zq^}՞=zcA/5zyC^O~`GI|}ɇG?5_nxCW/Z]BVEg>/??9Ϝ\o?W|Ʒ~99~Ɖ];o}§>NC_s/x%P~ofOWs__v]?!stZ+VKGVn5eZ,JlSfS-kI $UBa @P b* {g}}쯿%_vݩ}ge_̧3_=kw;:3쓎'^Ys+SN?Ss+S,?c)w;N08o}9;o33fg,ϘY1p־:u⸃o314bhЈC#F 14bhЈC#F 14bhЈC#F 14bhH)ԢAJIi1F%')4bhHUk, F 14bhЈC#F 14bh8^Gz Rh\vsܾlU'8stWwƓ~|/Vbrtǿ-k|COUJVKve?yΝs'O}v9|H?ںeWwa `/h42F#h42F#?O}Sܹc00 ܾm\<N-Y-+6m00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 ߿^ZTrtmuœ׷oO:]-/kx;w// apw `00 a0 >oM[lxE+/%%rW7{aܻw޳vʕ e&m$_%w5 a⬛PKVKVKVKVKVKVKVKVKvydOΆ>ԼjjjjjjɺZ?w5ՒՒՒ6YZWKVKVKMI/~}{T|go_Cojqkڛ]=Gqe/^tAկ|_բl[6ݻa0 a à{hd4FFhd4FF~0 ap==kۖuj߿o00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `0N^~q++Ԓ)xnv-p>Kum n|ݻwݿ߇?aۿbw0 a0 a `0w.7ݻ3glߺE]-v߿ow޵mknܼk]xKn7>sW6mp0ۻ7UKVKVKVKVKVKVKVKVs+{}#ڶ |޹Ş]7u%%%%%jqU2{d:{#LZIW>W.}mo~/z,N?۾_>o߼l_91ÿNk<띹c}08)>ez/|ҥbZ_})Kg}e^0뙯oqT~53v_R1-WW{]Oso<@ixn;哟C>wo+q7Ckz>Z;~Epir?-ow/w~vHw|ܿS.&>OZw<פ n޼8n=wySƧ?L<w#oغcOixp˩M'm;y?g|}&pk___߭W8O?/='<-y>+;;|Cc}c?Ԗ銿|s;~ڑ >kne ҉u?52>|?—#y}U򇟴nyjӟ?{֕pӾy.aesֿ}ZM'3kxaMW |m^<򻾻<};NIW:q̩LZZZZZZZZZZ9?l/:yiߩ%%%%%% خI,`iqwNK1C#F 14hnܼfϯw?EK%ϟwa/y?`fy33fg,ϘY1C#F 14bhЈC#F 14bhЈC#F 14bhЈC#F 14bhЈC#F 14bhЈC#F 14bhЈC#F 14bhЈC#ƹ=#O8^Bvsmdd:|ęS'MST?>g_?NXG?{>o|E%{u7?o8p]v{O<ξsƤJnmݲKܾu˴M޴/1F#h42F#h4'?LL޴M޴MΆ^t9ddW/xunM}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}oܾ^کV?ۻukzŅ9oߪtZ_>jiawn[o{mwAWܶnߺ[nߺ[nߺ[#`&zuV.^PKVKvyMlp-Ӿw-gΜt6o{_8o믩]efΝuk:5{Ӿwqo%%%%%%%%%;}2W|gYj^zdddddd]Ο;[ݚjjjr,-̫%%%ǧ>ꏾv*9KKƥ3; ;}_ky7۷}__R-Y-ʥ 6[L޴M޴~Fhd4FFhd4F~a۶m3ܹc}onߺSm٬QWK N?ۦ}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}o}oj)֯ueZ6ϭyڮ~矵r颮M6sk:u-_W}b4{)%}߻}۷n}۷n}۷n5zooZ ;wܾu˩'lߺE]-v.;};o[өW7ot .ʦ v,n97]>:db}e{ܪ%%%%%%%%9zOm[_iqwRKVKVKVKVKVKbϮE͛ZԒՒՒՒՒu~}{vZIW=sC^-٤zs+{o>c+Go3_̝u{h]M|1O|+S#o]#~̟}ݏ~fw;K>~[>w_|}s?s'sK3.ƒjןq>o|#_<+k?񨯮Yrl_vk>į\2~OS''/_~3/?#?_|Ֆn>_{̟|'>'[Nx ?^>Y@w퐟>}~w_}7}k} z⓾^L/՗?{í/طswŏ\W/s|]xW>՝GL'դN8cD-Y-Y-Y-Y-Y-Y-Y-Y-Y- _Ŝnz6_؏<ôԒՒՒՒՒՒflSKVKVKb8;ЈC#F K R bhh{v=g~#_tQRp9{v'|`fg,ϘY1pI튒[ ;|s'?u;gήbբ-\h&]gu&]gsNjh42F#h42F#?O>V3:3:]6Ω%%zyū^6{3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:S{i[on׭u漾}~jqQ;vs~2ơvU+++|I<;v7??o~~9/<WMΤR:+/%%rɦW65ti?u ]Ɨ,,y}~ߴr^5;nzwΘNzO&޿qg|ZZZZZZZZZg{'~}w6ծWKVKVKVKVKVKuЭi,¼ZZZZ~|}kSՃlv2yz;/v&5˿Kkַ֬ _S'O%%[tW75tIיtIm>QF#h42F#h42<öm&]gu&]gΜ:iۖujıcnߺeu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]gu&]lYWV.%kSܚZᷭ}Y+.jd+\i'}בÇRl}5mټَy;ϛ7??o֭|IS{ʊi߻5:y[hSբ΅yNp-3{/ox7o8~bن/YXcqλڷo#ˇܼu/j5:sk:gגoUsWG[^uq.{l}G~3OtVsu_ujjjjjjjjjN=p矚W^-Y-Y-Y-Y-Y-YW:AZZZ&K jjjj)?}oR,KG~K/o7ŋ=_Co%%%[tW6V]ZujSя~?Ah42F#h42F#?[ZujO&N͞s޻clS{~ZV]}oϮ%ثV-Y-Y-Y-Y-Y-Y-Y-Yӯxjۊ/M{ZZZZZZ{v-jnբkW۳˴ՒMS2j&]֛\^|ovɊ?k?^+~M:xص7Ng6ޛyݯ?r_{yw}w9_yWw1T:uSǏdddddddddd7|s~]?|c?^t ӾSKVKVKVKVKVK];N-Y-Y-Y⼳bC#F 14bh,-K1Cm޳/W%ο='GVZmVZmVZmVZmVZmVZmVZmVZmVZmVZmVZmVZmVZmtrdc{:q7tU 14bhЈC#F wNcVK s,-YZ0giaœ9K s,-YZ0giaœ9K s,-YZ0giaœ9K s,-YZ0giaœ9K s,-YZ0giaœ;C#F )4ν}'Ƈy¹ׯ]sǜ;o%%tՉ#Μ:iOZm|?_6w-&]'ө|q7_բEɭp7'IWZZ[[lvSKQKQKqk:5;;kժUFhd4FFhd4F~a>ZZZZܶ^~iΩ%%zy+^6LRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRoaN%Ig֯[[,.y}Vv.0NRRRR[^O}__{gYƚ5kYƚ5ksJWZZgY7߿ɼn_ g}yՒՒՒՒՒՒu:otkګ%%%m0jY/?ls-U]-Ny_7ѓk\ՒՒuH15]TKVKVKVKrMlO&j)j)j)j)R>я?h4FFhd4FFhږ-}buN8aۖuj~ҫH1ziZWV.%kSܚZᷭ}Y+.jd+\vUWZZZO}/K>5kXf5kXf^x7pu]j)j)&]ıe۷nѦEW N8LRtz5_Oݸf]^ۺنW^v=lsZZ~2{ioUsWG?^?z՝޿qtR=i~pіKxΓ/餚tթǜ:~̴%%%%%%%%%%߼᫿M oZZZZZZЌZܡtjjjR }14bhЈCcia^A )\֫?+ϙS;u3WO:s3WO:s3WO:s3WO:s3WO:s3WO:s3WO:s3WO:s3WO:s3WO:s3WO:s3WO:s3WO:}k,mwqgU14bhЈC#F 14-9#jJ*UrVɭ[%Jn*UrVn[m)jSԦMQ6Em)jSSRrVɭ[%Jn*UrVɭ[mvbC#F )4ν}'Ƈy¹ׯ]sǜ;o%%tՉ#Μ:iOԒՒmۤVɭRZZZZZZZZZZZZ[[lvy]JJJΦ}?UVYjUVYjUVYjUVYj\n[%g%g%g%gmJ^~qΫ%%zy+jVYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYWogi[on׭u漾}~jqQ;M^n[%g%g%gn\kה嶕Vn[mUrVrVrVrVrVrhV.^PKVKvyW7n0:mu:rM_u=slݶř3=³|S]~ݬPKVKVKVKVKVKVKVKVKvydOΆ>ԼjjjjjjɺZ?w5ՒՒՒ6YZWKVKVKVKVKVrV-Y-Y-Yͭ&MJjjjjjjjjjjjjjV.]镍&]'4>mVj*Vj*Vj*Vj*[eMDYYYWǏ۶e6F]-Z,-.8|Ԥ딜n++Ԓ)xnv-p>Kum ],ʊܶrm+ܶr*9+9+9+9+9ju|y[)jb¼ǏtZk׮{wk׶mv78߳ڵWukoUsWGro;|m#N8ڵ+b RR6zf|ZZZZZZZZZg{'~}w6ծWKVKVKVKVKVKuЭi,¼ZZZZZZZZZZZZZZZZZZZZZZZZZZZKlzeZZ꺪몮꺪몮ʹRRRRse۶lƨEWGH)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)jf׺rI-Yr'flmmV۷m}6۷m}6۷m}6۷m3?7gEK sB3C#F g}y.FcG; {vmV۷m}6۷m}6۷m}6۶ms'uvܡQ 14bh8^Gz Rh\vsܾlU'8si?QKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVrkΟ{WnЌq֥ ՒՒ] 땜zcn{v*O:~Z:`qa۷'ǏcNWЌ_ jj.\ƗՒ)m$In&Mr6iSbbbbpf|ZZZZZZZZZg{'~}w6ծWKVKVKVKVKVKuЭi,¼ZZZZZZZZZZZZZZZZZZZZZZZZZZZKlzeZ&Ǘڶe6F]-Z,-.X>zD)YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA^}Kjwŏ\W/s|]xW>՝GL'դN8cD-Y-Y-Y-Y-Y-Y-Y-Y-Y- _Ŝnz6_؏<ôԒՒՒՒՒՒflSKVKVKb8;ЈC#F K R bhЈC#F 14bhЈC#F 14bhЈC#F 14bhЈC#F 14bhЈC#F  :IWЈC#F 14bhhS|'Owm?uo6Eǎv`^۶m3;;kݺu֭[gݺu֭[gݺu֭[gvv‚3N8zmw(F 14Rh{/#O=se)4_j9wnVKVK6G9uҴ%%%%%%%%%%%%%%%%%%%%%%%%%+u&ϽMA c10X c10X c10X c10X c10X cf]p^-Y-++^ٰ^έЌ0X c10X c10X c10X c10X c10X c10X c10X c10X c10X c10X c10X c10X c10X c10֦h],Trtmuœ׷oO:]-;ja~N-Yhba,ba,ba,ba,bauk\%n|YɭЌ0X c10X c10X c10X c14.\~Z7߿ɼn_ g}yՒՒՒՒՒՒu:otkګ%%%m0l^٠Vhba,ba,ba,ba,ba,;zĶ-1jbiqrNba,ba,ba,ba,ba,ba,ba,ba,ba,yTiV^OCu{V-rYրlYF5fKX.h 8HȁdH "dHƌs{Gd2篟$ŒKR,I$ŒKR,I$ŒKR,I$ŒKR,I$ŒKR,I$ŒK<qinJՋ|&Fwr! swC[jtq^XbI%)XbI%)XbI%)XbI%)XbIՋ=rm?l%n5BQbI%)XbI%)XbI%)XbI%)XRcv\+7MqS7MqS\kj{xV7x|?)n⦸)nJߍɉQ(ᦸ)nݸv2S,., N 3Y\\MS\NX8ki)X;v/v]`|?e ogZsc3,A9>Ɖ1)n⦸)n⦸)nJYg;xϱQgq⦸)nD) ⦸)s$IQHQHQHQHQHQ5B/ERRRRRRRR^%^%^%^%^%^%^%^%^%^%^%^%^%^%^%ǹ37Š(((((((((TDs0'Rk{&@!B!a.^cbt(%) ) )%lyf9\R.{sefp`j۶5&@!Bftt's!vJ^f*,[ɏY٫J/ ׮\fln޸ N9éY\স)n⦸)n⦸)n⦸)n⦸)n⦸)n⦘V49N )HE.Rv]"e)HE.Rv]"e)HE.RvKѽƆ\8w7M|"R e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)091 >S{vzO`toAcMF7z)HE.Rv]"e)HE.Rv]"e)HE.E1wnrqD.Rv]"e)HE.Rv]"e)H%Jg~x=Ew7MqS7MqS7d,mM^=pS7MqSܔ;gg;>7MѪ7MqS7MqS7MqS7MqS7MqS7MqS7Mp͛6b]"e)HE.Rv]"e)HE.Rv]"e)H%Œ3ilͩRFߍQO)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)HE.Rv]"e)He:.]R"~ѝ=r}܅ЪG^87{(Rv]"e)HE.Rv]"e)HE.RvK%GOTD wclNf)HE.Rv]"e)HE.Rv]"e^Fw`=V)n⦸)n⦸&w3n~qS7MqSܔHQwMqS7Mqe&'X\XMΩ4g2;8wѝt篱8pn'ӬSv_§;. fysfYfX8s}c,. pS7MqS7MqSܔv3cŇ?;B7MqS7MR21A7MqSz)2>:BIz)0k^IQR e1 zSLMN059SLMN059SLMN059SLMN059SLMN059SLMN059SLMN059SLMNp`^:NrpP͙Ü<&Jɮ `xx!B!B xq((+y}txͯt{h86sS{ض0!B!B 0>yG{l'UJ((((0{UgJ~tϲ^UzQv2c;wp 7ewN87MqS7MqS7MqS7MqS7MqS7MqS7Ŵb|t'NҝHHHHHHHHHHHHHHHHHHHA)bs㦸)׮\fK3SH%JHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH+صc;aZ03g7߇!:خloYqI~غsR@@@@@@@@@@@@@@@@@.'ٜm7Kl62{4RvR R R R R R R R R R R R R R RP4gP7SvqS7MqS7MqSNv򻿌Ѷ9#x7MqS7MsvÑ\_\MqSzMqS7MqS7MqS7MqS7MqS7MqS7MqSܔ˗.%3KUNN0>*%܍M1>kW/#R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R RP]N<Ζl#W.]Mzo^Q3Y]8O zlkHE@@@@@@@@@@@@@@@@`L{lp7ܔS{+D))r";̡iL+7MqS7MqS\kj{xV7x|?)n⦸)nJߍɉQ(ᦸ)nݸv2S,., N 3Y\\MS\Kw>3~%`-ڣ, cpKŋ'nXb/rg \@ϭwyO/n]y}@w` Lw`J,K(Jbϸ~.pܸu;k, cpKTQ=c0plp;Kt^Eʢ( ʨ\uXof ܼ>`xNX8ki)X;v/v]`|?e ogZsc3,A9>Ɖ1)n⦸)n⦸)nJYg;xϱQgq⦸)nD) ⦸)s$IQHQHQHQHQHQ5B/EzIxl[=<&XDΟe[iȡifM3shCf4394̡ifM3shCf4394̡ifM3shCf4394̡i:H9émsNoqpP͙Ü<&Jɮ `xx!B!B xq((nO[+_RgY3 \ %mk0<vvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIxљԷlHQস)9o[j9Dդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIQGw\pӊȂCl^ώm 6grAqSyFw0 VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&[MffO!eofjn5i[Mڭ&VvIդjn5i[Mڭ&Vvɡ؜m}(qS7MqS7MqSNv򻿌Ѷ9#x7MqS7MsvÑ\_\MqSzMqS7MqS7MqS7MqS7MqS7MqS7MqSܔ}{&!љô[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvԞIn8{V=7fvO:vvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i[Mڭ&[Mf"ߜq~bYT{n߇\|S'ټi#On5i[Mڭ&VvIդjn5i[Mڭ&VvIդjn5i-5vЪ\pLu(VvIդjn5i[Mڭ&VvIդjn5iet#\8⦸)n⦸)nXS+Ͱ13o^MqS7MqSnLN"EA 7MqS7Ƶ+`qa7ew:NМ9nʠLXo<+Nw`5>p?<(/f.;ܚ'` "'7fr .>r#Kt|#˸o/ѵ/5o|tokW=?_7V^;Ϗ_(e+-Iwg}|R?ͺ=kǮŮ+|ll77lUkylŁ3;'8:7MqS7MqS7M)y^lo9{9V|8,.qS7MqSܔ(%;YqS7"#tN") ) ) ) ) ) Fգ_L}>jΟeNeӦMdYFedYFedYFedYFedYFedYFedYFedYFedYFedYFedYFedYFedYƦM8}{&F9nqpP͙Ü<&Jɮ `xx!B!B xq((zטZ~˧y7xtٯ(?T86sS{ض0!B!B 0>yG{l'UJ((((0{UgJ~tϲ^UzQv2c;wp 7ewN87MqS7MqS7MqS7MqS7MqS7MqS7MѪ#;7g䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2շ2shWpS7M)Çhlkky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF}fLsY^M!eS{a{*n\rS{oL^ky-#e䵌2ZF^ky-#e䵌2ZF^Vf{*n⦸)eȡi[s&ZF^ky-#e䵌2ZF^ky-#elݜs{cHMqS7MqS7MqSNv򻿌Ѷ9#x7MqS7MsvÑ\_\MqSzMqS7MqS7MqS7MqS7MqS7MqS7MqS7v9<}n!m"e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌[ja)zQpS7ŴsLoky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF^ky-#e䵌2ZF9cu9Lw*n⦜?{ 5r} z)nJKtNdm䵌2ZF^ky-#e䵌2ZF^ky-#e䵌[jl4$)nUŅsE9#e䵌2ZF^ky-#e䵌2ZF^˨ٻ{Ъ⦸)n⦸)nXS+Ͱ13o^MqS7MqSnLN"EA 7MqS7Ƶ+`qa7ew:NМ9nʠLX8/g,aWc:60z;K,H&໯^z,vv/wîD/\.c]a8g{Uv3G`˦>u'{4wыؾi=k|EǙEm:2žid nů`b0%8u]ֽO}ͭ\9s lS'9s{apX{ [vrl7|>cnew܅[v#c9߮]2N\fL pk]Ҁ,{A8~&x_u.;>% tɱ}\%Nl }W׿rA̒<{ٿgWTwpzTu߮g(1;g ;W~y 7{9m5op%uoyo,{k[015-~u{ ֎]]Wt%>zw7O,on<,` gwNquŅn⦸)n⦸)nRrspgY\㦸)n⦸)QJ&Fw0㦸)nJ/EGG>I/ERRRRRRwsf|?F*he_ G9vd !B @!B!B @!B!B @!B!044ӧػ{O1;) ) ) ) ) ) ) ) ) U/ќ9m` !B @!Blذ!JIBBBr(>\ţ1{M%%mk0<7MѪ7MqS7MqS7MqS7MqS7MqS7MqS7MqSzR^J)n⦸)U/ыBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB/ UV)nwcw}⦸)niEKЋV=7MqSӊE!E!E!E!E!E!E!E!E!E!E!E!E!E!E!Ez)n⦸)n⦸)nkbMm|7|G[ܾy7MqS7M191}77MqSܔ׮\fjrŅܔA:As0 )3s`_}9չ#|'b,7oOןĜH'~nmg1~>^8/|;<v_;Og˧Ǭ|#68/^䷯|Eg+o>z'`J?y_ͻ/??G>sO壯p(#o88틗 /1Oi<\ܩ3<785-/=>&{̱Ϳ?d58WP?gyWғl=6Ouq?~X&~y~Vnsxn~&G=ϏgNJ7o^b3=g.믿pge$eO^o. jzU+۟՞Y?[yKpK/ws]ǫy摇x5da (\x'=7`bt'k,[I4K|n>ǟYxYV9ΠhD 7MqS7MqS7,y X(γMqS7MqSLdaMqSܔ^9}^((((((#P^J8efùg B @!B!B @!B!B @!B!B`hhӧOwrc?Š(((((((((TDs0'Rk{&@!B!a.^cbt(%) ) ) ) )FT+((Tı#öm !B @!=rc;R"E!E!E!E٫=V{dҋµ+۹7nস)npq)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nrse֦O )n⦸)nJߝLnhc|n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)5= s<~mqu7MqS7(RpS7MqSn\r pS}s͙,.. ).]s|Wή Y^*Xqc/cK\|mN~%xg]?}ϖqE]8@=̯'w s} ^07n*z{m4_GSV8W}Ų{{.reֿ|mퟟGgZ8]Ʒ2֯~g=7`bt'k,[I4K|n>ǟYxYV9ΠhD 7MqS7MqS7,y X(γMqS7MqSLdaMqSܔ^9}^((((((") )FzeʲgY]|pnѝ=0!B!B @!B!B @!B!B @!8}4{'9>S NBBBBBBBBBK4gsx(%7>paB!B @6l9&FGRPfp`j۶5&@!Bftt's!vJ^f*,[ɏY٫J/ ׮\fln޸ N9éY\স)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nY~>6[:}}Ogq)֬z_ݪ`'qpb?Tx)c|1^npV.畯_]\,+^Dyܚ \ . f֬揯ȓ?=ȺW|ԯxg +xc3K,pc.m\/{i7?Ǝo<(_?9>=̣?N0Ihyi%`_ZCq*z{ <l[汇~mp{~?>Kܺ,wdW<,. gp?|s/IGrϽѽ ;_cqݲOY`5uOw\⃭xw93Ͳj6Ͱ8p}D'ZX\স)n⦸)n⦸)e1K-gx/?NJG9~vŅ>n⦸)ndbt' >nRd|tR$E!E!E!E!E!Ea|D*.0_yfuΙk%U/r,;=10!B!B @!B!B @!B!B @!8}4{'9>S NBBBBBBBBBK4gsx(%7>paB!B @6l9&FGRPfp`j۶5&@!Bftt's!vJ^f*,[ɏY٫J/ ׮\fln޸ N9éY\স)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nYiiiiiiiiiiiiiiiiiiiiiik⦸)n⦘VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV*n⦸)37MqS7Ŵ´´´´´´´´´´´´´´´´´´´µMqS7MqSL+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+\7MqS7MqS7MqSNv򻿌Ѷ9#x7MqS7MsvÑ\_\MqSzMqS7MqS7MqS7MqS7MqS7MqS7MqS7M10000000000000000000000pU7MqS 7MqSܔ3;}77MqS*L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+L+\7MqS7Ŭ´´´´´´´´´´´´´´´´´´UqS7MqS7MqSĚ^nՍ9|?ߏ}:n⦸)nwcrb) n)n⦸)}7] )9uapS}gz.p/qp W6,WW6нp ?P5 YKKKt9m N s0c'w' |$ ]}3<ڻGs0c'7p8×/.o2Xŋy Zc_o_p |_g7?E` XGo%k>fclr-nw+v~{a9|ݠoXzN Y`OMw>~nϭ_ 乇Xlܵ;bC+dEun/Uvy^Xgp痿ytCqfNwEmz`ֵ==#s0>4+[w.ܼ4+Vw 劻~<g.pO_XkǿyϿg7OYNX8ki)X;v/v]`|?e ogZsc3,A9>Ɖ1)n⦸)n⦸)nJYg;xϱQgq⦸)nD) ⦸)s$IQHQHQHQHQHQ5B/%*?˛&SX8 {&سgu144CCC 144CCC 144CCC 144CCC 144CCC 144CCC 144ĺu8u{'9>S NBBBBBBBBBK4gsx(%7>paB!B @6l9&FGRPfp`j۶5&@!Bftt's!vJ^f*,[ɏY٫J/ ׮\fln޸ N9éY\স)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)Z8v]49zNӨ49zNӨ49zNӨ49zNӨ49zNӨ͙#HYস)n"e3֠5QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=gjr7/^ĴM!eԞLN3*n_la+zNӨ49zNӨ49zNӨ49zNӨ499;3HY⦸)n"eAs;@ckNӨ49zNӨ49zNӨ49zNӨ'襈⦸)n⦸)n⦜wmsӫGn⦸)nwl#⦸)Z5⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nJY9̎m?ؚӨ49zNӨ49zNӨ49zNӨ49zNӨ49z.Ο;V=7M18w='hsF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=QisF=Qilޠȯ_ĥcѸ~ѫ}ÅOy'tG8u/^fqKg2z^_WK{ t;i_}3{1^n7͝Cϲe;cU)3|C<z s~:Ϋ#]e? G~XW??.}+7;++u4uOVsv~{y燓TiϿol;+1X/:]_So :xERk_?4;N<_gKrKwrwi Xݻ,-3|-'v|¯~ rX{%`pO_XΫXn%6Yf-k\3v, w`bt'k,[I4K|n>ǟYxYV9ΠhD 7MqS7MqS7,y X(γMqS7MqSLdaMqSܔ^9}^((((((z\=ZѿzymΜ=(Οԩt:t:t::NNCӡtt:t::NNCӡtt:t::NNCӡt8}41 {&F9>S NBBBBBBBBBK4gsx(%7>paB!B @6l9&FGRPfp`j۶5&@!Bftt's!vJ^f*,[ɏY٫J/ ׮\fln޸ N9éY\স)n⦸)n⦸)n⦸)n⦸)n⦸)noOz^a!;pv%BS;dv)Ug-˶lLJbG'6mJb`H+%$J$ $n4AADqh{oZn=yU,xw躩꺩꺩꺩꺩꺩꺩꺩꺩SVzAg;wn뺩꺩꺩꺩꺩꺩꺩ZuǗ9{w;%'%'%'%'%'%'%'%'%'%_8W|滧xJJv:Ʋm%'[b.ζYq)n4y륯_%˿?~.}˿;v<·|_my|]~O_9`ӻ7~㾲菿2=B̜z?m׿}w5/||y[5?=\>C_uau^gՏد?;??#>_G?odֻCk_|w?^&zk{]rԟ:vچ훾o^_[/ng/_??8Ux~'GzֿK!0[?7?ugݩ볿[>o;/߲xǏ6K>۟~^޶xx _cΜ7r?u|l^ZWgۯok>ޜjyors9W_tzp/}w|~S}mOع7{ o#_Y8g'-9/w^X^H[Հx;c-OZwqypl<6~Ex 1Vʖ'z=艀nl?z铇fmOգl=XmmO[ ;Ov@TiC~,iq __7l6iQ [3ۏ -[;4Q޿gg}MU?:{w[p×|iߪ?{vYq\-%'%'%'%'%'%'%'%'%'%'߽k>E߷=SrRrRrRrRrRr2ޚ)9)9)9Xz88ơ7qC#68ܐӦ6) `ݿw׽{w;vܻ۹wsnν{w;vܻ۹wsnν{w;vܻ۹wsnν{w;vܻypV)[bz8ơ7qCoz q~ݱ^u&db2L&&db2سg۷,/1ơ7qCoz8ơ7͍{9sÇ_5??o2L&&db2L&-..zwϽQhz86䣟x|Zl {=~HI֬xy\dg{KIIIIIIIIIIIIIIIIIIIIIIIIIN^9ttz@O[7+9)9^s`^5pX>.M[3Na⏼ucG{+ff%x]K>}b/YyCI[. M{_x}%'%'%'%'%'%'%'%'%'WV75_ܻQfJNJNJNJNJNJNfٷ-@u]_O9ti4kgz1_sN\sޯԟ{~sQ޿gg}MU?:{w[p×|iߪ?{vYq\-%'%'%'%'%'%'%'%'%'%'߽k>E߷=SrRrRrRrRrRr2ޚ)9)9)9Xz88ơ7qC#68ơ7qCoz8ơ7qCoz8ơ7qCoz8ơ7qCoz8ơ7qCozꊷu:{W|#l[IIIIIɬWW;;JNJNJNǎ(9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9Yyá "BD!"D"BD!"D"BD!"DyW9f%1W._!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"gM6޽nj?zdkV._$M: "D"BD!"D"BD!"D"B_r5Z"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"{m'/i̩'4c=c^;Y.^x%"BD!"D"BD!"D"BDk7o(9)9v"BD"BD!"DrJ^{}%'%'%'%'%'%'%'%'%'WV75_ܻQfJNJNJNJNJNJNfٷ^ZJNJNJNJNJNJNf%{cyQYJNJNJNJNJNf%MzcYeοcgg[֬8{kQ޿gg}MU?:{w[p×|iߪ?{vYq\-%'%'%'%'%'%'%'%'%'%'߽k>E߷=SrRrRrRrRrRr2ޚ)9)9)9Xz88ơ7qC#68ơ7qCoz8`clq168`clq168`clq168`clq1z[o5+ơ7qCoz8ơ1pW.o{UgϜ1??o2L&&db2L&&={}{Cnz8ơ7qCozw3N:|U&db2L&&db~~⢫W.yN,9ơ7qCocM>gG?ջлM-}Gl͊/KvCuDk5њhMDhM&Z_r5ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&Zv6mo͜:yK?3ïޚw-_њhM&ZDk5њhM&Z5њhM&Zy}/v󆒓k\/"Dk55[a]??'"B&ZD'|x_IIIIIIIIɕ>#uxsGٶY)8w-w ǏQrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrvCDhM&Z@DDk5q}իGJv|+/hM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM^3-%'~yˋG{m?~n4+Yp`^:5њhM&ZDk5њhM&"Dk5њhMV8!Yf%[wl+9ٚgOr{X^t+++++++VݼaUoy֬8ơ7qCozw\_wW=sdb2L&&db2L&5ˋG qCoz8rNf%˛1z9gNtM&d21LL&EW\X:jsCoz[|~YwwZ:Ǐ)9)9ٚ_8˗lo)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9i+)hii7nطo ,,,XXX`aa‚{7ִִִִ<}Ծ_r5ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ~ۉrڴ5s /;gX<b{kfV޵|| ִִִDZkZkZkZkZk>}jK{ݼ-Zk"l6\x{.\<.^zʵloo555!M/O=𾒓++}G|/](m%'%'%'%'%'%'R\_]q[l+9)9)9I;d ,5555O>h,,,XXX`aa‚ o:֚֚q}իGJv|+/֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚Ǐ{yϼ;kln ~-/XuӬdisÁ{"BkMkMkMkMDxG5555zmWJ6+#V~Zk;5.zy.wy/NUkMkMkMk >So %m*9)9)9)9)9)9)9)9)i>yϽ3=ŋ>~dV7dV{ԩ7lo+9ٚ+\v;vvl͊Ov ,/{v\^{:y+ 7|yߪ/|͗XX:ogؚRrRrRrRrRrRrRrRrRrRrvXt};3%'%'%'%'%'%'Cnyqp|񈕫WlqCoz8;bchÛ?o_61uC:t̉cN,sbKǜX:1'9t̉cN,sbKǜX:1'9t̉cN,sbKǜX:1'9t̉cN,ǝ\^\N5+ơ7qCoz8ơ1pW.o{UgϜ1??o2L&&db2L&&={}{Cnz8ơ}w}s1z9gNtM&d21LL&EW\X:jsCoz[|~YwwZ:Ǐ)9)9ٚ_8˗lo)9)9)iSܐ67䜔)mnmnlHJNJNJNJNJNrڔ67䴩$M:UUU/۵k]vٵk]vٵk]vٵk]v9;>ZZZZS^U%'%'k߫ ν}։rڴ5s /;gX<b{kfV޵||VVZmllxw9sڙ39sڙ39so{?hijjz/Mݼ-ii{edV+Ν}Ým%'%'%'iscG)M%'%'yshsc!mniSIIIIINrڔӦ7: ijjjz__?]vٵk]vٵk]vٵk]vٵks렵 n\_ꡃ6Ѭd_wl+9ٚgOr{X^ny㖗[^>ny㖗[^>ny㖗[^>ny㖗[^>ny㖗[^>nyǽqℛ7nX^<uY1qCoz8ơ7͍хr}Ck:{yd21LL&d21Lٳku8ơ7S'dz~c?}}w֪ ?̩~db2L&&db2K=KGmqCozzw~Y?O{ӧjjjj>}b{ܼdz{́{ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ;ou6mo͜:yK?3ïޚw-/-Z֚//p]{kn޾sf\rɓ'ZZlnnzy2\YS<[|qO?wDm+9)9)9)9)9)9sgpg[IIIp%'%'%'YQ\—5rOW/g?f1ɬd>+?9 W>?[7od ZSkUkUkUkC9sss͙377gnnܜ|#= jjj"U:hsJ6+c\jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj=z=Rr1xԻ~`M ﵾ@kMUkښO}S?gyfZSkErWJ6+#~pZ֜V~tK|X;C|e/[ҾU Kl[|=;[JNJNJNJNJNJNJNJNJNJN{\Ճ7|.]og{d-/5SrRrRr1/rq0qCozcGlllڸ_om~Ooߵ;nݺny?8?y/{q~ދ^8?y/{q~ދ^8?y/{q~ދ^G\'Eo>ekVCoz8ơ7qCosct;\zЯ;ګΞ9c~~d21LL&d21LL&{q#~8ơ7q 1?Ӯ޺ksc{9sÇ_5??o2L&&db2L&-..zwϽQhz86䣟x|Zl {=~HI֬xy\dg{vy~meOo{[҇7~o1nwJ))9)99{W^yw]g~9m*9i+NVVVw^v277gnnܜ9sss͙|yZZZZ'O7*9)9^s`^VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVg8(M[3Nsc{+ff%x]Kӧ'_7nvmvmv~g?Y>_a}}ӧOZ=yޗ&nPrRrr{햃 ZZEwּi[3ݿ[n^uS^?v3o:q򸍍QkMUm憗'/z}%'%'%'%'%'%'%'%'%'WV75_ܻQfJNJNJNJNJNJNfٷGVVV5:hsJ6+c\jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj=z=Rr1xԻ~`M ֚Z?//ٟY޽ݻ޽ݻ?o~~~ӡC<|f3UU_9dsc4+٬dGPkZ|bQ?}ؙ޻vwӕk[:qQg>sgVZZ~͟M%'%'%'%'%'%'%'%'%_8W|滧xJJv:Ʋm%'[b.ζYq)nОzZwUwz_Wo"НNҝ+U.1#vy#Hy`Aґ  $$!!<{8{tZyc<56;WGrrmocݣ  ]m%O41.2>rw0{:KeAYEAYEAY-ɲhn:~)(˂[0yuST`,%eYXZbr*ϜRkL^\jB7C\>RIY,%>lc LST0LST0LcST0S_c{{.!1THL9|ggb$*diYf Ofvv?kƖT0&s`Jʲ, ʲ, {nJBRRPTT*T** J&Z(˂,(˂Fc+>))VeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYPeYP uvUMN`*8M訵p<[US۳9JKK_?ḽ[EAYEAYEAYiB-nܘ`߾4K\<‘C#1%1ȥah4(˂1o27?#W8~3N10|K}\𑃔EAYe48}$Oc* `* `ذ$Ó<v) `* Bbʉ)`* Bb4':ȳ S!M˗&3L41Νdjr ҹt]bAOqn6ս&+SGh4>ˉ qz=@5?KӽMP_f?c Q0;|S9w/_'vÇZJ܊85+qKo*f Qgl3{՘[,e7PYK͔@a\9¶͛qI ҹ+?a^Xp >ʖ7e1=%QkYظ4_a96Ͳu]|wv+{W6t<5PE,T0LST0LST0nf1>wc7ȳST0LSTy:j-di`* h5sydE(E!. qQB\L"pQmUp4W訵px۶U            m۶122© \NpQB\(E!. qQ} =̹.*AAAA}v&5(df ϻˡY/ȳj\xWX;:=/y#GSV   Vj5Fsm-xpQB\⢐8 .ܾ%/1z]ٙiZ`*1˥A򼎟?%9_=kxG.q+Or?a צximmejj7np%9³<Å4As~DQEAQڵ'T** JJBRRPTT*455s-( ( n-.{vb* S۳(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((h4t;*,Mo#2Omƒ ST0LSTHLϹ ST0Ǵ6c* &3W.15͊2L9 Wpb""5T6>CqSSS?ozSa8a,)(((9svJJBRRPTT*T** MMM477PEQP%Ʈ\xHLILi2<4HѠ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( `^ggP#~شZ zγLN\%1E|̾=,K˗/ψ㘲((((((((,YZZbrb3:%.p|HLIL43riFAQ,%G n23;ʼnSzZG3c#ܜ{uEQPFӧNr L<`* `* & {N=<3ߜaGb`* `*$͑b* `*$Ly<0ĸ|inH РXbii 0V4XZZbii hh4XZZbiiF4~jg7TyVd J,uG%РhFhXZbii%@ѠFA`ii% 䎇`,Yn1T]Mӟ9+?osZsp ΏL1+}h ?#(XZbiA`Ii[;hK:g?+ KKK,-5cܶ]zo(Ne@Ѡh KKK,--h4h44 h4h44K,--Ԡ"WZ7O?էW=L% o'C+y.VBY蓼c<җdtZyc<56;WGrrmocݣ  ]m%O41.2vv3<8@z0纺VA@A@A@AۙL㢐6|>~|2_K3Ǟz<ɑ#VA@A@A@TUj#Ã\9s(E!. qQH^n_t.Q4m-X\XT0 y^_=γ_֘OsK{.ĕI.;LH"79*y#L>3իپ} pYos>Kŋ9t`?S,.,PsyN=)۷JBRRPTT*T** J&z!,zSs,c׎㣘 ${wdaazSsyN=ϩ9fߞ]ܜe^"/___㘅zzP ,,,Y*Kȡؑ 9 ?sLMOq9|~7nsv,[:qӧN`1LST0LST0qlseI ;juLST0LS!1DGpnST0LS!1evfY&KCvBt2598_zַ! ͼ~az?" ~M>h >^A`q_ʄ(G7{_g_#'6O.h3Å3[Xe,4%m+ӿ׫72zv?{} s>V -jV=4ܷ]3|mxcZF gӼ$ڀާ;kx{.Gy#-6f[Oss{E|->ǻ[N5J&v5>dž~9G^}€EƯ|I>y &ZXrn:j-ܼ1K櫃#l99ƶYַk|z`Qywʆ.FCH `* `* ֬;'qV}Vcpy`* `* Q8OG,M0LS!vf. (E!. qQB[ch;?8b+s{yg߶qilm-?֭[VTU*jjJZZRVVTU*jjJZZRVVTU*jjJZZRVVlݺK:EΞ$M (E!. qQB\Q8OÜZAAA۷ogjjZ3Q8Bbc&h|<fK_quCWI9LZ%   ZRByE!. qQB(dpۗu!Bfgik9&@_/:6Ç?ύNvO%щK\!#MGn͛^`Ν=z;wꫯ'3{}ϡJ=Ҕ,MҔ[*?OT*T** JJBRRPThjj$M4%KS4%KS3vm:>`*LOMwN<'KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4%KS4e^t'PdiBn\c=r,MHL@[k Y_}.q^03=43LO33=~)?G>x}T,MIT:`*LMNo.yN󜡡AZjPv}8|Z{+Ws>u`* `* cÞc/kO7gQXc* `* )':jss$ `* )3t 2L41._<08w Y}{n l}qdC<])T's]:sic}-b{yV?ȳ_y:Cl;1k| yxm#^b{뙭\wc/ao0?زAFop>Zz3m:Oc,`>vGVoݽij'Yw-úgg蝜`G۹q < lË9źߥzjE`1坕,̴qN^_[#m<| _fëfS3|}DTBԿ;Yn+8, SO/`|77B:>k0-lw<&''i~_zhdiB c|<&Fu 1IJnXQ6lY]|ˆ,' [%2r_'')Z 7o̒}[Nαm3|}ࣽ|{ww^ݣm䩑&E/g)`* `* 0?w5ɾ+|UA% `* BQk!KLST]D{#.E!. qQB\⢐fbo^bk;'I':HKK ZZFVVQըjj5jZZFVVQըjj5jZZFVVQըjj5jZV]Ʃ \NpQB\(E!. qQ} =̹.*AAAA}v&5(E!. qQB\xk4,Qc:Ora*AAAjZ zs. qQB\G!ׅۗݾ%F q2;3M[10L41z44Hed~=b`a* `*ZyWxy饗Xl޼  8&sR3$!M$1˖-nRPTT*T** JJBRCP& i& y1<8Α^kb<'M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$!M$AgGu+&'0|æ tZs?nfr*)c4%M34erb￟??߸;;;;;??'1#M,c#cGbJbJ[k3C4IҔ`6nܜel l'q..:ZfHH4I>u`* `* cÞc/kO7gQXc* `* )':jss$ `* )3t 2L41._<08w Y<{73Pp[N))m7=O_IJ&ዏqםοj Yl@L _0_]%W 6k6 +R:{/c4F[C31|Sb]_1>7ʷ/ϓ_ %\O߶{ni'p ͕ϱ/񋌷Urf8o9vw/rWVa?goy"gO/rz3ں{Wv͓]=k>gOi\Zbo:T_XKl~sI7XVlX8ol頯u=1Vc]ā8>v 091=ɲ ST1UL9-[mFRRPTT*T** JJBSS*& C>))V/gb*b*b*b*b*b*b*b*b*b*b*b*b*b*խ\Tq6QkByɉ$ٷggISTIWYr%ʝwɲeXl˖-cٲe7᷿-2--)/r|HLILikmfp<0U$a͇iimAjm-ݿ ף*$j*YrӧNb1LST0LST0qlseI ;juLST0LS!1DGpnST0LS!1evfY&KCvBt2594h4xa~0q`]?Sݽ<|a6ldֽ\Q qsb;x>k-<Ϫ'+j87`dR7ª771UF[ĖgՓ?b| ߾pd<[t%T?{g}5~9rO<<2~<3XܜeO|+֫Z6qCst[{Nɣ}WS3|w6aF~غFh,̱_~b9?737{WWdCU~Keۗ/y٧u:' xU64׮1}׮1}3338&MTAEHǑC#1%1~$EEHشy#YX3o2=s ;K#?o*B$ooxLST0LST0L{Y{xg9ÎZ?bST0LSTHL9Q##1T0LSTHLDya*q}y&ƹ3LMNp/9'ƍ]ϫz~%Wl uvoSg=pz%[:RxP25<|*>px87'Ɋ x9}p~+|#)Gxco(2Ǖg<ٞAn4Rn}{Vz]g9{|/=x'}3Gަ'^޷ uX΃-';˗G湰m׫9>AX<:s(IF%Ov3]ܬ4 _e]eJZu?^}hgrx?(sґ]wc7ȳST0LSTy:j-di`* h5sydE(E!. qQB\L"\(E!. qQB|;|;|;|;|;|;|;|C|Ξ$M (E!. qQB\Q8OÜZAAA۷ogjjZ3Q8B\(E!. qQB\c:Ora*AAAjZ zs. qQB\G!ׅۗݾ%F q2;3M[10L41z44H BY ))y%F`* `* `* ЁaIÇXb+V`ŊX+Vb VX+X|9o>cΠ1LSa${v 1CGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG'1 N҄ΓQJ.j8zYf4EGGGGģ"*"* ####;ǎ6&c* Sݽ Sehh]sWF0:zѱQFF9{)-ʹpI\!#♙fGus7o`* `* `* _ϛ$k$T0LST03F/s,a:j-\9739q1b5TAGEPTAEPTxxxxrGǎĔĔf.^$1CGEػwgN3:z+W(svs8xh?WP{3:j>u`* `* cÞc/kO7gQXc* `* )':jss$ `* )3t 2L41._<08w "k5\ΧգݱU;/dp~=/-_62YFw/8 \ΧQXc;*6#{a%|dc|z%~֯Yk_Q:?*w ;w:7oˁ9<}oxݴk+ʟ݃"Lw|Ý+{ HZxlA'፭X!>Z㓴%ܚb][P`Kʃwێ+L_?6VQ_ZֽC}τzuȕ<}% ;yeAQ>!]F]nred8/sg$/Xxb;}F:η+1rqϻg<dH[kW-gipC_ohG;>G[S  M^bhlPL^dl.PD{ְu6 {cBf_oo+i=u3g30N<o߱`gΜtW/ע%䩱qi:8–slle} _Ƨ&h8ݝWx(lbo[/yj14pY`* `* `*`ͺc| gg5ng `* tZST0b^k0pQB\(E(E!. qQB\(E!. qQB\(E!. qQB\(E!. qQB\(E!. qQB\˜=I. qQB\(E!. 񱣯p֣9EZ%   o$fp(E!. qQB\(ǎ=tuȑTU   *ZA.x[ 9\($BF /?}K^(dvfc,.,IDAT`* ib rih&E8\sE8\sE8\1x}1E11>`*L_dϮ)q>c>c>c>c>c>c>c>c>c>c>c>c>c>c>FUcT>؏wĔĔZ+}z1S>c>c>c>c>c>c>c>c>c>c>c>c>c>c>& پm+&'0|æ tZs?nfr*)cŵkSx>c>c>c>c>FUȡؑL>cel{6=6o~6~~cLNMx}S'1 `* `*869?$|s~:`* rF87Gb`* 2;3M,TH!z S!Msg: X;l>CTo@c-|k?x`1x/9;EY_}+/ LE!w_˾͘ԙkf;oC Q=tw hԹr3qf:^E;~f9o+XX 9o+03r-16n@H @~_|};ټ0SiFz}|ֶq3rd}wy c{ȫo};f4ř67|xl˧o /ƗA;dn g?r=kS]gUCz7ah4[6 Ed׻ٲ1`(ZF}l;txdg7_H\p[6lon7ʡM /_7- zKpvwl<<@=vKMU n26|#4p|y';߳OnQ \cW /'y9ìvd ;f8:vvOS6^}W⋼FNܤص~mCs\;7_~_իyx ]ckxYz5W?ϱ@G7fSc|up-'6>vOLq>=ʻ;Q^޶^Hch"CɳST0LST0LSTud>?Ϊj LST0LS! 騵 `*.ab(E!. qQH{k3pQB\(E!. qQB\(E!. qQB\(E!. qQB\(E!. qQB\($v㣗9{41\(E!. qQB\cG_o7ÃD`*L_dϮ ]D"bE."v]D"bE."v]D"bE."v]D"bE."v]D"bE."v]D"bE."v]D"bE."v]ԉhoCœ 's]Zq!4!1j-H#v]D"bE."v]D"bE."v]Dγɫ {wT]D"!>Fţ"** *ı#vc)vT1w`* `* 1/Lޮ<K2LST0LS!1cl2=R3LSTڌ`* `* `* `* `* `* `* ۳ 3%v]D"bE."v]D"bE."v]D"b!>؏wĔĔZ+}z1bE."v]D"bE."v]D"bE."v]D"bE."v]D"bE."v]D"bϒ灘?#U-N>*_\ةXZzݍJK˴"E["%.dlsI`03g0t=t~9}!̕ΦlΦlΦlΦlΦlΦlΦlΦlΦwp~W}-kJq~'SgΦlΦlΦlΦlΦlΦlΦlΦlΦl;o/lrttep6ugSw~682BF!3dsgir6ugSq^*UP*Ce 2TL~'|_,/2TP*Ce8Tz9T 2TptϽuW.Gs k8= =gϾ}w^3տg/>%OO_{|wSK|uO]E8{zpBe 2TP*Ce 7~Xm=P*Ce 2w2T{;lLz3fԛ^v6uSoLz3fԛ7^o{^o{^o{^o{^o{^o{^o{7oCz3fԛ7SoLzs~6y ~^z֛n>0 a0 a `GGGNOO\?7SoLz3fԛ7So&޺W^sϚa0 a `0玏}޾]q>MLz37MWwկ[nYo}kWo~2TCy[>/TP*Ce 2TP*Ce 2TP*Ce 2Ts3VOMLz3fԛ7SoLz3fԛ7SoLz3fMo{1w?] NstPwvԛ7SoLz3fԛ7SoLz3fԛ7So~h>sTe 'w=2ԛ7SoLz3fԛ7SoLz3f|vzbݸU*Ce 2TP>q;߻UP*Ce *7|ïW*Ce3/\2TP*Ce 2TP*Ce 2TP*Ce 2TprSO?3aԛ7SoLz3fԛ7SoLz3fԛ7SoޜM}girtU}Sƹ7SoLz3fԛ7SoLz3fԛ7SoLz3fԛ7SoLz3fԛ7SoLz3fԛ7SoLz3fԛ7SoLz3fԛ7Soc?]7#׏x[f?['wOg'Φnԛ7SoLz3fԛ7SoLz3fԛ۷nx?w~69T:Tv}Gƹ7SoLz3fԛ7SoLz3fԛ8?e*Ce 2TP*&?ze[쉯k헿V*Ce 2*tX*UP*Ce8T^y r޹uÃUCyW.Ogsw|y8o|_W}>>-W{\?c?}y_?ݟO}O,}OK=uPn 2TP*Ce 2w['O`Ae 2T+_TPΦ|z3fԛ7So^zMz3f{O~޻N/_~K/_r|˗_%Ǘ/9|K/_r|˗_%Ǘ/9|K/_r|˗_%Ǘ/9|K/_r%Ǘ/v咏?PLz3fԛ7SoޜM޹uÇ믛a0 a `0ё׏/moԛ7SoLz3fԛɻnz=ܳa `00 cokWO7SoL9rկ|떛p֛{_|ڕ}ߨ P疏n 2TP*Ce 2TP*Ce 2TP*Ce !/坏MMo;No;No;No;No;No;m?Zg֟Tg'x٤vzmvzmvzmvzmvzmvzmvzmvzmvzmvzmvzmvzmvzmvzmvϺ_|/\q+/h1뎯>stPwvK2No;No;No;No;No;c?uTe 'w=Io;No;No;No;No;'kGݸU*Ce 2TP>q;߻UP*Ce *7|ïW*Ce3/\2TP*Ce 2TP*Ce 2TP*Ce 2Tprw'vzmvzmvzmvzmvzmvΦ杷oz8&JJ/_&No;No;No;No;No;No;No;No;No;No;No;No;No;No;N gݿ~|728vg~gNM}vzmvzmvzmvzmvΦͷ<˟;?**]zٻor~No;No;No;No;휟u׮^^Vq2TP*Ce b'_?{Ϟ_fq~k2TP*áK׏ΡRe 2TC{_|{ppq(w>[7woTpq(sG?P*Ce 2TP*Ce 2TP*Ce 2Tʐq~[7Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~~v4wwR*Ǐl>Lۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~׮K/8w_fnkWw_qpt<˟ۍGm?jQۏ~Gm?jQۏ~Gm?͝] O>3m?jQۏ~Gm?jQۏ~Gm?GXٍ[2TP*Ce ;+}p_e 2TpZq7}2T8?*Ce 2TP*Ce 2TP*Ce 2TP*Ce 'w={ϵGm?jQۏ~Gm?jQۏ~Gm?jQۏ~7^st>uJJ/xݫzIۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Gm?jQۏ~Nz|x'*YoG_[oo];T3|iOۏ~Gm?jQۏ~Gm?jQۏ~yW]ɡRUzk^{W~Gm?jQۏ~Gm?jQۏ~m]}7^{EƹP*Ce 2Tɏ|={k{~UP*Ce J/]?v;J2TP}W^*šwn}P|'w+=.ʏ~~񱟾k/ӧ>''䉥?랺v˃rq(P*Ce 2TPoyy̧~Ϗ}zp2TP*Cem/*Ce gSew>Mz3fԛ7/\lL9+k?xӥW󹣣#GGG9::rttё#GGG9::rttё#GGG9::rttё#܇kn7^{šLz3fԛ7SoL9?s?x_o{W/=_7 `00 a0 #'_ԛ7SoLz3fԛ7gwo+/{gs00 a0 as>o|ˋ׮8&SoLzs֛&|_;_-77ܵ+7Q*š-*Ce 2TP*Ce 2TP*Ce 2TP*Cƹoɝۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7v=v^ 2w+sU~j73n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍw޾<8wW7_Ktܿ8Lϟ믺w q1n7Ƹvcnۍq1n7Ƹvcn{> W_~vQ*~]_8v=vcnۍq1n7Ƹvcnۍq1n7ӕKW_~IUP*Ce 2T_\N|gw.}2TP*ájy7UP W/ 2TP*Ce 2TP*Ce 2TP*Ce 2ƭ_v=vcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍ>O?[7M*Cey vcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹvcnۍq1n7Ƹxgw_=l2zx'C#*Ce 2TP*&?ze[쉯k헿V*Ce 2*tX*UP*Ce8T^y r޹uÃUCyW׏<(?~U?~ΏW?OԷX'G{-.š~]{׃*Ce 2TP*Ceﶾ}O3??jP*Ce Wܿ8 2M ǗCgS7fԛ7So޼pz7k?_>ڞ;t/xc `00 a0 a `00 a0 a `00 a0 a Ջ/{x2fԛ7SoLz3lέ>}]7_|>7 a `00 ~|Yo{SoLz3fԛ7SoޜM޽u민5 `00 a0}-/^|Lz3fYo~|_܄s׮vTGo{X Yg|f1Yg|f1Yg|f1Yg|f1YG>O32d[rҳ?;,3b>,3b>,3b>,31O=^Nd 2TP*Ce Yϝ]V*Ce 2TCo 2^V*Ce 2TP*Ce 2TP*Ce 2TP*Ce8^<ܳ?;,3b>,3b>,3b>,3b>,3cy oP*ԛ7̓O8,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b>,3b> Ǘwӥ8?S2νk~oW?{*Ce؍W^~ɓ/g|f1Yg|f1Yg|f1Yg|f1Yg~|UP*ԛo'h>,3b>,3b>,3b>,3O{[W*Ce 2TP*&?ze[쉯k헿V*Ce 2*tX*UP*Ce8T^y r޹uÃUCyW׏<(?~U?~ΏW?OԷX'G{-.š~]{׃*Ce 2TP*Ceﶾ}O3??jP*Ce Wܿ8 2M ǗCgS7fԛ7So޼p;&/~;|=w+^|0 a0 a `00 a0 a `00 a0 a `0c=?^pw+.eԛ7SoLz3f[7|zۻzYo|n00 a0 a9==qLz3fԛ7SoL9?{_ys=k>0 a0 a `>;>>x[^v4z3fԛ,7+_Wn g]yޗP.wnܿP*Ce 2TP*Ce 2TP*Ce 2TP*CezjiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫sq6 2TsqdjiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫j󓻦W*Ce?=12TP*Ce 2Tɏ|={k{~UP*Ce J/]?v;J2TP}W^*šwn}P|'w+=.ʏ~~񱟾k/ӧ>''䉥?랺v˃rq(P*Ce 2TPoyy̧~Ϗ}zp2TP*Cem/*Ce gSew>Mz3fԛ7/\l\_O?ז|t_a0 a `00 a0 a `00 a0 a `00 ac~]oCz3fԛ7SoLzs~6y ~^z֛n>0 a0 a `GGGNOO\?7SoLsqM."*?߹W^sϚa0 a `0玏}޾]q>MLz37MWwկ[nYo}kWo~2TCy[>/TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP>q;߻UP*Ce *7|ïW*Ce3/\2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*&?ze[쉯k헿V*Ce 2*tX*UP*Ce8T^y r޹uÃUCyW׏<(?~U?~ΏW?OԷX'G{-.š~]{׃*Ce 2TP*Ceﶾ}O3??jP*Ce Wܿ8 2M ǗCgS7fԛ7So޼psOGѿ#} |/^a0 a `00 a0 a `00 a0 a `00 ac~]oCz3fԛ7SoLzs~6y ~^z֛n>0 a0 a `GGGNOO\?7Soir>ֵxM/xe=|n00 a0 |~oydԛ7Soz܄|~+_&vy_7*Ce8߹xpBe 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce ;+}p_e 2TpZq7}2T8?*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce b'_?{Ϟ_fq~k2TP*áK׏ΡRe 2TC{_|{ppq(w>[7C>p=ѣG>z|Ç=xtGyGGyzzyGGx葇z𡇏GzGyGGzyxGGzyW{\?c?}y_?ݟO}O,}OK=uPn 2TP*Ce 2w['O`Ae 2T+_TPΦ|z3fԛ7So^zd\[O/|7|pz|ё#GGG9::rttё#GGG9::rttё#GGG9::rtt|>w~ n7^{šLz3fԛ7SoL9?s?x_o{W/=_7 `00 a0 #'_ԛwާ?=Ul3'x=|n00 a0 |~oydԛ7Soz܄|~+_&vy_7*Ce8߹xpBe 2TP*Ce 2TP*Ce 2TP*Ce 2**********************UP*Ce 2***********************************************************UP*Ce8T8CP*Ce UPPPPPPPPPPPPPPPPPPP2TP*Ce PPPPPPPPPPPPPPPPP2TP*Ce 2TP>q;߻UP*Ce *7|ïW*Ce3/\2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce8T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T 2TP*áҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡҡRe 2TCC8CP*Ce JJJJJJJJJJJJJJJJJJJJ2TP*Ce8T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T:T 2TP*Ce 2TL~'|_,/2TP*Ce8Tz9T 2TptϽuW.Gs k8= O7oxxyޟ??_ݟ\q]_'7]<ӥkWwrSwﮝ8==qzz'NOO8==qzz'NOO8==qzz'NOO8=W~=oCz3fԛ7SoLzs~6y ~^z֛n>0 a0 a `GGGNOO\?7ggO+vSwn}煿?ƫ{Y0 a0 a `?7+Χԛ7Soޜf _WuM8ͽ/>woTpq(sG?P*Ce 2TP*Ce 2TP*Ce 2TP*~7 /;Ag9gϜ9==U,UuuWJ)RE9%OIH)CQ  HKxF"3}Ag{Ag{Ag{Ag{Ag{ pbGr\q,^@5O왟inX9ӷܶxڽ⋿O.9r`;-:Yin߹}ur8vD~O^ra6Fȁ=vp-uW/qI5{c7kXQ7P]9s<8{/Swy~7"snܼjoy-Φ ͅE 9pr]s{1K+7[cԧ?S{ 3֏|0|ّ{e[+.,ѳ)7'߳Cǜ<}ť;ꔸha׼=Z AW犸G_qs'{>y]=waQaz͕f+銓ǎ:o]}i7o~3,])+?왓ص{ݬP/8۞c._W/;18Bs U>?nki/~!~ew}]͵]|JʺQ~+K^\-ti?zo}yv+b?h;hmuEIIIIIIIII˾-~w#?sek%'%'%'%'%'%'msm+%'%'%'fdܬcG7#h 5f4Ԍάq3ҌP3jFW]>ƹF#Ξ6in{ms67kܬms67kܬms67kܬms67kܬms67kܬms67kܬms67kkgVÇڹʤhFCh 5f4ԌP3jFCƁ t6o{~̌VjiZZVjiZ^ugϞmm<^6<6zٕSɛҌFJc7>~o6m433jiZZVjiZfff9z۶4P3jFChh<Z|g'zd<tn{ׯ+9)9Y Y[]QrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrr%l3inivںnivںnivںnivںnivf7o9,-4v[6nЙݬivںnivںnivںnivںnivںnivںnivںnivںnivںnivںnivںnivںnivںnivںn3xU%'+?~cO?x%'ȁ}6o|_gvnivںnivںnivںnivںnmvF6wiy$-=rؖtf7vںnivںnivںnivںά-7ݼɹ3崬_n:{ogɪI)N,o.V屭Y%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'iy7nu;mN[u;mN[u;mN[u;mN[u;mN\{M֮+/)9)9)9.]Gmٸ\{Vu;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN[u;mN6mxcrZVrn+}^ YzŤd9/tnmvFsYN[u;mN[u;mN[u;mN[u;ms-6އ۶rW-6kvںnivںnivںnivںf׿gypIIIIIIIIIIIW<'_鍹[7)9)9)9)9)9)9msWdRK6kJNV&ű#Z[[Ur2)vI/=s/vI3?{{ȣ?ǾMc?x=<,]nTm]:?GS?ӟ7|O?^v;?7ƅ>mG?COwϧ՗1a_/}Zkt}yl8xt:q`:ꭗ^4^7<%w뻬]}O,w+n8Ώl?͵]|JʺQ~+K^\-ti?zo}yv+b?h;hmuEIIIIIIIII˾-~w#?sek%'%'%'%'%'%'msm+%'%'%'fdܬcG7#h 5f4Ԍάq3ҌP3jFCh 5f44. KF%phd4\2. KF%phd4\2. KF%phd4\2. KF%pI3:x̮wXh 5f4ԌP3jFChhy8C}vϛjZ-VKjZ-V믿ٳ>]gWK~#~G4cЩOy7mޱۮmڴ̌VjiZZVj177CnrhFCh 5hhb򉻞h҅-n\deR,828dmuEIIIIIIIIIIIIIIIIIIIIIIIIINvu# ͛oӆ]tQI+lٸAs-pߠP}?ֹ׽cVW&&%;}Mw)n޼i>7KJNJN\h )X]]ч6ьJNJNJNJNJNJNJNJNJN;቟31~V*9)9)9)9)9)91vrmmUIIIZڙUrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrrE7lpxpt:0n͛5/e%'%'nd8\7nܰo[6mt岒q㏿٦`?egϜ6)YZ>ܶ@3ݼɾ=䴬-F#Ν=k=߾䁧/\L}0;ȕU1>>K΍x[{O[>z ƲmǾ'=ȕU1>#>o.Wnvcn/oT~ؿ_Z5z:7Օ̿^qi|uG/ug<`M?ϟopkl/O{w?O=K+]_1wbٍ|Λ=_cǺrg5_Ox1ʿ;6w=?+ qzه}ﻸzFOw_sE^+{?s;oukʢtoc+r _ϳM?~o<̬{Cw=as7.lhVKjZ-VKjΞ=uvm~Տ?>$_>'O>'o|x&^Xr`^;۴iVKjZ-VK233cnnÇ߷ݶьP3jFCw=/>q3/&Х u[ܸ~]IʤXpdpꊒmz3O~w~әS'?wֺrMg׼>&e+;`?ڹc-lՕIu\杷p)%'%'Μ;oy& \VrRrRrRrRrRrRrRrRrr O|/7񽷎dUIIIIIɤ'ٷ{kkJNJNJNά3Oywܺu GlٴQJ6)ٶ~ X]];~fw}O3O,-.]p@{&i(%l\Pڵs/ݳ.x~Os=n\SrRrRrRrRrRr2)ه ^5)YIIIIɤd.mVWLcG,쵶deR޹3Փ^zO(`{ /O;{~)% v?>01lyO KFᛏ>zsŶowطZz6μ{Wwɫ=J`gMM͒+WZ-[US 7ُo>/uv뺋wx|_ss y{o 0>g˃;l> Ϳ|'4~973]o~~} :o}W/ٯX{{곾3s X9Oys̻r|G~[6x_3wOfvYj6\%f>߼.?4tC{?vzN}O[^}Ӈ6?}&p/w_+]O?7__iV՗6z{f%=w ԛ{w{ k[ `^{{WUlkru{WԹ[~I?x{wq3w=cb2 ]p^ōוLG(9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9iن\pD"BD!"D"BD!"D"BDz7:3ֽ"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"ۻ[lueb1=wly+mkD"BD!"D"BD!"DөxݙS'=s{-"D"BD!"D"BD!"@ٛW\VrRrRrRrRrRrRrRrRrr O|/7񽷎dUIIIIIɤ'ٷ{kkJNJNJNά3NZ]"BD!"D"BD!"D"BDNܙJN#˶͵߷kޙӧLJֽp D"BD!"D"BD!"Dmڰ1)٤dsYǎ!"D"BD!"D"BD>C%-+9)9)9)9)9)9)9)9);=7;1s5%'%'%'%'%'%'}mULJvy;>fmuUʤ8vd^kkJNV&;=s@s`?~}|(`ߺ/{koEKKKF'ݪ'^q[7+>WO?3~u~O>S|Zb+_swox[wp_'=xmf>ɫ+?X=饯<ܦ}ަX= _߿|{Y0p٫˦u㺕 3~?|O~ʗEooW_>=p?`vx~/͝0Пtj,p*6q~ά?㟟?~>~} :o}W/{l?? ߙYO~w| X9>W]9w?{rg=.G#˩XqKaq >/w{YWpG|^qNtm)-Qo:q6ŗ?#ݾ-l-ۿpߵ9{Cw=as˯lrsb+_swoxۯ{9OO5ך^~՝?x~AGV'}/oTZ鴪 S~||:.Zok/Od*7޳4<[/>8kr_?~ץ+G}aWl: oӏtj[c~3׀Wßog}wqW̝Hns}=6+w}ٯܸnq> }eǗ?n+7xm8oi93֜l[X@DUk5V5A}.^4ݟW?ru&niqם~#}[\Z:_{Տ,l-ۿpߵ9{Cw=as~>>7zyw~m)gO]YxݣwםE7`_Aϵ"/x6>uen[t ڮ\dmxe^x?m%/u.s~{^7ۋw VI14de_?Yw܏;鑟9tⲵՉpɶՕq3unֱf4ԌP3jFChhkgָiFCM9lR-G\,u`a {X^:ׁ,u`a {X^:ׁ,u`a {X^:ׁ,u`a {XPG+ 5f4ԌP3jFCh -:|o4\ټy333ZVjiZZVjyם={ƶYf4ԌP3jFCh 5q32nFg~v6m433jiZZVjiZfff9z۶4P3jFChh<Z|g'zd<tn{ׯ+9)9Y Y[]QrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrӲ syZEV!"D"BD!"DZEVQt7pĢgX[jVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQ+طwiĎxc5{wϛly+mkDVQU*jZEVQU*jZEVQ[~ugNTrRrriZEVVVVVVVQU*jZE7[3^_n:{ogɪI)N,o.V屭Y%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'gN~ݻ"B*jZE"BD!"D"BD!jZEԉ6rӘlRsZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZݼyÛ8w洒msmګp)ueDU*jZEVQU*jZEVQU izƤd͵g;zDVQZZZZZZU*jZEVsG>C%-+9)9)9)9)9)9)9)9);=7;1s5%'%'%'%'%'%'}mULJvy;>fmuUʤ8vd^kkJNV&;=s@\d㯞qg?xџ)G}?kݾKu`Kn>G5pcwu<ǟ|SO=/=s\<6;/|K>w'/߰ped/ϋ 5}^CY]=s/tiߙk{ՏVOWܫu_#߶ҷÏz⩧<}k?Y'vc>/})|S/;|Qe럻߃|c<|j,g>gUn;=E?GsZ6:=>GYtb{zGc>W7xt:m_}=_'֒uz/R1]qhO?G“O}SO~x=rؓ|s}q_zss`9[瑻oo ^xAn2|+={/4IDATuFX_W0ua]ye+S?xe~[pG#z}7]K/j yajpG#}N7+/Y[)^Y?Oۯz{K ~土?G}<beR  z(9)9)9)9)9)9)9)9)9)9YzONzgslmud4\mmued܌luaf 5f4ԌP3ڙ5nFS3wOɟ;ԩ6{Ǯ?2cn~v;߱wl7cn~v;߱wl7cn~v;߱wl7cݵӾ6ÇzvaeR4f4ԌP3jFCh 5q^K:7=?offFjZ-VKjZ-g67k4\ҌP3jFCh 5f4Ԍqpamڴ̌VjiZZVj177CnrhFCh 5hhb򉻞h҅-n\deR,828dmuEIIIIIIIIIIIIIIIIIIIIIIIIIN6υ AUUUڵk1cx<6cx<6n9gVVVVV[NXTrRrryKUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU۳[lueb1󚽻uؼiՕIz۶ jjjjVADAj"BUUUUխ[Μ:{QCUƍN>aޝw0k>2{ht:RZfk+>v?Mg|c>2YUrRrRrRrRrRr2)ʼncڪ<3̩֯{WDJ)7xl<xl<qӸ~UUUx].k#߽߉KnV\X=gS+s ٳ}o?Y?|k7'N[^ vko٥V@uS2HSqҹc]NNAܘط{~Μ>([YVnA.;u[kcNS.&*Lr ׊g9o{3wxgn\qK+WN9t nr#gnV@#_4ӵ.4\9wʅD\=sĞyF͵]|JʺQ~+K^\-ti?zo}yv+b?h;hmuEIIIIIIIII˾-~w#?sek%'%'%'%'%'%'msm+%'%'%'fdܬcG7#h 5f4Ԍάq3E7za]7񳗝:胹ݻvٰaM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴqM7ڴi>1ڹʤhFCh 5f4ԌP3jFCƁ t6o{~̌VjiZZVjiZ^ugϞmnh 5f4ԌP3jFCh 5q>;۴iVKjZ-VK233cnnÇ߷ݶьP3jFCw=/>q3/&Х u[ܸ~]IʤXpdpꊒׯ]sڪIVrRr2)ښ\_[RIVW&VW$eֿ…֪֪ }Wow~nv~o=SөZZZZ[ny7:3ֽZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ+طgiĎxc5{wϛly+mkZZZEU)xkswow~E뽍:v:~Ʃ͵}m?fff̘133cff̌333fff̘133cff̌333fff̘133cff̌333fffk9{vaeR4f4ԌP3jFCh 5q^K:7=?offFjZ-VKjZ-g67k4\ҌP3jFCh 5f4Ԍqpamڴ̌VjiZZVj177CnrhFCh 5hhb򉻞h҅-n\deR,828dmuE$]u?og<|N.٤$ͅ#گOc/sC%'%'%']|?;tΞ9mRmX ωN:U[pmvmn6vnmnx-N:UTSn;ubQIg{-u:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSN:UTSwnlӲՕ?k7b VW&&%o9PTS{ywy;Ýw;_caaBSN:uMorI%'%'gϜ޻ou*"\x߸n<4ҕ^8&bΟ?k:u֩Z֌W.+9)9)9)9)9)9)9)9)99|'~>뗛[|YedR۽˵U%'%'%'iylkgVIIIJ^2;߷MJV wO~/i%+9)9)9M7xo:{O7ɤu)cGmڰ1)٤dsYGNET;vn׌eK,]tY'|K/طZju >?PIJNJNJNJNJNJNJNJNJjvϾgbݿW%_u\p#`jiq-s)ah_9=';;O92;9cQ&1HH[$7ѴL˒(.B I$ @ Ҹ@ٸ_ظ7讪(xy ݴwOG|o?rmW._wf}V(E( EQ(BQP(E( EQ(BQP(E( EQ(BQP) ߿'9|P&uUR]TW*UJuUjƵ;sZU.VsE( EQ(BQPk׺vmޙrY]TW*UJuUR]Ԍk'5{m۶V(E( EQ( 8~vԵ*UJuUWǟ|Ư=3. Uvܮ_AA&O3V&];vi߯|cg>M/.KM;_?|w} AūWW}9N>k[6oru>sssׯ|h42F#h42F#Ț5k|5 ZW.]bbpڢosssssssssssssssssssssssssssssssssssssssssssssssssssssssssssٷgF I:x`uo5km1ZmN8nsC~~{w[~<x O<'xYfO>Ç ,֯+,^, U ,Ç߸fnJgߺ92wX&rr^4iKwH1H1H1H1H1H1H1H1H18w/po[zqN)tsG[H1H1H1؞];fٙ?FqgN#?_ _O>U?k]o /g}֛oJ))W.ۼmrrrrݻ=Fhd4FFhd4F֬YcΝ ,,Ç.]hM֦Mў]Ν=rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr߿ﭵӮ/^bЌ+ūt|^Ѧ(4c^oyiꪜ{oͿOx'<x O<#xg=|Ѕ m٬)ٹ‡@}Rݔ.vun^qÓp1g:C999CwRhP{{.z燭9eI1H1H1H1H1H1hSriI6Eopp^+Mx։cVV&R 6;|еū`Nwܶ%m<.xv^~7_w.{aExonWg.Ξ:ieI1H1H1H1H1H1H1H1H1H1X^+?{/>g.ݱ2iT岽3;MVAA9RW*UJuUҞ];%6M)tw7:}3;۷Դ(E( EQ(BQP(E( EQ(BQP(E( EQ(BQP(LMMYXX=Ξ>ჺ6R]TW*UJuUR386ܙӪrٮ5==( EQ(BQP(]ֵkPTW*UJuUR]TWf\;yكl۶(E( EQ(BQX8wط{UJuUҸ*]<3~'qV0Joް{vR R 69}Ϟ2Y1/y?o?='DwOnQ_}cï_xa9JrQsMb0+/|p1 [7)e&7n\᪜9r}#1F#h42F#h4fg 9r'[lq-K,//Y^^diiΝ᪙k׮uފ֯+,^, U`5g9>\xGj֝ZtʂsO9yCG;yuY΃՜5[Ŕw;ɗ~Ï-z~yOCj'R R R R R R ڔ\xѹ#LflϮR R RX<}7|kǝS_wNt>[g.ӾXn;q{) `e7muuU΃9rܻw{GF#h42F#h42YΝ;@΃9>\u[7oԵ6Emr< A΃9rcaa]K,//Y^^Rˮ\kĉ>|Ç._mf͸֦M>fK69{NZtR R R R R R R R R R ϶ `ƙKwLZ))))))UlNbbb0+{fv8pθUJuUR]ꪴgR/q eipؿmrefvڷoiEQ(BQP(E( EQ(BQP(E( EQ(BQP(E( EQ{=}ґumRW*UJuUR]TWf\;ql޹3U]m57;kzzZQP(E( EQXvk١*UJuUR]TW*UJ͸vQضmiEQ(BQP(LOOpG?oNM]R]TWqUx+xgO>`\n߼atmr1=cexw3Y:/[x{3۷{9!jcbp a۶mnݺΝ;Ν;gӦMܩ'tmCcMn޸< 0֯_#hd4FFhd4FF5kg?kx@yalxk+.J1H1qmƷ9 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 ;bߞ14&]}Mi~n̮۶Ťk):u⸽g|~~WW=|juuUVWW`uu_񸖇~]ae))9ꪫW/{>nݹlZok޻مz\~j09kcoSޑbbbbbbbbbp%_?޶=H1H1H1H1H1H1hSryG玸2bbb=vH1H1HaݛoɿɯiqYJ}՟Iėl:qKE+Ά=N>myy⢹9?я|[Ҧ(`e7muuUya{G}h42F#h42F#Ț5kܱaAWW]x͛4uMQ=3;{aAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAya{ULxUA3;x_ZzEЌm|{%9/}Kt>puUVWW=\]fK69{NZtR R R R R R R R R R ϶ `ƙKwLZ))))))UlNbbb0+{fv8pθUJuUR]ꪴgqc_?F5v/}7:{vٿo7xԔ)SSSLMM255ejjԔ)SSSLMM255ejjԔ)SSSLMM255ejjԔ7xÇ~{=}ґumRW*UJuUR]TWf\;ql޹3U]m57;kzzZQP(E( EQXvk١*UJuUR]TW*UJ͸vQضmiEQ(BQP(LOOpG?oNM]R]TWqUx+xgO>`\n߼atmr1=ceeEseyOf,w+&~?>G[w=Snܹs\ɓ}]O?ǎt[6or5Ã=|кu|#1F#h42F#h4fgܿ_ݿwφuk]tQAkٰރ}{}^}{}^}{}^}{}^}{}^}{}^}{}^}{9gsGf۳[ I:x`uo5km1ZmN8nVWW힙wu={}^}o?#(RXxkWmz{}ŋݿ[jzoGۻo ql{rރWU)KwH1H1H1H1H1H1H1H1H18w/po[zqN)tsG[H1H1H1؞];Lɯiqܙe'/_}/֦D1=9.]rK/6E)W.ۆa}{ܣ>j4FFhd4FFhd͚5 [7oԵ6Emri9g}^}{}^}{}^}{}^}{}^}{}^}{}^}{}d2r}f\/^wfG?뿴x6EzKwz|#B}{}^ϟa,|xζ-5Z6Ewṳr[nrg[wo8}ٶ}ǎڱssOtdžwr}}^z)))))))))^}^?ŭafN{R R R R R R ;\ZҦ( ŠM7ܿd"ŠkuؼMtm*;;tk 8ݷ릗_W}^p7޺.zY>fK69{NZtR R R R R R R R R R ϶ `ƙKwLZ))))))UlNbbb0+{fv8pθUJuUR]ꪴg,_ŧ??kOۮ\}{\8`nnyϛ7??o~~yϛ7??o~~yϛ7??o~~>s铎>k*UJuUR]TW*5ډcΝ9*zoYӊP(E( EQ(ڵk]hUJuUR]TW*UJuUjƵǎ=xm[MOO+BQP(Eazžsg?}wjZ]TW*[O>ot wn߿/ Šk'++kg]1Y:OO6 ?]=.g}W*] ݻwۿ;wzW򥋺6e&Wbu&]gu(|#1F#h42F#h4fumku&]gu&]k[\( ƵElx˽3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3{}{v1ZnMsfvm޶-&]Mѩ޵Ӄw='O}̮;[^^tIיtIיtIיt{++:蓟q]t6%o\bbpmowoeŤ[YqY3{vmw̞߰vʕ˶l۬Mnty+IYL,ݽk]1e)))))))))_m_S/ډ6%.wt{+)))۳k9?yc>7-6+ҍ#~jn։oҏs'Vց}iݺuo޽6n/o. `e{&]gu&]gub>{GF#h42F#h42Y-[<{3:soeŇںy)jSgfӧN7:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:3:bnzūR qWxޙ+flݾudʊ>ݼyS LΤLΤLNh_?w߿޽{Ξ>m͚ۖqMQݻv8{t{++޸ޝ;><ڷlٶ̞>sdnֱ*M֤L{طסHbbbbbbbbBշxc^ܺn攡' ŠM3ʥ%mR R R R R ݾy{L&R 69Y'[YH1dA3;ݽsJ񐟾K^}˻nziu|w޹ } g_cVkO:{ꤕI' `y鎯lm໛.ftʤbbbbbbP4Z)))㺲gf J]TW*UJ{v0+V\gk ~[>׮^d~#͚5?7k~nܬYsf͚5?7k~nܬYsf͚5?7k~nܬYsf::7#l{wsgN9rMTW*UJuUR]Ԍk';w洪\뽭fgMOO+BQP(E( k׮uڢ3;T岺*UJuUR]TW*UN;j۶m5==( EQ(BQPi333ΝqީkuUR]4Jo?_{g\7޹]MN8óg|c_qh.'~_l-_S,V_/~m;_Rb0wdO?k__~ /-[C# Ɩ͛\rdk[]VbzG~7F#h42F#h42YƧ?imJյmumM+/J1H1qm;߲2V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶=tо=ИtY7Y3{oզv+WN8S{/+W^/{W˞{9?~7~ÁMN׶R*-^, U^oeeE׶V&gΜ}6޸޽3fvpqo\qb MN׶&];Sޑbbbbbbbbbp%_?޶=H1H1H1H1H1H1hSryG玸2bbb=vH1H1H1H),?_{b"\?}&wg'^>nu)e/gz)?яK/{g-^" `eʊmumk[] MG}h42F#h42F#Ț5klٲEmumk[+sgغy)jSgf'Owmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmumk[]V׶յmum+ƺ)J1hƕ_U{gv:~oKWhSowMӵwh\~'??W^y+W^/{W'?O,/-tęӧl۲Y3)jS{gOvoeE׶V&ܽSygؽg7;x揸tכSkSҵm[Y? FAAAAAAAA W>׏yq뢧~غS6E()J1H1H1H1H1hSt 2H1g86oee"Šk][ >|tm+]C~7,ymm/}Uy6\.憋}u;Y钮MΞ>쩓V&;ns?q+VAAAAAAU.;Ӥkʞ/3+uUR]TW*ٵøUk!mJ]rKλtK\҅.,ta .]Xp‚K\҅.,ta .]Xp‚K\҅.,ta .]Xp‚K\҅W.xaCumRW*UJuUR]TWf\;ql޹3U]m57;kzzZQP(E( EQXvk١*UJuUR]TW*UJ͸vQضmiEQ(BQP(LOOpG?oNM]R]TWqUx+xgO>`\n߼atmr1=ce2ѵ?=>d[þ?_%}o\.m R R N8G?g|qMQA -7zIiSҦM{LOMMh42F#h42F#k֬OZQ6%mJڔvڕܸot6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJV&obhL~ܬ]۽mIjStqwt=mJڔLN׿u{Nk$ŠM]ᄏ}_WW._Ҧ( `e`e2ѦMI6%xcG}h42F#h42F#Ț5kly]VV)iSҦduΞ9mM֦Mў]N}N\[bbbbbC#F [6ore]J1J1J1bjjooFFhd4FFhd4YfObRRRRBxk+/J1H1qmҵz{v1ZnMsfvm޶-&]Mѩ޵ʊW //iϞ=v=3č33v̘KwJ1J1J1J1 غbR R -^Ά&]'k[ǎݍ\o;w;=wƞ=ם;wF۷nZ7=e)))))))))_m_S/ډ6%.wt{+)))۳k^͟/N)q?ٳ`av ;];gyUxuܯ?<Ӟ<췼{[<'~$~³OϚWgC~g}u!<4iŧ= ~PW|7ݼ_SΞsO~+]w_̲v/~O=Uwfwn[6wq`ko{yM/m;ou77\쫳}JtmrIgO2,/m|we3XR R R R R R rޙ&]+ `\Wp~q]R]TW*UiϮuJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TWq]|#ڤJuUR]TW*UJ͸vؼsgNejnv(E( EQ(BQvZ׮-;CU.R]TWkJ]4.5{m۶V(E( EQ( 8~vԵ*UJuUWǟ|Ư=3. Uvܮ_AA&O3V&[Yqo3i6%+&MZm R R R R R R R R R R R R bhlټɕKFh3֬YcyU`r|ʟ<#><^xΗ^|Dyo<v#3iǮ5VCj@n.sٯM>y^_|WOQg^tfE7cx#y=/}o}/Cwo3׶|Z7=׻Ҧg_~w>ǻ,j,?[ϜWW~u@ 6<}:t4>R]x__ou@mɗ|o_w>_=;_mGUgz[y毿G,ُY1stg'v/| 7vO~ 6_{/z痿r/|MgNlǟ[L_~ӛ|e ˳_x+|mڙZgo7wg>O+;N969/?G 'ֿgjsGWXs1-~'?綞kޙ޹mK^xO]Ɓ%]7o;\†pѳzg1+]ҵ'=uʤbbbbbbbbbbtW~6^M}3\ceJ1H1H1H1H1H1e{gvtq]3suJuUR]TW=vו*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]TW*UJuUR]u:k*UJuUR]TW*5ډcΝ9*zoYӊP(E( EQ(ڵk]hUJuUJ}{_YXuC[_{>)_xk#ضmiEQ(BQP(LOOpG?oNM]R]TWqUx+xgO>`\n߼atmr1=ceI1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1e&/]c4cM34c!4^Cfg=lvfg=lv>fiƚfiƚfl\S^$ Eo_'iƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚfiƚf,-Ƥk<Ϻ7͚ٵ{۶t6EN7sk5Xӌ5Xӌ5Xhi4Xӌ5Xӌ5Xӌ5Xӌ5Xӌ5Xӌue+\[ oI)i7n\;~'/O~#?鏼sz?q.]0ךf,47[7=e)))))))))_m_S/ډ6%.wt{+)))۳kūm|{Mfiƚfiڱc>|a6;{a6;{Ç\vMk18}꤭7iZ6E{fv9q6%M34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34cM34LOOS]NURI%xv'c;6ml؀^l6 &1Hb $zux$:Q׉NuuD]':Q׉Nu"xm[1?PO6Qc9}}uH%7o@uD]':!RS׉NuuD]':Q׉Nu¹g8/utM22ufF]'DjN<'n{7:صKΝ;M넙RmƤT0LST0LS$ia~$#?ݯnc* `* ]SZE/K `* ]Sn-H`ueS5._)VWW0z]ı#,56{_l̘gݟ>gώmݮ8Y ĺ ;6?.(nTBxo=SlCCXʗ\~>SKˌ ?ݭ83Á /į6sq~0ƇxT*>1f7XGr*࣯r2kwgW%a^> l~I^rnlv/|po~o>Ϟ /{Ϗ^|w# ?~V,_?qϚ{` µ ~a'c ^{1p >|OڜVPVzkWYld|Fa2F#1xbgvIg:uϚu. )xn-d|lT0z]c$gY]a* `* `* `* `* `* `*߻kWgI)R$HJN * * HMJ")ERmcULSyv}U!HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJU}8*5+.GbGc+NLg#<^)ϝ!5RI)R$HJ")ERI)R$HJ")ERI)gGcׯa* sfJJ")E:enܘgaayYXgaa7X\AUI)RN7FYT0LST0LSTp*?(;02uW0LST0LWg/sqn`* ԉf6`* `* `* `* `* `* `* s%fJJ")ERQTUAUPTUAUPTNI)R$Hsg޻:FtMigLbI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)R$HJ")ERI)⫒۶rc~SN-l8s$[?tM:1KnX)ERI)R$HJ")ERI)R$HJ")ERԜ=3Ɂ{SkJהl΢*I)gq& ,,̳0< ܸ1͛7uk)ERQGۇ11LST0LST0lu_}6_ycsۘ `* BהV˒)`* Bה[79*X]YTug8;yL^8q sr 1sw}8ǖ_?ëYBy}/\T``ӿ7Ԟ fG?z9籷"CLo'éYǿ~>~~?Wy1}n/kxi6$l9LGIFWwL!=:5p7W?aa^G y}[[_?|FvG >#o2V;|=yVk^?yq^.yY}üCll/[>;ē<z)~wنXoF#Oze1>ˏ>''nwy/XZPcto36}p[l`xs,q7v vO3z]cf3ϱT0LST0LST0rW֏sʙJST0LSTXu1LS!@3 'O <1x()b an^̥yB]cdFFFFFFFFFFFFFFFFFFFFFFFFFF;H>r{83cGu<1xb'O I`* `* IdӮI2<ϳcG~_T0LST0_tM1LST0ZɑV Bk\8S`*ƉcGXklX0?';|~7LY?Gcz)?'?߿({@/g7d[ϣk} @ ~vͲy퓃 u?g{_yܰWě94ӫkǻN2Oh.#7_/dc<?|g^!|ijH}O e\y Bp[_-lΣ>Ł+ppf/=[Z^kLp箑mx;_s<g ^y1L/sӷw1uE>Fg=cQwlņlFn9}7wWxc,/o`$=5f1s+=LST0LST0LS*ye ]=Xˬt1LST0L+|^ST0R 4Q._@<1xbb %|;|ߒO4Qϟc8c8c8c8c8c8c8c8c8c8c8c8c8Ʃ'~.L#F <1xb'O :ENWd911A9s9s8pα}v)1RJ)&r,TjRr!v4ry6YurL+"+"+"+"+*;lole5LSaa~_~JMW_|EW_|EW_|EW_|E  JYT0LST0LSTp*?(;02uW0LST0LWg/sqn`* ԉf6`* `* `* `* `* `* `* s%*5W_|EW_|EW_|EW_|EW_|EW8w4{PHה)I`* `* IdӮI2<ϳcG~_T0LST0_tM1LST0ZɑV Bk\8S`*ƉcGX0ͮNoCo^xup`OyOq.GGءk{g=]nɦc,˵ѿ࣏{vfUmuyןpǯo?af^egcqƗ-mz`^z׶OSWqb6l-nK|4Wf5pzƏ>b'_p2k. c/)|͕p/s=\YL[\6Kq(غu+FFAѠhh4h44 FFAѠhh4h44 FFAѠhh4h44 F[r CL#F <1xb'O :ENWd911A9s9s8pα}v84%go/729Aγky#wɗgM?y]8p`Fs9s8ph4K9s$Ǩc$O <1xR. YǷY%!ϭś՝; BkL4+=LST0LST0LST0LST0LST0LST0L}{" _uU_uU_uU_uU_uU_uU_uU_uU_uU_uU_u(;ܵ  ܱIDATCEURr!v4ry6Yu2u,#W|W|W|W|W|W|W|W|W|W:Kl߶0Lsb;|ܵYv4Qv1LST0LST0.\O<{x+/XwST0LSTqu2O `*Hhf `* `* `* `* `* `* 0?w]_W%Cř'޷:tM991q<K7q>B[>D1qf$[?tM:gNf/_"_uU_uU_uU_uU_uU_uU_uU_uU_uU*N/?9Lw\O_dWaKp,e藬Lb8/ڢ+uWمo'`Npmo<9p7O/73 t/ώ3{r;~[+ϲϯ1:y~+:2 fG/'8K6}tMr}{vsE/ $K/ $K/ $K/ $K/ *9wf}CX`*ZZd]L;:_|I%_|I%_|I%_|I%KLm3r`?UT0LST0LSTp*az6dXwST0LSTqu2O `*Hhf `* `* `* `* `* `* xw2},|I%_|I%_|I%_|I%_|I%_xslvNST9u80G%_|I%_|I%_|I%_|I%_|I%_|I%_|I%_|I%_|I%_|I%_|I%_|I%_|I%_|I%e̙ӧطg7K7ob*)MqNbg0?w)R'5ukK/ $K/ $K/ $K/ $K/yc|l[)b* 'O0vp s_|I%_|I%_|I%_|I%\zr$*5`* `* &_{-~9{'ǍW1LST0L)"Ǘ%]SLST0L)orU/pv+ qC[y5cn7.2}‹O>>oj 'w?{'_`$>|ʵCqӬ>{ ~ٛW:Ǯ?{㱟{ɋT2}wy{0 7anV:>kLݜc?9VELroq3uw>sOSW9o#||km;v}bÁ`rᥟS/&⩝\|.߸; | >6zlbf-C{<8<S1;Y_{.r|칐O4;[XuM#{N ~=ŇoɁK`7Nɛ}ڗؒM_@Yjjus̜?JST0LST0LSTe^Y?;CWx{5)g2+]LST0LS!"cT0L|˗.b O <1xbifu͍O۽??1P2wm"Сm8p9s9s8p9s9s8p9s9s8ضm.]j23uǎ1xb'O <1x9;y S_F9s8p9YXLj1"R#u$ňt.o)Xrz{{߶qhi48p9sF<Ϲta3Orh|:Fb'pϚu|5]RZ_ݹ`*I.LT0LST0LST0LST0LST0LST0LST0n1oA[VAUn[VAUn[VAUn[VAUn[VAU*;3OT09;ywqn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUn[VAUpU0r`?c,-Dusloler z]TUő-U4i ڭv*h ڭv*h ڭv*h ڭv*h S1L:E&Ob.5sڭv*h ڭv*h ڭv*h ڭv*hgST0LST0LSTX\Z}8tC'6zw0LST0LWg/sqn`* ԉf6`* `* `* `* `* `* `* u>uC8*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv =},]GT0n--26r>Ԥ*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭv*h ڭvP1ݻ8v<ԉ{޹;`]STj]cߞ!Q ڭv*h ڭv*h ڭv*h ڭv*h ڭ ga:*5xу=8CMڭv*h ڭv*h ڭv*h ڭvp}X^ZT0LST0LST0iO^'h$w%`* `*tMi9,b* `*tMx#ՕL^׸|qX]]Tuǎ0? }0  }>~>~~O0`0 ~O0`00   ~~`0`00   0  `00 0  AOߧ3``0`00`0`0 }> 0`3 }0  `?|`ߧ~Og00  A~ߧ?>00 ~`0 "|՞y(K6bC#7xwoƛ;gy+s7M{|՞3S9Օ`* `* P˼~wkSeVW `* BE>J`* )(/] @ <1xbF뚛Ƿ+'.]Ԟwmy+׮q(Сm8p9s9s8p9s9s8p9s9s8ضm.]j23uǎ1xb'O <1x9;y S_F9s8p9YXG "O <1x'O%*!pv4Gs0F9s8pᜣh9.LsIQH <1xb]YoݳfKB [7;w0L^ט:;řiVWz `* `* `* `* `* `* Jͅ;Jg4f3yF3hPcto36}p[l`xs,q7v vO3z]cf3ϱT0LST0LST0rW֏sʙJST0LSTXu1LS!@3 'O <1x() Յ<dHyok8t`۶m8p9s9s8p9s9s8p9s9s8ضm.]j23uǎ1xb'O <1x9;y S_F9s8p9YXG "O <1xb'O :EMfah9s9s4 <҅iΜ>ɡ1'O q۫+ ub* `* `* `* `* `* `* `* *5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5ZhP1LST0L*5`* ]SVz]Vz] `* *5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5*5ZhP1LST0LZ'TjLST0LST0LST0LST0LST0LST*r|Y5T0LSTrk&GZ++ q g'O'aa~_o6,bgl:.ؐ- ;[Y^ oMdg9fΟcu`* `* `*T2ᝡ+k3}uՕ.`* |Eb* Bf>KH1'O <1xb4QRLܯx/]"߾^>fz*GZ'O`׮] 144CCC 144CCC 144CCC 144CCC 144CCC 144CCC k.^JdfǏ5b'O <1xb)rv";8̉ 9s8p9s۷0O|E <1xb'O LIpD$ {O9߻/8|VEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪh*…+/!'wAl63f3l63s/_q28(㠌28(㠌2vO>'=CY.fbn[.斋bn[.斋bn[.斋bn[.斋ϙS-UѪhޮsgO{-3r1\-sr1\-sr1\-sr1sbGqyuoO*ZVEzZYO+ie=VzZYO+ie=V9e~*hU*ZVv ǎn_EU8wN>k-Z5‰|uo^?;=uqܺꇏ]\C{.]}=|U8N$ZVEUѪhU*ZqM_᣾}UߺO|w+޴^VEUѪhUjnڴVUѪhnz̹QeqPAe|ěWz׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^q׮^浫Μzc4BeqPAeqPA{ 'u ?Ǐ;xlf6fflf6f˗/z8PAeqPAeqPA{ŋ'sؓ~!4f3l63f3W<38ieqPA}7wm_v+o8w~[*Z5/t+דhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU{Μ~뵋Mz&i&i&i&i&i&i&i&i^O_{G=quѪh8pt#[z=Y'i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i&i^OZ^8DʉO?[UV]zcw0©_t'ѪhU*ZVEUѪhՍoC}}[^J*ZVEUp֦VEvcΝ=m8(㠌28(ؓO8c6momڴi{k֦M[6momڴi{k֦M[6momڴi{k֦M[6momڴi{k֦M[6momڴi{k֦'6~i8(㠌28(㠌28-^8ӯlnx8~f3l63f3l63]|c28(㠌28(㠌28-^<Ǟ9xlf6fflf69x𠭭-gOM{(㠌28V6[osj;]yGۢUѪi^~3^DUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEZݳ#Μ>-3nq=KhUr߽hxw{򨝧iuzZ9Q|OG#?h=9Qo6(et螥7._V|phU*ZV/_ذaccƆ 666lllذaccƆo[kΟ܉oEUѪ㏉VEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVEU|O:[DV{gO{0ܸwƯDvG??y=}I?.U4uo> udkS<Ķ>w-=#ZV9w߱accƆ 666lllذaccƆ ~w~3gYEst{pU4ѪhU*ZZEsݶ^VMp)/|ZjZOsݷz[O ٷ~=7ٟκ~}Kۥ?/Ӿ-\xz%ZVEUѪqa{kzZVEUetd1Ξ[FeqPAeqP*UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUiRvqPAeqPAeq[pY_y8#9qfflf6fflf>|nj eqPAeqPAeq[x9Ǐ=rAl63f3l6sA[[[Ξ~=ÛJQAeq;_wm~}jw\ÛzEU*IgNb=VEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVr 2SfL)3e̔2SfL)3e̔2SfL͛Y.~hU˗{.3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e&xg=rX{ʱ'Ӊlm>⑇VVѼl̔2SfL)3e̔2SfL)3e̔2͛K]V][fL)3e̔2SfL)3e̔2Sf֪]UѪhzZ_accƆ nr/ 666lll-p9ϝZ*Z{`oXEfk1Ξ)3e̔2SfL)3e̔2SfLS<'EV9w߱accƆ nr[nƆ 666lllgϜf-VDUѪhUj͵+o8vtz-Z5¹3pYkѪiN<}K?|p-?_~m;7;v@w旇:n=`I;V%_/:sqt3o]?7z]8] Ww^%[=s.6xu#~~yfGx,yV}v _?>˿_%MmMëtǷ/˾](oVW|n_=֦_y8?p֝O^wk~%:炯o}o?'OaZS/K/_OUѪhU*ZVEUѪ>ۇ^.wrMhU*ZVEMi%ZVёǜ;{nqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPA{ 'u ?Ǐ;xlf6fflf6f˗/z8PAeqPAeqPA{ŋ'sؓ~!4f3l63f3W<38ieqPA}7wm_v+o8w~[*Z5/t+דhU*ZVEUѪhU*ZVEUѪhU*ZVEUѪhU{>W2SfL)3e̔2SfL)3e̔2SfL)3ݼy=w-vhU˗g.3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e&xgsG?_G>gN8Ύ;;Nxh*[׭VEUѪh*kWpZjZsgNyעU*x˗^ ~?l7・aw$W{7}؟vn?|O-5%Z70w:?/:kV햢ʯ_?3oep e/s3ɛZOie n E#E=; %w>wd^ƥS^8shZ56oeת7n -۳Ǿz U-nž {Xn{^qG__<%nc?sߟ=l{1?~//7UZ'wޚo;VѴkFGxy/޽~[>OJ3~ϟ|ٕ+/gn>F~]aPLz'w<}a>~3ϻ\ro'ÿ3?9]ޣ#߾i8?S=0OOa[{wm6kpǡ||ox3m?<w_ͻ{)LpzEI*ZVEUѪhU*ZuG}ЫuEW.iVEUѪh8ܰi=DUѪ2:sgO-28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(㠌28(`oxNqGrq4f3l63f3|>w%[8(㠌28(㠌28(`oxs{?flf6ffl={7핢28(`wZn8v 7oVEUxΜzzVEUѪhU*ZVEUѪhU*ZVEUѪhU*Zjuσʕ7@fL)3e̔2SfL)3e̔2SfL)3e7o箅.VqC,e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e='liuzZ9m=G~zZYE >rd̔2SfL)3e̔2SfL)3e̔ns^(Z|u{̔2Sf̔2SfLIVf]UѪhUjZVzZy}~[noo{VzZYO+*DV.?;_VEUuoבVEUѪhU*ZVEUѪhU*ZVEUѪhU*ZVE.v2SfL)3e̔2SfL)3e̔2SfL)3k/xb*#[;}L)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfL)3e̔2SfLwu_]z]jown{k=?KfMu螥 2SfL)3e̔2SfL)3e̔2U?xb*ǜ;{d̔ 3e̔2Sf:_uO*ZVVzZyks~[kie=VUѪU4G ׯ[EVEUѪU4׮mhմ ΜgEU81//ms G~MwA\ _/+V@^LJk{~Wm>?{~?ꇏ'~wo?߿{_|>_~7>[}'U>{#W>m/|^|͛/||?ٹ]Ӈ|3_u w%[8(㠌28(㠌28(`oxs{?flf6ffl={7핢28(`wZn8v 7oVEUxΜzzVEUѪhU*ZVEUѪhU*ZVEUѪhU*Zjuσʕ7@.{e&ewٻs] ]8/Zz%Yewٻ].{ewٻ].{ewٻ].{ewٻ].{ewٻ].{ewٻ].{ewٻ].{egđ-YO+Ǟ|/<{⸭ZO+h^zyG].{ewٻ].{Lٻ].{޽{^]zhUw=2S.{wM_k]xޅyoyo%3ewٻ]fju]MѪhU*ZVEUѪ'r-~ۋ/{XEN:wٻ].{ewٻ].{ewٻ].{ewٻ].{ewٻ].{ewٻ].{ewٻ].{ewٻwy]~uuѪ~rM?_.U4uoס{7Ȕewٻ].{ewٻ].{WyhVlm>3 {{\w.\|Յt5͛7ewٻ]>KO{UѪhU*ZVEU*|/´ ѪhU*ZVEV2\nM*ZVEV\cGעU*;s 'V\:G1/?^3^y?>rGOpc=mo][??Ý|k?wa_Gp4osЙן?՗:/ďG~5%q_k~9=nz鍷qs#O|N^_u&_'=pq'|#OG_Sg߰wy?Nc?<ח}'=>;oT'__~ {|}??Sĭȩ_)<o]Q=;/`KM;ﻟܯ 3ܿ?g]]XٻLdLfu{g~~+^Woio^?;=uțqy?Syԗ~o,}=|U8N$ZVEUѪhU*ZqM_᣾}UߺO|w+޴^VEUѪhUjnڴVUѪhnz̹QeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeqPAeq[pY_y8#9qfflf6fflf>|nj eqPAeqPAeq[x9Ǐ=rAl63f3l6sA[[[Ξ~=ÛJQAeq;_wm~}jw\ÛzEU*IgNb=VEUͪUѪhUj*U4hVVEUѪhU*ZVEUѪV} =t}Jf͑ǝ>u ޽;KV~momzg?u׬{ݳ4ܸ!3﫵y޻޻޻;89?xb*ǜ;{e_u+.vλy. .v޻ᆱ>KO{UѪhU*ZVEU*|>?SvEUѪhU*ZZEst{pU4ѪhU*ZZEsݶ^VMp)/|ZjZOs'>COЗ~}nzC__͟|ڿ|Sn~u7 o*NZӷ|oG_{q'6?׆+~wOȗ52q6^}?OOo?/| O7!|]>_a; d꽻y=%s՝_M= uCo|{ү<۸'vW^8cQw!o/z~g.O~|waݑ.<7>w.nի97˳wGK0 u·79ɽ:Yw[v"ۉe'Vq|9F}+ Šn2AߵR R R fN;ovSSSʲT,e,KeY2==M54u+M]+g~wљl]vMֹ Šk#;qQI1hΞvEYm fo]v)gNr)gϞ53sI5;' ŠMQ sn\K_*jSbbÜիVrx,_oo011abbĄ &&&LLL<88˗:gx%q6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gq6gqi1moX6w޸kWVزyx-.;sUVYtiiҥKKeYz}_4ű88;^ZV9NAř Vxl<]v{ à[1͙ܪo9'Ycq6gXsSn޸. ŠMQߵ0?mwӡ̏z}V6%gϜo.^AAAyz))))m fo]s-!)mS߸]V=+( ŠMQSW^K[71H1H1H19ΪZ\88[XX7011abbĄ &&&LLL֭q6gqΞfJsMMQ?vxxxxxxxxxxxxxxxxxxxxxxxxxxxxxݾ`)f.H1=Lop`/< ) sVMcq6gcz,]ZZtiiҲet}Yu9l< N>iUfmMoX`<ڵ]3[_ih.6[^ʕˎ8ٓ88iǛ[0' Škk]k~>mo{|3wkumbbbbЦhi͛)v[MN8F^A&YD_˿j"]} W~_8j`Ѱi}\<|_5vlOCxc?{>uO.xx;O=_{y,&[~e|'>~ǿ>9w_~飾웺E<[{@i>x}Gl_|?"rޝ=o{9zhv;WǜLK_~zkvqY{'}?^wc[Vxۿ;~׎f~z7uc;x_rtr_?^xޕڟ|}xу+[} }k.[vփ >Ȕg7_wzڥ1;>tJhOß{>eD:>S|uuWݟQO>tN4{},]X7KnNewWsi0k;ܾWyo,o~ߴ噯 X\pI{wu6}3[-ܸ~ͨKZO_;m7=_M_ W`E;Ӿ>ӫuI&ǎr!bbbbbbbbbbpu|Vs|ѳ׍VAAAAAA]ݲezk6:ylSkJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ4u+M]ilSmjslSkJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ6#ꖍ{NSSSʲT,e,KeY*ҥK]8czuuKSWvke}/Q?_2[ph} =vmf5e,KeY*RYʲ455ezzGط6kM]iJSW2[W\ }ƻ3Wٺre6s{aAAA&GwQӦ:Ͼ!?~[sNm|{OɻO~;)T)mj7zG|ꫯy6E)1Yj+/Y\\sss/ EQ(BQP(E( >AYYY0Ο=# +^yIYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYݳ0Z۷a iz:]Zm<`˦isk-ط =cymܬ֭㱜xlou]w뮻u].wuxrsڳgݻvٹ-GbbbbЦhi͛)v[MN8F^A& WgѫjQ~Hm``IDAT/ܜgxd/k,N[9{qjsϗ<6_F?.xxm;-O=_{y,&[~e|)}r!K^ه~̍~oџė>nqx6cÂrM9a +;_𱿻/6Ѝ:O<^|xCv=Csp3gX/yڻW>?peg/KݜKκ6;23gy߶ /t7ngc,\̗'7cēx>_yr"=+?s?v*.Z 3cV|\X{|]<|'y?MZw~ǜJc@k/џ=T=~o_=)C;nYO{kk~9fmܩ|s.#~|w"ݹ C׎ Ņڶ=}Ы/s1>䗛ezׯuS+vk'=6]+~ﯺ{xdizMkcG9vQI1H1H1H1H1H1H1H1H1H1uc+N{t9?>F}+ Šn2AߵR R R fNCN:fM]iJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ4u+M]iJSWfuuuؽs)eY*RYʲT,eiҥ.^ez+-z#_rV=쭋{?3ص}kטR,e,KeY*Ԕi'u`ol`i4u+M]il]9s5x_\ fʵ+mڰ))]9߉cG^ZOU{Oٻ1'6sBsyr}ͮm bq_Ko߮,KS/mjmbzJ/_8sss/ EQ(BQP(E( >AYYYٝ;w|gH1H1|qƊW^sssssssssssssssssssssssssssssssssssssssssssssssssssssssssss{i1moX6w޸kWVزiw_ ǭZҦMl޼͛l޼͛l4G?_333ԩSܹ#Ν^ZV9NAř Vuի6)ްDZ(l<ƴjnvWg\>ęxs۳wom3g9g9gc6;*9)))))m^xyGowP(z)J1H1H1hSu˴MmR R R R R ]r[^A&Nsp^Q/Škomwqq{3_=~ c_ڡ={ox;_q=u,ܙ鯹ƣ??#WZ]}3?c<N^}~q?}o޼aݏ~ѫOX?藟rq'tWe>7}G]|Ł'[?7;g>tWo7||?~ǧUPW6Kӎ\g[7?O>?|W>o>Ʋ|Ǿ%||}3o/sqs>'?>j ?|s#9><ȣ~w3'o>~zSxG1@<{1X>[xGqןw6rc͏>`Y~cW<#>?q1k[~7"aѕ7'^v>3~3s+}xȍ?񢫷pяϸ4B}҆5띮1Va1ɷ6ZQ}죟O{W>Q? ܎v3s.mwǾO>WzԊmnvўeyoM93{lkF]Ԋ~IoM<񊟭.ޫ|3Y~ڷ^>'wzu~.ؑC>dwR R R R R R R R R R nݼ៯؊]yO;zQJ1H1H1H1H1H1[Low٦yzS'mjM]iJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ6Kg]ƓOʏ~C??Oڎou󆦮4u+M]iJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ4uenqp^ǏQWl|};wR,e,KeY*RY.][׫[ԕnm*>{[{__| /K_S'O$9Wt%< 0^z%P(E( EQ(BQ&''}#1ܹ#< 0Ν^^g\8c+/yAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaAyaA,ڻ{76OaNߵo{òݽu^_Zߵ>xMǏ}6%8888880 ;c^ZV9NAř Vq0X]9omR]~3lf*{t!^fk\d<09|ץ]>x&''E( EQ(sg]+ ŠM3۽bbbfm޸^AAnW޿~񂙹n~eҼ\ Wb߾}n޼ٳvGbb0sU+^1gyaA#{,YDQP(E( EQ( ׃< 0`qq֬Zii)jSyzǎ(< 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < 0 < -/\ `nO2}{3f.צ(ZKnݼi<Ǿ-6",.sQ[\r??3πű'OZzF6E;y80 _w 7n]sEG6oN93VY)< 0`ю7V)I1H1H1H1H1H1hSy;ߩ( EQ(BQw=MQAAAA[U7ojSbbbbbЦڕ˶obR 69u☃z)]~k3z̺grhF?@6wח?-yy]^ʡ7^SOy~Z.ʋc}u/{OzkFcΙ]z{ezN;.zYiEO})m;kB̮^x^xy=2ia։==}w [ܧZXNhOyZik6zrOmfM *zuzm=?ܞe~iK_{ùz6r%վ}S֥.aE'| /F^dvtzz/>󴥯m֮v:c. 3ܼŔe֭N^]:ˎgc,.tlq_~˞=] 罱5;nϝi\n ܼvV-]j玼e1\:ӎgcnӺ B}҆5띮1Va1ɷ6ZQf߱WlrF7׮spfNuMK_xƯzғ_IS+6ZoZ_4#[7qQ7>g]}pn~Q!%))/]O}ϻvǏ{}ӟ^}׊aU+]t8g00 MLL(BQP(E( EQ|ĝw `0۷|gH1H1|qƊW^2 00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `0X\\g.olÜkmeS/ػ{뼾vk):|--..-[ݲK0 a0 `0A0OտW6 ^ZV9NAř VoOx߿?'nDG_xwrU/^{n| _W)J19Ϊ91 a `4ygɒ%P(E( EQ(BQ&''_ `0Μ>mͪF6E7:~EÝ0 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 -/\ `nO2}{3f.צ(ZKnݼ)lqq{+h00 a0 `ys6s/cNv*s6Em6mXNj;vu7n]uyolՕ/{c6qI7n^b+ܾc0X\\mvU sR R R R R R )z;( {|;=s)J1H1H1H1hSu˴MmR R R R R ]r[^A&Nsp^Q/ŠkomwqŅ^ރ[yh kCߴzWOO[7qQxܹ۶W^~Y󣑾^Xp{a^Xp{apׯ?3?GuUm-_:e9))g.XK'۴ejl:m:uҺk6xmJgΜ6?ȭ7-+_tu))))}ךGQ¼ ?( EQx\vy7?]+ŠM3۽bbbfm޸^AAA۶Fq?{|/iZ]:/ԉ¨U~aׯo>wqF7?bb0s‚QQ,Y( EQ(BQP(Earr5k wQy'fJsMMQ=|۷ިިިިިިިިިިިިިިިިިިިިިިިިިިިިި)Y6K3֞}I[78o{̅Y+^ykW͏Fn/,x]2;;ka~^׶^Xp{a^Xp{a۷j'0ܹcaaG]lMQM;~ F}oa~ފU~3g}5[N[aڱMs ^*]gF}‚molmRbbbЦh~ԛGe-Y+) # #7?)J1hSu˴MmR R R R R ]r[^A&Nsp^Q/ŠkomwqWe?>~OV87`7_3꒧VNz~MOm才Wl%_u^=/Ӿ>ӫuI&ǎr!bbbbbbbbbbpu|Vs|ѳ׍VAAAAAA]ݲezk6:ylSkJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ7oř ܬ4u+M]ilSK1xcf=3OmjM]iJSWԕ4u+M]iJSWԕ4u+M]iJSWԕ4uenqp^ǏQWl|};wR,e,KeY*RY.][6ʅN;ԙsN۟?~WWYiO9uk~}~ wlvSSSʲT,e,KeY2==M54u+M]+g~wљl]vMֹ Šk#;qhv?|[/uW[z;2wv}H6))an+/ӟzʊ+<3>z?WݺMQ sVZiyHuw;o+LLL(BQP(E( EQt=Vuw)yii3R R ._KˍF#}Nuw]:}Nuw]:}Nuw]:}Nuw]:}Nuw]:}Nuw]:}Nuw]:};{c&1moX6w޸kWVشq F}իV\S255e;rÇ;|Ç9|Çys6'=_iSw唙\`+/mk~4r׉mҚ}}py^[uV|ũS'^usuݼq]AAAm۶z唲RS-[(ȲK唲RS^|wԵIgNٷ{Q/ ڼqq?{|/iZmշQAw wtqշsg}k_o|˽˾{ڹSA̅sVH߶w넹9}{,YDQP(E( EQ(5W:}hıc֬Zii)jSyz#Yw]:}Nuw]:}Nuw]:}Nuw]:}Nuw]:}Nuw]:}Nuw]:}Nuw,zѥ R fk>-ط =cymܬ+F}:{ڵݳs=gϞ=>:C>-[f9~Qߛ;rի6)ڴqcGXwQ{nܼБ.{њl^vxӁCܼuӋ w,ۺeonœ6E7_|2e9,唲,}311}}e,唲RS/[k)ںeZu6E)))))m]l-F}/ŠkS'9Ѩbе8s"h<Ƌ`7_3꒧VNz~MOm才Wl%_u^=/Ӿ>ӫuI&ǎr!bbbbbbbbbbpu|Vs|ѳ׍VAAAAAA]ݲezk6:ylSkJSWԕ4u+Mmi6fslcn17ۘm6fM-ZoMN?niJSWԕKg7l|}{6fslcn17ۘm6fs٦ԕ4u+M]iJSWԕ4u+s:~􈺺ek޹Ԕ,e,KeY*RYʲtR/2^]2ny>~wW~n-sMmlkm֮]cjjJYʲT,e,KSSS<~ԁ}{iԕ4u+uwo/:s5+׮\i:tmr~'5{}jO>^užW~vl|Im)q_>O>?$ 9Wty}iSҦMySSS&~E( EQ(BQP(LNN{)iSҦMISΟ;# \ڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iMbwްl{w4q׮w6Ei ڔtmkڔ?[d%KXd%KXd%K_W뺶զ$`y9e9))g.XKF}Mɨ>|uk[}54sׯYګN9W;q⸾)k,+_tu)))/}&''MNN499iɒ%wxnɒ%&''MNN499mo{}G6%gϜo.^AAAyz))))%~`f37^+YB):p`~>?_~믯f\8g+/6%mJڔ)ǒ%KE( EQ(BQP(LNNZk)iSҦ:ǏfJsMMQ>thMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI6%mJڔ)iSҦMI07g .\b07[{'m=^x3kSfx%W\w6%}Yw WdK,dK,d{_N׶ڔÇ]lMQM;zhMIuk.^`UvcǏ[u?s?I6%uf;&9))mN8|I&''MNNTw099irrIw:y⸮Mm2yS6E׮\}bеɩܿhK1d[]Lop5.yj?}Ԧkx]U|s,?[/;iQtmr!2;))))))))))n^yli<ǧ={ݨo-[7VAAlS<ީ64u+M]iJSWsg۷n}۷n}۷n}۷n}۷ne=_x׻;ovSSSʲT,e,KeY2==M54u+M]+g~wљl]vMֹ Šk#;qQiST'o+~c6EM#nݼk^҅tm+((h~4/}EQ(BQP(E( 1)F)F)F)F1˗N9gr]I1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1J1[ߴu&1moX6w޸kWVÇشqHQQQ =z!=zC=䡇cټi[7oRbb,+_4s3x%}I1ցzwܪnxkv׬ꊗm2Vy'iSbԦիMR R R cGjSbbԵ#YzF6E6wa}K1s?ڵb=[ |šCxM/L=뼱yonœeve]ve]ve]ve]ve]ve]ve6E[LnԦ( ŠMѵ+mߺŨtmr15R 6vg.-ܸ~ͨKZO_;m7='6^u|{o|#OgE-Y-Y-Y-Y-ٲkW>fksS-Ʋ9NlcYaG{}fkzx=f{ͯvg]g.SE>·zfI[Ʋ:wsl1w~e\%%%%%%aamu͍ZZZ.EWwpu]R R R R R R \syer黤K.黤K.黤ީW_''nC.Rbbbpww_O=KQ%}]wI%}]wI%}İp^=~L;)))))))))}:ygψaa;;zʊi4MiMhF4m6n1,]r Gs+++4i4MiMXYYgzѧ$ Š4{w~i`v}{vy dd̩8wZZZZejjjjjjjjjjjjjjjjjjjjJܳ._"r[СCo瞻sns{={v=ww׿侗^{u]DbtZZo=j^{得^{得^{得^{得^{得^{得^{得^{得^{得^{得^{得^{得^{得^{得^CܿOɽ͍Çx|1Ǐww`sciYNjun^{得^{得^{得^{得^{]_.%%x',kR {Ɓ8f~k[;ߎ/޽xm得޵W=24o%%%%%%%%%%%%%%%%%%%%%['쭭Mddd߻[-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-ٲ˒ՒՒՒՒՒՒՒՒՒՒՒՒՒՒ\'-Uwr}/ws{={v=w瞻snη1得^-řNܳ,kսN}/r}/r}/r}/r}/r}/r}/r}/r}/r}/r}/r}/r}/r}/r}/mǼ9Gyxce-rr}/r}/r}/r}/r߫8}U;_xN%Z,kongNU{%g/_p׬o~k{7}ct{Z[uCjՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒ-kqpmU-kQKVKVKVKVKUTK.qΩmmm%XV~d|^ڨ~}ϟ784^]osW~Ժ=qѽO󡣞wFΝ9kmmn%%%%%%%%%%[̯]~<{~6jjjjjjbXX[cscK.]{wIa.Ew|Ϳ7>6|Iw'GRbbbbbbbbbbХ ^>rزV)))))))))}:ygψaa;;zʊi4MiMhF4m6n1,]r Gs+++4i4MiMXYYgzѧ$ Š4{w~i`v}{vy dd̩8wZZZZZZZZZZZZZZZZZZZZZZZZZ{/<˗뺤뒮K.ɹ\Ve\Ve\Ve\Ve\VeUkuI%]t]uIJЕ˗ԒՒ]}s'WkuI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%]t]uI%d/:}Jmn,>t+9~սKZvU{v[n,u]uI%]t]uI%]t]uI%]t]uI%]t]uI%1 GՒՒMW<j-.NNyqN;v`v<V_B%]}ՉWuddddddddda17og̼Y[ZԒՒՒՒՒՒ-kui^֦ZZZwݭl|O?֪뒮K.麤ZZ.Z.Z.Z.Z.{]t]uI%9^;}ʎէdYe-uՓj-.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.麤뒮K.$mǼ9Gyxce-r|s"^%]t]uI%]t]uI%]t]uI%]t]uI%]䒝z/麤ltHͽZZZZZZZZKuvfδg-kQKVKVKVKVKVKUa>E-Y-Y-Y-Y-ٲkW>fksS-Ʋ9NlcYaG{}fkzx=f{ͯvg]g.SE>·zfI[Ʋ:wsl1w~e\%%%%%%aamu͍ZZZ.EWwpu]R R R R R R ݭKQAAAAAAAAAAAAWO|m~ ׮) ,R bX3>>^RbbbbbbbbbbХ/9lcY]rq=#/pQ+++4i4MiMhƶmL&ckŰbbbbbbbbbbw'=|Ν;hF44i4MceeWطG.}w֧Yٵ7ԒՒm,3NzY[jjjjjjjjjjjjjjjjjjjjjjjjjJܳ.}KQ.E]u)RԥKQ.E]u)RԥKQ.E]< ]|I-Y-7Ǟ~qd]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]{Srosc_ycGŝ/XZӯZݳ˲V]u)RԥKQ.E]u)RԥKQ.E]u)anjGՒՒMW<jɺu)RN)Y-Y-Y-Y-Y-Y-Yɽt)Rԥ뒫WudddddddddyAͯ=_>ZZZZZZe._pTKVKVKՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒ\'Rt)RԥKQ.E]u)RԥKQ.E]u)RԥKQw^;=OɲZ_ԫ'Ւu)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)RԥKQ.E]u)Rsۆo%Gǫ'^~k|edYw?7'}t)RԥKQ.E]u)RԥKQ.E]u)RΩ'|9},kžvR.E].)WKVKVKVKVKVKVKs.E]ۿבWKVKVKVKVKVKVKVKd~~e7zK-Y-Y-Y-Y-Y-ٲVܲdddddZ̮]uMd:y֦ZeuMW[ykciwޱ;"v6z-pSO'-{{S.K6,7-y[K]\X,lx[{{KUཷ7wofw޻[y-[ozV"$uP(R.޹ p;omغ&|rwonQBG{}fkzx=f{ͯvg]g.SE>·zfI[Ʋ:wsl1w~e\%%%%%%aamu͍ZZZ.EWwpu]R R R R R R ݭKQAAAAAAAAAAAAAkWtyWߜa!  ]]BAAAAAAAAAAAA|䰍ebbbbbbbbbwɩǽ~ñGhF44i4Mi۶m3BAAAAAAAAAA%Op!;wiMhF44ο~֫'^q`}JR R R R O~?xwXf] f׮ڷgoPKVKΜ:sgmmn%%%%%%%%%%%%%%%%%%%%%%%%%+s]Zo\cO?{).>y)tuҎէdYe-uJ,m9Gyxce-rޜu)J1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1H1Փ|9},kžvU9wR R R R R R R R R R R R R R R R r_Kܫ%%%%%%%%}瞱^?/p`mw޾lYk|nYZZZZZe-f׮:|pZeusNox٣[7?/~wr zׅ=/D|l\=柾:pkgps޺ɱg|˟q?䶏|Ow\~w>^|=-^>˿x[> }c'ntϾiyGyCsy`5=wŏOԺ;:}'mmTܙνvZZZZZZZZZZ/ɳ}^nks,=67jjjɺ_u)J1H1H1H1H1H1ؿw.E))))))))))))))].RbbbbbХ.E)))))))))))))]._6UAAAAAAAAA%N3bXǎiMhF44il۶d2[ ))))))))))}>yÇܹʊi4MiMhF4VVV:YxŁ}{)I1H1H1H1b>w}a}u1]jߞ]޾qC-Y-Ʋ:s7ΝގuR ba.ba.ba.ba.ba.b[̯۶+/%%SOlӥ V s10\ s10\ s10\ s10\ s10\ s10\ s10\ s10\ s10\ s10\ s10\ s10\ s10\ s10\ s] }Jmn,>t+9~սKZv=v}C+ba.ba.ba.ba.̶xtY-Y-d|O>KQ ba.ba.ba.ba.˶%Z,koǏ(ba.ba.ba.ba.ba.ba.ba.ba.ba.ba.ba.ba.ba.ba.Sco%Gǫ'^12E;۟~ҕ˗\ s10\ s10\ s10\ s10\ s] N?f dYZ}{w{q}0\ s10\ s10\ s10\ s1u)طw#/Rs,n\^w`^7ԒՒՒՒՒՒ-kqpmU-kQKVKVKVKVKUTK.qΩmmm%XV~d|ؼ_q_~`Uyr]O6޻nH^;=wdm(ޖ'/>?|Z-^|1?.nO?mޘzv^e?ͳk.ŷxzK~?u8ȡUۛ<߰Ǟ`k<tzy+η~7s~+>`|Fhx뿻kh7^^;Wߵ'+=쎏' 9:K'>'nyK;w95M=տoٯ_s_6zmO|߰bk{g6q =o恽jכ~?~<{O\tS|gQm,sgN;i[jjjjjjjjjjn'^:{麭ͥZZZZZZVX%%%Ru _ץ( `ݺt]N.E/xa* ŠS'{1,}qcGZYY4i4MiMhF4mf2[[-KNͺ̮]o.o߸lcY9uPKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVro?vb~]X¢hE+,Za VX¢hE+,Za VX¢hEk|岧ftc;j]^͍e-^?w֎5^hE+,Za VX¢hE+,Za VX¢hE蒧f2+OW?s_Ǐg'^6ֻڋWOC_şk|ɟ~;>xbQ= ߸0>w|׾ }~ϗW#o}mgO^>?z%vex\6|Kϗ>I}e7uM^}#?|cGW|__w}g׻wǾ?]f7pë+w>s\-w^oY;sw~m /O*xq}/|rٿ~?OGؗ'>EEï~W>G\.uc7+?_g<5ǟ}'[}mw-ozi.xz#yVGޘw>3oڻ^GyCsy`5=wŏOԺ;:}'mmTܙνvZZZZZZZZZZ/ɳ}^nks,=67jjjɺ_u)J1H1H1H1H1H1ؿw.E))))))))))))))))))]l;_W>)))))))))))))))]._6UAAAAAAAAA%N3bXǎiMhF44il۶d2[ ))))))))))}>yÇܹʊi4MiMhF4VVV:YxŁ}{)I1H1H1H1b>w}a}u1]jߞ]޾qC-Y-Ʋ:s7Νܙ3yqO4rd<2L#d<2L#d<2L#d<2L#d<2L#{q _5>SKVKھU/x&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G\Þ.^Prosc{zoon˪lv_xށFM#d<2L#d<2L#d<2L#d<2L#/\g~ZZXؿ׮/~d<2L#d<2L#d<2L#d<2L#;٧rQ)ddddddddd{]x oݣ\%%%%%%['쭭Mddd߻[-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-YXۻw~d<2L#d<2L#d<2L#d<2L#d<2L#+zO?gSKVKvE۟~+ǎ_l2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&xd2G&x7xY/\h[d}l[سkYyQoNƖ(کW=μved<2L#d<2L#d<2L#d<2L#+4mxk#8Oʤ=_~_~NY[poʅ ݆6Fu~[on^<凟GO~nMή_kW6ّ|kDžέ[7\x>o8|鼇a)x7xwd㖭/߮y_m$y1+71784}^&཭ f݆Mem>gq_)e?>gs}>#gҵK[7<}\p=?v~V'_}+\y!_U7쐯1:c/3*?t㮿å=_S-pkMOe߼)6MNox'}ȱniO< _'c_ڷn=3[ۏ7k~M?{?sZ'.uw>t3Nڨ6չ3{ dddddddddduwݿO_g/WtR-Y-Y-Y-Y-Y-Y k{ln,ՒՒՒu)ڿۅRbbbbbbn]R R R R R R R R R R R R R R R R R 7.E/xa* ŠS'{1,}qcGZYY4i4MiMhF4mf2[[-KNͺ̮]o.o߸lcY9uPKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVK֥S<Ӷ @3hp4Áf8 @3hp4Áf8 @36xm^:䊒{ddd5yr[4Áf8 @3hp4Áf8 @3hp4Áf8 @3hp4Áf8 @3hp4Áf8 @3hp4Áf8 @3hp4Áf8 @3hpfh?wVZe-Ov<7'cZԒܻ2lu. 5Áf8 @3hp4Áf8 @3hpl<ȡ](WKVrܙӞضY8vKjjR ^=q @3hp4Áf8 @3hp4Áf8 _ܳΜ>%ZZZK8w֎瞵m8 @3hp4Áf8 @3hp< yqoOQ-Y-Y-Y-Y-Y-Y-Y-Y-Y;/<;]nm^7ԒՒՒՒՒՒ-kqpmU-kQKVKVKVKVKUTK.qΩmmm%XV~d|ؼ;>=~ʧyA7M>cma}>WypWþO?>çLr_b=h gpZͷ| ?n{?K=OoYe|Ӿ=t/;|On ][׮l;ή|?M5߽|w}֝u'|kp-}ͣz~/lVMnG|;+fks۟}Զ[K7]w#?Wrz~z8ҳ~އ~W%|%[ؼҝN;|7'N-Ϭy_~w~'5Gmpk~#G^qa{}?홋Kn;c{_߉3яzU7젯}c:tƋ7p3tMO~Ns;W򓧴{ޕj|ٷ>iܸww֧?7{O =3[ۏ7k~M?{?sZ'.uw>t3Nڨ6չ3{ dddddddddduwݿO_g/WtR-Y-Y-Y-Y-Y-Y k{ln,ՒՒՒu)ڿۅRbbbbbbn]R R R R R R R R R R R R R R R R .8_| ŠK ^>rƲJ1H1H1H1H1H1H1H1H1^?{F {_ѣVVV4MiMhF44m۶LVwa! Š'O8z;wXYY4i4MiMhʊU_?8o>%))))] ֧n;O.kW۳7n%%XVgNƹ67ԒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒՒ徳T;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMyZZZZZ.3l|YtIDATMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlj^ק^ɽ{dddd%bXhϴv6ΦT;jgSlMv6ΦT;jgSlMv6sԒՒՒՒՒ̯ϴv6ΦT;jgSlMv6ΦT;jgSlj~}&{dddddddddd{]x oݣ\%%%%%%['쭭Mddd߻[-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-Yɽv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;_bPKVKVKVKVKNX̵v6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6ΦT;jgSlMv6s%jjjjJܫ%%%%%d1ov6ΦT;jgSlMv6ΦT;jgSlMv65>Š,kgSlMv6ΦT;jgSlMv6ΦT;Z]RKVKVKVKVKVKVKVKVKVK mwNW.[۷ ddddddZ\[sZԒՒՒՒՒ-k1vk67Ւm, osq[[j6ձ6_n}ˇ_v%z}_?}ܦ}senoz~#>x굅nr-n'\}/Qܳ?}|_ /\W_po|gp۝^zswWg_W?|c/]Ms_ 7씽^x=W>'7snƛn3v/~۸yN_whvK{'}[޹~o3w{wo3^?>Cy`eA9gQiٺGyCsy`5=wŏOԺ;:}'mmTܙνvZZZZZZZZZZ/ɳ}^nks,=67jjjɺ_u)J1H1H1H1H1H1ؿw.E))))))))))))))))]Zv_.E/xa* ŠS'{1,}qcGZYY4i4MiMhF4mf2[[-KNͺ̮]o.o߸lcY9uPKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKVKva?r=/پ4 2TP*WvvewTPbo׉c/ 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TSO8³cVݻ2TP*Ce*Nno2U 2T0Uy]V' Sپxs:<_=uM/ wܩ~|Oчz;];o҉]VNz_okg/>^/|ֿ_;ѫ |>25<q ͧ6n߾~~ߗ~4áW?ON\z3GON:/Nzog37?;g>|~~'~yc\sk 7O_y+[_=N^KWOʭ+~r~y_O^rrÿvw~|=S_?c'|SG]wq_a޾מ~_N݋ox;᏾S7aG +3^C3ϳhm6 @gsk>w9??jGMg7^>g?zw _3+_su,WO~|[>ɭ>x//.ɋȑ#baXX,bȑ#\z kX?joCozy/|x{awݼGw]2O\Ã}2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2T˗پxE?~Ie 2T0U/sx2T{N{Ae 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2ޮz±u'Zp]2TP*TiurK떩Re 2T::@e؟ Ο{ʰ?O~* _[+?rO~o֧ѿ3WC?oħ>?|Yԇ`38O|>o{a֟_~_~}3ܭ=cۿ _e[??hS5񍅝o_M/OWvO|3y>rʅp?W>O'~7hs|~l>p?؟ww<߾-ɏ}쌫o?ݳޝ>|A|w?Ɲwkkl@U {cS_ɣ_y~wW}AU?ڣd_{owwW~Wo_~S] pzC;o>ɟ?=''_{?e_ow^i+?|}oWo=}W'_rGnW>=|Q~y艗|[:~w7O]v|˾؎/~Ǐs_r 8v Cw?{w a*?7 2TP*Ce 2TP*Ce 2TP*Ce 2TTi4U*MJSTi4U*MJSTi4U*M*Ce 2TPJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSRe 2TOR*Ce *LJSTi4U*MJSTi4U*MJSP*Ce 2TTi4U*MJSTi4U*MJSRe 2TP*Ce 2\} v/??M*Ce 2Tʕm}ٝ2Tu *Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TTi4U*MJSTi4U*MJSTi4U*M*Ce 2TPJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSTi4U*MJSP*Ce SdT*Ce a4U*MJSTi4U*MJSTi4U*M*Ce 2TPJSTi4U*MJSTi4U*MJ2TP*Ce 2TSO8³cVݻ2TP*Ce*Nno2U 2T0Uy]V' Sپxs:<c|L[nu[nۛ{۽鎹w`rpC ݷ;P59fw=[n{4ٷ;n7L~;PӁf;|i}[?}U>ߝ5hٟP|xgtpܸi:Qk>oo=?80G37[9=nՁfݿgܾ=wg]s;?<4M>jܿ;+0;c#S;jwg]3joirhݙB~ w>Q~y艗|[:~w7O]v|˾؎/~Ǐs_r 8#GX,baXX,#Gr7tbyq4qCozCo+{A;ݡwƻ}޽wUʰ?ϟsUP*Ce 2TP*Ce 2TP*Ce 2Tʐx֫jiZZ֫jiZZ֫jiZZ֫jiZZ֫jiZZNZپdwTP*8}Skz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WKz^-WK^\tUPvߺ"cOe {}WΞ^-WKz^-WKz^-WKz^-WKz^-_\:Y7oܐ2Tʐ޿ܫ/.WKz^-WKz^-WKz^-WKҩ~2TP*Ce 2ޮz±u'Zp]2TP*TiurK떩Re 2T::@e؟ Ο{ʰ?O~*;ïu'CO['/{o?yꪯ?=ˏ^v|g<~? o\P*Ce 2TPnzߗo>q7|vWwx0 2TP[GO*Ce /iwCoz8ơw v8ơ7qCoz8ơ7qCoz8ơ׿ϯ[8ơ7qCoz8ơ7qCozଢ଼m/tTơ7qCoz8ơ;:Uo񺡿s8{#GX,baXX,bGq5'^0Cow渇Nc_OÞ_s/՗_8rbaXX,baX8r䈭-|C+ǏG8ơ;v {A^z7oݻ{We Sy9/`_e 2TP*Ce 2TP*Ce 2TP*Ce;=֫^:::::::::s;3/œO85{PvGgWξlu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]ܫ8sN;o Sy~8ӇrT{kbu6]gu6]gu6]gu6]gu6]gu6]gu6]gu6]|w˧_'9Uʰ;:ߝӿٗmΦlΦlΦlΦlΦlΦlΦ9/xm{*Ce 2TP*K~l_`g?Ӥ2TP*Ce\ٗ9:o:/=o⒟xCo;橫[؎/?zWsT.q*Ce 2TP*Ce}}_ex--o\y2TP*CeNnu? 2쎃[/ؾq0qCozɭCoz8ơ7qCoz8ơ7qCoz>1=y8ơ7qCoz8ơ7qCozm/tTơ7qCoz8ơ;:Uo񺡿s8{#GX,baXX,bGq5'^0펃q;փO<_ܟ6 ^y'W^>gqbX,, bp[[[.W,7ơ7qCow>~c^U'^\?<駞ܳO;؟Lv._3O}ylo{'|PnwO=իZk?Խ=co 2TP*Ce ;/C߳}~OP*Ce aregkg_v@e !v8P*Ce 2TP*Ce 2TP*Ce 2TP*{7SO~}'^]2Y'7MwEO?n2~3^Mbo[^9{ߟ,OwZ ᕗX8a0}<2TP*Ce 2ޮz±u'Zp]2TP*TiurK떩Re 2T::@e؟ Ο{ʰ?O~*8ut_z%%?y񖇎c7|wSW}|_~>?\x}/7UP*Ce 2Tp}˾[>[޸ÃIe 2T0:`R*Ce'^}M`z8ơ7^\zʎq펃q;v8`w쎃q;v8`w쎃qr`w쎃q;v8`w쎃q;v8㠿}˦{sCoz8ơ7qCoowtܫ|uC۱qGX,, bX,, #ݻ*Ce؟Ϲx *Ce 2TP*Ce 2TP*Ce 2TP*Cƞgz;\zu+*Cex5?߿^}'d9؟zqi?vܳO;؟L~8~ ?s*Ce~'y豟-}2TP*Ce a%?|{/^}яiR*Ce 2LUl{ 2ޮ^P*Ce 2TP*Ce 2TP*Ce 2TP*Cev-O=s<ssOh4U:y o޽㱟=T~}[G+vmSs\t>mow4U*?o^pڙSk2TP*Ce !v=o8y{ 2TPJ[[L*Ce 2LnxשI*T/^pܫT=}kWɭ>x//.ɋ'^}%>#GX,baXX,#Gr7tbyq4qCozCo+{A;ݡwƻ}޽wUʰ?ϟsUP*Ce 2TP*Ce 2TP*Ce 2T=O?7555555555555555555555G+;*Cex5O󬵦^{[2ON#?3=gv?*|㠵#P_2ã#n}P*Ce 2Tʰs>=/پ4 2TP*WvvewTPbo׉c/ 2TP*Ce 2TP*Ce 2TP*Ce 2\{-O=֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚x+yI{h4U:ư.֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚֚?Уε*~ɭ^еo*ޮ'~۷AkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMkMk \٧;*M`EZZZZZZZZZZZZZZZZ_:JŞP*Ce 2TSO8³cVݻ2TP*Ce*Nno2U 2T0Uy]V' Sپxs:<q7|vWwx0 2TP[GO*Ce /iwCoz8ơ7]}-=SΞ~ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}ӧ=}+g^o*펃qCoz8ơ7qΟ{՛ono;3Ξ9ȑ#baXX,baXxG\~ɭ?ߺeo9w~9u>?GrzgqbX,, bp[[[.W,7ơ7qCow>~cQ~y艗|[:~w7O]v|˾؎/~Ǐs_r 8qO̱}m|q=ck7wQmfO' _L=;w,Yxge~n<Ÿ1V~X,<;w,Yh5Og< xg❥j4  P5F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+VԪK1׋V>HOw7---iJiJiJiʶmۘr1ZahMV#xGp5jFcV#+uCBiJiJiJKK J>.?˱Vj`h UasZ%kaju[h;K<.0G=;w,Yxg;w,Yxg;w,Yxgl1=}#1Fb4M\r^z{{^z{{+W0v*1Fb1cDʒ];3~u,YOMwNb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1pYuTpFNc{VtSi;Cȳ@+.@#1Fb4Mʲlc$H#1FʲdmL;i6u9s4=.{{kקXXXlc$Hflbmi s7g;w,Yxg2:2ķfxAlDYxg;K𞫣Ü9CQ;Uh;w,Yxg;w,Yxg;w,Yxg;w,Y&ؿwf#1FbFFFr Koo/Koo/W\Vl61c$QGw訴1@#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H# µ Ԫngٺ;&' akUމlc$H#f#"B$H#1FFG9t`?!xGJQ1c,/=]t.Ξfpjc$H#1FNwx[;w,Yxg֪ؿ:XXh;w,Y8YA;w,YNNyw,xtzw,xzNw159 DJb(%Yi ̳q)>qO̱}m|q=ck7wQmfO' _L=;w,Yxge~n<Ÿ1V~X,<;w,Yh5Og< xg❥j4  P5F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+VԪK1׋V>HOw7---iJiJiJiʶmۘr1Zah F+V0ZaV5\p:t4%MS4%MS4%MSZZZT* qYR3F+Vj ˝Kgw.Y KU+fzF,Yt>ywYQ<8xg S4z;w,;,P3,;w,8ׁ&1Fbؽ{-b,^ŋxb/^ŋYx1/ogŊ1Fb1R%vlg(Y\d(1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1pl:*8[#]'e+zY xǕKc$HfB댏3>>8㌏3>>Ç9~8eYc$H#eyS&ejr}{vlFb4Mnry FA^r5]ҕРٌ1lF#ma,Yxg;w,YFGv 3:<Ȗ͛B;w,Yxg sut=g(9Yxg*mG;Kz(y ,9,)Ypxg;w,x,P3;w1C$H#1F{/Ixb/^ŋYx1/f,^ŋs@#1FƮrp>j#xGG>b1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1FbYXX`ǶMNVlvV.?-191N[wN>/_f\vfI#1FFG9t`?!xGJQ1l69w4ԋ:y=#dm¥s̫9b1ctIN<5xg;w,Ylʁ{i;zQ:8~Yxg;K;xg;Kt爛xgɂgxKQxgɂtSP:{=x&@zuGvݦ |ײS'zn"p ^^;{+м)A &{Zٽq[B1GOG;3&@s. Pz tv2x3ׯP9@1sl~ʏ 79M[rN0J!w3U[Y(.taoG?VXD-K_q_l4F8s s&lOM~gS|ߟcc ۦ5>?{{xg(o]͞ 3Ov۷'efz;5k4MDADعs'vI$ I$ I$ I$ -be ""BYb׎m_;wSݽADDADDADDADDADDADDADDADDADDADDADDADDADDADDADΝXGgkY1l\O7#>t< r"D,9~8<?qwpwpwpwpwp??__@ "ܺuS&ejr}{v "4Mo\ų] 3SL\o z+zu,Qbj;n;w,Yxgetdo7~`?Ãlټ,xg;w=WG9s;w[v,YrJ+G-]ƪ754&8~ӏ,5;wZpT|5d,YxgcDADh4 nv$!I$!I$!I$!I-ZDkk+" "@WG95c@" "" "" "" "" "" "" "" "" "" "" "" "" "" ""`ǶMNVlvV.?-191N[wN1""(T>7g?;;;;g?o+VVlFbDh22<ġU ;wTZ248Ќcj(}\1H?7K>~%{e&1FbbM/XhlFbLt3&1Fbؤ 4M&1Fb4M~J&Dϱ O~Š: {cpb34Mbl-/V諛hlFbؤ Pz;&@#1F&M`agw/OLR&1Fb|<-SuM}H.?~+>>`yGh6i6ll6٤ٌi[\²>+穴g݂ffI#fMbi64MWv=|j0rg~_ɝ8;[L7wOr׺ya|yjq|xS#fd7.R 4iH 4s.n~38#Vx7V=ʊq~:gS|ߟcc ۦ5>?{{xg(o]͞ 3O\ /Lwns<',,, "4MF8t`?!xGJQbtoGytuٹLL15=N:W8u3{#"p$NYxg;w,V=(m?B,Yxg%x jnYxg%xuwRsd3<ϥ sds Xv)Ϯo6r*ʥܻd9|$ܸȷfsq4 M&w/ﺏgi,q52{M0t[~5]|K<(?n0yzo'{ec/ R7^?.W f/c5 z}"~ƿ\O/|ݣa};G|d#ϭx?ͣKa[:ƻϯw_axzr[MmM Dž_ts8s'y߲uW6s|;gFۼ}a}sk[5~{Wxw7tRЬKymYԣKݿ.gәgx9??~cn>}^_ =0ols o// _$8K^/ZG)J+7ggg{OC|b3o#`]cwnC7{/PΙ3gOx7 x5h6#"%"%"%;wn#I$!I$!I$!I$aѢE,_HHHHɭ[ ڱxgr}jw""@sgp5,u[rJ:@w\t fdz:wy'?OrzS9zNS9cMmGgZX`1xg`ߞ]DDJ8O3ǍkL]o2.r_apcf1 "%QZʎn;w,Yxgetdo7~`?Ãlټ,xg;w=WG9s;w[v,{n\}7Y`Ыoe3|?s[уy-1!g==[Vȑ#3T/ܷCwepgHO 2s/]A>_g>F'_={6}oֱo;˧Nzbkl}>zz+7U?fOy{pC_t+s<ēⱔZ=/KL4}Qͥ#78y <߬b!z7M%Mj8uvCͥZ4YC?IZֽ }cI-xM'&gS|ߟcc ۦ5>?{{xg(o]͞ 3OǧO ^k|?<ĚUp=m;q,ׯ3pQ_͛7<\x,xq`>_F)K,`Νvm$IB$$IB$$IB$$IB$,Z˗S޺%RHY"eɭ[صcWG${wDDD)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,DMXGgkY1l\O7#>t< r"N:ſoMD)K,D)K,Dgy˿% ܞ29>w,S۳ Aʒfq1|pܘ;wocn=@ELUqa]" ePVّYxg;w,Y Ưgtx-7w,Yxg0{PsxgbkU:ڎ;w5#s}5?{}Վde{a3Ry\SSS_֛o;&ƈ%RHY"eIQs=~$IB$$IB$$IB$$IB$,ZG e%R4cf ;wtTf)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,D)K,i;MNVlvV.?-191N[wN"l|r~psvA)K,D)K,$$l6ЁԪ;*Gl"eIȑ97n^~ϡ#8Չafoΰ=n!e%4:yS'm ,Yxg;w[r`^ڎbbl6`aw,Yxgxg57G,Yxgcf:];9Y҅s9Y9c_gρ/qP2|}5*'ⷿї?{>96G_~ow7G.]g R21p|.|q25+˗x^f ~GV ;Yi+߳'idKҦCٓ<6foL_?sŻGG`1V?O жExc Kxhc/}w ,{wAa|a^EQxa^r ?澥Y%Oy7Xld/.yCr?>k[Z'Xn@Y˻PdG,{#ӵOUeCo_r^xr5M3\x#ݼ2!a>y^u>~]ƛRo[ eͥZbAOyfκeX0l~q}[謴rsvzٸ8'>i8rOޞ15ʛ;Fx{(6t̓Oe\gxg;w,Yxg2?7ˋ_O{Gx+?wuz;w,YJxgR5Q F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+V0Zah F+jUå Ey4%MS4%MS4%MS4e۶mLMMY9V0Zah F+V0ZQ._8Ow :HKK i)i)i)---T*x,[ F+VTb%k;e􆥪3io=Bw,Y^`zq^zN|V'W|.-}?{WvJ~_eXL_3<޽{r CCC?ݻwOsEqƁ65ɭEA(h1FomF$$IB$$IB$$IB$$I¢Ex)uEA(hٹ=e|l,YOMgNhQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(huhy:q-[9M ;\HG )K,iooǎiHѠQ4 FFAѠhhP,]F)EѠYLMNw.n-,( n-,022DDZv| ^㴶t)tq k8#ccWYh,( Zͳ=xg;w,Yxgۍ_3< [6o" ,Yxg%xaxg֪t;w,9Bms{;kn gN~ >/,{3Z5Шgl߾7x.ĉ|'29>=uQ4FQB~;I$ I$ I$ I$ -DEA(hnbxhQ3;:*m^,KEA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(hQ4FQ( EA(Ȳ\;K:+\<[crbVeܜeaa,YhVhh4h44 FFAѠhK4c֭[ s~jUCmG識uFQ{azfs9y8KT[͹YvNQh4h孒Ǐqq;w,YxgbkUKCLc,,4;w,Ywﬠ;w,YwL_x'<;K<Ã\pz=;K<=4MXv)|,g6"77t*Zv}k}Sٰ 6=\v4M@s!nG⷏K|*V>_5;q5w<΋'ѱq+_hz:7} ߿O͝\i_Ï9K<*^|+ܨ@ttnxG_ɮvde|q?coez o[黰>ơZv$Gcq/-/cm8X*{eOXu7xxo^7pp-n5>?{{xg(o]͞ 3O~,}+=r%G<7?GFh5ϧ~«ʡChooۼLMNcrb^'2,#2n-,)vI$ I$ I$ I$ -eB 2,#2,# RF${vɳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳ<ȳcGh\ >'{4 ޢ ͒ю/yM J@hO_w{]gǙST>Z}˜WNث2UMO禗xMo??Ʈs̩i>Z}՛#|#$YX#+y8g"en|S9ͬ-ÓyX«|m;SC?{$}W/cN&=M[y1V ;YqogOrt`M/=KϰtF&s`aoσ/fI>뻮r$?O͋<\oDgOM ^Z;'@1}_z}f)[+|2eǹpS| &P2)?&M<)^5y?Wrx<ܷLՁMv~ %@}Ooaz8߬Og?]6mx#ݼC?3Kɪx u0gZ&-R x_gw?s>z!V9VnP<gX6G 3;Fysoe݆n_yL ,Yxg;w,Yfy#icRYxg;VtVZɳw,YFQ9U1Zah F+V0Zah c z$-5?g/Kpa|5jkkؚjFkj*VUMU+jU\JMV֪ԌMf0cNV0Zah F+V0Zah ҅s K,YN}ŒYaoGS߾N!|!m:NhUX/lr?9Iu?̞>_7~{og]+80PkVr awbxm"0}8/ONrﻟOq:}%ײ,"PL3f%̯ǸoK|0mX=\flo?ec?, y&n1\.-0~z)/m=MBmfi:7v p_?nXu.֚*W6e#PՊy͍>ٲ;z;wgkؿ1,#xO=$ I$ I$ I$ Ih"-[w={qֲc[ cxgr}j=;wg9 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={Y鮓hy:q-[9M ;\H{[+Ew={|9O~ŋYx1/f,^ŋ_UVq% j5?09>w,Sݵ<Αg.])M\t:AשqJo6g`,n;w,Yxgetdo7~`?Ãlټ,xg;w=WG9s;w[v,[*O~~7=`z?cO'Ԙ" ,YjUӧX+>3<xg291ƾݻ99 S5ロo$IH$IH$IH$IHE?R '2z95cƕ˗9{ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO={ 'xO}h/af~II$biJ,hEvD]%YiJ\"H }(,ssέ*ynջU8ڷ'lu;}6oh՛/=[UV޻_E?y??__ď~$-V[n{k˕˗ԱXf՛ǎz岝mmV}i~쭷t:Ϝ{zun1O>#5ޭzǽzTBo[-z QGԱ#ܾucNv§~[-z UoNnK`՛Bo[-z=Nn[Zu{gl-l3org6p|zNxOݻt޶t՟|W{'z>7?|afɛ/|Wo~roLR~}dԳ^?Wx7Ϛ4y}?p=ܝ=`cٛʧwyǿpѳO<)[<7 {?ѕ~?'_~>㣻=)~p3Oso޾ӟs|?ʷ7Uz+?ov+?SYO}O}wħ{]Z|.iK?G}ڛd?̞?z=ճs턧]û^;6=޿ϘЧൗ1C?٧6|Ooj`|o{6>쀟>mUV+׏ė;Osۧ`g߹=~ןҧt߷vOi[ 3{z{w'Z`23޺nrnk]rɵ˗lo-z Bo[-C_aߘ~oܷ]Jo[-z 9-m[-ƒX?KVrRrRrRrRrRrRrRrRrRrRrRrRJ?w_>{~Ǐ|ύo뛓NϾů_%w򩋎 ~W?_kg^|otk~ɯ/U?ȣEԱxWiث9}ښdb2L&&db2L&ΝMGTrRrRrRrRrRrRrRrRrRrRsNzݡCL&&db2L&&5޻~ՅsxQ%'%'%'%'cNn|>~3=GaɃ?zا|[ZuW.v֬bک~k9uͪ]{_aj[-ze{ke՛BoТ-޵-Bg?Gy#o2q׮^uW\qW\q޺EXEhZ:p+~ͯz ֪Z޲z Boa-ӗ_EhZ=#yp.\< w̾{__N|W6_>y嫿_?W1kܑ㫿xM]c}oXQIIIIIIIIIIIIIIIϺ~zЙӧL&&db2L&&db߾}ٴ~DNK%'%'%'%'%'%'%'%'%'%'u,.?:tښdb2L&&db2X[[W]8׎UKQrRrRrRr2G3=>n|Ɯ<}'z Uwy^jg{Kofkk'쓏mBoaZ~항z Bo[-z BoE5͛zkVQ֖^x?Gȣ>G裏zG=}Q>G}/?CGQU*jU 5޺[ww/>oջU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQUjջSoZT[+^k:{czhn{ke՛˗.X?z֖U*jjZ:V魉VQUj,kBomUV5/]/QUDir} gyW^5dQ{۶zm۫[-z Bo[-z oJ*jZ;~~>G裏zG=}Q>G}/?CV+QUԪKXf՛\pj%jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*jZEVQU*j*9۷'lu;}6oh՛/!jZEzk8jViVQUԪ gXzcG\|jꭙLs55Ukg^|y.‹ܼ!juoUo[-z B|6u!oݰq駟-z Boa՛0X[-z <ϩvV^sY;;z [[ټ S?|o~g}{| zII`x5_?YGz`cv'oށ<}?|7g}[ _z_~/g~򔭭-[n՛Bo[X;wz ǎ-z Bo[-z Bo[-z Bo[-z oժuTQ:ݻks;6lڼiΦ;6lڼiΦۖAZGj\lZUoV9~ :uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uTQZGj:uҾuwB<.{dzOzu4}EQ:uTQZGj:uTQZGj:uZtC:ެzs/]{SkWo_~w[ͯ7/ Cjl_Qz Bo[-DgSǎr Ǐ9 ~Bo[-V9. Uoz Bo̓:ag{[oakս5ϟμuʝd+`F[Olob`o'[!/<lxVM;g^CZ[[3LL&d21LL&kkk׽w j)JNJNJNJNƜ(|g{܍˜9~O?Do\0lq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,ƱbZT[+^k:{czhn{ke՛˗.X?zjՍ%bq,Ʊbq,Ʊbq,Ʊbq,Ʊbמ-^y5cƱǢ䤔d,8Xc1Žwp;goϦﯾ-oz -Uoz ªw7oܙ}[-D8vDo[-z Bo[-z Bo[-z Bo[ؼ}ތ%bq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊ._lZUoV9~ Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊ"-{z u~6֏p>c?Mݽ{Gq,Ʊbq,Ʊbq,Ʊbq,Ʊbq,Ʊ.^8|Ū7?vKƱb,Y)YIIIIIII)8Xc1E1oUo[-z U}՝۷8k'Oj՛Bo[-zsrc]z Boa՛9ur֪{k.?kgg[oak՝y;QluONyon+| _xWmkW.v-Bo[-z rx?8|}-ֺ7^-z Bo!Vz XGucJNJNJNJNJNJNJNJNJNJNJNJNJs;quSYn;|''l޹~~_/~;:}޿W4;_?u/<ݥ1'ӿ?ٷO_EIIIIIIIIIIIIIIIϺ~zЙӧL&&db2L&&db߾}ٴ~DNK%'cI_~Oݟ=sʭG}//:hmmd21LL&d21LY__.{kǏ(9)9)9)9srsyq7> cNܿ>֪rw][-z Bo[-z Bo[-z BoТyu9o[-ܻע*9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9:z䆓'kQmoz5ϯ=֏꡹Uo._V)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9Igm~xKopgW^zAkd,;_{ΰx[-z ֏q>O;چm8~+/`z ªw7oܙ}[-D8vDo[-z Bo[-z Bo[-z Bo[ؼ}JNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNX\x~ެzsbiQ,}=m:f?y G]8gZ&hTǢ䤎ԱXf՛ǎ|UIIIIIIIIIIIIIIIIщ|u=Bo[-.^8g~`_'yoړ?ït9u,z Boa՛0X[-z <ϩvV^sY;;z [[ټ 6֏Z<|`g{rx3<w}sv^+/>nrnk]rɵ˗lo-z Bo[-C_aߘ~oܷ]Jo[-z 9-m[-ƒX?KVrRrRrRrRrRrRrRrRrRrRrRrRrRruTKRrRrRkjQrVk[ӣ%)%V1'BX1'%'Т%+9)9)9)9)9)9)9)9)9)9)9)9)9)9)9)9cqYׯ^ұW:s5d21LL&d21L۷ϝ;6֏id,qhA޿~~b?;߽v+oS/z7:tښdb2L&&db2X[[W]8׎UKQrRrRrRr2G3=>n|Ɯ<}'z Uwy^jg{Ko[-z Bo[-z Bo[-z BoE5M}cr4i AN9 r4i AN9 r4i AZ.<۷n- ϋ:i AN9 r4i AN9 r4i AN9 r4i AN9 r4i AN9 r4i AN9 r4i AN9 r4iӠ믝pq-Sg=s^=4K;֪9 r4i AN9 r4i AN9 r,=k[z ; r4i AN9 r4i AN9 J^מ5,-z ֪~lZw?--dawy٧uBoaջ7w>[-N;[-z Bo[-z Bo[-z Bo[-l޾啗^1i AN9 r4i AN9 r4i ANcI.]8lZUoV9~̅gE-r4i AN9 r4i AN9 r4i AN9 r4i AN9 r4i AN9 r4i AN9 r4i AN9 r4L{z u~6֏p>Z&hlVr AN9 r4i AN9 r4i X qh>Sb՛Uo;9 r4i AN9 r4i ANu̎;7^ף-z ª7ϝ5?nߺ{kWr:}Ͻ[-V9. Uoz Bo̓:ag{[oakս5ϟμuʝ`cv'oށ<}?|7g}[ _z_~/snߺ[wg#i i i i i i i i i i i i i i i i i i i i i i i i i i i i i %/vb'VNמuiǏ꡹Uo^Ճ4H˅\H˅\H˅\H˅\H˅\H˅\H˅\H˅\H˅\H˅ڳ6?[{gK/3<| -r!-r!-r!-r!-r!-r!-r!-r!xafX<[-z UwEG~mrXx#qmk>z ªw7oܙ}[-D8vDo[-z Bo[-z Bo[-z Bo[_|ްx -r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r;{ơL-٪7޼q7O)y)-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-r!-rw[{;z u~6s;}6oh՛e{MN\H˅\H˅\H˅\H˅\H˅\H˅\H˅\H˅\H˅9ssu,V8~̙o)y)-r!-r!-r!-r!-r!-r!-r!-r!#:} -Bo[-z ܼy~~SE5, ݿ[uWo>[-z BNKGmoz d'֏xƒԱxWiث9}ښdb2L&&db2L&ΝMG;W<~ƝEj{OgwOo/;v7:tښdb2L&&db2X[[W]8׎UKQrRrRrRr2G3=>n|Ɯ<}'z Uwy^jg{Ko[-z Bo[-z Bo[-z BoE[o:|۷4i AN9 r4i AN9 r4i G~C-4͇n:0}K, 9 r4i AN9 r4i AN9 >7[-,uWo>[-z BNKGmoz d'֏xƒ%cQǢE:u,XԱcQǢE:u,XԱcQǢE:u,XԱcQǢE:u,XԱcQǢE:u,XԱc1䤎g]zENK^=ӧL&&db2L&&db߾}ܹ/:W zfrG?WyOԿ;oL&d21LL&ښu]¹wvZ1'7> yq?w0{=O>[-l+{U;[z Bo[-z Bo[-z Bo[-z }Ł|65MgS|65MgS|65MgS|65MgS|65MgSwՒz QG]f>WgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65M<|ԛo4<|ny'Oyas\h՛Xgq`_1MgS|65MgS|65MgS|65MgS|65M<ߡ3^[:zUԁϦ泩lj>Ϧ泩lj>Ϧ泩lj>Ϧ泩l:z Bo._ؑO>Zc1<|{tmk>z ªw7oܙ}[-D8vDo[-z Bo[-z Bo[-z Bo[:~_1MgS|65MgS|65MgS|65MgS|65MgSgS|tUo8OgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65MgS|65M<ߡ3{MBk'==O,Uozs|65MgS|65MgS|65MgS|65MgS|6u~k=O[ a6}ŁS|65MgS|65MgS|65MgS|6u~Soyrx[-z Uo^7\~mm ܿޝM.?Ro[Xƺ4 V-z ª7s䆝mU\<ζ֪;)w6o۳`ow]{{t5ʱ={{vw`oo]vwwgo۳gww]{{۳kwwޮ={{{gwwݵ}ܕggoogwwvwݵkwwޞ={{{={vww=سkww`ݟݵkwwX?j雾w=ϼ>x?s?_W~ÿ:~~ٯoï>ҹ39l2طo}ٷo}ٷo}L&?W]8׎UKQrRrRrRr2G3=>n|Ɯ<}'z Uwy^jg{Ko[-z Bo[-z Bo[-z Bo[{ κp κp κp κp κp κp κp |={c?af{^ʔeS Mʤ|VQ"e( #-  H p;b$iduYFViduLNӌST0Li5ɧ&hhduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFVg#,͢T0դ've Z̈́`* `F#룑iduYFViduYFViduYFViduYFVghq)`* &u4>YFViduYFViduYFViduYFVgxp| i&LST0LS6:~ Vg|~;?ɉ1|oahpST0f]%x%LSTV `* `* `* `* `* `* `*Huid}4:N#4:N#4:N#4:N#4:@Vs3%*MLST0WG/3iduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFViduYFVh0u}f cWzYLST0gg|iFViduYFViduYFViduYFViduYFVg 3:|`* aq+G4:N#4:N#4:N#4:@Ƶ,aT0LST0ڦ;X_[CEaj:cט>t1`{"ELSThr@ST0LSml9͙ӽ,/-a*t,//a*tsgȧ&`dǯt1N9E~o-u懏ѧ?0nkm.Vĝ;;;G5n8\P >?veCu .ᷔu]lzy<ڠy`=sݛx||zY,U~q}OR4_ï~`;RP?)o>Mg=`eΗqoww]n/pxn*Ǐw;=>g *3Gx}^h?js=o?;3'rs,wѡ+|OβcoVxm5ިN1:mc #C,/u0LST0LST0LŅ9;&xnX^jc* `* 1,}NST0)}W.L)R H1bO\cf`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`f`!r))R H1b @)Z@×aGq}b |<"ϧ)|<"ϧ()g>~I1b>|r<8K9q'6|u&)|<"ϧ)|7eс:Νx|E7g JƯriYf.3x%gy n,};wq*`"@irkY i \u`ѿ<폾K"aq"r pnW뜿qVx?+d~.\l0>:qb?c3MVXyW??FFy>\)6e5*ܚe 6:L=B7lޗ?hALڭyOp0_`JXoA.^lpe|i '{&2wO3r:MX{\4Kz>~N3puf.\`JXn|IWOow<+s1830D߅>F'X^p&ÆG>>hrcu&#) }C=lMڭ"a:?}yzͲ1v?G >9ήwpkY}x:ƳS;r贍K T0LST0LST0xccy`* `*İHo :mLSThHOq^L3ER H1b @㴚 i5i5fLV3j&ZDh5fLV3j&ZDh5fLV3j&ZDh5fLV3j&ZDh5fLV3!&'Ƹp b @)R H1bL ׹22t8{8.Ntq=]tO{:ٟOLV3j&Z̈́H 3ŴfB1e('tO{8.Ntq=]O\R"@)106#v{v06#4c`cܼqST贍K T0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LN1ftwq>c?fjr"۽{T0LcW.^`ey ST0դ8`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* B۔}kkkXYaiC3E-)I1,b* B۔ӽ݄ڦ `* mSfiΜeyi S60_gyy S6.;C>5 Kq??fqqoΆ[yp6=s WO~SmG恭S,NTcǹpK1{y=/ #~྿?o7.s+=4Ł_Wf|v8<8?;MǞ_X`l~UM}(_wdy+Ά[y`f6=2YNS`K?o|XM58.o#MVr 煻޽ǟzm_9y>{a^{l{I{x wq?Y&7C'8=V?!6Unyq}N*غg?MoxH?}^gãOѭuF|M.x7B=jȟwo<)~$5:Sn3+V1YFG#룑hd}4>YF@Vg 3 du:Y@Vg 3 d}4>YFG#룑hd}4>YFG#㧃i5)R H1Ќ{v7ݳ4'O Bm\gtd`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `*t]Ǐ6?0S$`*Jv+K &=]1LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0ڦ;FW_ݻصSNdf`=_"`*M9MXXm`* 6e^0:mu0:m3S4ӣ?wǯ5i%p_qmo:}MYѷw˫7Xeo]=sG:/mgay]?KÝ|ydp򓇹|g^Nm3@{x~|ݷ@qns㉇,{~t/n3#tz?;fo:W?]|yduU~#&ЁW}:&z&5g%_?w/tף|_xl6̥.|v.̰p+q݌Ͳ1v?G >9ήwpkY}x:ƳS;r贍K T0LST0LST0xccy`* `*İHo :mLSThHOq^L3ER H1b @4S$@)R H1b @)R a@ H1b @)R4S @)R aa)R 4Sdb*Ξ6R H1b @)R 4S'`tdёaFGftdёaFGftdёaFGftdёaFGftdёaFGftdёaFGftdёaFGftdёaFGftdёaFGftdёaFGf:m#@)106#v{v06#4c`cܼqST贍K T0LST0LST0LST0LST0LST0LST0LfΔENYENYENYENYENYENYENYENYENYENYLTZ `*X\\.())))))))))))))))))))))))))))sfh5 `*İaq`*4Y.())))))))邰J ST0LeS9eS9eS9eS9eS9eS9eS9e3SNB@E0LST0LN1nbdnv|jLS$`*Jv+K &=]1LST0LST0LST0LST0LST0LST0LSTPi8O9]P9eS9eS9eS9eS9eS9eS9eS9eS9eS9e37SL ST0LSLP9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS9eS93eA\\@E0LSAZMX"`* )ffJ",r",r",r",r",r",r",r",r",rfKZ)a* `*",r",r",r",r",r",r",r"ΙEMLST0LSThX\\`}}Y. w<#LS 6ٻ+bXT0L){ M1LST0ڦ̖Ӝ9Bm\aBm\̯J9Ο;ٳg8]! ?WV5>~~v|3mt^շ7Ճ$X#?)4VhZd~aby`896?9Kk8?[/>='_7}[^*Gms9^p/9=:.¦ |z)>A^ww˫dM[} _zi/6~AΡ A>t͋[xK,>^ش]?_x̬qܽ7nq[lxM x7L=jПaJyXK,c|t *X{'y61^w7c<<,wN4 KLST0LST0LSaqa?9ƻ΁ x9ژ `* B v`T0Lft4S$@)R :N3ER H1b @Jf, B @f,.sT/< }a)R Xz+W1=;O))re2w}?ǫ)iH3E&Ʈr:m#@)R H1b @f0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0ZD)R 4c`lFm`lFhl9Ǹyify`* `* `* `* `* `* `* 8tFZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVGǘJ STPiOMr8PVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBj 4h6%ξO?ʵWhb*H+0>j jZBZVPVU+Ԫj jZBZVPVU+Ԫj}Ԫ>q|jbj:' >j jZBZVPVU+Ԫj jZBZVPc~> `* iCt?@O>??x{E>ɷ{048`* m3Ǯ]`*HIOqLST0LST0LST0LST0LST0LST0LSTPi1y}cZujZBZVPVU+Ԫj jZBZVPVU+Ԫj jZB*}1LS!@ƑUQVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVPVU+Ԫj jZBZVG]))TZ *-.??];9u1LŅyΟ=?RVPVU+Ԫj jZBZVPVU+Ԫj jZBZVڏ/^ ELSTH1>ZujZBZVPVU+Ԫj jZBZVPVU+X#0<4D0LST0L)י :}3:2t1`{"ELSThr@ST0LSml9͙ӽ,/-a*t,//a*tsgȧ&XѢ,Kq?O|;[RkL{,Ƅhui)ynk7YyN,~GeaswQ{{ $_u[zv?˃/I <ʗ 6fswQ{k 1 -/tX`3[x^NdӶWu>>zvl|5z:؇L.kN}Us {X[xTW`ӟp}Oszn">6=:yZ xe7I()5` :qp/'ßoo:pˇ_-w/nO"/lgKXoz~ ^g-FzĹ%lx/6>CuuWxz߃|~n֛yw;a;y+.ƍw>#e}`-.y Po2tUn2Cđl׿c&Mcz:k|>:pCJM,;g~] ?_n}Y;gy'gUNvm7coTxvyj'Y1riA: `* `* rw_<~7s,/1LST0L>R`* >+iH)R H1ufH1b @0{ͦwlV aÇO_s!>q3)R (շ_b1:@WGGyxw9t{ϘLL]3tF)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @ngs=;10[Ns1n޸`*tƥ~FGY^`* `* `* `* `* `* `*hC,,̳;;;;;KgcGYT0>qβ;;;;;;;;;;;;;;-Ʈ]Ё\2is/+N?RPS=|Ku;;;;Nӧ:~ŅyLSaqaǸx<++˸;;;;:͔8~'31LST0:mchpyvV307l9t1EO= `* Bیd/`* juST0LST0LST0LST0LST0LST0LST0:v XYYqwwqwwqwwqwwqwܝ5f9|`?0L+G8r E;;;;;;;;;;;;;;Nیӽ=:AX\Th5|dq|"mH"~:Buwqwwqwwqwwqw֘. ϥTZ a:tQ;;;ܺu+/s~&Ʈa* `* mS} N?/v])zN23]0gaST0ڦ&,,6T0LSTh2[Nst/KK qut:K qIn'ٱi _)X-)_kq][/2q O>M8SiUxnj 7֍woW꣧x_fVXIWدۻge59c[X[o姏q蚲.GMəu`=\Ml S|M/a Oo?q~w/>r-?#LuS_rӳYɣ3,z7aN|5k\>m{|-6<C-ЁW}:F,c|t *X{'y61^w7c<<,wN4 KLST0LST0LSaqa?9ƻ΁ x9ژ `* B v`T0Lft4S$@)R :N3ER H1bN\[ze^|J ׯ_ŋ)R _p;~8Ao׮]czzK.QVyӨʅg贍)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)106#v{v06#4c`cܼqST贍K T0LST0LST0LST0LST0LST0LSTPiqa#`*E,//?{FR͙Oo/8!tN)Ct8m3j}S BOqVeeeYW0`* iCt?7X^ZBZM晛).(IݻLSTh1>vV0LSAZMzc* `* `* `* `* `* `* B>5ڏpy'D0SڦaEjFsN;…si"&(r>~ i51̔S'`}mOw`* 6e߱7o`eei5 ͔$~1LSmnmSLST0L)4gNiWGG诳iϝ!Wf9o6Ϧ' Fsq߰G^d6#GwGxpyKFWٺNy`<=ϱ]+_nE~+.]:˛oM}<߿D6uϟƋ{~=bN6?*k-N| [{|'|'xON \绷a6~a p$c3/}s8;{͛q<<2TnkR SٺA}|;??.bsC|~V?4nm{xiF>=S>^ܼgKXb ^Ggo0rGao2eyWo]vǐuXya&v`'ʷg8[{||m6>&C-ɥͯP93{ XK<̭1^>śo>ۓnd'''Xo-`-OL׸Fɑ?}6navcŁGcs,wѡ+|OβcoVxm5ިN1:mc #C,/u0LST0LST0LŅ9;&xnX^jc* `* 1,}NST0)}W.L)R H1b8I1b @f(:wcOxt]fEx Ξ=KY244DZG8)R i!ϻټaGrR İȳ>?󌏏 /}?`*L]3tF)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @ngs=;10[Ns1n޸`*tƥ~FGY^`* `* `* `* `* `* `*8|p?34;;;;;:?V~0O ;;;;;;;;;;;;;;8sK6g~>~C߅stwOYi24Р$;;;;Q=S'0L|j*;;;;oYT0LST贍N?7X^ZBZM晛).(IݻLSTh1>vV0LSAZMzc* `* `* `* `* `* `* ;;;;;\)mSz<;;;;;;;;;;;;;;ܺuQLMb*EO %Si"&";;;;0>vj&ڦM>qWFpwwqwwqwwqww8w g9I ST0LSmʾcqq5n,iI1074~1LSmnmSLST0L)4gNiWGG诳iϝ!-peL̶ gtikKMw} 8Lr9]ȸ2*෈U7p陜)+Y.7Z& "7i&En"W_8O} 39cc9Bq`P\g:(Kɒ*kusYΞ=ٳg9{R`* >+iH)R H1ufH1b @VI٨·6O+ZD?'СC 044ٳg/پq&b @fڹ(o 1,+sN.\KȲÇcߏ01v gi)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R H1b @)R 4c`lFm`lFhl9Ǹyify`* `* `* `* `* `* 4;;;;;?c t>+;;;;;;;;;;;;;;;YS=ݨX9)~v/:џi6ehAoIwqwwqwwqwwqwwY[[L]T0I~qwwqwwqwwqwwq@Uݷ,a* `*t:7hb`q~rC|w1LSmUXY^T0Li5:`* `* `* `* `* `* `* S'8;;;;;\RmJ۔..;;;;;;;;;;;;;;;nbRLMb*Eo Y{|uڦH+Ewqwwqwwqwwqww`5~:|V36mJ\2 ;;;;g8iLZ `* mS} qcyNMYfΧhd51,b* B۔ӽ݄ڦ `* mSfiΜeyi S60_gyy S6.;C>5 0|c^>&u[ }ăJoA}r++ۮ0 4?ojNke鬔UoW*m:ۑ*G#dR(lEeҚ(R@ $A x @Lx=9{kܼqj={?#=x. v+ι>rj-o:֛VRNQNQNQNQNQNQNQNQNQNѭ>=_{G7NNQNQNQNQNQNQܲvHCAgϼkZmFhmqA m#6Bm#˯G;MИ֕`ݞy/|S?7Ƽ_>??([mSO?g?۳go z]FhmFhmFhmFhmFhmFhmFhmFhmFhmFhmFhmFhmFhmFhmFhqZt+~>Eq#{玜e}ӧޱrrrrrrrrrrrrrrrrrrrrrrrrrR\xj^WniLd&44Mi2MiLd&44Mi2MiLd&4I);w99E9E7ybZiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiL^U]BY?^y~r7=i2MiLd&44Mi2MiLd&44Mi2Miq_ڸxANQNK~4Mi2Mi4Mi2MiL4I1أnސSSSSSd k:x`_|/wg;#:߮t׮n)))rvY۫^NQNQNQ\=|PNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQNQN m&44Mi2MiLd&44Mi2MiLd&44Mi2MxA.'G{)0MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2Mi `/ue㒜ż?d}7^#?Ku9=Oܺi2MiLd&44Mi2MiLd&44Mi2M8Yg1t9Y;t34Mi2M44Mi2Miǟ丐SSSSS+n߾m{j[֖̃ׯtC=B)))rrl}MINQNQNQNQNQW7?nr]v)'Of-q @6yj{K<;.+v׭{^'s[>r݃+ૻy`{z#'ٲNSoi/ںs?8{|[k9ê-kNNQNQN<t̻FhmFhG46Bm#6B۸/}uMmc1o| <|ӟ|Ɵɟ{gϘVhm\}gOa_x˾{彫Bmk|}OO}:t(((((((((((((((((((((((((((h6MZZZZZR28*㨌28*㨌28 yz^t9rrtwOVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVݻvQW6.)Z[?CyW=ظtQNͭ[iRkUkUkUk5jTVSZMj5jUUUU{O]N:ӠjryouɷN8xuz wjUkUkUkUk/ BNQNQNQNQNQNƥ ڷ׾{rj-o:֛VRNQNQNQNQNQNQNQNQNQNѭ>=_{G7NNQNQNQNQNQNQܲvHCAgϼkZmFhmqA m#6Bm#o9n6Bۘօ 8;w8 m#6}+_W޻*6桵u^8]Eq#{玜e}ӧޱrr.ղINQNQ~Y˺-le.rSSSSzuZZZѣGol߾m߾m߾m߾~J)jjjjqk.?'(h=OTkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkgIq_v?}kdJt9y֏VVV40 ޽ݻ޽ݻ޽Ν;\b>IUUU8v>K/))qOj&!xu7nlٺu 7n^s{^;񊭭jjjjTŸGmݼ!((((((IwϞoWOox`른BNQNQNQNQz^rrrbrrrrNΪ_Yeu))))))re-,(((h6MZZZZw?C۷۾}۷۾}۷۾}۷۾}??+ZZZ+pA.'G{)PkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUku];~+-歟!kOl\I\yb-4Rw{w{w{Mw1MZZZ+8Yg1t9Y;t3A4MN~ۅjlݺiM7nz7~éwvJUUUxy/<L 9E9E9E9E9E9E9E׮n:yU}u~~ΛVNQNQNQNQck-]Nrrrrr\uS첳O9y5U/hexK`}퐛7[-{O<|_W|s%_}Ww|e9?GNX-ezMzӪ_))))))))))u~p7{/ּsU))))))j[闝yh];wC+6Bm#6>hZmFhmB<4Bm#6桕\ q176Bm#e-"4Bm#6b.Ņ 6uY/pܲBm#6Bm#6Bm#6Bm#6Bm#6nmtycƥn\&6Bn]u}jnuc敫FhmFhkW6\qShmFhmFhmFhqZt+~>Eq#{玜e}ӧޱr\} /9.Ga[1)))r23kzںie9E9E).7|yYA[))))))rvY۫^NQNQNQ\=|PNQNQNI#g_zӵfKQNQxk;ojХ(((heW78N ))))ڸx=O֢֢֢Ν>}{m۶ٶmm۶ٶmm۶ٶmm۶ٶm__sAPkQkQks޷"]N];SZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZwG]ٸ$h1oY_;_~bE]Nbn;5LSUkQkQw?ɗE_}K_/}O_O~sZZZ xg1t9Y;t3Zi^x9a,"MrcKϻq㺋{޽֢֢^<?&Dž.'9=? ~z'2޽-(((((ɱ5֖.'9E9E9E9E9E]N_tغU)Zvӧ<ժSW^<%v׭{^'s[>r݃+ૻy`{z#'ٲNSoi/ںs?8{|[k9ê-kNNQNQN<t̻FhmFhG46Bm#6Bm#6Bm#6Bm#6Bm#6Bm#6Bm#6Bm#6Bm#6Bۘօsgq. m#6Bm#6Bm#6Bm#6Bm#6n\}|_Μ>-ж7 _zҟ_;7_s6Bmc>o]~}= AhmFhmFhmƼmʽϹkѼm\ȡ޹#(heoQ)E)E)E)0 v))ڼa;RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRk٣kR\藝=G+/Y;|3/;]N:#kb&/^}v_{{s=s{=WWwiRR `ٸxANQNKޥ֪b&W6xnn7]yՕk.^>W_p{8O_JJ)j=j 9E9E9E9E9E9E9E9E9E=>7|yYAu9;_yU/(((.>(($ݺ`>?{̃\mgv˽V.'ox7ug}3/CZRRRR۷o?f3l63f3l63l۶͡C@)E)E)4MΟ;}{-Bѵ=((((((((((((((((((((((((((((((((((((((((((((((((((((((((((s|ԕKrOCxU'6.]$.<ӭ-V8ڵk__߲m6s{={q=_>֪b&=cS,A.'k:s]PJQkuumhvW/z^5/sll\TJQJQJ/ BNQNQNQNQNQNQNQNQCOc~9_o|v rsZ4oׯn:r耻w))Zv'O8}/6<y_s?o8w?k?-vg?ȑ#N<駟vу?tk.').l63f3l63f3۶m|8J2*eThvm^ް牝J)J2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2^}ųGפ/;ǟ{>W^vg?_vu G@EJɧ>)w7>}ӧ>}ӧ>}ڳgCɓoxܽ{G)akٸxANQNKޥ4U/_/6]vy.qW=vk'^u~nm(eTJXxnސSSSSSSSSS>탾×w^NQNQNQNQNQNQz^rrrbrrήG}'5 ?˿u->;V.'//}C'NK/y}K/))ڸx=O*eTʨQ)۷o?f3l63f3l63l۶͡CA)RFir{޷"]N];S`RʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨQ)RFJ2*eTʨѝ;w壮l\S~㇬zg?q.'q1牝nmmxݿwo8u3gN;}ӧO;}3gxWpE]9x/j&=cS,A.'k:s]LJZY?VV{ӵW\zɅ~/xī֟=֢Q)#xs^xrrrrrrrrr z9 yz'2޽-(((((ɱ5֖.'9E9E9E9E9E]N_tغU)Zvӧ<ժSW^<%v׭{^'s[>r݃+ૻy`{z#'ٲNSoi/ںs?8{|[k9ê-kNNQNQN<t̻FhmFhwغ?uǏ;~lc[wغ?uǏ;~lc[wغ?uǏ;~lc[wغ?uǏ;~lc[wغ?uǏ;~lc?x]FhmFhmFhmFhmFhq1hǎ^ҥK}3qԜ7?|\C^?o:Cs>>Snu#_?Gl6Bm#6Bm#6Bm#y8w-{?xsעy۸~uӑCܽsGNQNѲ>ySXnW_?-_qy7?~u|?Getz~_f%ׯ]u۽{ׯ~wyΝ;Sme).0(㨌28v))ڼa;RqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTQGeqTƑi+/{eszGKNNa`ɓss]`&ib&w5 s_ w|1/))qݻRq4ҥ %n\q{x{v81}ˍk9+j)8*Xv< [7o)))))))))zyAݿ;w]/(((((sgnz9E9E9Eq1wA9E9%gڛ_&9{扃o'VU侽/z7ݺuŋ˾η-(h<֪28*~l63f3l63f3۶msAPQGeMSu{޷"]N];S0M8*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*㨌28*v<+-歟!kOl\I\yb[[[j)L~~WoL41MLӤ8 L+W.wW`&9cS,A.'k:s]IG=c 7o]w|;uxU]8 O>88*4y19.OEe{[NQNQNQNQNQNQck-]Nrrrrr\uS첳O9y5U/hexK`}퐛7[-{O<|_W|s%_}Ww|e9?GNX-ezMzӪ_))))))))))u~p7{/ּsU))))))j[闝yh];wC+6Bm#6\de6yŵ+m^qmkW\ۼ6yŵ+m^qmkW\ۼ6yŵ+m^qmkW\ۼ6yŵ+m^qmkW\ۼ6yŵ+m^qmkW\ݼmFhmFhmFhmFhmF\/{Wܹӟٟ|>\myh-[W/Z~˭sG>i.nY?dn?yVhmFhmFhmƼmʽϹkѼm\ȡ޹#(heo;K闝ڷ+J)a0 a;}3f3l63f3l6m6Gܽ{0 a0 aܽsǮsrr6/oسkq `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `00 a0 a `VgIq_v?}kdJt9y֏d&G_;va`00 a0 aLc4Mcwn߶ٸxANQNKeG0(8gh'zݾx9^y")6.0 aBkcu󆜢wϞoO|rrrrrr?w민SSSsGSSs/;2:7>b77~C,6Bm#6Bm#6Bmc6]}~ܵh6_twܑSS첷Op;V {};V[|S?3a ;='#O}/˛V]ruK/d}}ݏ~#=sڲR\xj^/]rm{7_>}flf6fflf6fm~{{:;))ڼanVV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}oV}o޹_#R\藝=G+/Y;|3/;]N:u__}a,.ܾܾܾapw~Gh[َ_>j9E9E7.Nwn߶{wnv)kGK]v={w9aryyR}OuYW+{[7oz_غyCNQNQNQNQNQNQNQNQNѻg _y'sPz9E9E9E9E9E9E]Ο;W^v{))))))ܥWwswCINQN=U>ɳ>G9EsAg<^|EǏ~=m\`]ܾmV}oV}/7f3l63f3l6m6O?]{wm=}{-Bѵ~Mwܱ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{Spe㒜ż?d}7^#?Ku9=Ot5W+wn}`ݹ}۝۷ݹ}۝۷ݹ}۝۷^<k熻wݹ}۩w޶}I#zݽsǪ^޻ˍ]8=;:Ckx^zEo|M~{w=矓BNQNQNQNQNQNQNQNQCO{>̇?mn]|[[1~|h6Bm#6Bm#6Bm#y8w-{?xsעy۸~uӑCܽsGNQNѲ>ySXV~#6J/mm3nNNIZJxO?gk,sC>G}/1.').O闝.'o#{~6^}Mx?C9x:x:xg~Sjݖ]gurJv<]޸d;^,Ϊ_y睷<%;v۲gN[-{ˮ/n޸~a 9E9E9E9E9E9E9E9E9E=>7|yYAu9;_yU/(((.>(((KuS:uʩS:u}[?'>u\c, gNqO>޲8sZ?r=k[ۛNooM.sz3d[{Ⓝ;W12!c2!cm衃'<~yϟ{/oֳ|7xf^[ҍWݸv!c2!c2!c֏|'~p/p;9_d CƐ1d C-sۧ-2!c:}[jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj[5nܛVVVV'ww=WW^Nrעբjv뷕ZZZZZZZZZZZZZZz0|_{Wz0Z<37}2aoIׯx;k?__v?/?4>O}~?o<^ U[石zВ!c1;~%w?coϒiɴdOe%Ӓiɴd޹%c>h׋=koϒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%Ӓit z1f{ 3O6q{%õ:O>d[L?{1={c={ܻed1tWWd CƐ1d CƐ1d ޼~_n˾!c2!cX2ݾuӥ!cܝ:%c }Ƿ~wn]2%ǿ?GwnV9d Òo{_WtmCƐ1޽woɴdZ2-} _GG666lllذaccƆ >9>K%Ӓioϻ\wK, g\z%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%ӒiɴdZ2-LK%Ӓi̳#<]ܫ_v?woSOK%WΝګe CƐ1d CƐ1hoDƐ1d CƐ1,^9ז CƐ1d Ò]x圃}ޒnwÕe {Kz >ڽ mz^zkg}?޼ώ||[^<`/-n\`OƐ1d CƐ1d CƐ1LGM?8tǗ~ۏ/2!c2ɹCƐ1V>jhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh {2Uw1751^VVVV1wW WU M}!c[+;޻=a<|??^hYS;2ac^=r{=|`ݒ!cb̎{ɇw[!#dO>|ءClllذaccƆ 666|sb !#d0ٳ~Ƈwn2?sۓ2BF!#d2BF!#d2BF!#d2BF!#d2BF!#d2BF!#d2BF!#d2ޞ^}+gψ1[\8[Gyŷް7'[,]i2BF+/|ܓO>'Oz''{%ܼi̳%SFcaޑ1d ۓ˗|%ss흫Ne/OͩozL!#<|g[2!c2!c޽yۗ8'?:%}CƐ1d Cưd}Ko铃}CƐ1;uJFXc_>??7͕a'}Og|1d ÒX2!cvq!#dޚ/| Ɔ 666lllذacc>9/;`_FaoYܸ~݉c/[dX2r{2BF!#d2BF!#d2BF!#d2BF!#d2BF!#d2BF!#d2BF!#d2BF3O{W0O>i/~n c?d!#oſӟsO>'|ғO>'_҅W_CKW<~ܛ%Ò)\foOFX2'=|@{9/s/<7_s'W~~"Ɛ2ޞߞ=W12!c2!cm衃'<~yϟ{/oֳ|7xf^[ҍWݸv!c2!c2!c֏|'~p/p;9_d CƐ1d C-sۧ-2!c:}[jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkq/~}_ukΜ٧2%]8ߓ1d 9fcE CƐc6n]YƐ1d CƐ1d CƐ1d CcvK>sے)c1SO;tC9tC9tC9tC?C3cb 1ܻgܖ1d X2yc1b 1C!c1b 1C!c1b 1C!c1b 1C!c1b 1C!c1b 1C!c1b 1C!cX2y=#loqoyiz֦ߜe1ْig碣/o8~{S7|ܻCyꑌ!c2!c2ݛ}OMSrٗ1d CƐ1d K۷n֛>9ؗ1d Ø[d C٘1wsoތ2!cc1d CƐ1d CƐ1d CƐ1d w8Řg1CСC:СC:СC:СC:t=1CaεkN{ܚ%ÒW.[1C!c1b 1C!c1b 1C!c1b 1C!c1b 1C!c1b 1C!c1b 1C!c1b 1Cկ†|IDATyڽݻ2WxqO|mO?sw?dswc1b 5jl̳1<l̳C!c1,]c, gNyU{"Ɛ~ro__kR&/xɛo7__c1,8wfkc1d CƐ1d CƐyԎ5CƐ1d Cưdxܶ^[2d CƐ1d K?vse {K Wv.:8ؗ1-/h.8}C{鉣˗kOyg[x?;v^g?oox̎ׯq=CƐ1d CƐ1d C0O6_wn?r2!c2Z&O[d C[uv→բբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբբփ_փ9O?1d {K~e{7q'c2!c2!c2!c2!c2!c2!c1;~%wn1s7|Ç>|Ç>|Ç>|Ç=~湛nyyWϸ{綌!cޮ;"3s7#ʯ<_̯{WO;o|y9߹j1|ϑg[2!c2!c޽yۗ8'?:%}CƐ1d Cưd}Ko铃}CƐ1;uJƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d w8s%s7>>>駟޻湛nN{ܚ%Ò/[4{we s~mv۞~v~h0 =1y湛nyƘy6_=3O{ׇG??:~eqG5˷wk3;ޒn\Ƶd CƐ1d CƐ1d ô~?Kw|޹"c2!cj>mo1d CoSnުVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVZ&Lj2eRˤI-Z&Lj2eRˤI-Z&Lj2eRˤI-Z&Lj2eRˤI-Z&Lj2eRˤI-Z&LZ-Z-Z-Z-Z-z-n=>ůn=z-ؙӛ>SCưWvw{2!c2!c2!c2!c2!c2!c2^r-czozozozoƘ-KZ,iYҲeI˒%-KZzozozozozoZ갻wn2z#2BMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMz1f{ 3O6q{%õm>eYRMMMMMMMMMMMMMMMMMMMőg!chVfi;._Ev.tm.ҥ]k߿f}3Wd CƐ1d CƐ1d ޼~_n˾!c2!cX2ݾuӥ!cܝ:%c2!c2!c2!c2!c2!c2!c2ݻw}9&3,KZ,iYҲeI˒%-KZ4ƬfٵW85K%-W. 7777777777777777777777777777777777777777777777777777777777L~}iv^ǝ>=ВasGcvǏ{dX2:+2CMz΍.\tiKv.^zEW\v{i&b8{fkc1d CƐ1d CƐyԎ5CƐ1d Cưdxܶ^[2d CƐ1d K?vse {K Wv.:8ؗ1-/h.8}C{鉣˗kOyg[x?;v^g?oox̎ׯq=CƐ1d CƐ1d C0O6_wn?r2!c2Z&O[d C[uv→բբբբբբբբբբբբբբբբբբբբբjMEEEo͘7UsoZ-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-zo';֦[nm:֦[nm:֦[nm:֦[nm:֦[nm:֦[nm:֦[nm:֦[nm:֦[nm:֦[ΜtoWZZZZZz0|_{Wz0Z<37}2aoIׯx;d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d 1fǏ꭪erWݽs[Ɛ1||o cc+3b֑gv7lomKkW/>i[[[[[[[[[[[[[[[[[[[U3O!chV[[[5fݘ1wc܍s7nMoUoUoUoսvyꑌ!c2!c2ݛ}OMSrٗ1d CƐ1d K۷n֛>9ؗ1d Ø[d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d Cư{/<'#VVVVVVVVVVVVVVVVVVVVVv^2fɰd8CoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoմ^_{W0O>i/~n c{{[[[[[[[[[[[[[[[[[[5%'3fɰd8uʵWzzzs7nݘ1wcͽcvv{kc1d CƐ1d CƐyԎ5CƐ1d Cưdxܶ^[2d CƐ1d K?vse {K Wv.:8ؗ1-/h.8}C{鉣˗kOyg[x?;v^g?oox̎ׯq=CƐ1d CƐ1d C0O6_wn?r2!c2Z&O[d C[uv→բբբբբբբբբբբբբբբբբբբբjo_qZE_ꫯx冇uw]rRZZZZZZZZZZZZZZZZZZZZZZZZZ̽sѵ;r 1bbbbbbbbbbb<{3fܛ7so̽{3fܛѻ7gNojhhh赸`>ů`xxcgNoOe ޒ_ލw2!c2!c2!c2!c2!c2!cb̎;̽juIV'NZ:iuIV'NZ:iuIV'eZ;awܖ1d sG1eIV'NZ:iuIV'NZ:iuIV'NZ:iuIV'NZ:iuIV'NZ:iuIV'NZ:iuIV'NZ:iudWy1f{ 3O6q{%õmڔ12iuIV'NZ:iuIV'NZ:iuL+~iޑ1d ϊ1eIV'NZ:iuIV'NZ:ih#m衃'<~yϟ{/oֳ|7xf^[ҍWݸv!c2!c2!c֏|'~p/p;9_d CƐ1d C-sۧ-2!c:}[jjjjjjjjjjjjjjjjjjjjZ_?>Pkַ=o_fyſso\;׍yε+\tu璫;\ݹ%Ww.s՝K\re+;;Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-Z-z}EWw.s՝K\ru璫;\ݹ%Ww.sѕuv딹7 WU M}!c[+;޻=CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d Cى_޻7:)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2Wݽs[Ɛ1||#ZʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴRފWΝ3b֑gv7lomKW8^iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZY_!ch=IVʴR2iL+eZ)JVʴR2iL+eZ)J-kw?3O[2!c2!c޽yۗ8'?:%}CƐ1d Cưd}Ko铃}CƐ1;uJƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d w?sjuR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZiury^2fɰd8wfŷ[Q2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2iL+eZ)JVʴR2=ВaK/<έԲV2iL+eZ)JVʴR2iL+eZ)JVʴR2:t-9~ܛ%Cf8uŷViL+eZ)JVʴR2iL+eZ)JVʴR2Vle CƐ1d CƐ1hoDƐ1d CƐ1,^9ז CƐ1d Ò]x圃}ޒnwÕe {Kz >ڽ mz^zkg}?޼ώ||[^<`/-n\`OƐ1d CƐ1d CƐ1LGM?8tǗ~ۏ/2!c2ɹCƐ1V>jhhhhhhhhhhhhhhhhhhhhj7_~amV7/?7]~0/}so\;2y޸p{yo\8 q7.ƅ޸pޥƅ6OSˤբբբբբ22ih{suǼګ޸p{yo\8 q7.krS'|m=sܚVVVV^[~_[^?v>TƐ1-x!c2!c2!c2!c2!c2!c2!iգJY+eRJY+eRJY+eRJY+eRJY+eZʴ>!cxxcG7SZJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRܿgk7z51f{ ȯlm͉- ǎhCղVZ)kVZ)kVZ)kVZ)kVuo!c=G֭WZJY+eRJY+eRJY+eRJY+emZ?re璗_zѴz$c2!c2!cxm_So?wӟ\e CƐ1d Ò.Oe C0)CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1d CƐ1||#GWZJY+eRJY+eRJY+eRJY+eRJY+eգ^}圳ۧͭ K7^i|RJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eRJY+eiZyw}Y}$c{'۳ۮ\SOڽ%ØS97_^=TRJY+eRJY+eRJY+eRJY+eR=~{fܛ̐1~sgm衃'<~yϟ{/oֳ|7xf^[ҍWݸv!c2!c2!c֏|'~p/p;9_d CƐ1d C-sۧ-2!c:}[jjjjjjjjjjjjjjjjjjjjj/΃|ӿ?Ͽ.?e{gKtlnEEEEEEEEEEEEEEEEEEEEEEEEܛ+;uL~s•;N?N8N8N8Nmnڽ[jZZZV=y?/>Gks+\ݹ^oĉN8N8N8N87._zoϜ6բբբբփ_փ9O?1d {K~e{7q'c2!c2!c2!c2!c2!c2!c1Gkλ~׮~׮~׮~׮~׮~׮~׮~׮~׮~ <~ &, lgw&A g)ٮ^CIDU~P,J2<ϩ!muz[^q_i w^gWnk~mw[~mw[~mw[~mw[~mw[~mw[~mw[~mw[~mw[~mw[~mw[~mw[~mw[~mw[w鋞s>72./.~מ9'/\xvsrTG_|5מxw{~mw[~mw[~mw[~mw[֝ܳ+o~S{He yWZOWs-~mw[~mw[~mw[~m[,n;{W*Ce 2TP޿\~q7M]\Ys^q-|E/~7w[~mw[~mw[~mw[~mw[֯^ysϮ|r8 Ocݻnknknkݻ8~͵2TP*Ce W}t_Ne 2TpQ镳S#*Ce 2\Tz8|'OTˋrlo'*Ey>)8;_W>{o+7n{zY./{w{'*Ce 2TP*Cex w/_Sw>'*Ce 2T;;P*^:;n7gM,ϼ_n?8/?g9oy^o^ӟɉ'''NNN899qrrbXo^c77wk׿c~?rGûv6NNN899qrrɉ^|Eۿc9ͽ+_?Wރpޛ/W*Eoo;>T*Ce 2TP*Ce 2TP*Ce 2TP*Ck/,Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4so2TP?z[yn2~aZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKgx%~P.*ǿ_sz2TZ?{ŴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZzϹ_*Ce zo<7V0ҴZVKjiZ-Mi4ҴZVKj+Kן߸{W{[2TP*Ce 2c_5?zߟo|x2TP*Ce~ {De !^zP*Ce 2TP*Ce 2TP*Ce 2TP*Cexz7gM_VKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjgW^z{~72TO+KjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVKjiZ-Mi4ҴZ,=˵w~ox2T?rٿ+*Ce8w?x篚VKjiZ-Mi4ҴZVKjiZ-Mi4ҴZVK=ҋݻTPx'xEӕi4ҴZVKjiZ-Mi4ҴZVKji=]'x2TP*Ce 2T ?\O~|7}_ӝ?|;2TP*EWNG\T 2TpQ|p3Oy|ûv櫮^899X,, bX,, '''NOO}k/߸8ћћћћ{o|[=y8ܸ/{2\^޻K2TP*Ce 2TP*Ce 2TP*Ce 2TpޛћћћћћћћћћћћћћћћћћћћGqT*Ce !Gwޛћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћ\e 2\^ˋ 2TP*Cϝ777777777777777779.2TP*Cϝ77777777777779| 2TP*Ce 2c_5?zߟo|x2TP*Ce~ {De !^zP*Ce 2TP*Ce 2TP*Ce 2TP*Ce qތތތތތތތތތތތތތތތތތތތޜ&Ce 2TpޛћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћGqT*CetyQ./EP*Ce8:9MUP*Ce8:9MUP*Ce 2TP1p?mͿNwTP*Ce ^9;=rQ2TP*EW<}De(w?x[>}2\^7_~CO/ˏ}߬?Wэ߾zSqO,or㶧򢼷{w=}r2TP*Ce 2TǏ>>>u/<}r2TP*Ce\^ 2k~эތތތތތތތތތތތތތތތތތތތތތޜ^?o{G7z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3zs<{7orrrbXX,baXX,gygwvzMoތތ1?'׌q0ߞݺW7NNN, bX,, ɉS;o7;afff7|[+_{yo7^e exRe 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce w}2TP*Eo'*Ce q<ҋTP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*CիǷ}s7u?;×S*Ce 2\TzT{EP*Ce 7_9=oypyQ| N=,?z5O^}G7gOŕO?G?ʍ۞^ˋ]ɥP*Ce 2TP? GrԝɅP*Ce N{ry2Tp>NG7z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z3z~jwѝʵx<|ܜfffffffffffffffffffffffffx>lo;{=o޺bX,, bX,, <>c?zc?78޽[7_uɉbaXX,baX899qzzx_{u1ތތތޜރ~}rA8|߫ 췷}O\ 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2c_5?zߟo|x2TP*Ce~ {De !^zP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2TP*Ce~z՟o߿g;w*Ce 2TJjT*Ce +g>y2\^g{-O>Q./ʛOu⡧GϾoɫCo__=?_?w|\qryQۿݻ>T*Ce 2TP*G_{w_N_>P*Ce 2uO./TPG5w?|FoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFoFsэތޜ!G|8|~wz{7޼uɉbaXX,baXX,y}v5=6z3z3zw<7 vûv櫮^899X,, bX,, '''NOO}k/߸8ћћћћ{o|[=y8ܸ/{2\^޻K2TP*Ce 2TP*Ce 2TP*Ce 2ṬP*Ce !((((((((((((((((((((((((((((((((((((((((((((((((((((((((((("TP*EpyQ*Ce 2deeeeeeeeeeeeeeeeeeeUUP*Ce GGGGGGGGGGGGGGGGGG2TP*Ce 2Tݏ}{}kP*Ce z72T8{k*Ce 2TP*Ce 2TP*Ce 2TP*Ce 2deeeeeeeeeeeeeeeeeeeeeeUP*Ce GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG2TpQ\^J2TʐyqqqqqqqqqqqqqqqqqqqqT*Ce 2deeeeeeeeeeeeeeeeeeUP*Ce 2TP*^'?P*Ce +gڣG.*UP*Cep>ʙO ~ӧOTˋ7}vSpvzoxeѳ~#??8>W}/|ϗ?=-Wn\^zoO.UP*Ce 2T^g?'ק|O.TP*Ce =vvzݓ 2Tѽtzw>ћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћћ؋oy떓bX,, bX,<3>쾳kz{lfffw<__{χwoW]qrrbXX,baXX,NNN;y^qq 7777罹 |G_{{p>q_*Ce(mw'*Ce 2TP*Ce 2TP*Ce 2TP*Ce||ٍm֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6 Wi{m#2T?;pucdl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'+/;|pQ=~/[OWr/>P*Ceoz_>gl֓zYO6f=٬'dl֓zYO6f=٬'d䅫;ǏUP*C{^K&dl֓zYO6f=٬'dl֓zYO6ɋמ9]e 2TP*Ce ׿wg߿. 2TP.||﮷|>Q*Ce㹗^2TP*Ce 2TP*Ce 2TP*Ce 2TP?~oy/ml֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYOn7|,*Ce Gԫ/٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=٬'dl֓zYO6f=<7n 2|G9W;w\e GwxzYO6f=٬'dl֓zYO6f=٬'dl֓zYO^~ԧ|"*Ce Gԫ/dl֓zYO6f=٬'dl֓zYO6f=٬'WyW8 2TP*Ce W}t_Ne 2TpQ镳S#*Ce 2\Tz8|'OTˋrlo'*Ey>)8;_W>{o+7n{zY./{w{'*Ce 2TP*Cex w/_Sw>'*Ce 2T;;P*^:;|~wz{7޼uɉbaXX,baXX,y}v5=6z3z3z3z3zqT8fx>{mnՍbX,, bprrԇۿc9ͽ+_?Wރpޛ/W*Eoo;>T*Ce 2TP*Ce 2TP*Ce 2TP2>瞽wn;|y>y>y>y>y>y>y>y>y>pmzTp>7o/}|y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>W/?S./'3 ?;'zE }8uO<<<<<<<<̇>/gkGW*ͭ_ՍO>g``````pܝݻ]ݻx2TP*Ce 2c_5?zߟo|x2TP*Ce~ {De !^zP*Ce 2TP*Ce 2TP*Ce 2TP*t'3|0|0|0|0|0|0|0|0|0v[oa 2>o~Λo矙y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>y>pp7p>p<??3?E~h߽p<<<<<<<<7nyʧ|2Tgm7|g```````tõ*Ce 2TP*CիǷ}s7u?;×S*Ce 2\TzT{EP*Ce 7_9=oypyQ| N=,?z5O^}G7gOŕO?G?ʍ۞^ˋ]ɥP*Ce 2TP? GrԝɅP*Ce N{ry2Tp>NG7z3z3z3z3z3z=|0{`f>=|0{`f>=|0{`f>=|0{`f>=|0{`f>=|0{/ތތތތތތތތތχg^|~[X,baXX,bgg^c7777777777ouUWnX,baXX,>|wo\wyo=_W-<n\P./~{ɥP*Ce 2TP*Ce 2TP*Ce 2Tʐquwn/>0]Y:|P={ţG<}ٍSoqKѓ 7_}?y\kO./\T\{tes2̇=?//~sP*Ce 2Tݏ}{}kP*Ce z72T8{k*Ce 2TP*Ce 2TP*Ce 2TP*Ce ?~go޺N\eJ^_n2ϻ_^K?gE8Uݹ__?_Kx2T~[\^^8~[*Ce 2TP*CիǷ}s7u?;×S*Ce 2\TzT{EP*Ce 7_9=oypyQ| N=,?z5O^}G7gOŕO?G?ʍ۞^ˋ]ɥP*Ce 2TP? GrԝɅP*Ce N{ry2Tp>NG7z3z3z3z3z3zҋ/8N;;N;;N;;N;;N;;N;;N;;N;;N;;N{uן[7_s777777777a{-x-'''baXX,baXxg|}g|xn|ի'''baXX,b߿㝷0z3z3z3zsޛ{W-~˽7_2Tˋ{w<}r2TP*Ce 2TP*Ce 2TP*Ce 2d9`Upg//K2\^+?7nKO./\TmqvV?De te__@/~_ 2TP*Ce ׿wg߿. 2TP.||﮷|>Q*Ce㹗^2TP*Ce 2TP*Ce 2TP*Ce 2Tp7xٕ\sEJ///~pp}2\^7_YN 3_ȷT$TW %&U9nG3㙴˝ơ噎3:vj4nIºl"A\pF >g{3XY>⳧O,6?'y}/}<=w|뭏ў;~3[,6]rbkSIIIIIIIIIgO}|gǾ=e>ؚ+9)9)9)9)9)9Vڜ+9)9)9YǗ}q0qCoz񣇬榭M[67mmnܴiks榭M[67m楘b^y)楘b^y)楘b^y)667mmnܴiks榭M[67mmnܴ}y1qCoz8ơ7ѥn\j;޻Ξ9ciiIuut]:]ٵk׬,6ύCoz8ơ7qCoz˫9uZZZut]:]Ғen\s9;bcCozлi׾W4YzO?r!/_PrRr9/^Zu5M%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'9mx?~"BD!"D"BD!"D"BD!"Z}MQrRr{wk!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD.?rڰ9w\gX>z{߱97/ٕK?"BD!"D"BD!"D"BDV{e=%'%'x{^!"D"BD!"D"BD!%>{?}WXo)9)9)9)9)9)9.bKIIIXwa%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'k9"BD!"D"BD!"D"BD߻oGKv|ׯ"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D"BD!"D>soZ%'냟u+G\\=?K6߻[9!"D"BD!"D"BD|>l^#ݾuD"BD!"D"BD!"OJPrRrRrRrRrRrRrRrR'}g7^n+9)9)9)9)9)9ʲ3󒕜K#NXlm)9ٜo^wibK8{k=}bY-??cOcyv?w[o}{تf9/_[JNJNJNJNJNJNJNJNJNJN?{?8;?.v\IIIII?|\II88|[7qCoz8=lc}t'?ԉN8ubũ+NXqĊS'V:ԉN8rݏoY8ơ7qCoz8_| g?yƺ{w?!"D"BD!"D"BD!"?v6GK|۷n" "D"BD'䤤{OV}5_io._1VrRrRrRrRrRr2/ىeg%+9)9)9)9)9GNXRr9/n߼yŖyq)#>{bعC[~~Ǟ'?sǷ^?c߱Ubs^\z+-6<7~pwo;]vSne͹qp|۷nX8ơ7q?zXXwҪcGt Z=w깳Vϝzsg;k9n\wgmơ7qCoxwn]~8ơ7#q3Vϝzsg;kYZ=wօsrikW˷ݸvGOٜ8ơ7qCozX]Z=Ƶ3t]:]Nuu]vypaC8ơ7qCoz8ơ>zS'<%]Nuu,--Y^^v5/#68ơ7q;&_|~勯}ݝO#ǎ %'%'U7_TrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrRrӆwG ZDk"Dk5њhM޷t%'%'ٿw֚hM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM.;rڰ9w\gX>z{߱97/ٕK?5њhM&ZDk5њhM&"Dk5њhM&Z3M=ovkoִlmmg6L"B&ZD%>{?}WXo)9)9)9)9)9)9.bKIIIXwa%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'k9Dk5њhM&Zmy%;|ԍA&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&ZDk5њhM&Z˗ڵ䓵JN6?Vx_'7/YXnDDk5њhM&ZDk5њDk5m9`c}4/ټdG}&Dksg?f{-њhM&ZSJPrRrRrRrRrRrRrRrR'}g7^n+9)9)9)9)9)9ʲ3󒕜K#NXlm)9ٜo^wibK8{k=}bY-??cOcyv?w[o}{تf9/_[JNJNJNJNJNJNJNJNJNJN?{?8;?.v\IIIII?|\II88|[7qCoz8=,riS'=zݻٳǞ={ٳǞ={ٳǞ={޽ʊ׮x8ơ7'>/{Yoz;v=V/ػw={سg={سg={سg={ؽ{[n:+>:}8ơ7qCozy7]5}]gϜ:]NuuڵÇkVơ7qCoz8ơ7 Μ:w---Nuut]gii[7x1ơ7qCo}4k_+_||'9v䐗/^(9)9ٜW/y֦6sm?555p={o>o>o>o>w^'NZZZZZ3M=o;JNJN=\n55555555555555555555555555555555555555555555555555555555555p9_ӆ͹S'/?{C;͹yɮ\h1ZZZZ`X555554.k)9)9yZk"|>we|KWV]ҕUW]v㛶6E֚֚֚҆%>{?}WXo)9)9)9)9)9)9.bKIIIXwa%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'%'k9ZZZZ3Me{o>o>o>o>w^=555px8l^Gݸ~ִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִִּ|[|@?~/ڃ%Kݭ\Dhiii4yⅈZZZZw>;l%lao5'\Ջ._YuʪKWV]zk}Z֚֚֚8}~pBIJNJNJNJNJNJNJNJNJol]m%'%'%'%'%'%'XY?{f^yɞ<~ԉ-%'.Xl)9ٜgOpXY>⳧O,6?'y}/}<=w|뭏ў;~3[,6]rbkSIIIIIIIIIgO}|gǾ=e>ؚ+9)9)9)9)9)9Vڜ+9)9)9YǗ}q0qCoz񣇥uW.: :}8ơ7qCozy7]5}]gϜ:]NuuڵÇkVơ7qCoz8ơ7 Μ:w---Nuut]gii[7x1ơ7qCo}4k_+_||'9v䐗/^(9)9ٜW/y֦6䜔!oKrPrRrRrRrRrRrӆ. %'%'%'%'9mx?~ZZZo__c;vc;vc;vc;v_ۿjVVVVMd[ܿ{GIɣkݭ .;rڰ9w\gX>z{߱97/ٕK_UU5V.^̙Μ9̙Μ9̙N__OjXhijj~vko֪֚.^s/6Ys㛮]lkkSDZZբIi[ݒg=UrRrRrRrRrRrRrRrRrr]_a~p?̷Kqm~d{$m;~7uic]PrRrRrӺ.m))9)9)9)9)9)9iCNrPrRrRrRrvhZZZZ^x77gfǎvaǎvaǎvaǎvC ݽoGKv|ׯ֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪/_xkגO(9Xǯ[Y>s~X{p߼dicϟUU5/_}3gN;s3gN;s洏>:СCot颈 ||wXK6/nߺ Z"Ν/_Zloolxk]ѣjZZZ| %m(9)9)9)9)9)9)9)9)iޓUY(IDATw~xڛWL/KvbeYyJNJNJNJNJN%{S'V,l΋7zbds^=}õ`eϞ>,v_򖟟|f'~tG{wlb؜ׯ^veM%'%'%'%'%'%'%'%'%'%'ϟ=w]bkd[Y>bksd}_>8ơ7qCozǏ]'w𠥥%]Nuu,--9z7[=hzڹΗOƃ?[7cGsyvut]:]Nux n_ӧl΋qCoz8ơ7qm.wUCuKKKut]:]ή]<|fenz8ơ7qCozX]^̩|Ғt]:]Nu,//u㚋yhz8ևޝO/u׾Χ{cGy⅒yqҪׯYlm*9)%ѝSo뿰|Yy8_{?O]y+9)9)9iKſ7?'m%+9i;'"BUU޽ێ;f3l63f3l63ͼ꫾/IUUU4}n[ܿ{GIɣkݭ֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪֪ Ο;rڰ9w\gX>z{߱97/ٕK[V5o/ W^y+W^+xW+y ~vko֪Z'ίbySKW.ϋ+W/q?֪֪fcc[ݒg=UrRrRrRrRrRrRrRrRrr]_a~p?̷Kqm~d{$m;~z{G3wl{ȃ%)9gy|_+ӟ؃KVrRrvjzbۗ%_f3l63f3l63ͼ꫎9jjj";w{mh^yɎ/u5PkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUk oZ%'냟u+G\p/~k,mۿwϟijY[[|^yW^y+W^+ؿ;~~0 ֊[sh^yɖv PkZsF^|̓7n]`qaZZZ>'䤤{OV}5_io._1VrRrRrRrRrRr2/ىeg%+9)9)9)9)9GNXRr9/n߼yŖyq)#>{bعC[~~Ǟ'?sǷ^?c߱Ubs^\z+-6<7~pwo;]vSne͹qp|۷nX8ơ7q?zXZ_wҪt]:]Nuѣn߼nYqCozo+m<< ޱ#x]vNuut]:o[nqׯ^S68ơ7qCoz86GVϻq{:{挥%]Nuut]g׮]>\|?7qCoz8ơ7qm.^pIkiiIuut]:KKKݺq 숍q4qCozCΧ__k_wd}=yȱ#|BI漸zi,6}txxůox3[%yvw9w6oGy?}k_sw䴡$ xۣGVVV{n;v0f3l63f3l6ꫯl&VVVV=or%'%'ٿwZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ+8/iܩ{sΟ=c!|ܼdW.]rlZM??7|fΝviΝviΝv|׿[__s4vYOIõ޷GUUDxɚΝ5٧?'>pgΝrA|ǭZkjj66ֽսgOܸ}Ww؟\o+-%'%'%'%'%'%'Rܽsۅ^l)9)9)9I=䤔o/|xfp]7oܼ$C܏~C7ٳǞ={o~=d=ZSkUkUkUkK_/| flf6fflf6f^}UGVVV{mh^yɎ/u5PkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUkUk oZ%'냟u+G\p/~k,mۿwϞio__/sN;wsN;wo}?߁loo{|*"||>l^#ݺyZ֬g|أ'=||ߍ:Qǎ8{jO}N(iCIIIIIIIII͟k\bzd^+gKVrRrRrRrRr2/ٓǏ:bds^ܾyݥ-%'S=+G|fs◷3;=񣣏Oفt=o?s~ƾc漸~W.[lm*9)9)9)9)9)9)9)9)9)9yoط߾wݧ[s%'%'%'%'%'%'C[s%'%'%'aoݰ>ơ7qCoz;~ʥU?8ὃ---Nuut]giiѣGݾy6G8]ݿyr-8q}ty1qCoz8ơ7ѥn\j;޻Ξ9ciiIuut]:]ٵk׬,6ύCoz8qs2/Y Μ:w---Nuut]gii[7x1ơ7qCo}4k_+_||'9v䐗/^(9)9ٜW/y֦T:M4ӤN:Msϟ?WyQ/~vkoVZ'њ><}R>}O9{?8\ރ;yO?}I7<쩒kpm_aed^wnp#ۋ-%'%'%'ic񣇕R<󹻇_}󗼽~~a>AM͹'o|Ç~ɓ'nݺ~)9)9Yρ{V:uR—%_f3l63f3l63ͼ꫎> j:uܽwmcK6/n\PIZ'Nj:uRIZ'Nj:uRIZ'Nj:uRIZ'Nj:uRIZ'Nj:uRIZ'Nj:uRIZ'Nj:uRɋ|@?~/ڃ%KgZ5?я??N:M4ӤNZ'sЛ=}?@D[sh^yɖv ":i:|ȳyOupz㢫7/ywR&Nj>?8 %'%'%'%'%'%'%'%'%^{7O{s嶒yN,=3/YIIIIɼdO?rĊ֖yquV[,l΋Oy,'_<ď>>g};hZlˮ_lCc~kwZl͕ s+GlmΕˇݾu88ơ7qC+V:]Nuu%GuuXCoz?;ry3ޱ#x]vNuut]:o[nqׯ^S68ơ7qCoz86GVϻq{:{挥%]Nuut]g׮]>\|?7qCoz{#K?o|g>zS'<%]Nuu,--Y^^v5/#68ơ7q;&_|~勯}ݝO#ǎ %'%'U7_TJ2<Νn,lo >ݰ7x_ǃ=䡯~=Ç>}͛蝃ot48tZMӤNuouoxS%'%'%'%'%'%'%'%'%'7n۾|KIIIIIɼwvG[JNJNJNƺG+9)9)Xlm,Ey뛿ҿthksּ,n7~/Hb{ei 'ʕ+>}ÇΝ;???0/Y{߫j&44M _җ| _0f3l63f3l6ꫯ:|04Mi=q4/ټdǗq0MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiLd&44Mi2MiV䓵JN6?Vx_'7/YXnϟ=Sk^{5kf}}]&44Mi2MiiRkZ?}њ۷n9y%[>rح7DiZw={O<~Љ{swCWϞ=>s4ID>64z}I٪k?<+JNJNJNJNJNJN%;̼d%'%'%'%'%'=yȩ+[[JN6]Z=oRr9/Ξ>|gOXl;/~yO>?:_ğxO{[=wg;jYl΋W/~֦Ϟ}{~ˮ}j5WrRrRrRrRrRr2ϭ,9WrRrRr>/v `z8ơ7GK\Zu;xҒt]:]Nu=z׭?kc}4qCo}x-;?u08y ڵKuut]:]y7ܺu'~N9/ơ7qCoz8ơ>zލkW sG{3g,--Nuut]:vᚕÆqCozG?7O}}ݱgNt໖t]:]Nudyy٭\pǎG8ơ>||/uw>MևޓǏ;r/l΋Vݼ~bkSI)<{{V}; yíC䋿_mǏUW^Gٵkwו˗m΋6smּ|ba{Xd׮]va6fflf6fflW_?ڲX^,l/ -ܿwGIɣkyˋ/l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ |36lmΝ:7~3wlmKvEǗ>VVVﭷjb{b^xŋ^xŋ^x/^}U}^,lmnzkג<\{`=^xa{ otee\t#S'\rّCrλܽ{Njmۋmg쳧JNJNJNJNJNJNJNJNJNnܾ+;ݷ}y)޹ُl/uǏVrRrRr2/Yzv_f=g%g|lü$M{/ſʕ+.]'%+9Yzba{Xݿ _lf6fflf6ffW_}iX^,l/^x=q4/ټdǗv?ba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{X^,l/ ۋba{0ϽٽᓵJN6?VxO>}aN_y:ؖwjr֦1w4N%e"UĉҲE퓈 Ac|>p_߹S`wy~W.]/Fa0z=Fg'~?wovl0z=F9}zF'udddddd'ir||ʑÇmnnJ)I)I)I)I)I)ܴ]8wVZZZZi#TԒՒՒ?v߿_JIJIJIJIJIJIJɾ}ܼyǧN~O?9mZZZZZZZZZ6U.sU%?u䐳gܔRRRRRRR~8}TԒՒՒRgo}-׮wOܼ6M._8>|榔Mn޸|xVZZZZd _{?_q0񣇎W/^=yzϯ_^F7/[W֣~w{?ysoΩ2T|{?|MGo_̣|<ݵ^e^M `ccƆ 666lllذaϞ=_e<[/X/Fv֛vwwzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYzYxܙz4evsg<+.:uW/^]ܿoK/ӧ]pyGzGzw=_#<7Ӧ{wFv{<ݵ^ww]~ͱ~#G>޽?qMX/Փ'H>1z=Fa0zq_Qpxu˯zԘFa0zp-~a0z69ua0F׾ꇿ컇/ͣc{?oq1nkWoW_;x???uas]e^e^њK~Ɔ 666lllذaccÞ={:xW/^X/X/绻>~ݡhG7/{X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/X/}عoЦc.?̣6yC>Ń>;{[_KO?|w]ׯ^u{TͣGw|׮z]7<]=qe6ԁ޶}sO\|fz2b,^<OьFa0z=^{# ^=ol_g_=7z=FlssSJIJIJIJIJIJ榭->¹TՒՒՒՒՒՒՒՒՒՒՒ?v߿_JIJIJIJIJIJIJɾ}ܼyǧN~O?9mZZZZZZZZZ6U.sU%?u䐳gܔRRRRRRR~8}TԒMu2F̳zou7 ƙ[6|3?r!RJRJRJRJRJRJ677mooy㚋?cZjjjjɦ2|W^~/TǏ:~_xa0zX >~z1z=>7ko]_Ykx??ĝܿ|ooMWʕ˗,0z|]-lg< ~U666lllذaccƆ {˿1,lg<[ݛ7ݻ{awzzmg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lgky܋ݵxu2/n0z=[[ſ^y?~%=vuݵag<[Y&/__accƆ 666lllذgߋ-lg<]ݸv͡hG7+/ykg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<[2ϖy̳e-lg<ּ/v=_sr?~`=M}-_>zd,y6a,vo~;7׿~'}{3agkW8|=mͣ;uW=ݵ̳Hocw{̧]xN8~rG?4ag҅svwF<;c>ylxwx}ۻ;o{S^f<\z+a0z=Fó|ݟց~]z6z=FCϜ>fFTGݺyTZZZZZZ[G4rO>>677lnnr.;MU-Y-Y-Y-Y-Y-Y-Y-Y-Y-Y-cG\<۷͛7}|W/Ӗy%%%%%%%%%kSu97]U3[G9{M)%)%)%)%)%)%)%GL-٣'ֿs__m?~iϦΜÇlnnJ)I)I)I)I)I)ܴk.̇Ǐi%%%%Jv_s_{ S?z|a.5a0zs?+;?K_K;a':wy1vG7z=hw{w-lnn}տWmllذaccƆ 666ٳ//FFFFz7owo[/ONԉz4evsg<+/:u]wwww^zK/䥗^K/y饗Owv߷̳ѻѻhi{wFv{oY/ѻt邃=~h1Ƕ>p~;|?7qecxH>1z=Fa0zq_Qpxu˯zԘFa0zp-~a0z69uaOO/~?ڻ7M_??;/l7_?ULaa0o8tjS5z=vu[FFFFZK~Ɔ 666lllذaccÞ={WzVytNlor]&7_}6?kNnsg^ܿg]ɻoG-lnngO?_o|K/䥗^K/y饗ocwweqeMȈf0z=FaD]xc?a0z=ѝ:-VэFaG>uzmíϯtݵ2g?9}prO[/p=6<3ԇ'|x2[ˮ_lw=Fa0z=~Է+ڝ'v׳a0z=J~1e6z=Z>ZԒՒՒՒՒՒ:*ɕK|)G)$$$$$dss֖[_wYmjjjjjjjjjjjɎ;s/$$$$$$d߾}n޼S'\z٧C-Y-Y-Y-Y-Y-Y-Y-Y-YKιq:r3glnnJ)I)I)I)I)I)I)ٿv>gj8okȑGK?}O<;s#)$$$$$dss7x3?ժl*/^~}W2L%{>ՋFe^>Kazzυ9{a0nv׋ba0z|{w#=z?S/e{g{g{g{gx^њGzh͛iӽwFx7-GzGzGzGzGzGzGzGzGzGzGzGzGzGzGy?rq=2;ч|ݹglo}lݕm;jw#=B0'OpGz~_|_xVOZ<G4y#s}-<1?΁/v};x]gĥKwʕKFzѻ/=>OFa0z=nܺWsok5a0z=1ܹ}z6z=MNl5zYݽG=rȡ;t?q}Ww#:ϼع|_x~_|ѣG4YY#\G7Q׮\̋a'?ҋ}zG_8w{7o8;ZGXه'ьFa0z=^{# ^=ol_g_=7z=FejjjjjjjjjT]p΍kW֑CΞ9cssSJIJIJIJIJIJIJ=xQ%?SK62Bv?o /o}/6|3?r!RJRJRJRJRJRJ677mooy㚋?cZjjjjɦ2|W^~/TǏ:~_xa0zX >~z1z=00z=ѭza0z=Fa0z|wDk5<;t{ڻw{ڻw{ڻw{ڻw_~ٿGmDk5њh4UoM1z=;=Ώ4!Z3zwUo߭?uOݾs;}zϱ|"Z1z=Fa0zq_Qpxu˯zԘFa0zp-~a0z69ua0a^z-lw]/v׋la0z=Fa0zع׻oegњhM&ZSKoڻw{ڻw{ڻw{ڻw{z嗝6U:1Dkzwy'g~ퟺ}ܹOoz}ٳg۷Gc8y|O>Ȉf0z=FaD]xc?a0z=ѝ:-VэFaG>uzmíϯtݵ2g?9}prO[/pm?ٟ][zhJ^y/}:Óǭ2ׯ^vea0z=Falo~u_m<FaP3'Y/a0Qn0բQ1M\O9rM)%)%)%)%)%)% jSUKVKVKVKVKVKVKVKVKVKVKvϟ~)%)%)%)%)%)%)%sM:>ejjjjjjjjjT]p΍kW֑CΞ9cssSJIJIJIJIJIJIJ=xQ%?SKVKVKVKVKV_ܽ7<|M 9ÇܔRRRRRRi{{\<jUKVKVKVK6k/+n=~c 2W/]kv׋a0z=Fa0z=Fa0z=FC{ܽs[Ik&MhmڤIk&o}߽c0zxŎz4UMZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&Mz?:ԉz4evsg<+/>vԲ̦jmڤIk&MZ6imڤIk&MZ6imڤ}v5z=<عin&Ϟ=ǧ?^Oxk+W/yiZ6y olza0z=Fƭ;~;G-Qc^=FaÝ۷?k!Qa0z=Fa0z=Fa0z=Fa]1iZ6imڤ֢֢֢֢֢֢֢֢֢֢b&MZ6=\rɡhG7K/kmڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6imڤIk&MZ6im$g{;T9}yG?syt&/x imڤIk&MZ6imڤIk&MZ6imڤpM8}'s~ϯ_5lx3_olW/~b0z=Fa0zxzⷿoS:pׯkw]Fa0z(Ǭa0zjqb[7ojQKVKVKVKVKVKvb먘&W.]ǧ9|榔M[[[n}~݅sg%%%%%%%%%%%;~숋ٿ}yOpe~r2dddddddddm.]8ƵJ~f!gϜ)$$$$$$dyZLj1bTS-ZLj1bTS-ZLjQ3oln]ÃFZL*ڤG#=B{=h4jTi~>1z=Fa0zq_Qpxu˯zԘFa0zp-~a0z69ua0z=Fa0z=Fa0z=Fa0zع׻oenTS-ZLj1bTS-ZLj1bTS-ZD\|ѡhG7K/=Lj1bTS-ZLj1bTS-ZLj1bTS-ZLj1bTS-ZLj1bTS-ZLj1bTS-ZLj1bTS-ZLj/v=_sr?~`=M}-_Ȉf0z=FaD]xc?a0z=ѝ:-VэFaG>uzmíϯtݵ2g?9}prO[/pm?ٟz4?ue<c>#ܔRRRRRRikk˭ϯp6UdddddSMMZjjɎ;s/$$$$$$d߾}n޼S'\z٧C-Y-Y-Y-Y-Y-Y-Y-Y-YKιq:r3glnnJ)I)I)I)I)I)I)ٿv>gjjjjjjjjjjT]pޙ9|M)%)%)%)%)%)%ݼq1VddddSn+~k/a*G?^0z=,p_fw=Fa0z=Fa0z=Fa0z=hw[7M5+y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y%?{ݻ{a?~s6U%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%RJ+%ҦOq=2;ч|ݹglo}lݕWJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)yνF;TRJ+%RJ+%RJ+%RJ+%`[=}b0z=Fap}_{1Fa0[Οݵamrba0z=Fa0z=Fa0z=Fasw~hU+%RJ+%RJ+%RJ+%RJ+%RJ+S.]<{ZͣGwb{紩*y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)y䕒WJ^)yҾ?}6?kNnsg^ܿg]ɻoe=ˇc>#ܔRRRRRRikk˭ϯp6UddddS߻cOԒՒ?v߿_JIJIJIJIJIJIJɾ}ܼyǧN~O?9mZZZZZZZZZ6U.sU%?u䐳gܔRRRRRRR~8}TԒՒՒՒՒՒՒՒՒՒ|3?r!RJRJRJRJRJRJ677mooy㚋?cZjjjjɦ2|W^~/TǏ:~_xa0zX >~z1z=Fa0z=Fa0z=Fa0z|pKϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞϞzo {~=?qs&s|rqjfTeƕM8H*X*W"KFՠLѭ&)>v $؍o?[;.e|W9}/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=s@6PnFLÄO?r;Ů0{w_/=/=/=/=/=/=/=/=/=/=_7n7p_|oL9}/=/=/=/=/=/=/=/=63.e 2\p.+n9+|, 2\p;s~ւp.Æk-p.e 2\p.e 2\p.e 2\p.e|%ofʫKOKOKOKOKOKOKOKOKOKOKO擏>d>{!'Fwp?x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x鉗x嗼n:K|&^|ydta5nCKOKOKOKOKOKOKOKOKOk>,3 w{+>{KOKOKOKOKOKOKOKOK.}>2\p.e /|#~v?L 2\p[׌.\p.e.^}5?O-q3:ϟxSj-yK +ȝ߿ }-nFG6k^xuWoX-fftvݚfM-7 2\p.e qy}/>o~ o[3 2\p)^.(7#.e뜸^s"HN"9Er®<~=lF4!B @MӰ\.ytǣO?f)S$c~wǿ?yBN.=۷oB @!BuϞ=uk>}nF'HN"9Er)S$pySl;R{?i!B @!Bܾ}/_p" 9Er)S$HN"9Er י|fwh!B!Biڶٓ-=? 9S$HN")??OukV9.e܌NOw[je 2\p.e 2\p.e 2\p.e>{){M>|?'|?'|?'|?'|?'^_-Y^\˸Yܝq_E>џOD>џOD>џOD>џOD>џOD>џOD>џOD>џOD>џOD>џOD>џOD>џOD>џOD>џOW'߿[|7n7|r3_x;{?#^}D>џOD>џOD>џOD>џO_W/.hO'\˸=Ww{-|+|?'|?'|?'|Ł?t2\p.e 2џOD>џOD>џOD>џO';~oySpOw[?֜'|?'|?'|?'|?'|?'|?'|?'|?'|?'|?'|?'|?'|?'|?W|K.cL~k|L~|% |![D>џOD>џOD>џOD>џOēݖ߿[֟=®q.ɶ|?'|?'|?'|?xݿ} ?{le 2\p.-7~y~v?-.e 2\5 2\pW|SKe܌;?Z .ft>}^r3rﹷZwok܌R|Wonx}5͚Znp.e 2\p._|߼9߶lgjq.e 2Rp]PnF\p9q'\DN"9Er)roy]_y{ٌi!B @!a\G~p)S$Ȑ/ɶ# ˻wi!B!B ۷y+RS$HN"9Er)S$pY?zȇlvi!B @!m[=Oj39Er)r"?d\ȫofw2\tt\p.e 2\p.e 2\p.e 2\ˈ_緿ÿ́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6,wbq.C6 wgqv3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́7n7oOH׸/f?epݎ;{iŴ0m&L f´0m&L f´0m&L f´0m&L f´śof9sle Wẅ́i3aL6̈́i3aL6̈́i3aL6̈́i3anzV| d.e 2\p.+n9+|, 2\p;s~ւp.Æk-p.e 2\p.e 2\p.e 2\p.e޸p0m&L f´0m&L f´0m&L f´0m&L f´0m&L o[?+\p9E~ oOn&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0m&L f´0 x)՜/c5.C6GO{/ yƔ̈́i3aL6̈́i3aL6̈́i3aL6̈́i3aL6̈́7B~O|yݿe SO>7f´0m&L f´0m&L f´0m&L f´0m&q߽Gxe 2\p.ee~կ;//>`ne 2\]<_ft2\p.ctꛯy}j)ytGRke܌G3;jZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJ.7ɯvRoő/8< /_0]fYS .e 2\p.e\^˟>?ۖL-#.e 2\F ͈p.:'W<)S$HN"9E-k6{;4 !B!B @4,K?ӏ39E1 o=31}Y-O}6!B!B @[n3{p]ftr)S$HN"9Er יǏ>ɶ# ˻wi!B!B ۷y+RS$HN"9Er)S$pY?zȇlvi!B @!m[=Oj39Er)r"?d\ȫofw2\tt\p.e 2\p.e 2\p.e 2\p9E~axs<9{=Þaxs<9{=Þaxs<θ 2\lu =Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=Þaxs<9{=_/ 2\)^xݿ"^^#p.ep _~qxs<9{=Þaxs<9{=ÞaxΧop.e^_Þaxs<9{=Þaxs<9{^2\p.e 2o~ o[zަIDAT3 2\p)^.(7#.e뜸^s"HN"9Er®<~=lF4!B @MӰ\.ytǣO?f\W<][1 /Y-O}6!B!B @[n3{p]ftr)S$HN"9Er יǏ>ɶ# ˻wi!B!B ۷y+RS$HN"9Er)S$pY?zȇlvi!B @!m[=Oj39Er)r"?d\ȫofw2\tt\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\pO^w7]ce 2\9\p6\soyp.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.ee~կ;//>`ne 2\]<_ft2\p.ctꛯy}j)ytGRke ! dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6  dـl@6 p.e ـl@6  dـp.ftvݚfM-7 2\p.e qy}/>o~ o[3 2\p)^.(7#.e뜸^s"HN"9Er®<~=lF4!B @MӰ\.ytǣO?f&owG~K3wN.=۷oB @!BuϞ=uk>}nF'HN"9Er)S$pySl;R{?i!B @!Bܾ}/_p" 9Er)S$HN"9Er י|fwh!B!Biڶٓ-=? 9S$HN")??OukV9.e܌NOw[je 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e ?7{O~>\p.eѝ9?oke a5W 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\[o_?[\p.eŃ-kF.e 2Fܧ˸Ow<~)ւp.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e 2\p.e܌ή[۬2\p.e 2.[omp2\p.# fe q+?{uN)S$HN"W5Ǐܝh!B!Bi%ϟx י0.F \wGo9#9EV|Sn߾M!B!B֭[<{c׭"9Er)S$HN"uOyH>C!@!B!pm^|/)S$HN"9Er)2\g֏2ݡiB!B @ihۖgO|Z0LN"9Er\d?O~?)ꛯY-|w q3:G\<cSFwr)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)Sdl?bYS .e 2\p.e\^˟>?ۖL-#.e 2\F ͈p.:'W<)S$HN"9E-k6{;4 !B!B @4,K?ӏ39Er)r/|sX-WgrY-O}6!B!B @[n3{p]ftr)S$HN"9Er יǏ>ɶ# ˻wi!B!B ۷y+RS$HN"9Er)S$pY?zȇlvi!B @!m[=Oj39Er)r"?d\ȫofw2\tt\p.e 2\p.e 2\p.e 2\H)aϮ۰6 nî۰6 nî۰6 nî۰6 nî۰6 nÓmNj/:g\p.C6p~u' nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 nî۰6 n12\˰ᚗ/gOy 2\uŗ_v nî۰6 nî۰6 nî۰6 nî۰6 Ow[+lp.e 2\p3ϟ=emuv݆]amuv݆]amuv݆]amuv݆]amu?#^^2\p.# sv݆]amuv݆]amuv݆]amuv݆]amm7ؓSe 2\p.e /|#~v?L 2\p[׌.\p.e.^}5?O-q3:ϟX?zW/dy̶[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5nͶ[l5Oouje 2\p.e39_g۲=ee 2\HvAq.e\ĽϞp9Er)S$Ƚv}#>xwg3!@!Bhr;}1u&HN"9Er\ 6\3HN"]>{)o&@!B!p-={{|܌NN"9Er)S$HN:ѧ{ X-r&HN"9ESd2~'?ٟy׬s;\˸#rp.e 2\p.e 2\p.e 2\H‡|wޡ]\Z.X- Vrj`\Z.X- Vrj`\Z.X- <~p.C6,wYg Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Wsm>k\|W4+cFw\uܽ{WsVrj`\Z.X- Vrj`\Z.X- VWw0{w|)6\2\ <{wX^e\Z.X- Vrj`\Z.X- Vvy;\ݝՋ/ 2\p.e'O ~Ϯ2\p.eyG|[ .e e 2\p.e 2\p.e 2\p.e a5O{WwY- Vrj`\Z.X- Vrj`\Z.X- VbVW 25|]wޡ]\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\Z.X- Vrj`\puw~\{%w~= iVWw.X- Vrj`\Z.X- Vrj`\Z.hsfߣ?e qyޡ]\Z.X- Vrj`\Z.X- Vr.w~6!9^p.e 2\pn_.G ~oq.e 2Fׯ] 2\]kpZ .ft?ѧ|wrC)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R J)R(PJB)R [6kje 2\p.e39_g۲=ee 2\HvAq.e\ĽϞp9Er)S$Ƚv}#>xٜ[4͔4SfJLi)nfXG~p)S$HN"9Er)S$jq~۷ !B @!BܺugϞރ{5}>7S$HN"9Er)Sd<~)O)^X޽~H4!B @!n߾˗/^⅜"9Er +>Y]Qw L:}λo'w4 !B!B @4m˳'[>{ X-r&HN"9ESd2~'?ٟy׬s;\˸#rp.e 2\p.e 2\p.e 2\nWywosp9q]of=n(7#|_MwPnFF_~q`#o/=;?e|wm;_R =%9E\p.e 2\ƓW?sgWXp.e 2Fw<#2\ [^2\p.e 2\p.e 2\p.e 2\8:qwx//\O>ـpǟquwF{~ ;\3.c??/dta5|]ܿ@N3~2֟=b1KJ 㫗/2\p.e W~Gi៿2\p.ct~K|хp.eūo2nFG]x!HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)S$HN"9Er)ep~2so̙sg~FE(ʢ(X,ETRIl%Te>?U|>* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* 58Gsee%'JN(9QrDɉ%'x[y<)0S'ҧDɉ%'JNPYbdx+}JN(95es3tM1LST0LۇH.G&ٷg<{1r/;FeȽ#c^wcN3>z^0LST0LST0LSaǶ-LvZiii#ٵ飇9o/`* `* LEe[6qp~iihihihkr<#C,a**z#9־t{g7Χ︍{SFeM 4 M4 M4 M08803SLa* U/Vu?'.&*\p۶[oQrrptrcS\YYDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9Qr_2{wb|twgLNPr/_KJ Cg9XYw fhkl'VKIv o7q:Ξ9Mɉ ׯc%'JN(9QrDɉ%'fN姆y0WW(9QrDɉ%'pcJN(9z]vnDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉgNKiclQJ_2#;9z0++˼~-ϝDwϰ}h gN/Kt"fٶe3kmLO`]ط%'JN(9QrDɉ%lCϏy> }MJN(9QrDɉ~FLɉ%'JN̥ ٻk+++XMsx|~),qNplfifNpeLsϟeqI0LST0LST0LS8? 1LST0LST0LStg83%LST0LST0LST0LST0̅3Ǚ,`9MO13=űifgg9=%LST0̅3Ǚs,`*tu 󜘝av8/^L0LSd\`* K\pf86=3S?ťˋ,]:g$ `* K,;͙s,`* `yΞ`* `* 5ayΟ`*tupbvٹ㜿t3T0LS2g 'ϜcIE.3Savvgϳ$`* & ;=4Oaai E.3Savvgϳ$`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* Bkga,SrDɉ%'JN(9Qrr+O|_9Ž?fWV(9QrDɉ*K oceOɉ%'bnv)`* s8݌Mɫɫɫщ`gb| a* `* `* Žm[eڵ4MC44MC44MC44MGfggٳk'Gs`^ST0LST0LS5&G:۷l 4 M4 M4 M4 k׮yFPYT"'m~y ˢ)gg369Ò^b[7ؼy4MC44MC44MC4 2<<cx}6zf `*tU8q1wω .gǶ[(9/WV)9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN]# "" "" "" "" "" "ؾm+c(9Ću +++DADDADDADDADDADDADDADDADDADDADDADDADDADDADDAD06zwS>{wκ8tp۷ek,̑ Fv "" "" "" "" ""Z+/[S(9qv "ADDADDADDADD@Ι (9QrDɉ%'JN(913w/?5O7Ȇ9Bɉ%'JN(9/';x7PrDɉs%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN?}W_~ "" "" "" "" ""lzzfK_2;slf "" "" "" "" "" "" "" "" "" "" "" "" "" "" "?Cɉ^Wyg!^xYϜ_2Y "" "" "" "" "N8^5%/mC "" "" "" ""`{yc.JQrDɉ%'JN(9Q<8Oo_cڷߤDɉ%'JN̮adq~ɔ(9QrDɉ~\pFBɉ~a4Bow \u^׬QnWv|5rNK{L1L^G)~ƣ/d]rNa* LdrKsZ:r/,LJףL$r`* efv<n]5{q.१>ˍ\u]5Wo/k;-t)9{FW/3Ypj`G>ϯ7qY=_=W_ŻYS tM0 ;o}76|QT0U)^]kk潟.&N3|?ωDI2<ͣX܂S~K&.qGKf3%u`* v1~Oo#U.'_믾w_> c蚒R"^fv9tjjV}va/αɻk̭>.%'r0O5W_uo`16㯜3ur++}JN(9QrD %FܧDɉ]Sv17;CST0LSTع}rdr}{vqdF'btbщF'`tbщ_{b| a* `* `* Žm[i608 gpp=\z^xa-sٵ飇9o/`* `* LEe[6qp~iihihihkr<#v{~ \>}}^X֥kFJ].~/Y͛iiiappafg;;3T0LS‰w_~N\LtUt<;mޢDɉ~8ǦLɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDdADDADDADDADDADDLRr5,DADDADDADDADDADDADDADDADDADDADDADDADDADDADD!^9LN=V:_`~oeXY/#@DDADDADDADDADDV^\ӧ(9Qr^yi#ADDADDADDADDA9'7,^^Dɉ%'JN(9QrI?<#C %'JN(9QrDNc޼Bɉ%'RC(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9Qrb)^}%" "" "" "" "" ""lzzfK_2;33= @DDADDADDADDADDADDADDADDADDADDADDADDADDADDADfA͟D<3 ocb/<{Ϝ_2%" "" "" "" ""l~Uz]_261" "" "" "" "7좤%'JN(9QrDɉ%lCϏy> }MJN(9QrDɉ~FLɉ%'JN̥ ٻk+++XMsx|~).`[wf^!7_u in5/1q̵+N-`,^Fϳ;͎d#oY}=<| |?p$\G;sݿ&~Gۯp] ;nFT1Lx՟W/aediEN2s[^\ǟ^nՏGOgX\ݯֽ]7'ȏ/:KsɎ߲a 6񅛯60}rGϠ,."7yw#hW1LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LSTu#L9̕eJN(9QrDɉ%'JNXZ\_n剗+L\J%'JN(9QrBem,)9QrDהC5T0LST0vn"ugߞ]щ`tbщF'`tbCW1{f=Hk `* `* ch+'wel <-y˃l <-oq>>ط~T0LST0LSTuQf-8?4MC44MC44MC44Mڵk9{,́-'~ 3 y{yb.[nW8='*=-{r`n6o M4 M4 M4 3;3!^߱`* ]N\L~b]sb¥ ٱm+o%'JN, G'96=ŕeJN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'%g''wp'܉" "" "" "wp' wmerl%'Tذaey wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wFar걲gY73}+[6r~`dp' wp' wp' wp' wp'ܩmˋ2%'JN?+/m$"wp'qwwqwܝp' wp'܉rJoY@ɉ%'JN(9QrDɉ|!~yG6񕧇(JN(9QrDɉ~)<1ye%'JN^ۇ(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrSKDN;NDDADDADDA;'+Ldvogfzp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp'fA͟D<3 ocb/<{Ϝ_2% wp' wp' wp' wp' wNck!f;Ꮋ;;N;Noسz(9QrDɉ%'JNd|xn xYϱj<( ц/|o/|c>}'~ģ|=vUL3Ew,ykS?be&*6\=OopoY}symz;q~5Ǚ8{=67|fj3y*z3*vj'v?zQT0U ^x裬Կr`~ EY 67}]+_77q-_cQ|ص ֗}"/q';>[_4^nKWSc[6_| O0yK{]&q{7wXZ:Ŏ߲a1|5y?zs{n0=b*\8*_||۸.`o0<3xi틌HS|xfqTS‘W ?E5* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `*Ƒq2%'JN(9QrDɉ%'JN,-./ySaN.peOɉ%'JN(96V(9Qrk!fgb* `* ;]Lo.LUN 0:1N 0:1=~sS5LST0LST0LSTbfzcMw36n&|7cft ط~T0LST0LSTuQf-8?4MC44MC44MC44Mڵk9{,́-'~ 3 yĺ=,v%󋗘(fM 4 M4 M4 M08803SLa* U/Vu?'.&*\p۶[oQrrptrcS\YYDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9Qr_2{vpxrwqwܝ?6nnKۥvvt].nnKף֊;LRr5,/;;;;;;;;;;;;;;;ءsz,ٻu oʖͯܧ_2G&'ٹwqwܝp'" " " "pw"wqwwm[6[S(9qv w~-N9}?QD;c}3JN(9QrDɉ%'JN̝O Dɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'O՗_""pwwqwRJtvt].nnKۥv[o;p 6 =3%/ۙqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqw~m֯JNs>6&gi%z]^޸YZ""pww݉" "pww8q|ͯJkK_2ۆ=z]`7p/e߁=S,;ۻ7좤%'JN(9QrDɉ%lCϏy> }MJN(9QrDɉ~FLɉ%'JN̥ ٻk+++XMsx|~)O;#믽E4vC<7;nXw`A?׾'_||UN2o?½`o~~(`*)3d^~eǏ78~j?,k!2WVG|}'Nw|-3̎n;_7f/w`*%8x3ru'bUħxDS%DfF=̿:o>8|옹H f}OFT1Lxoqu06~tk⽷|v'-u97|x >>'ؼAy$opx_d%Q~cL0LX8{K珳d`bSM>;waF]5RJ81V ?u{,^˝VMULα3o%z&*)%rO隑sbx[qGbK)&] |<@ST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LS5L3}0WV)9QrDɉ%'JN(9Qrbiq~'^>㯜3ur++}JN(9QrD %FܧDɉ]Sv17;CST0LSTع}rdr}{vqdF'btbщF'`tbщ_{b| a* `* `* 3ӛщF'`tbщF'?pEvbar`* `* `*(3SGQYbMܿAiiiaڵ=;6~{t G;}-^^w7obppihihihAbbF ST0L '.&Vu?9q1U҅ضz%'2%'JN•eKDɉ\Y.sDɉ%'JN,̕e%'JNKfϮON;7tVbժUZUVj*VZŪUXjVn#;LRr5,/;;;;;;;;;;;;;;;ءsz,ٻu oʖͯܧ_2G&'ٹwqw"Bץuz].8qwqwwm̆uk?}%'Οᕗ6;,2qx/,/)L.^2Ϟatgwqw"zoY@ɉ%'JN(9QrDɉ|!~yG6񕧇(JN(9QrDɉ~)<1ye%'JN^ۇ(9QrD\o]+,Lɉ3+曼ue~Dɉ%'JN, WVr%'JN?}W_~qww{n`ժUZUVj*VZŪUXjV=y>;N`ӫ3_29iwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwqwwfA͟D<3 ocb/<{Ϝ_2%"wqwz-z^^KץR3::JJ="wqwNck!fDGƹp+ %!Q&sqww`=g%(9QrDɉ%'JN(xfnz~7s߯noRrDɉ%'JNKf0HdJN(9QrDd.]8]#\YYr0wlcKw߹>l:4$#kow_`}!{ӧ8vnG~^ŧs=Sz)aǷ٫/y~iRO1LSep |j E1LST03r]ș ^y\{ 'a7zjtU03N6~0`m–f9ƙs1́!{˗xm׋ܽFq&_7ģvG>Ç8O~;Yu'ޯ^b=p __:5_x#L0Ly$'X'#/d>ê|߾⎛oUrr X8;o^;X{g۸$`* 5Qp>oe.KLJ{g۹$`* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `*Ƒq2%'JN(9QrDɉ%'JN,-./ySaN.peOɉ%'JN(96V(9Qrk!fgb* `* ;]Lo.LUN 0:1N 0:1=~sS5LST0LST0LSTbfz32:1N 0:1.]L=́}{YLST0LST0L^טef(*Kl߲388H44MC44MC44MC4]gBe ST0Lx,.cĥs9~lc3;]ٿw77obppihihihAbbF ST0L '.&Vu?9q1U҅ضz%'2%'JNGdsrf`I{~N(9/ 畗_bM_2%'JNKfϮO^qW]zNNCӡtt:t::|;馛W+ -LRr5,/qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^qW+ar걲gY73}+[6r~`d0Js?|3wswpwpwpwpwpw\wݵ{Ž^̆u OQr3ҋ;Oo)K9{ s3QΟ?K{IA//PrDɉ%'JN(9Qrbf$_~jn s|!J%'JN(9Qr_ 'O1vo^YDɉe!JN(9!/xG-;D)~G^Ov.KDɉ963M/3z QrDɉӧxD8{Ž[orwNCӡtt:t::N7۶ ^qW 8u^}LO^qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^qW+{Ž^q[_;ȹ3u}mLK&qKKD8ʛo^a-|ŝwwww]w-{sl~Uz]_26+}Q .qy".ĩY.qicYYYƽ^qwoEI=JN(9QrDɉ%'J2ٸM}>B(9QrDɉ52,./%'JN(9/KγwWVV(9/R]>wncǿFv)=sO}<=cq)=7jݻ&zf\s7]>t/9zA`* nYvl߽k;⿽,k!ƒ4>{in?c~yN.&Ktb* fظEN\,L[8m!05b* q6}2 k;Ͻȣ;lLYwzs{n߾>V]{5T0LSL|r?=<tUc>7^{+Ͻq5T0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0z]8Gsee%'JN(9QrDɉ%'x[y<)0S'ҧDɉ%'JNPYbdx+}JN(95es3tM1LST0LۇH.G&ٷgGat*F'`tbщF'U)G`* `* `*  13щk`tbщF'`tbщ _d., `* `* BkL23u%oiiii֮]ٳ `* `* Bה)^c߻͛7188H44MC44MC44M L11vwlg`* BWﺟX}pyvloEɉqMOqee%'A~y;f"+%Q0;; \%'JN"oyx=ݻLɉ~58VjZ]zNNCӡtt:t::|;Yz5nZ+VjZmC[D %6kXRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRk 衃sz,ٻu oʖͯܧ_2G&'1 @`tto=7x#r k֬a͚5Y5kp-wCmKZ+ٰa)JN8;W^zZ+V"srp+WY.]>Ϲg857al9pp~ݩRX xy%'JN(9QrDɉ3s'SCt pׇg)a)9Qrbxx;?0?xGַ xSDɉӧx卸;VjZort::NNCӡtt:`۶mZRk%"8y^}LOPkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRkJZ+VjZRk[o?Cɉ^Wyg!^x̟9MdR7Sk7'?77|d͚5Y5kְf֬Y7/o}[RRkJDp|nͯJkK_2ۆ=6@w;Q'\^ąK8{4Swn&&ٷ/sǏQSk {ƞ]ԣDɉ%'JN(9Qr$㙍yq4}Ǻ#oIɉ%'JN(9/]#")9QrDɉt<{wpeeܱi/ >|+70,ѕN[=7_˧s=;=lٗgמU,c:2¯?4|ݸW~?e5L%v=%gqqf>zg}9>wK"v4>is'>陽Gs^ f]./<'i:>kO˻}K=\y}]LSAQ5./<'YixwvGaxm8l+k'K]*vj'v?zQT0Uq^x裬=g$LS hzW{/!cqj#&ݰ?~n|1myGo9v[o[>$G.(y Orb ``gb|y?u6`nt{sz""ϣwѩqpC9~.s]LSAQQ(p-_ac,zOs-%& `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* `* Bkga,SrDɉ%'JN(9Qrr+O|_9Ž?fWV(9QrDɉ*K oceOɉ%'bnv)`* s8=N\N 0:107;Az]T0LSAe ST0]BEDbfz32:1N 0:1.]L=́}{YLST0LST0L^טef(*Kl߲388H44MC44MC44MC4]gBe ST0LST0LSTuc߻͛7188H44MC44MC44M L11vwlg`* BWﺟX}pyvloEɉqMOqee~?8;[0J&_!og$JNk|d޽ͱo>~ӟЃr|n~_2{v091@-$z׻t:t::NNCӡtx;իvZ+RkKDmh c(9Ću >RkK-RkK-RkK-RkK-RkK-RkK-RkK-RkK-RkK-RkK-RkK-RkK-RkK-RkK-Rk ar걲gY73}+[6r~`d0wy'kƥKYZZdiiEYZZdqq033M3<<ڵky+?͆u OQr3ҋx̟=þ{/g..yNefx.`?qZ[Vz.?xy%'JN(9QrDɉ3s'SCtđ 3p<94|9N '>-0yJa_:ū/oݩ֖Z[jmy7{:NNCӡtt:t:wmRkKsq6 =3%/ۙZ[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jm֖Z[jmy7Yvsg(9*= #ۘ; 3LuyyqWo__fvv,--"KK,q)݋z=~299IDek!fA-m,"K?wLftb?oۆRk֖Z[ xcnسz(9QrDɉ%'JNdx\;ylu.*YOởᖯ`*ȅ__fA/2o`WsGs~qɭKrռ{:b*vj'v?zQT0UInnWz& BW( }am3?~e n>uxG9Sz=|?gb `œlĿ#g&o]_{s#;aȱ57|z8z}[+/,5TX:~ |ٽ4?u_]˪ˆCIzOq KtU0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0LST0L^829\YYDɉ%'JN(9QrDɉVx8r{<)9QrDɉ%'Tr%'JNtM9< ]SLST0LSa!Rˑqő{щF'`tbщF'84~anvу`*%f{~}%o\_`p&lftZF'`tbщF'`tbC=飇9o/`* `* LEe[6qp~iihihihkr<#C,a* `* `* qx|{wy&iihihidxxٙ)&m0LSTpbb]ﺟ].]8ώm[y(9Qrb_8:9α),'`kCl_(6L/[xkczg$JN^~; ϳپ};ַغe3WV̞]#LNPۖڶԶ&''y׻Eӡtt:t::NN;NV^M׌Z[jRۖڶD۶narl%'Tذaߧ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mm <;ɩr_g l+}%sdr:t˿?1N;;mqwtFm[lX0%'JN?+/Jm[3gNg~9NW6aZvlcz0bl̹sgZmK^,^^Dɉ%'JN(9QrI?<#C %'JN(9QrDNc޼Bɉ%'RC(9l /M.~%s -t rdKgU;O+̕e^ܰGyG<'? KSFܝڶԶ-my7{:NNCӡtt:t:wmhڶԶ-+Ldvogfz "mKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[jRۖڶԶ-mmKm[zM7?Cɉ^Wyg!^x̟9MdR]yy_I~ɬ2(,IW8#&L/M+=ČVecEeЖDA  qM ToPsyy6/sm>/[{w/~/>????_|!~|/?ɟ_[7npAJVppQn\>~!GGxG;Kvm^Z}ïo,sU=>x}>x}/xSI FnFna /Û|{g^1FnFчskIFn}8N7_4h~7q]ʍؚ?D$>[lDNxp7]M$T,&o\l͗Hzȃͻ>B%h~;w7A%Pуܺ~o`[lݿ|o^Ƶ\zkWr}${ׯ_֜$JB%P4=ݛܸvw6yȒP{lޟRB%wnqwk!ƵkܾɣDV!\qA%PU go\$PI&[I JB%yx-ܿwmT,>|sR;ܺ~o`luNJ >d* JB%&[礔PIdуܺ~7n5!#nq5nb'%T*<sRJ$Tr-_έܼ~Wp_6*;<sRJ$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%1IDATPI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T*Ku^P 7p#7p#7|oWohCvp#7p#ܐCNjOnYQn޸FVA%PI$T*ǎb9siΙNrr~W847ӜxOs~iέ 7n.7o\aYJVTYr}/fzk‹?:o%3߿op~r~io<947Ӝxs~ʩ$W/_3}PI$T* JB%(YڕH9*M4 M4 M4 MӰo>6ڣHA%PI$T* JB%(Y~ӧ8r04MC44MC44MC4Ҷ-7]a9<>PI$TY3>/=s^YO`|p#ܨ}pyW*F^}78pu!pg[ ~/p[zjᆕ̗eVWWtwիLS/s*}8o옭_>`GqdG>ٻw/Ʉdd2a20LL&L&& 'ԧ>EJqǑqǑa~p#ܐÁ 888888888888888888888888888888|}g7Oǭ0ԞӧdK?F{ ^?r\mo9޶ٿ?{8888|~={RbGr`_;=^{姼{۷N'z=G7s{wxǑ'l?zHnFnFq|GMv&_Q7p#7>wowx;nᆕ̉cG 7p#©}/70W#G糿1"y;ЬsY}]nݺowwwpg3#82#82>9>O0LL&L&& Ʉdd2a27^_|!82#8s |JNΉW\>`GqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqdGqd7/sF~];e9^zl޻K̫`#{=>~~w.f87888͛7oGGܸ~#R҇ӇsQ_|8{:xW/ry/ptzk7/h!?Ox 82#|ONV7p#7p#S^x_}qoK; 7p#7>]Kަ'7p#Ypd0n>y*/ЇPId Y JB%PI$TYJB%PI Y* JB%PI$T* JB%*dM$T* J"U*dT* UPI$T* JB%*$T* JB%PI$T* JB%*$T* JBUȚPI$T* UE k|E* JB%PI$T* JB%PI$T* JB%PI$T JB%PI$T* JB%PI$T* JB%P&T* JB%PI$ * JB%PI$T* JB%P YBքJB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* Dʥu^P 7p#7p#7|oWohCvp#7p#ܐCNjOnYQn޸FVA%PI$T*ǎb9siΙNrr~W847ӜxOs~iέ 7n.7o\aYJVT8sܿحm$$9v|{ܼ7!7ӜxOs~io<9x觜NrE9s* JB%PI$T*y]~kk4 M4 M4 M4 ckk=T* JB%PI$T*X;}#GJ44MC44MC44M*mr6.S** JB%%q{a텑%? 'O7g\zݡnǿɯ aD_0 ?oѣOO}G; 2P+O?#'7$p`_P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C c~7Oǭ0ԞӧdK?F{ ^?r\mpؔƑ'sq6s,ǦS'Oa#ZjeVZj.g~wۿMVe>4l޽CnlmWxwVrUS7st)cop9H_~*ndwjew~l?zHnFnFq|GMv&_Q7p#7>wowx;nᆕ̉cG 7p/l6O1_Bp+;z ֞SNٿ?'O:^}U?~p#ؼw~S<~P+C 2Ԋ}O|L&& Ʉdd2a20LL&|C7 2P+ww~*FQD{˗.2>yP+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C 2P+C;W_=vƅsټw>+W_9r`wx7 >{Gəpg>f 2P+C 2Ԋ+^<\|#R҇ӇsQ^̓Ǐj.z~~2=qs5gyD 2ʓǏ9fo"nFnF)::ɗw%nFn}8'MNnFч?Ɏa \8YJB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI Eksc A%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%PI$T* JB%(Yz"7]ewFnFnC7o\y!COnFnHڡk '7‰(7o\#PI$T* ĉcG4[['xqvW846ӜxsOsniή o.7o\a;$vI)Q`c)PMl]'2GqmCm<͹946ӜxsOc\|wΜJB%PI$T* Jde~kW.#ic4MC44MC44MC44Mþ}ڤk"iJB%PI$T* JdNȑì4 M4 M4 MӰJ۶ܸv xJB%PIdI^<̳q{adI,8>}p:ׯ^awFxoop6C x-=5p#x-Ϳy??.?'? /UydDžx1}O{rwػw/Ʉdd2a20LL&L&& 'ԧ>Ծ=^?|ypC5}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jxwOsԛ_}ghG1Ԟ>K78~lʓ'O}½wI;;\կ|__9u$CԾ'I;=^}ԾgwroLʫ躖Q6.np|gj=Cwowx;nᆕ̉cG 7.6g_kMΓǻ_q.u7;~ʼp$}/~ٟw}/y.Fy<ݥ=}O{>O|dd2a20LL&L&& Ʉ:tjS׮^(hqE?~L{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jSԾ=}O{jVؿ27n,/еS6.潻Xɼ9CԾÇlmnUwoo}yg}_{lo30p%:HJNcGz2ww}0@GK._~vNp1OvFC9}[7p`\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9łGl/,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9ŜGKbCjnFnFn;wO_r݇=FnF!i2Ԟp#7 'ڣܼqJB%PI$T'rl3o_^uoc|z1>=}O>?(_ks{ur~~nmS4~G_8v'O>Ƨgӳc|z1>=l_9ӝ勼s4T* JB%PI$T%+\rI;{0gX]]iiii&]{I;$T* JB%PI$T%+/vGfuuihihihUڶƵ+l\8ǛǧUT* J"Kxg} #Kb9On.ֹ~ C%7 }O?>+ aDY>0p۷^!Gbg}8F[';.;]vwػw/Ʉdd2a20LL&L&& 'ԧ>r`ypC5dUv3sԛ_}ghG1Ԟ>K78~lǏ##j%?#_k`/2{aϞ=ٳ={g_ӟ4ǎ###p3~Ҽ;=^v>V.^qC<~˵Wx+l.pEݻO׮R>>~p#7p#7pw7#|MD?nFn}޾Ʌxw 7 +ǎnD87|˼9|p&o|O&?[_|Wt7>7pvW;҇n+?ew####(9~O|L&& Ʉdd2a20LL&|]Zz2FQD{Kg}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}%g{% ? t픍 xy.}8V2r|N{jxw˗.?__dϞ=ٳ={g/>1/sk rE:HJNcGr@A{^^1ˇ vd1S.]ȍ׹v*3Ξ{/ wv ~ap#7p#70WNM3o/p#7p#9ٵmpp#7>OvFn<\.87O)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];kt픮ҵSvJN)];c?#nFnFnC7o\y!COnFnHڡk '7‰(7o\#PI$T* ĉcG4[['~5{VlVlVl=Ok?WX-6߽ɵk׸9G$u~g>6yq?svhk~kY}VlVlVlV{YNqE9s* JB%PI$T*y]~kk4 M4 M4 M4 ckk=T* JB%PI$T*X;}#GJ44MC44MC44M*mr6.S** JB%%q{a텑%? 'O7g\zݡn|O;B #ܩ񽟜`ލp#7 [nFчɎ β; ;N3ڙ3ݻdd2a20LL&L&& ɄO~|SbN;9rnv8AEwp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp:q+ 7ٿϮ{׏b=}8.npؔ]܌p' wݽ??!'Nxrm9޶o[-ϝc#p' wd7/yFyCY_ވEۼycGygz '|Ok׮G;Ŝ/!FnFnƵoG6ځ|[G~ 7p#7޽} g@nV2'%p_~Y~7~g$ly#'?qsz7p#7 nBn;OjwpGEg?'> & Ʉdd2a20LL&L&>p'ܩ}˗8|5*}8}8'c\j% wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' wp' w*V_=vƅsټw>+W_9p'q3>k9|Ǐsm9޶o[ڶͮ͛Rwp=/8r %+}8}8ǏK Gb;\X?lj_Dre~;y8ouBnFnF+|&_x|LnFnZ6}8FnFr';vp#7pc{ZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVZjeVjӇnFnFnC7o\y!COnFnHڡk '7‰(7o\#PI$T* ĉcG4[[')Vf+VX2[ael63?WX?3YJby42H/_u~7gGY2[ael +Vf+K?f;yij$T* JB%PI$JVfv2v8aήJ44MC44MC44MC4۷M(vPI$T* JB%PI$JV._`)9*M4 M4 M4 mˍkWظp7O)$T* D̳K<Fr7{e޽ݻ{w^޽{ٻw/{gV V V }Gd~p#ܐÁ} nBosԛ_}ghG1Ԟ>K7hGjJJJJȪp' wpͰRRRRȪo^fpck?jcGΫyxt"?9W.W~ӧȪX)ؿ2ۏnFnFn\._Q}dup#7p7pFa%sQp{.O.w+5pǻ<ޭ nFnFnFnl޻ëX)X)X)X)HJ|sc2w^޽{ٻw/{e޽ݻ{O~2ԊBs%|JNΉgԾJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJAEط7n,/еS6.潻XɼX)X)X)X);X);N;᎛a```\mpAJVpp;K}B{{#7/>ĬpCko\w.nBAwNV7p#7p#S^x_}qoK; 7p#7>]Kަ'7p#Ypd0nFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnC7o\y!COnFnHڡk '7‰(7o\#PI$T* ĉcG4[[')Vf+VX2[ael63?WX?JB%XdI fFNNxWGY2[ael +Vf+K?f;yij$T* JB%PI$JVfv2v8aήJ44MC44MC44MC4۷M(vPI$T* JB%PI$JV._`)9*M4 M4 M4 mˍkWظp7O)$T* D̳K<Fr7(%SJL)uΜy3am kkgX[;ΰv3gfR2dJɸ/](h1XL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)R2dJɔ)%SJL)I}/{% ? t픍 xy.}8V2rcV(%SJL)R2fR2dJɔ)%SJL)R2dJɔq7.68r %+}8}8ǏŋDd ν~|_|w??Ͽm?o?*/nXٱ; FnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnF| -;|-W}nFnv)C 7p#p=*$T* JB%qQ,g.9I>{3<5{ +Vf+VX2[ᩍpϟdE%PI$T* JB%PI8zWGY2[ael +Vf+K?f;yij$T* JB%PI$JVfv2v8aήJ44MC44MC44MC4۷M(vPI$T* JB%PI$JV._`)9*M4 M4 M4 mˍkWظp7O)$T* D̳K<Fr7l +Vf+VX2[a^1k)^;gNS@%PI$T* JB%Q2[?ϵ+ñsvmUiiia߾}lmmҵGJB%PI$T* JB%QrqkOqaVWWiihihiX]]m[n\ƅsy|JQE%PI$$n/g}_z總0$ FQlW;Tp#7p#7p#7p#7p#7p#7p:qFV!U*d YBV!U*d YBV!U*dd5f7 I;d*igBV!U*d YBV!U*d YBV!U*d YBV!U*d YBV!U*d YBV!U*d YBV!U*d YBV!`%79y8n>&W_5coC  $ YBV!U*d YBV!U*d YI;_}ͻw7{?PId YBV!U*d YBV!U*dl?zHnFnFq|GMv&_Q7p#7>wowx;nᆕ̉cG 7p#7p#7p#7p#7p#7p#7pc^}J"U*d YBV!U*d YBV!U*dd.68|5*}8}8'c6q3 YBV!U*d YBV!U*d YBV!U*d YBV!U*d YBV!U*d YBV!U*d YBV!U*d YG{߼GQ@Nٸp^!҇c%+IJV!U*d YBV!U*d YBV!`%3[C)Y9~(.p+d YBV!U*d YBV!U*Xɜh) FnFna /Û|{g^1FnFчskIFn}8Np#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#~W_>+>dw 7p#7 I;t픡FU8kdT* JB%8q(3fy$=l +Vf+VXS|g~ RPI$T* JB%PI$N=죬VX2[ael +l֝勼s4T* JB%PI$T%+\rI;{0gX]]iiii&]{I;$T* LQA%"R7j6.vGfuuihihihUڶƵ+l\8ǛǧUT* J"Kxg} #Kb9On.ֹ~ C%7p#7p#7p#7p#7p#7p筓Y-#iI;HAv$ iI;HAv$ iI;HAv*:* ᆤ~oG w9_3t]=zLtcc;cs1>Ď8I 6ƫ(s`JU H B}穵`g_o74PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4PKC- 4Э+G1gn=ȋǞc2~>M+/`4ZjiZjiZjiZjiZՒփMbwο#:jiZjiZjiZjiZn=jyX"E,bX>sߵ=n{lE,bXbp^:coX"E,bX"E,"E,bX"E,bX"E,bX"X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bM&fcX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bM&fX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"2_؛p焓.!E,bZfCnE,bn+6g^?ͺB[ m-tk^9ŜkO]U;WqՉ5IxnB[ m-B[ m-B[ m-L9pq>Az;=z;=z;=z;=z;=z;=z;=>p<͎p՗ynB[ m-B[ m-B[ ݺe>*4:ckk~Oߧ}>w9lM- m-J{u|'8z]S}?7|7?/y#~~Oߧb2铜x9|mikZXًn׮6^Zz{Xbw^9kNK,bX"E,bX"E,bX"&#s~n YR%YR%YR%YR%YR%YR%YR%YR%YR%YR%YRˊ'{/X0Բ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ4KJ aX{= íysLO'ݰy>$m-fIifIifIifIifIifIifIifIifIifE?oI,bofIifIifIifIifIifIifIifIifI-+~,íZ^&E,bX"Ϝwms|kt&=bX"$;{=ϕ=bX[3oX"E,bX"E,bX"E,bXohHiVfIifIifIifIifIifIifIifIifIifIifI[Nxlb61L'{(m-fIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIifIi\xƯyXt?1'=~M5= ΞyZVfIifIifIifIifIifIifIifIifIi'[lb3cBifIifIifIifIifIifIifIifI[&G:bX"E,>8sӽGN^޿B,bX"lBY"E,61޽{{"E,bX"E,.[g9ξosu./є-bX"Eܱn,/_һ5E,bPKהKw.:bw Wv"E,bc\flE,bX"E,bX"E,bX"E,bX"E,bX"Ͻ7p|ʺ#E,bXD-KX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,5wxE,bX" ˋY^+dX"4~[gp3=s/\d-X"E,bX"]]qN"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E~4w<?&79mE,bXĢ{bXt͙On+m-B[ m-0oWvst1SpUvzvzvzvzvzvz\u*9{ ~/[B[ m-B[ m-B[ mz|NNNNNNN~s#ze?,B[ m-B[ m-Bn9"OJ- pڢ}>~~`0w3lSKC[ m[h9/?|Kyć?_~o_1/>,`kk~Oߧ}L&~$'^zgk[Zhkֵpź.{Ç#݄WwکX"E,bX"E,bX"E,b9OxoI-+jYQˊZVԲeE-+jYQˊZVԲeE-+jYQˊZVyGx)bu[y<Y/RˊZVԲeE-+jYQˊZVԲeE-+jYQˊZVԲeE-+jYQˊZVԲeE-+jYQˊZVԲeE-+jYQˊZVԲeE-+jYQˊZVԲeE-+jYQˊZV9>$_8ձ#1&Oas3<#q5jYQˊZVԲeE-+jYQˊZVԲeE-+jYQˊfuOG_C,bq<ü JeE-+jYQˊZVԲeE-+jYQˊZV\|~OҬ"E,bXs|m9xopdG,bX"sgұ繲G,b ukmbX"E,bX"E,bX"E,bX\|? NCiԲeE-+jYQˊZVԲeE-+jYQˊZVԲeŻx|FnEl^<'cu"E,bXD-=|?p{2?X"E,61لZE,bXlb.{g3E,bX"E,bל9}m~7'f_;f>W}wfކfك??d;ly>WwTv&CyW{&37bW$a~[;Uvy>}WZ9}}셍E,bX"E,bX"E,bX"E,bX";/3M~3᳅ >W6l,6p{_voa9Ǖ+weE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,o׊݄ +˟??4{W $췯soo?򉿺ӗ+Wy&\{Wۘ}oÙOKwrٰX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX4|OsǣopcorÝNކX"E,jiM!źL'ۜy4B[ m-B[ 6Zye8Gs=u W\EoGoGoGoGoGoU'⚳'91uK[ m-B[ m-B[ m-0g<7;©W_ϲ m-B[ m-B[ m-t떝/r0~Ǟ{->~~Oߧ y<64nW{iMQ}?/|ϋ-8x[[[}>~~Oߧﳵd2'9 4&sNdoX"E,bX"E,bX"E,bX,/]brhc1Xg,3|b>c1Xg,3#8cȜ23cc1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3G3>$ms DbwN2CF>ǞMEm=2e>Xg,3|b>c1Xg,3|b>c1xfv}/B,bѭ["?0L',3|b>c1Xg,3|b>c1ϘģptX"E,bX>sߵ=n{lE,bXbp^:c1Xg,3|b>c1Xg,3|b>c1o?SE,.]|CO8̔|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3|b>c1Xg,3gfyye8Z5<ΰ#/lb|'{ɡmg,3|b>c1Xg,3|b>c1Xg,3=OxwοX\|Odyfb>c1Xg,3|b>c1Xg,3G3z 9coX"E,bX"ظpGo7o]?U+7cû;ū}uӓ܅ L=/~|OჇy=߹>2v+_>ϣ.4{ϹgQ98_jٿ8~p'9u|s'_3| g9FsX"E,bX"E,bX"E,bX"E,b?xsgO﹃9G_-bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,⎳;}I武#9fO3w7{7]OO}K:w>_azno|zwݰ;.w{oҩCwnIwW||ojnD,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bѬ.<폽 wN8y2{bX"a69X"2lsӬJ[ m-B[ m-Lh敝]̹5\sWk^k-m-B[ m-B[ m-t{;ӣӣӣӣӣӣ'>^}>&B[ m-B[ m-Э[v铯RK{9}>~~Oߧ3 x&X$&Zn+7ugw~ww .8x[[[}>~~Oߧﳵd2'9 4&sNdoX"E,bX"E,bX"E,bXc1ɘdt2f:3NL'c1ɘdt2f:3NL'c1ɘd|zWNgy"VG,b uk[3bX"E,bX"E,bX"E,bX";/n}c|?˝c]`/nOo4^w zß2| 4>}m|틟><5;|?Wcqxȭ!>}|wGWVv#bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bfuix nMnssX"E- !v7"Xd3fVZhkZhka:F5bε᪝U\s^{$_~`;3O?|_^/sM7pCR;~-& >ɉ^ÇږZhku-(6~nEK^yE,v7՝v${"E,bX"E,bX"E,bX"::::::ܭq&E,bXXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXV5XE,b {v7!E,b ::::pE,bX"VauXVauXVauXVauXXE,bX"E,N9枃 7޽M6{"E,bI8w /{+{"Pf:&E,bX"E,bX"E,bX"E,b :::::wXE,bXDVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXVauXV5VG,bXlbv7n"E,::::]5VG,bX"QauXVauXVauXVauXָ[cu"E,bX"Q}ޣ '_!E,bM|6VlbbX"K^=bX"E,bXb5m/oۿ3|#zo?S~{pv3?|y_qn3,uˇ?m߸C;q+x݄rz=_Nqd}5k߸~ǜm͙?s nsz爋"/_ɿ?ֿ?ԆE,bX"E,bX"E,bX"E,bX"6ʵ=nē_?_'_/߾gg>y݈X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,PN=̧Gg<[G=-)~}znS\.W)#|wȓ8 '߼̥W|_?K7o_ۯG~_3oͯ/ʋᓟ+^Ym؍E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,e77 ']foC,bX"4&XbVmμ~u[ikZhkx׼s9מvӣӣӣӣӣWqkxݺZhkZhkZnos|pvzvzvzvzvzvzvz|xp3ԫ/g݄ZhkZhku9}Uji?uc=~~Oߧ}s١'yg8#8| ퟿oEUėMsߟ}^|~~Oߧb2铜x9|mikZXًn׮6^Zz{Xbw^9kNK,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bgy5:ÍwoE,bXlΝ=KǞE,ԭE,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b徇stQWX"&f>PV+61E,bM̥w/|E,bX"E,bq˩k?ǁo782io7_ocïN3?!>r{-Kr=>f-~t7u>//g7a⻷^7}f>_}Ϲ7n_1}o_ΐ "O~śĵ?_e19 "E,bX"E,bX"E,bX"E,b}_|8yoo\zG_wr?}Gϸ2 y_rЂVkbX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"n}7/?_o?/|?g[W0|7K/mqÇ>?c?y 67>m?zKJ=]_omaw 1N wΞz<_rG^x3;d:]z6F"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"2_؛p焓.!E,bZfCnE,bn+6g^?ͺB[ m-tk^9ŜkO]U;WqՉ5IxnB[ m-mfZhlb̶ܵ9pq>Az;=z;=z;=z;=z;=z;=z;=>p<͎p՗ynB[ m-B[ m-B[ ݺe>*4:ckk~Oߧ}>w9lrm:Ե-__YQ~Opo&ɯq~lmm}>~~ɄOK/CtmK[ m-º^W_wvuqX¥w/pӼ{"`/IDATq^;u]bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX>sߵ=n{lE,bXbp^:u7/+7nO|~o?&_~G% n-|csǏ~|#/>CDe/|?Ӽ:1s>sAy?O}|#oCn!}^Gmw_ҭ#?9IX"E,bX"E,bX"E,bX"El.Om|k?z݈$|O}??N?5?G-l,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"Ɇ<qr5:?z5/~_wO<]7_ _u _p}}F7[>͇#gf+$߹SoE,p->y|'Ч'Ə?]>|g?}>m!>uԵ?Ն݈X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢY]k?x;}{pe6"E,bQKlr E,me:YZhkZz+;9skj*z;=z;=z;=z;=z;=z;=:qל^?ѭ[Zhkm+w^arg.6k[y'w?nwxmz|NNNNNNN~s#ze?,B[ m-B[ m-Bn9"OJ- pڢ}>~~`0w3lSKC[ m-B- ZhkYx#~~Oߧb2铜x9|mikZXًn׮6^Zz{Xbw^9kNK,bX"E,bX"E,bX"E,b ukڶB[ m-B[ m-B[ m-B[ m-B[ m-BnD,bXݺZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkm]G,bXXVX"VǺB[ m-B[ m-B[ m-B[ m-B[ ݺE,baw-m-B[ m-B[ m-B[ m-B[ m-h&E,bX"3]s<ƻfX"E,6 ΞcseX"L"E,bX"E,bX"E,bX"ݱ^B[ m-B[ m-B[ m-B[ m-B[ m-n "E,5m[ikZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhkZhknbX":X"5m-B[ m-B[ m-B[ m-B[ m-º-E,bXHkڶB[ m-B[ m-B[ m-B[ m-n+:bX"E,b徇stQWX"&f>PV+61E,bM̥w/|E,bX"E,bqǥ/Ss~U"6br|{]?z=[∛iYsn<̌W8ljq{n6߿ N_Xqc '_:K]gqsKopGNK{ON8^wn?{Sd}{[~ӣpx?樂D"E,bX"E,bX"E,bX"E,b]xi V Xĕs򣻿Ï~>v^=wx'O<.o{n;߻ũ "E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bkL:7.F\: Az;=z;=z;=z;=z;=z;=z;=>p<͎p՗ynB[ m-B[ m-B[ ݺe>*4:ckk~Oߧ}>w9lM- m-B[ m-B[ m-Э[^>={Eߧ}>[[[L&^?}/3ѵ-m-B[ Z8{Q\}mًb] ޽CO{Xn«;yIvE,bX"E,bX"E,bX"E,mԫp Fph8`40 Fph8`40 FaGFC~ydE,b˗.r#< Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 l?uoAݚXlb._zO>w<#ꝷxCF>ph8`40 Fph8`40 F>○#\tX"t"\_*XĢּk<}ph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 Fph8`40 FaG~r%b /ytJ,bѶW^>?hg40 Fph8`40 Fph8`4sxIuK,b[s<}IF>ph8`40 Fph8`40 bgSy,:bX"E,bq>p=p bX"gj&&E,b#E,blb61M&fpeݘM&f} ޕ=3GA^_ݍeo+톽} _cocvwwy>aIc7l6ʕ}wf.]+{m&a߻{W۰p lb61M&&E,bX"lb61M&flb61M&feo&f{WxW W\+weM{M&flb61M&flb61X"E,bX"E,bX"E,bX"E,bX"E,bX"E,b$1f˕]x>Wwe7fp>].{wf\?Ad}wkj~I*UVP8y{k8d$3X8pEHSR$FS%j&_  ݸ= 44`s yxxv#m.E X X X , ?/1iϟyKX4MËx" ,," ,," ,," ,," ,," ,," ,," ,," ,," ,,b1`1`1`1`1`1`1`1`1`1`1`1`1 w6=}}'w7һ}ϩoOf\9_}ΨCgԡ3u:tF:x]_BUQW%uURW%uURW%uURW%uURW%Yh4*;ׯFedYFedYFedYFe=zNU>JꪤJꪤJꪤJꪤJd>nrΝ;YeYeYekkklll=exs]uM]UI]Uɬ*{xͷ|ǁYU٣ ,,S 1ٞrw.bA6MC4MC4MC4MC4MC4MC4MC4MC4mC4<=ޅ |tO|KѣJڶmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmڦmb 7m_;+|x4?JK0,>{q!ڶmڦmڦmڦmڦmڦmڦmڦmڦtϟTS,,.ߠ*ڶmڦmڦmڦmڦmڦmڦmfOpܼ|Vc1`1`1`1`1`1`1`1`1}_:?'"P|BO( E>'"P|BOȇ%odO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>ag{gs,,,,,,b |gݦ'"P|BO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>';oQ=}ŀŀŀŀŀŀ@]ܽs&Û                                           on2lw{wn3dxs````````````````````M&!?'ƀŀ@ۻ"P|BO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>'"P|BO( E>-Oxzo;u׾ ,,,,,,)6Y]qqc[ꊺ***uld4Ǘj^3u:tF:Q׆NbX,"6/ѧܺM̯Wo'kg8s4QΨCgԡ3u:tF \t"ɵ4 JꪤJꪤJꪤJꪤJ泚`iNU>w,7_gmm,Ȳ,Ȳ,Ȳ,8z(sic|J]UI]UI]UI]UI]U|V3+;w5,#2,#2,#2`w{&뚺**YU8oK{Gw/ŋX X 4 # )yOc1`1᧜$1^z+WaN,z2?{>|gp܇͂E9 x8uc1`1$#9IʧX X X X X X X X X lߺآbbbbbb`aƝ[ܼ ϟX X X u,,,,,,,,,,,,,,,,,,,,,,,,,,,>}ϙS`f;~w0XXlݸP>}ʩX g\8!׮^a?{,,3}s޹3ō.a>bbGlm||'X X X X X X X X X XY>yox>'81ϱXX ʃXXGz񕏸pC6{].^~Kץu{].^~Kץu{].^F~Kץu{].^~Kץu{].^~Kץu{].^~Kץu{].^~Kץu{].^~Kץﭳ~,?9w ؞TSzruȲ,Ȳ,Ȳ,ȲG>6֩ʧUI]UI]UI]UI]UI]g5M_¹sgY[[#2,#2,#2,cmm v onQ˼**U%{o80J>{~_xŀ@0рbʳbbbbbbbbbbbbbbbbbbbbbbbbb 99ţG$$! IHB$$! IHB$$! I8ybb}NwG$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB}b6 ^ѵw/i LFC.]@$$! IHB$$! IHBDJxQbb}N>$$! IHB$$! IHB1p?bbbbbbbbb`u~xn7^- 3Oxbbb g\c1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1.gN@$$! IHB$$! IHB$$p4Y" \]HB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB/_ьOc10Uōu[ ﱰH8uӧHB$$! IHB$$! IHB{oqß3,,Fw[;HB$$! IHB$$! I\U}| s,,,,,,,,,,·V}vkۘX X X X X X ,,r X X X X X ,,٣\|gmŀŀhpu/:(>bbbb g||#>mP>=ٳ onpXl`g?d<`aŀŀŀŀŀŀŀŀŀӃ'|Gީ|] w]`1`1`1`1`1`1POѥmX X X ꊋfVWUI]UI]UI]\f3&>W7xmQΨCgԡ3u:6|7`g` |;cUnֿw)wEn/o#osa,_}ΨCgԡ3u:tF:x]_BUQW%uURW%uURW%uURW%uURW%Yh4*;ׯFedYFedYFedYFe=zNU>JꪤJꪤJꪤJꪤJd>nrΝ;YeYeYekkklll=exs]uM]UI]Uɬ*{xͷ|ǁYU٣ ,,S 1i=z$$! IHB$$! IHB$$! IH"Ǹwg9u$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$psk.nÜYpG[{]i LFC.] IHB$$! IHB$$! IH"ǎ.sHB$$! IHB$$! IHB@?bbbbbbbbb`u~xn7^- 3Oxbbb g\c1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1`1.gN}$$! IHB$$! IHB$$! IHB뚅Ec($$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$^|k|+\2l;߿"a>O IHB$$! IHB$$! Iݾ͹0,,Fw[;HB$$! IHB$$! I\U~e,̱P| Z}~Oqlc«/c1`1`1`1`1`1K,,b1`1`1`1`1gr%-:E@J I,ǎC,,,,泚SI'cu|ŀŀŀ@1Ο73ޤ"Sc|L)1E>"Sc|L)1E>"Sc|L)1E>"Sc|L)1E>"Sc|L)1E>"Sc|Nsaw73ݤ"Sc|L)1E>"Sc|L)1E>"Sc|L onrt]^<ݾ h8F8a1`1`1`1`1`1`1`1`1`1 w6=}}'!o5~ONs~|i%:QΨCgԡ3u:⽃w~ E>kWiF]UI]UI]UI]UI]g5Ӝ|JYn\YeYeYeYqQ<:U*****fw5uURW%uURW%dq7^-fUg^/hF>SLy6X X X X X X X X X X X X X X X X X X X X X X X X X 03y!$$! IHB$$! IHB$$!'ޝ=,,>;$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHBͭM>A sf+ql=n\gw>m,,2 t$$! IHB$$! IHB$$!;X X <ؿN" IHB$$! I CxOؾu`;'nױEŀŀŀŀŀŒ;{y?k{X X X X X X X X X X X X X X X X X X X X X X X X X X X ߻˙S IHB$$! IHB$$! IHBw8{4faE.n. $! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$!/_rb`>26 on;߿"a>O IHB$$! IHB$$! Iݾ͹0,,Fw[;HB$$! IH//caŀŀŀŀŀŀŀŀWꀷ{rc^}E._ڠ<8`aE>{/m_[HB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IH`.m IHB$$! IHB_x3}f3$! IHB$$! IHB$$! IHB$$! IHB$$4 nB$$! IHB$$! g |2ܺt2dݞ=ew{)SvnOݞ=ew{)SvnOݞ=ew{)SvnOݞ=ew{)SvnOݞ=ew{)SvnOݞ=ew{ۻ~;{lOYY3[7NFSvnOݞ=ew{)SvnOݞ=ew{)SvnOݞ=ew{h}ϟsܿIHB$$! IHB$$! IHB$$! IHB$$! IHB$$0'l_ gX X X X X X X X X X <=x7twOk`z UK]fŀŀέmfuE]UI]UI]U:a6c2p|xFu:tF:QΨkxc vv n0UI]UIu<,cv9[K/u:tF:QΨCgKW(1\J0ꪤJꪤJꪤJꪤJd> ؞TSzruȲ,Ȳ,Ȳ,ȲG>6֩ʧUI]UI]UI]UI]UI]g5M_¹sgY[[#2,#2,#2,cmm v onQ˼**U%{o80J>{~_xŀ@0рbʳbbbbbbbbbbbbbbbbbbbbbbbbb 99ͣG;rGI#wI^q1bb}N<#wܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wM>A sf+ql=n\gw>m,,2 tܑ;rG#wܑ;rGHB#wy;X X <ؿN" #wRJf=ܽǓ'y9;rGI0xOؾu`;'nױEŀŀŀŀŀŒ;{y?k{X X X X X X X X X X X X X X X X X X X X X X X X X X X ߻˙S #wܑ;;rGw8{4faE.n. ܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wܑ;rG#wy?Ƨ*~̥.ÛﱰH8uӧ !wܑ;rG#wܑ;rG#w[ Y" lt׹ܑ;/^<ܽ{{ܹ{;wo٬&ܑ;rGkW?_ 5'o6&9 \Ayp" |!W/_Yb1`1`1[[$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB$$! IHB)b$$! IHB$$! IHB_xg<Y'3Հ$$! IHB$$! IHB$$! IHB$$! IHB)$$! IH$$! IHB.X?0a1`1`1`10Ǭ,)OCv"g)rv"g)rv"g)rv"g)rv"g)rv"g)rv"g)rv"g)rv"g)rv"g)rv"g)rn=v,)OCv"g)rv"g)rv"g)rv"g)rv"g)rv"gw,7_gmm,Ȳ,Ȳ,Ȳ,8z(sic|J]UI]UI]UI]UI]U|V3+;w5,#2,#2,#2`w{&뚺**YU8oK{Gw/ŋX X 4 # )dHqwalϟ`1`1`1`1`1`1`1`1`1}_:?YOWexsVa= N|I;;;3Bpwwػ}sa>YXda:vwpw$w6Δpwqmn߹8r/_qwwՏǗ0bbbbbbbbB+|kug?Ʊ xŀŀŀŀŀ"/mPŀŀŀŀ"=z˗xֶX X X /p.r$! IHBr$ݑqwwqwwqwwqwwqw\H;#9#9;;#)b;#ϞHqwwqw^xαg<Y'3Hqw$Gr$qwɑwqwwqwwqwwqwwqwwqw$N;#9)+RJH;]LY?0a1`1`1`10י "Sc|L)1E>"Sc|L)1E>"Sc|L)1E>"Sc|L)1E>"Sc|L)1E>"Sc|Lٞrl=cg{rs:р"Sc|L)1E>"Sc|L)1E>"Sc|L)1E> onwx9~{pwwqw$G$$qwwqwwqwwqwwqwwqwwqww X@ϰxzo;u׾ ,,,,,,)6Y]qqc[ꊺ***uld4Ǘj^3u:tF:Q׆Nl`>*****-ї:tF:QΨCgԡ3phx+O]YuURW%uURW%uURW%uURW%uU2Ռ[lOs)gq:kkkdYFedYFedYFedYѣGy`KTSꪤJꪤJꪤJꪤJꪤJ泚&ׯ^ܹeYeYeYS77e^UI]UI]̪ǁ|_zͷ{U%=zH{/^bbYhN1Y`1`1`1bǏs,,b9=a 0'<1a>ca|x4~ {=p1_>|Çsa>Ç9|0ʯ SRz{=pOzޝ=,,>' {=pO' {=pO' {=pO' {=pO' {=pO' {=pO' {=pO' 71iW|ıغqΟYd4  y9{{9s Gf=qhѣGfdYGGu'W^rXX X <ؿqOH1m+vA9ys 7 a'Nsgk|[w}sx{[X X X X X X ,̸w7>0qŀŀŀK?˝YX X X X ̞>g3EÇ9|0>|__… ' w8{4faE.n.' {=pO' {=pO' {=pO' {=pO' {=pO' {=pO' {=pO'_|Gt>YOWexsVa= N|z'3\vǏqhѣGf=q1… {=p.><|V"unk\U<Eǚjǟ}ʣG)vrK /caŀŀŀŀŀŀŀŀWꀷ{rc^}E._ڠ<8`aE>{/m_]w'}2+c?~ǟqPt<œKwqwwqwwqwwqwܝd޼ /I;;;fqw?! wqww~ƣO`1`1`1`10|p8FQU3/xzIwqwwqwwqwwqwwqwwݑYdwqwIz3gߧ)! wqwb i>'?Sn\g4t2b:1NFL'#E>a)rv dt2f:OFL'#Ɉdt2b:1NFL'#Ɉdt2b:1NFL'#Ɉdt2b:1NFL'#Ɉdt2b:=pt]cg{u:MɈdt2b:QL'9;ENSlOL'#Ɉdt2'lO'Ɉdt2b:1غV\8!qwwKPgy1?|^_rwqwwqwwqwwqwwqwwqww'c6/3,,,,,,,,,,kWiF]UI]UI]UI]UI]g5Ӝ|JYn\YeYeYeYqQ<:U*****fw5uURW%uURW%dq7^-fUg^/hF>SLy6X 3>9~~kyJk~W{w"b6Nra·gNH"DJ'N,--KKK,--KKK|_w~wx)%RJH)K?~{wx`S'OR"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ |tq͂W>{lݸF}H,XXd2r@J ITUŷ˿:tCq!:ġC8t_sRJx%'e߻ŀ})%$ѧlݼ-eu<|Ͻ{l >sƓ!/R"39q,,,,,,,,,o?XΉ[|ulb1`1`1`1`1`10-nZ,,,|:6{̵]o{lt?1ybXX;'ſ1bbb`]Μ:R"DJϟ?77_UXZZbii%XZZbii%/vH)R"$qiu" \]LH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)Rŋ?Ƨ*~̥.ÛﱰH8uOpwnܸo/_kCq!:ġC8t˿_ 7xpwRJq.><|V"uvwH)\#bj'<~3[e>1)%RJՏǗ0bbbbbbbbB+|kug?Ʊ xŀŀŀŀŀ"/mPŀŀŀŀ"=z˗xֶX X X /p{wO wgWoR=7oۼt!ܑ$@(%<%<%<%??w'<9?sj4?o7/A)))))))))lOi <9kݿw_5=SSSSSg~ƣO`1`1`1`10|p8BxJ(`7b ſ>%HB). S“#N) N:ůXpW/_))))=~,a>bbbb`ɏO1l!xH>L'> ?Y1?;ƕ!~{|<$C|<$C|<$C|<$C|<$C|<$C|<$C|<ٻܽOxH>!hO?3Y]ū#|<$n|tg|<$Cnn~{s.;(lW;+|+_+_ [yݑ O w w<ɑ O O O O O O |bbbbbbbbbb |m{._;Ox.ʧ\6 ,,,fuōunn3+ꪤJꪤJꪤJ. рk_6zΨCgԡ3u:tF^{o;euJꪤJꪤJꪤJꪤJꪤJ.s8×F_3u:tF:QΨá!;x뗮Pc>vfaUI]UI]UI]UI]U|V3l=ͩʧΟ묭eYeYeYeG}.mSO*****jƃ\zsβFedYFedYFedYnO~y]SW%uURW%uU2J^-~7bq`V|!xfa;ŔgmYdox_?#N6G?7<ŃC3y2g1'NիdYY]H s>KKK,--KKK,--ėe~w~W^R"DJ/_Gwg9u)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJڼG7aN,z#֍l.p܇͂E&!'?__3\>/xO??mu/_$˗_pXX X <ؿ'y"q<?bbbbbbbbb`u~xn7^- 3Oxbbb g\c1`f|>9ʛ?soOXĒ/_Z`aǏ~??ŋlll??X X ߻˙S'qwRJH)Ro&KKK,--KKK,--ėeuRJH)!;{9{4faE.n.H)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH)R"DJ)%RJH) ]X g?]YFM[}XX$g:y;=vU['77~o4$6`g[10 f f< PTyVF 4j<{S%SW?v:;;젳Nv_׌PיfiiU8z0-{#7%7@+k4 VWWn'MH"/̹ }u22:`/ F^z0 `* `*8^ˣyy_d{2`* NHn`* r{%`*4 op՟EKifG~xraKt^<+`sv=3ȥHc2Ks=4wLV"FFAcu ./qӧ?})|HFGy}˰hh4h44 FFAѠhX] yh4h4E>ȦM޳=/LѠhh4h44 u'[9{`* ;>eh4XLS7>~i-~Q%^<^^#iz[[jWğ^J9*"/.SUV FF*Ch4,//k.o2==FFA`vf}H `*LOk/324cLƙ3UgjrM/sM7gn_IwKpgE;TIfd6SL17]c6Tm3SL173Sq&kNO2;=SLO273SqjLƙ3UgfFe3Ǐshn7_{091Tm8S fFy*no>ɍ_/n?Dm8Sq';`s(Lƙ3Ugtx-fey{9q8kkk4 F*)~O#/_ҥK\i4VYs|w^z??w*a捦OKôn{_ MFX,.K&xyխΜejAѠhh4h4LMN޺ ST0LST0LSTXZ#/]Gyzqyc9`* Kt,rLST.#.e).KqYR\ⲔζV{j pF]IVRPU*Tj* WN\:<0;\,e).KqYR\t4YD۾fhjj"I$!I$!I$!ImƩS tK,e).KqYR\,e);&便&$!I$!I$!Ihoo c#tw 8R\,epW7 ?{`*1] ϕsc#ƎEJv,dJao}k>}/ /sqYزe =G =9s4k4b#رc֭ZRVVTU*jjJZe}˗iH#F1҈˗/{8qlST8sj];whD1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈Xct ݝ"M[m?ZR9)S :`mCss\uU|{#7`mmUVY[[emmU<'S_WPKر=aqLSIv>Y[] z\9w4'myFƇ=y왽Hnp|ۿfQP/rGellE;ox啗1Lٳk' 1҈F4bdyΆ VTU*jjJZZRVY~=Z[hH#F1ʱ4Mpܔܔ6fg`mF4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4b#iH#F1҈F4bdee&N/T>㝷^c#l6 'O"kY]mwǁ*kk/]^rn&~mV9z0-{#7%7@+Y]mpmKtO1=[ct15;Ρgon1҈F} `0LST0LST0qG7|<)eLST0LS!7tqST0LS!73tQ/KLSThkϑÇamF4٫okCo?䁍_w} w'+O|}]Zd/7_b=҈FQh秷^̯ndrb}[y/}/M{]m<tmd;?6ϡ|efr|Q&Ggzލ|k49ض_|~ΞރLN19> oG?5ia6(L2rp-bey{9q8kkk4b#iª74ya|.]"ke;;_"߹!~; ,NεW^gOSs;ʷ'~w6MQ7α ĵU1҈F4b5&kGT0LST0LST0/KyfQ}{mge`* `*d](ST0lo9pYR\,8}=:+kWRU*Tj* ZJ•Wq~#0>:L,e).KqYR\,e)4UTj* ZJBVRPUb ,PW/ӓ ,e).KqYR\嗀273M.Ѷ!H$IH$IH$IHm۶q]d.KqYR\DHH,e).[»C4D$$IB$$IB$$IBSSablpYR\̟nA;d೔gq`?VV0L"7k^ a.\d>{]4!sezx8܄3OqΉ'8jA#1Fv֭ZRVVTU*jjJZe}\t#1Fbt￷1L3صs1F1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1FbY[[cd ݝ"M[m?ZR9)S :Y[[_ ۷m Hx9c$H#1p}'2b\ZYa1LS '4 ˬ6V9~ݽ]X.9$;ww3:q }YX8I H%[YxST0LST0LSa1}[xr{KLST0LS!7Ɔ\/1LSAST0YE}"syzGk_׌7J%[lᩧbrrsq)yWxGM1NgϮ4 1c^sa*jjJZZRVVTU֯_Okk+1FbY]]eQ&8GnJnJg{s33/Gb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb1c$H#1Fb,//^酓 gt`bl-f rS$xv"F5nV_U%H#1Fb#1F1hp$wǯ~+VWW9r-{#7%7@+ͱFi4 \\:ǩ3'̟8 ڽ˗.c$} `0LST0LST0qG7|<)eLST0LS!7tqST0LS!73tQ/KLSThkϑÇY[]%^L _3OpiN6rFh|s<<3GgI#KG/xtO8n~zm'g/cs3|?>w016Bml&hz o2Ã} Q66Bml(S[n[QGTa[;c#F;起vAGP66`?[62rqVWW/c$HlSk'oOp=7~v㒞՟~~ǭb|1;&7W?ݧB}*Ѩs~~ xx#_ ͟\'|S|sqeF1cdmuZH `* `* yi?:ӻsϳ@1LST0L,]ec* w9o͛7ٙP ݳS'OL,%$^̶$aݺuTU*jjJZZRVV_|;EA,%^Em 'c* gN-ﱲL,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%VV888@wg*f{FhoϾENnTm6._K4bd^, .pieK++\ZY VV/sn&4^y{ۚX8qST8p];wL,YY^9:\yzȑomre^^,,-.= `* `* sGqsز;pX^b* `* 06|z`* =`*,8 ^˒zYbvmlذjJZZRVVTU*jL|zYR/Ke2h޳))mLMr%eI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,%^˒zYR/KeI,޴ '1xj?[6Hڹ ϱ\sie\wuxYY^sV¥.pieK++\ZYK|g+B|ffhٻ))mpiezY̮=;x h!]=?Bm@1/}GBY˒zYrie.z1 `* `*8^ˣyy_d{2`* NHn`* r{%`*,VV%2_Op7|fn!~[IOMko~F*|2;˻|r;>|czzY\SO{?n!?loQ6:wʍ20ȳ? {v%^˒zYR/KeI,%:3Sf,˒܌ٙTzz%>L,%^a[Ξ>`* B;ciqzzY\ [ KS>{;y웟߽+?<_z |-Os-aGn<0H_So06<ȇ/|u?Ѧ?_^?v:n>`;o]/O}u SCo2s|??O_AF`dh!Ǐshn7^}n124#Cd}W'bl{Oz~.`tw7N[y}_?`dhz[,/y/riezYR/KeI}ycKț/=Nm`^geش*Oȧn5| ˬ˒zYR/K.016J{~$xLST0LST0LSaigvǹvf]^ `* B.~1LSVû ,e).KqYR:Z3ív%ZJBVRPU*\9q%7r pYR\,e).KqYR\J]EVRPU*Tj* Z+&` u2;=~pYR\,e).KqYJ(s3dm$IH$IH$IH$IضmN-J.8:<(I[_# J97C^ú#便&$!I$!I$!Ihoo c#tw 8R\,epW7 ?{`*1] T0Lq˧`" N䧷=a wp}ok.~mx^y%ҥ䦨uʢ, ʢK$MM[jJZZRVVTU*jsʢ, ʢ, r3vlK8q|ST8sjvG^, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ, ʢ`yy~;;P ENo7ۛ0:rT0L ζVLSLYw;7֝ĺ?~w_ݾ~?)))))(L)I/"\8_=)))mM[8{`* ;v EAYs-?[~HI损|ħ՟஧͇*'ΥR(7r{zw[>`22?s O6橻?ŝY-)(˒zYP9eS9eS"rie"Yhow!V;,ENYEr8 c* 0;=@ogx~gtxѡ^:ngo|_g~;^wxc_>µ'u[⚛>>{ 3|?ͼ/\?xxoko}}t~z~^C{_K8yC 3<`?#x79~lCs3K v1~gxhy;sWF>8D;zm=8@:L,e).KqYR\,e)4UTj* ZJBVRPUb ,PW/ӓ ,e).KqYR\嗀273M.Ѷ!H$IH$IH$IHm۶q]d.KqYK%Kmy;5ů~׿36wpfH$IH$IH$Ihjjs3Lq.KqYR\Ⳕsw>_|̟|r: PtmC3ST0 w<-;f)M0o_E]@% * )/iV~_p?'? /N?FJ`ݜ$7#7#7#7#xϭʆ VTU*jjJZZRVY~={?er3r3r3ʢ`nf= Αdz܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌܌ M[8pS!wzLe,tO_Yn6l`Æ lذ 6a8S9dfj{ޑz܌(hڶ sI6a`ٹt1ˉjff˒Nz1 `* `*8^ˣyy_d{2`* NHn`* r{%`*gnfzYR9g§?v3qo'_jo]{ShQ'|<ko[sv~wk^`%)r%7%7ȍŋ>42)EnK<ܳ|?ypYJ)))6>Ɓ}-H `*NO+zeh}i'OJG#Cl}u7|=z\GzOnkexu/jK/C 2:2D?kn?.m?O}6K懹z/} 24@/C?6ϡx%{:ah^zgg|>:G_kO߾.]WO~722@/C 2raeAnJnJnJQ7?R9?Ɏ'_yc8.wr=s64yznyۮ_my:#Ͼ>< l<ʙ#yR)r%7%7%7^ ޺ ST0LST0LSTXZ#/]Gyzqyc9`* Kt,rLST.#.e).KqYR\ⲔζV{j pF]IVRPU*Tj* WN\:<0;\,Ż ,e).KqYR:[[iU*Tj* ZJBVRplY|^f'98O.KqYR\,e).K Qenf,]m_3CC455$ I$ I$ I$ ۶mԩ[I..^$]Z"R|]vo=[)osfH$IH$IH$Ihjjs3Lq.KqYR\Ⳕsw>_|̟|r: PtmC3ST0 yۿ=ZE^.WO? 7\'?y_9)L0rS8|hfgYZHػg7'OsLSTYٺu+NZZRVVTU*jj뮻PLST1UT5q㝷^c#l6 'O"kΝ=Cnbf\8_=7\=?xyyy/c>;o R9ӓCܔܔVf(Ss66ϟCs؉yZ]|{' ]^}eTST)z1 `* `*8^ˣyy_d{2`* NHn`* r{%`*gvf1̔3_O7"7T0rD'?6g>ǯ_i~b+ Lƽo1mGR\1Lpny]3TUscqC |/ŶAorr>* `* `*)3S5̔ST(ro#Q䆩`* ಔm[p)LST0wܱ Γb*1ax<)s=SW]]/#|k7p~s}wF7Xǽn./}O] |鮇xp``* )/p,+˘ B"<4O_g\b* P9cׂ`* $z:f{`~^y6>~xmo<]/ȯCqku~ұ*nW-;;o|_˶Wy}q3o|Mmm~v{a78~lCs3_餿{apݻkx]4ƛ~t=_Y:} ^x%~}a{jwdey{9z0ec* YN~n~.#WT0r.ٟ Wkn{xK>&w|.vL_0~7]5^goZ8}~un\su|G=|1T0LS,rF޺ ST0LST0LSTXZ#/]Gyzqyc9`* Kt,rLST.#.e).KqYR\ⲔζV{j pF]IVRPU*Tj* WN\:<0;\tǏphn gXJS\%.=řhmyvWծRPU*Tj* ZJWe]z`?En,e).KqYR\,%xGm|it}  D$$IB$$IB$$IB$l۶SNѽ;{3n>ݧ9x4}Ž~N\Kg?s_&$!I$!I$!Ihoo c#tw 8R\,epW7 ?{`*1] T0Lq9w,Y܅Ӝ<~G?zG8q4.`* EnQFn`* *{vs1r3TAE%n?aݺu[uֱn:֭[ǺuXn֭__7"*B&N?`*9Q9*"*"*"*"*"*"*"*"*"*"*"*"*"*"*P9}tv(n7matxkKYLMN~zY"* !0(qY2\ e,#xOn"*BVNT0N-wP9*Bn(wq9^2GMh<@Gg;ss3ʟAEPTsgϲi+/`* `* `*9ƽϵbO8}Ϸby`* `*f?A%`*Htb* ~, 'q|(G0ǎ/`*yΟHT0LS!7ȍ"70LSTX8y];ߧsTAEP4_2ʺuXn֭cݺu[uֱn:֭[ǿ˿{.E"3SS4Mpܔܔ6jy"*"*"*"*"*"*"*"*"*"*"*"*"*"*",c[N/T>㝷^c#l6 'O"kΞ9"*x"33\pe,e.pY2T AEPr3j5Z!xGnJnJG[+3Sy`?؈xrIY/8ydjz6^U.^"yNwg}LST0LST0L<߼/}xiST0LSTMj']\$7T0LSTM9 =]ST0gfz<7D"],fH@$ ri.-qfG3?w/U#o'8 H@$ >-fD" ),piN>Rr]\"H@$  D"H@$ a "H@$077ɓ'PD"H@$ H%m}Oa* c?UA$ pK8},D-qI^\"HY8~8}~ %Ν9ͅ4C$ ~sgNs!uų8v#G9u"^"H@$ pͲ\G$  KKLLe)H@$  ̔kAT0LSavz_ t2@_7} u3C_ c|~ˎ6wo73^}I~+} ˏq͟#7pͷ_Zx鏯#y_7ꗾCϾŖw˖]o{N^F_Nfnz?6ϡ^/uw@_7} u3`^^|V6\u~=6lc4ivv0MW#s-{fn릻wye7CXnD" gOsA"H@$I/; @.rG$ n3'9z('NÅ'xG8rt/%  D"3cdxH `* `* yi?:ӻsϳ@1LST0L,]ec* w9Ξ<PV/ȶ#94pK= LSSI$ I$ I$ MMMsxn;e).KqYR|2N|sRΟ=Cǁ\ZYT0ܘshvzY`* `* b* `* `* `*c0U$$$r3z{{yش 6mzM`Ӧ'ش 6mzM`Ӧ'xx#! ! ! !㽤Ǐa* gN/sv̌<fJo="M[m?ZR9)Sh( BHHHHHHHHHHHHHHHHHHxi+ 'c* NGU8r0K餻N;e/&۱FG  gΰi+/`* `* `*9ƽϵbO8}Ϸby`* `*f?A%`*Htb* `* `* `* `* `* ڹ<7BHHH,3?86=MOil6=MOil?##Ø)${v#7%7ɉ ܐȲm[pz$B:]aY8y ];wpiT                  Se6A=MMhkezr a߾fZ.;|?<]ttc$̔vz1 `* `*8^ˣyy_d{2`* NHn`* r{%`*J;B#xG!xw'O<ړ;yzw#O;w'O<;w#xG;w3=5'xG;w#xG;w,-^$.gOT0LS!x9w,!xw'xG;B'O;w #xG; #xG;w9,Rx#xG;w#xGUaldZ1LSTWBoW;}vEo]vEO'}vwA_O']vAow'}=uwEo]vAowݝtEO'}vwI_O'}=tIo=uwEO'}=tEo]v1;oc847ޮv;.{z;N{z;.{.:;o>4#xG;B#xG; #xG<;w'O; #xG;wP޺ ST0LST0LSTXZ#/]Gyzqyc9`* Kt,rLST.#.e).KqYR\ⲔζV{j pF]IVRPU*Tj* WN\:<0;\St'{=<ij|gx\c|w [;hU*Tj* ZJBVRplY|^f'98O.KqYR\,e).K Qenf,]m_3CC455$ I$ I$ I$ ۶mԩ[%Ef'ߺ;;}%K9w^Js({iii$IH$IH$IH&9<7,e)>K?'|w>9g)Ϟ~.`* EnL94;C,0LST0LST0LST0LST0LST0LST0T{yD;wx!s#ύ<7s#ύ<7s# 3{;w8=0L3عc;f;wx{;wx{;wx{;wx{;wx{;wx{;wx{B_o="M[m?ZR9)Sh%/rwx{;wx{;wxޑe)ۛp8pj$f㝷^c#l6 'O"kN>H{;wx{;wx{Q61N=MMhkej#ϙ颥e/-{iny-u8eޡ*tv1׋IT0LST0LS^< ۧ1LST0LܔvErSLST0LܔgE,1LS~&Q ,e).KqYR\,e).KqYR\,Ź ҟ2ę R\,e).KqYR\,e).KqYR\,e).KqYR\2''PpYR\,e).KqYR\,^8O]Ξ>`* B;spYR\,e).KqYR\,e).KqYR\,e).KqYR\,e).KqYwΞYʲe).KqYR\,e).KqYR\"3:|Z1LST䵗LOg]uwA_w}uwA_w}uwA_w}uwA_w}uwA_w}uwA_w}uwA_w}uwA_w}uwA_w}uwA_w}uwA_w}uw0;oc847vz;;;;;:oEe).KqYR\,e).KqYR\,e).KqYR\,e).KqYR\,e).KqYR\Hu?<`* `* xG^3l;3.P/sLST0LS!Kj?@Y ]Fg{+G]R\,e)mLٍ\YJBVRPU*Tj9txaxⲌ<*0_O7/__>];hU*Tj* ZJBVRplY|^f'98O.KqYR\,e).K Qenf,]m_3CC455$ I$ I$ I$ ۶mԩ[%\=JnJng).Kqa*LM1KKK3MMM$IB$$IB$$IB$455&F8@p,e).KY9;nA >K9 sieST(rc6Ρe`* `* `* `* `* `* ػg7.û 2.û 2.û 2.û 2.û 2.e)ۓ<~ ST8sz;*x]wex »,כƾi7 } ؀р@7|$GɒG6ΌhJFb"w[2lɈ$ddD֊Lںy(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ\<Ĵrs}Ëy V<"\9gƒ8SrDɉ%'JN(9QrDɉ%'JN(9QrDɉ$#on n巿5nJɉ%'7MqS7M1R(9QrD)o)n⦸)n⦸)Ͽ[?+_7MqS7M9X1?p⦸)Z y⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)op3JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrC͙G7a1nJɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ%'JN(9QrDɉ2ܝM}RKS߳v ӷ%SrDɉ%'JN(9QrDɉ%'JN(9Qr5Ϩ%sty]b(9QKƴ⦸)n⦸)njLɉ%'L+0\ZqS7MqS7Mq W{;魏x3|㏸)n⦸)nэe 0ptMqS7M9q;>\F~MqSܔ=|vI-$#IF$I2d$H$#IF$I2d$H$#IFrʘ)V3YF$I2d$H$#IF$I2d$H$#IF$I2d$H$#IF$I2d0Ur$I2d$H$#IF$I2d$Þ)_u)nԒy7$#IF$I2d$H$#IF$I2d$H$#IF$I2d$H$#IF$I2d$H$#9 W_p}9Ŝp?/S~y?|8gs1p1p1p1p1p1p1p1p1p1p1py9_<J-$#IF$I2d$H$#IF$I2d$H$#IF$I2d$H$#IF$I2d$H$#IF$I2d$H-G}HhCkMqS7MqS7MqS%o/O_ ~n)n⦸)nJps}MqSܔ՗)9h)|~>X^ט\N\N\N\N\N\Nxmx/|?`W<ovߓrb3~?8OW[k쌟^償l~ÔGgO>>$$$$$$$$$Ԓ|'${O=䄦ihihihi{.]#$#9 9 9 9 9 9 9 9 9 9 d>{чܿiiiNNN!l֟ԜIIII(IxW~_'?/xWJWpSܔ1_<{7׸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)S~j$$$$$$$$$$$$$$$$$$$$$$x7_㦸)]x71452\<Ĵrs}Ëy V<"\9gi$'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'AƁ'o~too~i%ݷy2c_⦸)n⦸)nlj!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'!'Akf.p)n⦸)n⦸f~սG>?G7MqS72d8ᦸ)n8|.#?স)n"<ӏ 「28 「28 「28 「28 「28 「28 「28 「28 「28 「28 「28 「28 「Cdq@dq@dq@dq໫7+7MqSjɜ/$#28 「28 「28 「28 「28 「28 「28 「28 「280=C$#28 「28 「28 「2$`\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9.Lo~5_};#?|\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1gZf{^#޻f"Ɉ28 「28 「28 「28 「28 「28 「28 「28 「28 「28>$$$$$$$$$Ԓ|'${O=䄦ihihihi{.]#$#9 9 9 9 9 9 9 9 9 9 d>{чܿiiiNNN!l֟ԜIIII(IxW~_'?/xWJWpSܔ1_<{7׸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸){g՗IH2d @$I $H2d @$I $H2d @$'o7_㦸)]uw)YHғd @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2dda!#^ϛ'oa?э?{њIғd @$I $H2d @$I $H2d ;~toy7)9'@$I $H2d @$I $H2d`7=y⦸)n⦸)nUopS7MqSܔ;_'7)n)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nvokJN$I2d @$I $H2d @$I $H2d @F.w5gn݈WPK"@$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @)WoqSjIY;vn9p[|4d @$I $H2d @$I $H2d @'?? wexE-$I $H2d @$I $H2d @pkMqS7MqS75˷/_=>9?⦸)n⦸)G71 7MqS7p7MqS6~|dH2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $8ޣ?qS7MZ B]u $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d @$I 8?pস)nklfY.Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝbr1gsC޻;~M/v[l߾rX.,s9Ŝbr1g\Y.,s9Ŝbr1g\Y.,s9Ŝb21߼I|V|3~I $H2d @$I $H2d @$I $H2d @$I $H2d @$I $H2d@Ɓ;c^স)n⦸)n⦸)7/O~7G7MqS7%H >⦸)nJɉEh甜IIIIIIX[>|G,gkL.'L.'L.'L.'L.'L.'y__>crd/??[S:__r?) ?7)Ϟ|}IIIIIIIII%sxOH22y{{#G7?{ʽ߽a2#c=2#c=2#c=2#c=2#cϷۯ͛wv⦸)]u7v[d쑱G{d쑱G{d쑱G{d쑱G{%ϟ>7o1/qS7MqS7MqS5߷Wj n⦸)nrt_c~7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqSͯmG{d쑱G{d쑱G{d쑱G{d쑱G{d쑱g^2]jN8Œ {d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d쑱G{d~߼y:ܔZws6?_=oZ~f8D{d쑱G{d쑱G{d쑱G{d쑱G{%}xAxdn),#,#C@{d쑱G{d쑱G{d쑱G{d쑱?y}>#L+n⦸)n⦸)_}1uo?o7MqS7M9n)n⦸)G7LJ77)n2/Ygwr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)grwpw/%㦸)n|wr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~v)gr~vʽ߽)q*n⦸)dx[ܹ};oq-ܾŝ۷swn[ܹ};oq-ܾŝ۷swn[ܹ};oq-ܾŝ۷swn[ܹ};oq-ܾŝ۷swn[ܹ};oq-ܾŝ۷swn[ܹ};oq-~w䷿y/xZ2ϟ=巿56{wn[ܹ};oq-ܾŝ۷swn[ܹ};oq-ܾŝ۷swn[ܹ}OÝ_GN#2r}tÁ0SN9?;SN9?;SN9?;SN9?;SN9?;SN9?;SN9?;SN9?;SN9?;SNw8?;#/{7MqS7MqS7My<7xK~9⦸)n⦸)IFbx7MqSJN,BW_>DNBNBNBNBNBNbޢc>`ɟ>{._cr9ar9ar9ar9ar9ar9ku)WPK&D&w7oy+8HO-X~Cι쌟^償l~ÔGgO>>$$$$$$$$$Ԓ|'${O=䄦ihihihi{.]#$#9 9 9 9 9 9 9 9 9 9 d>{чܿiiiNNN!l֟ԜIIII(IxW~_'?/xWJWpSܔ1_<{7׸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)ʳ'O[ocv~Ct-nKt-nKt-nKt-nKt-/%;E`xyMqSćwnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖnmv[ݖoG߽[WVn|#lf|)-GM9|7/v[ݖnmv[ݖnmv[ݖnmv[ݖnmv[/;!˗)nJGa{Wt-nKt-nKt-nKt-nKy7>yDMqS7MqS7My>?/fO7MqS7M9X1?p⦸)Z y⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)2XFƾM%sdʃ2r?p8aZrok|~ov[ݖnmv[ݖnmv[ݖnmv[ݖnm} Wr[|)Z n⫯8[>ݷt-nKt-nKt-nKt-nË%oƴ⦸)n⦸)n⚹ ~ˏsMqS7MqSn,c@n⦸)nэ2 n⦸)2|zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6O.7tn9ᦸ)n⦸)ÞgO>g^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^q^ų'=7MqS7M9::::::::::::bpSG'UUqu\uW]Uqu\uW]Uqu\uW]Uqu\uW]Uqu\uW]Uquձ;Vn)n8|)zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^YجWl+6zfb^Y\Sӊ⦸)n⦸)n⦸)>//'_䇛#n⦸)nd$\qS7"|sJN$$$$$$,-Z _>y5&&&&&&^ۼ/^/x drrJ*ǣs}tLNBNB-ض{vO/rrrrrrrO6?aʣx'Gr}trrrrrrrrrj\>^߽'qrrB44MC44MC44MC4ܽ{CKZ2=^ ߿ M4 M4 M4 '''S6Oyj$$$$$+?/+% W)nyr/=凛k7MqS7MqS7MqS7MqS7MqS7MqS7痗mΦ4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lٔ}ޏ|}iMqSܔ{.ޏuMifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6MifSٔf6fF{/=dM9r=M{{n 7ŴBohfSٔf6MifSٔf6MifSٔf6MifSٔf6M;|0)n;._=MifSٔf6MifSٔf6MifSٔf6MifS;oŧ??qS7MqS7MqSܔ;>_r^M/G7MqS7/b nh-,-n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)c lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦yNyr!nR3Φ4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lJ3rw6o/|]iM1<{{Bs2G$lkN lJ3̦4)lJ3̦4)lJ3̦4)lJ3̦4)lʛ'3Ó.I2স)nJ-/=;ܝMifSٔf6MifSٔf6MifSٔf6MifSٔ_73{?|n⦸)n⦸)nk,^\f7^⦸)nX.2 pS7MqSnMqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqSܔss}#7Gn\>rs}#7Gn\>rs}#7Gn\>rs}#7Gn\>rs}#7Gn\>rs}#7Gn\7MqSܔss}#7Gn\>rs}#7Gn\>rs}#7Gn\>rtMqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS7MqS_ȟ_.oc`p}MqS7MqSrs}MqSܔ՗)9h)|~>X^ט\N\N\N\N\N\Nxmx/|'ԒIIIIIIIIIIIX-˟2000000Oxc(^g|ч\Z2W<$#wɣG4 M4 M4 M4 wޥvВd$'!'!'!'!'!'!'!'!'!'g|G,gkL.'L.'L.'L.'L.'L.'y__>j$$$$$$$$$$$,ږ{O\N\N\N\N\N\N\N'1Ly/x3>CNNBNBNBNBNBNBNBNBNB-+?}B#NNNhihihihwu;bhI2PKk}x899iii_>f)?|@͙{g?{$w<|| 7M9Վ.g L+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiMqS7MqS7MqS7MqS7MqS7M1VL+ӊiŴbZq)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)nӊiŴbZ1VL+ӊiŴbZ1V7MqS7MqS7MqS7MqS7M1VL+ӊiŴbZq)n⦸)n⦸)n⦸)n⦘VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZZe-7׸)nbZ1?bzL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŭ⦸)n⦸)n⦸)n⦸)n⦸)n⦘VL+ӊiŴbZ1)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)n⦸)niŴbZ1VL+ӊiŴbZ1VL+7MqS7MqS7MqS7MqS7MqSL+ӊiŴbZ1V7MqS7MqS7MqS7MqS*ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VJ>|̧~rtMqS7MqSr>C~vI ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊiŴbZ1VL+ӊie_Gg\_㦸)nJɉEh甜IIIIIIX[>|G,gkL.'L.'L.'L.'L.'L.'y__>j$$$$$$$$$$$,ږ{O\N\N\N\N\N\N\N'1Ly/x3>CNNBNBNBNBNBNBNBNBNB-+?}B#NNNhihihihwu;bhI2PKk}x899iii_>f)?|@͙{g?{$w<|| 7MqSL+ۯ_ﳘCK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1>\F^|%G膛⦸)nJ6k9yK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -?#ơ⦸)n⦸)n>CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1CK -1`IDATCK -1CK -1CK -1rcV⦸)%'/Sr"'!'!'!'!'!'a1oR1}Ok1000005^:_|ǫO%h[=;㧗?er9ar9ar9ar9ar9ar9ar9'0Qٓ>:9 9 9 9 9 9 9 9 9 d.x IFG899iiii޽K툡%HNBNBNBNBNBNBNBNBNBNB-y䄦ihihihB|)5grrrrJ^앟~ ^앒{+7MqSܔZ5g\㑣n⦸)nPsBKAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkAkj⦸)n⦸)nhԜRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ?Axۻuy~i(H$@)=8,Z'FH'.-w2mtR)I[[7Cݱh'Z{}ג8>=(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍr(7ʍrSJ~淿iD]bw_|'7p#7]7\|x~:=_|x>x<<>~׿|?Sp#7p#7p#xwyox>x<<[{|O_r3~&7p#7p#8888888x뭷_wqp#7p#7p#r~Sym^^^888888xyyիW|| 7pc;o|7k?sD]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt~9;p#7p#xws||x>x<<^5^uOYs;7p#7p#7pw~o?|x>x<<o}-?O~op#7p#7p#w\?oxo3>888୷⫯~p#7p#7p#w >Oy睷yyy888W^/~ΏC2p#7Ɨ_&7˯vO]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%v8zpp#7pE{ŇOg5|x>xx/>eA 7p#7p#7}?}6|x>x<<G>%?㷿ip#7p#7sM>ܾ#^^^8888888zzo7p#܈pp#7"//g?w888888^zǿ9?p#7_~-ƛwx/ۍ??7iD]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]Kt.%D]K_G_|'7p#7]7\|x~:=_|x>x<<>~׿|?Sp#7p#7p#xwyox>x<<[{|O_r3~&7p#7p#8888888x뭷_wqp#_+sc7og/>珿짼ۼpqpqpq«WO??!Anv˯wxobO>!JI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%RRJJI))%M7/!?+~?v8FnF{'|y|x>x<k wnFnFn۟>~~|x>x<<[|~gß4FnFnF& nf|///qqq[oW_^7;~?Ͽ??z]7,wϸ~; qpqpqp///z/>s~Fnl7Z|7&_~-?s>)'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_'ur_''㣋~#~¾5FnFn޻ho u^{|x>x<<}:ŧ9FnFnFgϷ|x>x<<>胟'g7MnFnF;x~7} qpqpqpq[oWW Ǝo/~HFnFk7wƛ|nn\5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9Xs`5k9xb}}kp#7p#7]7\|x~:=_|x>x<<>~׿|?Sp#p5ͯqp#o~}k̾w~o?|x>x<<o}-?O~op#7p#7p#w\?oxo3>888୷⫯~v8ޛK&/+w~̿y睷yyy888W^/~ΏC2p#7Ɨ_&7˯v#7v8A w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;rA w;pp#7p#7{<?ởkx<<൏_/_5pc_-__ :ҿo~wy<<|𭏿=>|/?MnFnFnk mGqqqq[|կ'Ofk>w_O2o_I y~~; qpqpqp///z/>s~Fnl7Z|7&_~-FnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFn޻ho u^{|x>x<<}:ŧ9;o]gzG|ﯾ~?_o?|x>x<<o}-?O~op#7p#7p#w\?oxo3>888୷⫯Ŀ?'OĂ_oS_3!x睷yyy888W^/~ΏC2p#7Ɨ_&7˯v#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7p#7{<?ởkx<<൏_/_5p#p?#o"}OG~|6~~|x>x<<[|~gß4FnFnF& nf|///qqq[oW_^}ϰ__o~?Kο_k}~?7o?Vo[joުn+[Ų.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY~rźުU{V[joުU{V[joުU{}}e],bY˺XŲ.ue],⵫-{VZoOXŲ.ue],bY˺X+޸vV[꭛7|lY˺XŲ.ue],bY?){5{V[joުU{V[joުU{V[^xe],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],╏Wo\joV[joުU{޸~+ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.uOn[joުU{VmukW?e],bY˺XŲ.ue],bY˺XŲ.ue],bY˺XŲ.ue],bY˺'[7[joުU{Vzbw<=[}gCCn7ۍvfqx!|o_E?Ur_~~8_ǿ?u>}_/>Ontݸnl7n7ۍvg[_7|9~M߻koުU{V[jo^xV}:Ύ08 08 08 0xa\);jV[޻>ymwx{z _y;;;0 0 0 츷燗.zwcުU{V=hԳ}xЪU޿G<<<<<<<<<<<艽c~rc{۷joުU{~s|EGitFitFitFitFitFitFitFitFitFitFi|^x޺ުUo\[o~ח198:O4:O4:O4:O4:O4:O4:O4:O4:O4:O4:O///y߼aoުU{V[joުU{V[joպ/^oyyyyy}i|#.^߲꭛7||kwo~g~??{_'l7n7ۍvfq'|=u ߿pηz[joުU{V[Aw{洗.^}w_=;N0 0 0 0 >|+W'꾽U{V[joުU{>;|W^9Ύ08 08 08 ;;;᥋}]s{joުUZ;>s~g;joղ.=n/0c'{u{V[uMwwnϞG|eoݼa=zϗ痼tU{V[joުU{V[joުU?^>ȷ^s>|гg/[ ~߰?޽{~xW~S[;oʷ&07o|礷nްjoުU{V[joުU{V[uM_?q{3UUUUUU̓;7_joުU{޺q{~SUUPUǮs[{V[ꕏ?o3~=z|s[{V[joުUOg|뻯O{h{vfqݸnl7n=ӗ/z;>87zًWnz{G_wyG'Onl7n7ۍvfO{oݵjoުU{V[i/]`zwNrggaaaa<|WO}{V[joުU{V}=w=OrĝapapapwvvK=޻~1onoުU{kw|S>kw>;w^joުU{Vv{gz<{~/_Ç;=fV[7/]GÇUUUUUUUUUUUUUUUUUUUUUUUUUUUUU<۞;fV[joުUOg|뻯O{h{vfqݸnl7n=ӗ/z;>V{Ν;쎟j;wx;9h|+W'꾽U{V[joުU{>;|W^9Ύ08 08 08 ;;;᥋}]s{joުUZ;>s~g;Ao;{TT/<履{V[kwU a PP{={V[joުU{V[joުU{N{^{37Os>~yƍ3_yk^joުU{V[joުU{V[Ƶw/rGرc{&1Νرc=zeY|/ GV[jok~⋇?~,=zcǎy9UU =|(* ݻwswwד'O#/^8WXo[joՃ޼x^{EU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ y#[V[joުUOg|뻯O{h{vfqݸnl7n=ӗ/z;>V[joުU{V[ѣye>fqݸnl7n7ۍ'>os֛޿wުU{V[joު3t9uʝapapapa^R~_ߜ'o\* g} ;{+V[joުU{V[joުU{޸vqww׽=Ϟ=+ ~{ǏT={{{=xުU{VzO|G\]<?֭[['8>Pݻ8qǏ#/^8WXo[joՃ޼x^{UU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ y#[V[joުUOg|뻯O{h{vfqݸnl7n=ӗ/z;>V[joުU{V[ѣye>fqݸnl7n7ۍ'>os֛޿wުU{V[joު3t9uʝapapapa^Rc?W~OǿxoG?___5_7|3>s?n|v{ {5Osު7^իGy_e?WǛdW|ŏG_|??_ΟT=i}{V[joުU{V[joުyӞ<* ^̻xЛ'vp=?7ׯ g^U{V[joުU{V[joު7]u<r劻y?~{pႧNO?ƍ>|P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ϻ#_܏[joު>>zu]uoo CO>?ggyƿ //{?_@U@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@wz ?믿ÇxG_=bݿeoުUzs{UUUUUUUUU/?Wo[joުU{V={;ߞ3?!7ۍvfqݸnx[joުU{V[joGz}rvfqݸnl7n8N[oz]{V[joުU{>nϜ G|)wvvaaaÇ{JQ[ݷjoުU{V[josgԛo+Gqapapapggǽ=?tѳwvV[A^vǧ}/=s^vǃV=sgx|ILb$&1ILb$&1ILb$&1~IjoުUo޸xx$~3Wݯ|wsUyG/o\-G?|WUjhUwwN[}_K^zU$#ߺїG_ˏ~<Οw_zǎy'bӟiƏ6?տg5~GmuުU{V[joުU{V[Ao}'署$&1ILb$}Ϝ~ǃ>zeYuoo $&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb@@@ILb$&1ILbU>3~_gg9g~Ɵzg&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbgy ?믿zyzĺުU{<ګ޼yy7ILb$&ĉ0x]/]Lb$&1ILbUϟz#[V[joުUOg|뻯O{h{vfqݸnl7n=ӗ/z;>V[joުU{V[ѣye>fqݸnl7n7ۍ'>os֛޿wުU{V[joު3t9uʝapapapa^R~}8&1yUG1x΁omC$޻{;'ުU{Vy߿oxwO\Wa>co?_\O\O\ÿ>UwwN[}_K^zUՀ_,W'/E/ٛ_>n 5O/o z=jV[joުU{V[{ݿu֪yӞ| ßU{V[ڧG,yy$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1xzׯ]ڵk^q˃?Q$&1w&1>[K//?O??OOOwG_DP$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILb$&1ILbD>'Nxq_uϟG[Ao^<c~OOkk9r۷oD$&1I?~̯}k޺u#Gկ~7޽{&1ILbzc߲joުU{Vzbw<=[}gCCn7ۍvfqx!|x3AjoުU{V[joު'/I7ۍvfqݸnl7>q uO|/V[joުU{V}ݞ9luWΩS8 08 08 08 ʕɽooުU{V[joުμ7W0 0 0 Ύ{{{~xg{?[joՃV|O=_z|zЛΞQU?oW{~W_G|;?گo.޹?_x֯گ~O~|y<~ݻyxy?[joު7o\w<{>~o}?_/wѕ?ǏwO>\GoO?O} {@GݣzSVmuߗ׮~*`7~yĉ <*<]Uoݿ8CU*T$I6df[6FI,۲h8k޵ZHz}y(>.g9;?0 ٻw|ӛ7m"?q9v5J?:İ[X? #xG;wѶ-s-'?_X@ ۶qaXdw0,.vjfn ݹ47Gy-u\zM|7p(` fٳ}{v<?3Nͱ`Ơ={7[K/7yt2Yôqd wXԄ'w#xG;w81wVNszaÇ333xxZlX<}5woOѧM{v7xݴ{yſ<ஷo>Nв<^f~0g03rJG#xG'O灕t]|oSs'*y/?p.w'xo8rH_ǿN~&Gg3{l [7o"xw<9v(8Pl|o2/ O9l'_'~{| /+_I~!7ɩ|W9y[ضu g<;w#xG<=G_Kos~m[ٸ~ aϪ|+^Ys03̌E֮Yʹq<ó;v`hΗn??SɃ_⍗-s0`f={߰on~9Ok/C8s'Gwñz3̐^=L{7+WO|?> #xG;wqbfaaÇ133xmW!͗._N֭gw" affaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaffaf !"lذOpiݹkVO#xG6xv5X\\^ /djj)..>SOQJaqq3wyNdU\|LMM155_~9_ygXXX`qq303vn*)w#xGf"m,O nzFN2MF&#FɈdKq{[7@;w#xG;6]˪%0MF&#FɈdh2r{شI{v<#xG;wm`2w=w̬YMiiiiV\Ç8^w#xG;wmlzIV^4M4 M4 M4 ӌcv?۶u#xG; W|K. wc,uk03N;wƷ~M;`;nx;Ye?;-o|\U[ppq>'H"n돹+?iU̔r!w^rf<ƛ3^v5yW^/o7s/^˟3>sK3ŁuaMnG~ ǎeqŁn/}˗W}[o+^+_ɱcxO{ի8?)Ⱦ?s}+8palqٶe3g<;w#xG߿z,Y’_;>CG$xocLaύ/~/6.y{Xs *5ݺ6x6gxv`r[óG"*0UΞ9Ooطg7C?0`f,ݬ:Jwr'߻uoJ׳)fĖôwwY[%Kw~o٫y_~GʼnyG;w1X9bffx,b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*b*2,GS7_'|Wq=\wU<0^w5,}-<{Es_ b*b*beNz*B۶9}3T1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1UL;v0a9}}#xGGʆgϰ>fffر ST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULA{&|KWΆc 0,>7_s1ŠS[~U_OvM1SΜ>?M7u]F^q*s7y;~w?.|>OoM{χYx'qLSL1SLST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1ULST1U3D"6l`<9}gwLXfn;whg]Y\x bjj)X|9W]u_ٲy3}_;ajj;︃S'Oz*.bbjj .˗s5o|]3* lgݚUS#xG;6̬EږY܍,,e41MF&#FɈۗrya.fn&;w#xG;wlXU=K&/a41MF&#FɈdĹSi<y)J #xG;wdv+zY͛61==M44MC44MC44MC4\Çq #xG;w#ԓ^iiii~~۷m!#xGw.\q]ZhgYֲ1X;_CEΰ {wO׾|eo0|-W/={Xp5m'8{VQU+C#xy`4]QUTy8~ã<[㳧쩿sWGN~{ە8r#lIXgC| gΞAUuaMnG~ ǎe0CU9iz?#i(;w9vO~}c}n#\K/eӟmߎl؀_Oy9.,,..ufϬŻyw#< %,Y%K ۶aEzN9˻`aUEUkV1u3mlϰsDŽEYTEXY?9}lطg7C?f=w<_^w!^z _|p;EUQUbr=L{7~Xd K,aɒ%;rn78;wqbf9t333cfggQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTUEUQUTxѿoGg%~N!=w_z-?lu_z-Ó︑.t<C***J[Z<ߞ|mo6v5nl֊**************************;v`<333}8}4O#xGsGӕ gΜa߾}0ٱc***********************l\v]S9sW|q7 gQUT/TQǓX/K//W)]\}9Xq+:k>77o-y=pG?'|sz$O?=ѣQ酊b6`j*************************J 6~zx عc5p#xGMRFɈdh2b41X})7vbvfb#xG;w#xdžkY#dFɈdh2b41MF\=u6>st;w#xG Lfgn5ؼi4MC44MC44MC44Mʕ+9|kn;w#xG;b1MO=իiiiazzxw}_;wz9ኛb796xvlefc=s_L:ƣߺ+y8{G͍WďGF0O==gL=Oo[]7^Eoz+.&NJα{8z;wqqX9HP{j-keC|Wx-OpGu/'K\ȹ^N m X{jO_+}>}VbMnG~ G}}O_+}J+ez{'8w>iN/ȹr>}O}O_+gNfY? #xG6̳Mο7KXd K,aɒ%,s?d|DgY3gk9W;V\n9֬z٭igxg9{ }/P~V}c\|wճH]`Riٍw<8zkea4z 59#xG'@3M3gf嗿?+^|g9k9NmWk9Μ{jVZkVj~6vvo8.vWom}||/1wVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkV۷3aϞ=t9r^G;w;zVNʞ_dffxdvVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZk*l#[Yw svga FMqwǴ 9BsW?o;J_+}ܱҗ77^UWxo:_5WVuV8+ko n7y~w?[~oC>>*ݷ#_cd-G?wsqZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkVZkeαa֯_?N3gv*)wϮ;xl*Ξ9Ùӧٹs'^x!SSSLMM155SSS,_˗sW/}}cLMMqsQya."bjj)X|9\p+Vk_gNfvV֭Y?E;wcZm9_>MRFɈdh2b41X})7vbvfb#xG;w#xdžkY#dFɈdh2b41MF\=u6>st;w#xG Lfgn5ؼi4MC44MC44MC44Mʕ+9|kn;w#xG;b1MO=իiiiazzxw}_;wz9ኛb796xvnefΜ>M-9#ߺ+~uP8-xMp[G7\ |ozj >uH.gJQKB-7?C#xy&-j)RЗtw}??yU|W_'ʇG?󪃯0C-Z j)RX{֬6?CyrASKB-Z+)? F8UN_mNr '?aK9zy{OPKB-yWYw#xG'?ڟ|['v,Y’_;>CG$xou9}j)R%w曬]3G9o??Uo6,B-Z j)R͟ͷpzܰn| i~Gl9j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z g3_$}#xGGx`4^|Efffl߾Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)Rw~_y NBg~[.l}n qS^ǿΞ/Z j)R8|__r-;oX7マ[ǧxϻ+7\\wݯs5b9XqW_}^\-7&xow'_o|//_ƿ[]&䉃RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z j)RPKB-Z ObÆ _[v*)wϮ;xl/8}4 }ώɄ /)bjj˗sWO6o155ƑÇy?碋.bjj) X|9+V _OW$JQKaٶe [?E;wcZm9_>MRFɈdh2b41X})7vbvfb#b<"BNkײGx%&#FɈdh2b418w{6m|3O?E2;w#xG;bn]<3kVy&iihihih+Wr!6<;wmKNB;blI(Yع}zիW1==M44MC44MC44M4b-<~1ws7Œ+nsBm>˺pzaa#0-j=zӟwv'ߜ~/co]__ɜ)9L3]Δ.3$+ﻇG#xG'Of6Jr˙39's?/>>q|W_~^/gL3]t9šUm3nG~ B3]t]qUҥS0_'?Aܷʼnw bK8t)G.e+JG3]t9ʦ_=x7O;w'Ɩw'oz ,s?d|Dggrza.grdu7w{r˙Z [7 gt]G%+>O6>OD!D3]$ocߞx7#QKtS;qEss<+?x<˔.sqVwsGލw,_~e/u_Th#xG;w81wie<3ٺu ]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]Δn+dá=L {u|׿Çy]?>~q.|_nHer˙ujO؋_|myl]ǻ>Q[lػ#)]G2]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L3]t9L2cffƼ{7I"+ﻇ#xG;ၕӔčlt.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙jJ`nS|Co o O=? .yڹ_0SL3]t9L2;ߵ[byn3;6#1sOqկ\˝w,oOxo~k>+aŊss巸ͻ;}->??;8x`'r˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.gr˙.g)]ɓlذ㏓$m֮Y?E;ٵs =}-Lo /djj)KONZ'xGp O=x7|fîÄSywxs'yWOz*iihihif<]l߶ׯ#@;wޱwNXrwwNh gYJNB'cvWOO}̇H y |lݱ.1^lccHrrrrrN8Ns==r;w8y84III()ś?|d+ռ\rp9poU{!'!'!'!'tտxm[!xw<9x`?$$HGsCȹrd2ɟp⋙{82w}zG?#˖qd2ɟ0''!'!'%g<;w#xGm۷}O;g׭e$$$t)gݼYf!'!'tU>ʹq<٭Е3 ;^ŗ\%Kz?yb71er$Ǿ=ntg_W]E7Vq.'N?aa0Ͼ'ě_w9ʏذyN@;w#xG'@s"{0lٲ |9ItI躌۽^ |^~zxp \ƷWr[V_p+u;їDNBNB%gzn .vWomyA{|Q]N$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$t91;xx/}#xGGxˉ/xxst;w#xG Lfgn5ؼi4MC44MC44MC44Mʕ+9|knmp0V?+~A6!]|?k;?lzիW1==M44MC44MC44M4b-<~1ws7Œ+nsBm>˺VBHHNeJ)]BHH!D2t9%DrKBHHHHHs4##xG'@3w$$$Tx/xrqޞ9o{^y)祜erޞ9o|y<9DZDDDXGضwx7#?DHHʉvvG^z-]ʡe8l;CǡK9tyZCǡK9l-вe{;III)]駞dZ'xG;w#xG6bg~<̼s3ٶk!I$I$I$I$;z ߶$$$t9чݺ6x6gؾm+t$Dw#oyq7{^͞=8~ʓ$$on~ơr"I$I$={8xd6FDDD;aaw?}8q@;w#xG;w;}HlٳE1-[$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$bˉ#;HIIIs!?INpѹ9ԩ;|"@HH81/|Uۮ↭73| ;L#I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Idv61/@<}pp>w#x#7GHNBHHH~/Ƶ^G?QxqN8NNBNBHHHHHHeŷ{\yk~_°xRogw=~o[Ϳw*^k\{kwq5ݽƵ˗}%}>o+~E,bX"iK!Vƫ/[oQJ쌳38;;쌳3ΘG9c +/O/[ǿOoW^yR gggqvvgggQJ₥mn~)!E,'W|o=<\1,Fګ|͈1#fČ3bF̈1#fČ3bF̈1#fČ3bN#<1g/|_<$E,}gi3b~;W>|oO7>&|oO7>&|oO7>&`Č3bF̈1#fĜFx#ǓǏE,bX"E,bX"؟|^`|,\\\pqqwaČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČs5w>w?敇/ˇO90bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fĜFs]...֏:gx٧"E,<N'Gqqqw4ˆ1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ\N\N|S޿{ʿ?Oo#g|sN#3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bF̈1#fČ3bFi'_~͛7y׹uV睷W_FXb}^ofĜFi3bF̈1#fČNi480bF̈1#fČ3bFWW'~ל_F,bX"y5_|m^k\{kwq5ݽSOO*H|??_b&Ok^]^\{kwq5ݽƵ׸v^/_e=z|o&E,bX".އX;oE)38;;쌳38;;cg=zĭ?Ɵ, 8[[{O~W^~R gggqvvgggQJ₥mn~)!E,'W|o=<\1,Fګ_X"E,bX"E,bX"E,b/8_<$E,}g/A,br%~w>.|Ͽw>.|Ͽw>.|Ͽ}wE,bq~ʝo ҋ?Os!iwy₋ ybX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXĢ /"Vg"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX;ԏ>y٧"E,<4{\\\pqqwe"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX8q'%vC _!V'E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,b1b|7os-ok^{eE,F̽畟X"E,bX"E,bX"E,bX"i+7bX"q5}7KG_KSOS_K#:o| o{/͟G?On_w\eݿSOSSOSo+~E,bX"iK!Vy(PJB)R J)Rx!o-^~'z-n~?ٍ_w߿+7w;/ /@)R J)R(0M7n`s[sJE,baqzy~[='W ձ:VXcuձ:VXcuձ:VXcu/q69xH,bX^7ձ:Vg<y?QȣG!C<y?Qȓ%VX3b~ҋܹ6:/c0bձ:>vz=|>@z=|>@/poXcu~5N,bX"E,bX"1wWձ:VXcuձ:#g/} }mNcuձ:VXcuz;_ V?_1VXcuձ:V}^K|uuXcuձ:VXcuձ:VXcuձ:VXcuΈy/ވE,bX"7o|p={ɣwg?}g?}g?}g?}g?}g?}g??c>ry6_}uWW'N7[1)gWy_g?}g?}g?}g?}g?}g?}g?}o6x/y_|M,bX"E,N#}]:_cosqq\\\pqq$WW}?y#G0_k.ۼ[ܸq ...₋ ...q,wossN E,b1,?[=|a1b}>?zCPo7 zCPo7 zCPo7 ~p_~X"8} zCPo7 zCPo7 zCPo7}g/;yg/q;7 zCPo7 zCPo7 zCPo7޸XX"E,bX"E,b1b>{?)Qo7 zCPo7}eM~y  zCPo7 G |v/Po7 zCPo7es/E,bX"E,bX"ط'g|٧zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo,{\^}ʣ~x"E,|΅Ggry,Po7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPo7 zCPolOK^^s;[\_GXb{ҋ?7 zCPo7 zCPo7 zCPo7 zC7xk7bX"qu|p=^{g|{ԏ>!~C>q,Gŭ\bX7R'po7k7 {Z?!~C>q|\q嗨>7o5E,bX"8pw>q{{,KR{,KRwy핟cubXDz:}]^{g|%!KR{,KR{|T~\޹ͭ9%"Űo=<+E,|)?Ox׿b{%8c8c8c8c8c8c8c8c8c8c8}ƫ?n^=yL,bXv7^՟ă?7}7}7}7}7}7}7}7}7}7}7ڱǼ_O>&V;oO~ĺ|̱oƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƾ={O~̇_b5bX"E,bX"E,>>?{Ǽٞ|I;6}7}7}7ڱǼ/ȧB,>~}7}7}7}_Wx:_~X"űo\Wzm;ǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqǾqNo;Ǿwy'?;7bXуO_K|vlƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱoƱo>x./ǼyF,bX"y:#G{6wnsy6wnsy6wnsy6wnsy6wnsy6wnXcuձ:VXGs;s;s;s;s;s߿˺To&E,bX".8\޹\޹\޹\޹\޹\!VXcuձ:VXX8%"Űo=<+E,}?O~\&21Leb.s\&21Leb.s\&21L|LXX"|\&21Leb.s\&21Leb.s\&21Leb.? 3}IDAT/S>؉E,'__?\&21Leb.s\&21Leb.s\&21Leg/O~̻oKbX"E,bX"E,b޸ş21Leb.s\&2ù~ʇ_ҎXcwLeb.s\&21}W_#؞|_ ~Leb.s\&21ܼ8bubX"E,bX"E,Σ8321Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21`W.7bX"qq+p.eb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21Leb.s\&21L~Λf1E,b Q?_z\&21Leb.s\&21Leb.s\&21Leb.s\&2O~;ocbX"E,n޸rkz[ܺ89.ιuqέsn]s[ܺ8ܼ7ϯsun޸׹y:7o\ܼq7sun޸y[s[ܺ89.ιuqέsn]s[z^wykbX"E,bqwy?卋s޸89.ιuqέsn]s[ܺ89.ι9o\sun޸׹y:7o\ܼq7sun޸׹y~7^ܺ89.ιuqέsn]s[ܺ89^?׸K\N"Űo=<+E,bx?uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT>]V#E,bXO+RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.u|?;E,bg]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.u|} E,bX"E,bX"E,='.uKe]*RYʺT֥~1?v"mX?uKe]*RYʺT֥.,|E,g]*RYʺT֥.uKe]*:E,bX"E,bX"E,''Ke]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RGQo"E,b}ºT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT>>%E,bX½C.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*RYʺT֥.uKe]*z}{B,bX"E,ڱ3bN#F8p4iN#F8p4iN#F8p4iN#F8p4iN#F8p4i~W|uu"E,bX"PowN#F8p4iN#F8p4iN#F8p4iN#F8p4iN#F8p4iN'~E,baqzy~[='W X"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX Os;zy?bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bXbXrŷ{ss"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"E,bX"d QVrul2-N@r'`Rj|+b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-b-΢Y|-ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZE~C,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,n+>_Gϣy_~O_~F~%,"","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""O_~?k?)i%tEXtdate:create2015-12-03T10:28:19+00:00m|D%tEXtdate:modify2015-12-03T10:28:19+00:000tEXtSoftwaregnome-screenshot>IENDB`idjc-0.8.16/doc/install_build.html0000644000175000017500000002675712711160237013741 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Deciding if this is a good idea

The following list contains valid reasons for going to the trouble of installing IDJC from source.

  • IDJC is absent from the repository.
  • The repository version is ancient but functional.
  • The repository version has features removed for fear of legal action.
  • The repository version has a minimum set of features generally.
  • The repository version is broken.

Removing old versions

It's a good idea to remove any old versions of IDJC at this point.

Installing dependencies

The following software is required to build IDJC or is used by IDJC at run-time. There should be similarly named binary packages in your package management system for all of these of which you typically want the library development packages whose names carry the -dev or -devel suffix.

Project nameVersionComment
libshout-idjc2.3.1Required—A specially modified version of libshout
Python2.7+, not 3Required—probably installed already
mutagen1.18+Required
Jack Audio Connection Kit0.116.0+Required—need library and server
PyGTK2.18+Required
vorbis-tools1.2.0+Required
libsndfile1.0.12+Required
libsamplerate0.1.4+Required
GLib22.0.0+Required
mpg1231.13+Recommended—for mp2/mp3 playback
TwoLAME0.3+Recommended—for streaming/recording in the mp2 format
Lame3.97+Recommended—for streaming/recording in the mp3 format
FFmpeg's libav…0.10/0.8+Recommended—for mp4/m4a, ape, mpc, aac(+)
FLAC1.1.3+Recommended—for FLAC playback, recording, and streaming
Speex1.2rc1+Recommended—for Speex playback and streaming
Opus1.0+Recommended—for Opus playback and streaming

For Ubuntu users, this command should be enough to satisfy nearly all of the above.

$ sudo apt-get install build-essential libc6-dev libglib2.0-dev libjack-dev jackd libvorbis-dev libsamplerate0-dev libsndfile1-dev python-gtk2-dev libmpg123-dev libavcodec-dev libavformat-dev libtwolame-dev libmp3lame-dev libflac-dev python-mutagen libspeex-dev

For Fedora users, use this instead.

$ su -c "yum install gcc-c++ libvorbis-devel glib2-devel libsamplerate-devel libsndfile-devel jack-audio-connection-kit-devel pygtk2-devel libmpg123-devel lame-devel twolame-devel flac-devel ffmpeg-devel speex-devel python-mutagen opus-devel"

If during the execution of the above command you are asked whether to configure your system for JACK/realtime the sensible choice is yes.

Obtaining the IDJC source code

There are two options available to you. One is to get the official release (recommended), the other is to obtain the development sources which are only casually tested.

Option 1: Build the latest official release

Click the relevant link above to download libshout-idjc, then in a console type the following.

$ cd Downloads
$ tar xzvf libshout-idjc-[version].tar.gz
$ cd libshout-idjc-[version]/
$ ./configure CFLAGS="-O2" --prefix=/usr
  • Fedora 64 bit only.

    $ ./configure CFLAGS="-O2" --prefix=/usr --libdir=/usr/lib64
$ make
$ sudo make install
$ sudo ldconfig

Navigate to http://sourceforge.net/projects/idjc/.

Hit the big green Download button and wait for the download to finish. Make a note of the version number.

$ cd Downloads
$ tar xzvf idjc-[version].tar.gz
$ cd idjc-[version]/
$ ./configure CFLAGS="-O2" --prefix=/usr
  • Fedora 64 bit only.

    $ ./configure CFLAGS="-O2" --prefix=/usr --libdir=/usr/lib64
$ make
$ sudo make install
Option 2: Build from the development sources

Build dependencies for Ubuntu users.

$ sudo apt-get install git-core autoconf libtool autopoint imagemagick

For Fedora users.

$ su -c "yum install git-core autoconf libtool gettext-devel ImageMagick"

The build process.

$ git clone git://idjc.git.sourceforge.net/gitroot/idjc/idjc
$ cd idjc/
$ ./bootstrap
$ cd libshout-idjc
$ ./configure CFLAGS="-O2" --prefix=/usr
  • Fedora 64 bit only.

    $ ./configure CFLAGS="-O2" --prefix=/usr --libdir=/usr/lib64
$ make
$ sudo make install
$ sudo ldconfig
$ cd ..
$ ./configure CFLAGS="-O2" --prefix=/usr
  • Fedora 64 bit only.

    $ ./configure CFLAGS="-O2" --prefix=/usr --libdir=/usr/lib64
$ make
$ sudo make install

For systems that don't have sudo configured, use the following form instead.

su -c "make install"

Finally

At this stage it's installed but see the First run section as further configuration is very likely needed.

idjc-0.8.16/doc/tutorials.html0000644000175000017500000001167112711160237013127 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Help for the less obvious things

idjc-0.8.16/doc/tutorials_icecast.html0000644000175000017500000004306412711160237014623 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Aims

In this section I'm going to walk you through the procedure of setting up an Iceccast server and then sending a live stream to it with IDJC. In addition I will demonstrate the connection of a listener to show that everything really does work.

The advice below is for demonstration purposes only. Not covered are best practices of locking down an Icecast server for serious use. For that and other non IDJC related matters there are the Icecast forums and the Icecast documentation itself.

Setting up Icecast

Why local?

Everything in this tutorial will be demonstrated on the same machine and while not as impressive as sending a stream half way across your house, by making this tutorial single machine specific I can not only leave multi-machine as an exercise to the reader but also not have to worry about anyone's local network specifics or how many machines they have reasonable access to.

Installing Icecast
  • Ubuntu

    sudo apt-get install icecast2
  • Debian

    sudo -c "apt-get install icecast2"
The configuration file

Take a look in your /etc/icecast2/ directory and you should find a file called icecast.xml. This file is and will be referred to as the Icecast server configuration file. In it are the settings for the various different Icecast options. Here below are the typical contents.

<icecast>
    <limits>
        <clients>100</clients>
        <sources>2</sources>
        <threadpool>5</threadpool>
        <queue-size>524288</queue-size>
        <client-timeout>30</client-timeout>
        <header-timeout>15</header-timeout>
        <source-timeout>10</source-timeout>
        <!-- If enabled, this will provide a burst of data when a client 
             first connects, thereby significantly reducing the startup 
             time for listeners that do substantial buffering. However,
             it also significantly increases latency between the source
             client and listening client.  For low-latency setups, you
             might want to disable this. -->
        <burst-on-connect>1</burst-on-connect>
        <!-- same as burst-on-connect, but this allows for being more
             specific on how much to burst. Most people won't need to
             change from the default 64k. Applies to all mountpoints  -->
        <burst-size>65535</burst-size>
    </limits>

    <authentication>
        <!-- Sources log in with username 'source' -->
        <source-password>hackme</source-password>
        <!-- Relays log in username 'relay' -->
        <relay-password>hackme</relay-password>

        <!-- Admin logs in with the username given below -->
        <admin-user>admin</admin-user>
        <admin-password>hackme</admin-password>
    </authentication>

    <!-- set the mountpoint for a shoutcast source to use, the default if not
         specified is /stream but you can change it here if an alternative is
         wanted or an extension is required
    <shoutcast-mount>/live.nsv</shoutcast-mount>
    -->

    <!-- Uncomment this if you want directory listings -->
    <!--
    <directory>
        <yp-url-timeout>15</yp-url-timeout>
        <yp-url>http://dir.xiph.org/cgi-bin/yp-cgi</yp-url>
    </directory>
     -->

    <!-- This is the hostname other people will use to connect to your server.
    It affects mainly the urls generated by Icecast for playlists and yp
    listings. -->
    <hostname>localhost</hostname>

    <!-- You may have multiple <listener> elements -->
    <listen-socket>
        <port>8000</port>
        <!-- <bind-address>127.0.0.1</bind-address> -->
        <!-- <shoutcast-mount>/stream</shoutcast-mount> -->
    </listen-socket>
    <!--
    <listen-socket>
        <port>8001</port>
    </listen-socket>
    -->

    <!--<master-server>127.0.0.1</master-server>-->
    <!--<master-server-port>8001</master-server-port>-->
    <!--<master-update-interval>120</master-update-interval>-->
    <!--<master-password>hackme</master-password>-->

    <!-- setting this makes all relays on-demand unless overridden, this is
         useful for master relays which do not have <relay> definitions here.
         The default is 0 -->
    <!--<relays-on-demand>1</relays-on-demand>-->

    <!--
    <relay>
        <server>127.0.0.1</server>
        <port>8001</port>
        <mount>/example.ogg</mount>
        <local-mount>/different.ogg</local-mount>
        <on-demand>0</on-demand>

        <relay-shoutcast-metadata>0</relay-shoutcast-metadata>
    </relay>
    -->

    <!-- Only define a <mount> section if you want to use advanced options,
         like alternative usernames or passwords
    <mount>
        <mount-name>/example-complex.ogg</mount-name>

        <username>othersource</username>
        <password>hackmemore</password>

        <max-listeners>1</max-listeners>
        <dump-file>/tmp/dump-example1.ogg</dump-file>
        <burst-size>65536</burst-size>
        <fallback-mount>/example2.ogg</fallback-mount>
        <fallback-override>1</fallback-override>
        <fallback-when-full>1</fallback-when-full>
        <intro>/example_intro.ogg</intro>
        <hidden>1</hidden>
        <no-yp>1</no-yp>
        <authentication type="htpasswd">
                <option name="filename" value="myauth"/>
                <option name="allow_duplicate_users" value="0"/>
        </authentication>
        <on-connect>/home/icecast/bin/stream-start</on-connect>
        <on-disconnect>/home/icecast/bin/stream-stop</on-disconnect>
    </mount>

    <mount>
        <mount-name>/auth_example.ogg</mount-name>
        <authentication type="url">
            <option name="mount_add"       value="http://myauthserver.net/notify_mount.php"/>
            <option name="mount_remove"    value="http://myauthserver.net/notify_mount.php"/>
            <option name="listener_add"    value="http://myauthserver.net/notify_listener.php"/>
            <option name="listener_remove" value="http://myauthserver.net/notify_listener.php"/>
        </authentication>
    </mount>

    -->

    <fileserve>1</fileserve>

    <paths>
		<!-- basedir is only used if chroot is enabled -->
        <basedir>/usr/share/icecast2</basedir>

        <!-- Note that if <chroot> is turned on below, these paths must both
             be relative to the new root, not the original root -->
        <logdir>/var/log/icecast2</logdir>
        <webroot>/usr/share/icecast2/web</webroot>
        <adminroot>/usr/share/icecast2/admin</adminroot>
        <!-- <pidfile>/usr/share/icecast2/icecast.pid</pidfile> -->

        <!-- Aliases: treat requests for 'source' path as being for 'dest' path
             May be made specific to a port or bound address using the "port"
             and "bind-address" attributes.
          -->
        <!--
        <alias source="/foo" dest="/bar"/>
          -->
        <!-- Aliases: can also be used for simple redirections as well,
             this example will redirect all requests for http://server:port/ to
             the status page
          -->
        <alias source="/" dest="/status.xsl"/>
    </paths>

    <logging>
        <accesslog>access.log</accesslog>
        <errorlog>error.log</errorlog>
        <!-- <playlistlog>playlist.log</playlistlog> -->
      	<loglevel>3</loglevel> <!-- 4 Debug, 3 Info, 2 Warn, 1 Error -->
      	<logsize>10000</logsize> <!-- Max size of a logfile -->
        <!-- If logarchive is enabled (1), then when logsize is reached
             the logfile will be moved to [error|access|playlist].log.DATESTAMP,
             otherwise it will be moved to [error|access|playlist].log.old.
             Default is non-archive mode (i.e. overwrite)
        -->
        <!-- <logarchive>1</logarchive> -->
    </logging>

    <security>
        <chroot>0</chroot>
        <!--
        <changeowner>
            <user>nobody</user>
            <group>nogroup</group>
        </changeowner>
        -->
    </security>
</icecast>

What we should do now is copy and paste this file into a text editor or start editing a copy of your original file. Hint: use your own file in preference to mine. Launch a text editor like gedit to do this.

Next, select Save As in the text editor's menu, choose the file name icecast.xml, and save it in your home directory.

Attempting to run
$ icecast2 -c icecast.xml
FATAL: could not open error logging (/var/log/icecast2/error.log): No such file or directory
FATAL: could not open access logging (/var/log/icecast2/access.log): No such file or directory
FATAL: Could not start logging

Fix this by editing icecast.xml and change the logdir setting to /tmp which will solve the problem of inadequate write permissions and try again. Leave Icecast running for the time being.

Configuring IDJC

Start the JACK sound server as follows.

$ jackd -d dummy -r 44100

This is done so that any media player, even one that does not support JACK Audio Connection Kit can be used for playing the stream on this machine.

Run IDJC and click the Output button in the bottom left hand corner. Click Configuration so the configuration section is visible.

Click Connection, then New.

For Server type you want Icecast 2 Master, for Hostname, localhost, port number should be 8000, mount point can be what you like but choose /listen, login name needs to be source and the password will be the default password, which is hackme. Click Ok to add the server to the list.

Click Format. Select MPEG and click the right arrow repeatedly until all the option boxes appear.

Click Individual Controls so the controls section is visible and click the button that says localhost:8000/listen.

If the button stays in you have made the connection.

Streaming some audio

Click the down pointing arrow on the left media player and using the file selector add a track to the playlist. Click play. Make sure the crossfader is set all the way to the left. Make sure Stream is on and DJ is off. You should be able to see the Str Peak meter is active.

If you can't hear anything right now it's because DJ is off and/or you are running a dummy JACK soundcard, which is what you want for the sake of this test.

Join the stream as a listener

$ mplayer http://localhost:8000/listen

After a brief moment audio should start to play and within thirty seconds the listener count in the main IDJC window should have risen to 1. It's possible to add more listeners up to the maximum number currently specified in the Icecast configuration file.

idjc-0.8.16/doc/tour_output.html0000644000175000017500000001247112711160237013511 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Output Window Screenshot

IDJC supports six simultaneous streams as standard and each of those can be configured for listener stats collection simply by specifying all the relays in addition to the master server.

In the format section you get to select the stream's sample rate, format, and bitrate.

Stream Info is where you get to tell the world about your stream, including the DJ and/or station name, the description, genres of music to be played.

The song title metadata can be formatted and controlled directly by the use of the Metadata control. This gives you an extra communications channel in addition to that of your own voice.

In the individual controls section there is a timer that allows stream scheduling for pre-recorded shows.

idjc-0.8.16/doc/code_idjcmon.html0000644000175000017500000001462212711160237013515 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

With a little work this could be made to interface with your station's web page or with cloud services.

#! /usr/bin/python2.7

"""idjcmon.py demo code

This can be extended to issue e-mail alerts if IDJC freezes or perform Twitter
updates when the music changes.

Requires IDJC 0.8.11 or higher.
Takes the profile you wish to monitor as the command line parameter.
"""

import sys

import gobject
from idjcmonitor import *

def launch_handler(monitor, profile, pid):
    print "Hello to IDJC '%s' with process ID %d." % (profile, pid)

def quit_handler(monitor, profile, pid):
    print "Goodbye to IDJC '%s' with process ID %d." % (profile, pid)

def streamstate_handler(monitor, which, state, where):
    print "Stream %d is %s on connection %s." % (
                                    which, ("down", "up")[state], where)

def metadata_handler(monitor, artist, title, album, songname,
                                                        music_filename):
    print "Metadata is: artist: %s, title: %s, album: %s, filename: %s" % (
                                    artist, title, album, music_filename)

def frozen_handler(monitor, profile, pid, frozen):
    print "IDJC '%s' with process ID %d is %s" % (
                    profile, pid, ("no longer frozen", "frozen")[frozen])

def effect_started_handler(monitor, title, pathname, player):
    print "Effect player %d is playing %s" % (player, title)

def effect_stopped_handler(monitor, player):
    print "Effect player %d has stopped" % player

try:
    profile = sys.argv[1]
except IndexError:
    profile = "default"

monitor = IDJCMonitor(profile)
monitor.connect("launch", launch_handler)
monitor.connect("quit", quit_handler)
monitor.connect("streamstate-changed", streamstate_handler)
monitor.connect("metadata-changed", metadata_handler)
monitor.connect("frozen", frozen_handler)
monitor.connect("effect-started", effect_started_handler)
monitor.connect("effect-stopped", effect_stopped_handler)

gobject.MainLoop().run()
idjc-0.8.16/doc/tutorials_voip.html0000644000175000017500000001547612711160237014173 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Aims

In this section I'm going to provide a link to explain how to set up PulseAudio and Skype to use the VoIP feature and then explain how VoIP works within IDJC.

Skype/PulseAudio configuration

External Link

Testing

Launch IDJC. Put your headphones on and select the Green Telephone icon to put IDJC into VoIP mode. In Skype click the Make a test sound button and listen for a sound effect.

The IDJC VoIP modes explained

  • Private conference (Red Telephone + No microphones engaged)

    You are in a private conference with whoever is on the VoIP service and able to talk freely without interrupting the stream. You would typically use this mode when playing a song since the listeners can no longer hear you. What you can hear of the streamed audio is dictated by the mixback volume control that has the telephone icon above it. When you play jingles in this mode the jingles audio goes to the VoIP listeners and not to the stream. The right jingle could put them in the correct mood for going on air.

  • Away serving the listeners (Red Telephone + Any microphone)

    This mode allows for the people who are on the VoIP service to keep up with your show and talk among themselves while you moderate your show. All active microphone audio will go to the stream and inactive microphones will just be muted leaving the VoIP users as part of your audience who can hear your show at the level determined by the mixback volume control.

    This mode is ideal for announcing the imminent switch to the next mode.

  • VoIP users free to speak to the audience (Green Telephone)

    Self explanatory really. Note how the microphone buttons are not available in this mode. It is assumed you are taking responsibility for your show and being audible to all. Shutting off microphones in this mode would lead to confusion over who is able to speak and follow the conversation so all microphones are open. See the individual microphone disable feature in the preferences as the correct way to deal with unused microphone channels.

Final advice

There are only effectively three VoIP modes but they should be practiced off-air until they become second nature.

idjc-0.8.16/doc/output-window.png0000644000175000017500000141567712711160237013605 00000000000000PNG  IHDR< <gAMA a cHRMz&u0`:pQ<bKGDtIME   JCIDATx}y ;;Ǚ8I23wݻ{ϝ=3;9IB;q;N-[ Ƽ]EQ@SJ-PRWQҫ|ܒ1*UQ* V>}Sڝv积)XmERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtK-ERtKR\c*覢n*薢WcK-ERt R1RtSME7TtKƼBRtK-Ek+n)覢n*\c^[g^^޻oo}흏~e Th7ONjg?;ʏν~$TquA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\quA\q\Ku:TR\:R\:R\Kup: :R\Kup: : :R\: : : : :T : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : T-w+?9͹97\ܜsqs.n}q:Tqїsߜsqs.n͹97璿\ .A\?͹97\ܜsqs.G_'Wuw>;|.{'{mxU}'?OGѵu6];,P\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ءC\(m.aDNT:Qy ;6v(<8v(PJ'*<86v(l.l.PNT:Qiͅͅͅͅͅͅͅ Biͅͅͅͅͅͅͅͅͅͅͅͅͅͅ ;΅ͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅͅ ;,U@r/\r߿ޫ["1).nj_s5_~ٓ[o}ӗ\~_?p5_?{W[<:ݗx7_ZH~r7Oqqx?k~K([g[wOqDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT:QDNT}mw<橨tz`7o;a^|TTs;7Uqϓ>;w=?]+qϓJ'* 婨t/swȫ=CO=~b~{6/7>|ާhq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơbq(ơl~ϣ"/"/"/"Lc˿{2x oW\}O8yOz.WTgܩt/񷯹7g'x{>7| w>s_;kU;-[0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua sU\0W*Ua [.{/vnʉ ɷ'v|}mɷywoep{r֩ƃuןzعν~ᎋ>߿/o;ë~'dx'53߻Yl|8}sGG^1ޣُڟoyGs<.~G/ܶcNkb?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.~b?\쇋p.M3|+3WC/z˽=߹;\|ǽO\x7IH';o8OG^t\~qst vۓw_\}Oo'*P|z{~pt}S}3=/Vxe<onXXOʯoo/ʗ<Qدگ}ܛo}<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<ܛ?xC/'??sußo9Uxtg'q&;_X};ه?f=_yxlW1/ßӟ[wN[ǎg^F-|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|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|0Gww7w7|}{k;/~wǏvdzw,]~d]o~qx'2ݧ~xzp_򏗿nܟ\'~گ?~o#glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glןux<ЋIcz}Gs<~p/ǫ1|iw?!|d׺/:~zwpx'>x#/]u:9y͛y?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן]vٮ?glן͏~{է~˯=Mн[|~V'v?uהoz˷}o;wM{W/U=׽v_{_{'7~Ÿ|ݽMMoM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7tۛn{moM7[}W<<<_~6F/G/>Un}N4ow>;g>qֳ|O O>ʛ3_~s;}x<^wrwyy3iw<˯/?~?~>Kwf7MI֝lMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6G^U|wSY5[蹯>w8_^q37gWKڼ])ӓf7=.}|.xwy_oU?ޭ?S7wM׻MwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;t'dӝlMwN6ɦ;x6AwmN=?n_}'WZ/_;m,ōg77OR{uw?s|gPt=>͆>yS׮=Vu'Uw| q߷oyuwޕ>uy~n<#o//~c_Ojn<9;~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Yw챫W:3goY}'?/ڿy܋+uws]>[s7vuNxYw~ '/O$7N67p?{+m[*7?gW_}O/?MO|nd{Wj~v'7/?]\wҿ:y/N^CY:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟ug?Y:~񳎟u섷yw'7xVp?\y`} gw~1(n8}7׿^׮ﵫ{kݗ7<΋lV`}#ot#o\}>~ę^-»_7N}flg57_yG{5;2oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3o}[wnNx o7'yg/^8D̥y/}begҎ3eN[3oͼ5;𲎟2e'g'ΤLz:愗1/;o:y޺oeoxo<9=gΤ'uNoNxk;~vϘ[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ5[3oͼ vrQ^ݫ]q9rcM)Ǯ\wOny^xvsï2G7?lvMcM)7=tsa͏7UM47׮:|~Wջ_&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hnr_?~W57DsM47DsM47DsM47DsM47DsM47DsM47DsM47*7^5&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&hn&\&Ds/]&;1Oݝ88888}jn|DsN'_u'NOOOOu&o\k_UM:|Ս_=1Oݝ88888;1y3KWN:|K_{p{W/SWo~yR \5jW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW F\5jpUW \5jpUW \5jpUW \5jpUW a;WGP5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5jpUW \5j+X]yw+O+OWhꃦ>hꃦjmڦjmꃦ>hꃦ>hꃦjmڦjmꃦ>hꃦ>hm{owm?z?)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJ)AJG(:7\GG@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Dosmp<{@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ L(:7\GG@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Dosmp<{@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ L(:7\GG@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Dosmp<{@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'_o^M.Vv]Qk&,Fm hh].$L;1 Ϟ{IS r.fF`8lf{]s3g'I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IDx{pݮ$I$I$I$I$vzٯWI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I"Qo=̋^n]$I$I$I$IrӧOM;OyK"WٯW!Ibg_eOeg.;$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iُzמg^|v^$I$I$I$8>K?>؟kc/?~{;\/}S{߻4wٟ<~4=y:ǧ>3I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I~s>nr$I$I$I$q'~W׿=/=?O~|7OďG_]~?O޽k;<Oo<|r;?oo??/z8$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$=ܳϼv%I$I$I$I23ov}pݶ|?n_# ~C_e_oO[kW}/7{oGW~ݿ?>|zqI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Gk?3/>xv]/wI$I$I"{r^K>Ǿ_On?u_vnk/v5|vC^>[?zn/W|vg??v/?vo.wo'ɑGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyI$I$I"Qo=̋^n]$I$I Wv~#_ٟ_ٟY/{૿o~/ſo3>v}vn__}s_ryޓٯ?9g'^?>?_o|kk>ooo>{s/;??ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.ۺl벭˶.?.ۺ|l[G&I$I"Qo=̋^n]$I$yßy&ɑ̟ o_|Kޗ|>v/}S_?5_7__?Yo v}g|OvݾKnnwoGssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssccGO$I$Gk?3/>xv]/wI$Ip>=k([~K7?_o_~o{я/Gލ'+;g?3w'?+??=߿o?~ݿ ?s=ɟGد..............................................................................................w᏾r{$I$7^}/n.I$I֛o~cǏدI(|tn5vynw>z8ݯ׻s>nw|vn?}u~OpǏ_<~ν5I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iӧ|r֑I$I"Qo=̋^n]$I$?7Ƕ'_$Iܯ"$q^޾^z=Irwۯ$a\޾^u^Nd^د $I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$GIDATI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I~}W_Y/wo$I$=ܳϼv%I$I"9z͏l{5I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IOz{$I$7^}/n.I$I֛o~cۓǏدI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I_}W[G&I$Gk?3/>xv]/wI$Ipη|۞<~~M$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iӧ^:2I$Id?_{gy zK$IDs#k$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$w>}r֑I$I"Qo=̋^n]$I$?7Ƕ'_$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$a髯L$Iُzמg^|v^$I$o?=y$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ݧO_}eܽud$I~s>nr$I$|7?G$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iد>}+#$IDx{pݮ$I$Id8[omO?b&I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I~}W_Y/wo$I$=ܳϼv%I$I"9z͏l{5I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iz=I$I$I#$I$I$I$I$I$IL$I$I$I$I$I$IL$I$I$I$I$I$)$I$I$I$I$I$I#$I$I$I$I$I$I#$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iӧ^:2I$Id?_{gy zK$IDs#k$I$I$qܓ$I$I$I$I$I$I$Id?,$I$I$I$9$I$I$Id;I$I$ mr_/n^$Ids$I$^+ ~cߓ$I}r֑I$I"Qo=̋^n]$I$?7Ƕ'_$I$I$x<'x~p\f&\/_ٯI~e&$I_w#d]޾^/J_/\/rwro]/w+$rwۯO}O~?'׻I$G޽m]^/|o_oοџ}$Id$Irok/~۷|G>K^~/=|#~pٓDgo}~3!Iد??/҃_zK^ȃ|wޑ=I}~M$ <:? I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ݧO_}eܽud$I~s>nr$I$|7?G$I$I$8O/]{|_?;O>zw?un;Oܯ'߹~}v}OG_/_Ol?sOO?ytvn~<$9y?G߿sݧO~>7翻n]Ї>?>{;Idѫ?߿s~~%}/W}_'?v]'>߿sw~ˏ?JC|/__t8_w}O<'Ov]N$}};񿼲GO߫?Ǐ߹_Xzʷ] (iZfuW@nJ.9LƘ a8a >7$2DٖdMan#*KVmyeU.}g~߽v3|k^ Bi۷nݺu[oݺu[Bh{CScaaa]4O<]/o_=1Bs}u3U} np|]wq߽R gmypvyq`aaaaaaaaaپ}淾/'w|}zb-o{qk}`[;5=Xu>w^M^//Rjݾ³/ڷwCϾj|kwqq~tfxw>w/}Woo}SGwקub}o8s)/#__kO7>G)fc6?RJ)RJ)RJ)7R Ŷ|^c}+)E,+ܾu7}QJ)RJ)qK)oy<ߺV})گRJ)&b,,{uuUJ)RJ)R#=]hj,,9ɷįWν/뫫guXXXXXXVpԧXXXXXXXV8k͛Gˋs +B`aW~u{vVJ2|zW7;~kwX]w/?+R~7 ;_oc'5uXXR8e{9Kzcw?{m)fc6?U)eRJ)2c)呇???ŠB_ߺloݺ|s>R/RJ)8R7R j/7fxK_js²[o}=K)RJu7M)嵯}g~~_>w},4 Bs,RJ)RJ)[>@wB}zu}/7Og~9g!`aaE")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")1Bs}u3U} np|]wq߽R gmypvyq`aaaEfYS|E/~^oM/zH)Ͼ^Rٿ ?+288|'pZJyg//BSqo&:6/}sk镥_x׾a(,ܾ}#׾;xYJ)_%R&|׷}˗G ڰt,o8y~XJ>U_Uo{J)RJSbaa.<أ~ϗRN7k,,+ܺUɓo/}_J)R/L|mhj,,Cޜ^wן?.E !+^^J)8RJ)qK)-CM-je/}7OSŠX٬nWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^է#Rh}OcaaaaaY!;RJSbaaaaaaYm7o./,,;wFqJqW~E/Eެכ[޺oo򗾠K;{a~ZK^FwPm?׽]vZT\䛿L Pʛ__UJ}r-vZ܌וR~~jMs޺O}{n_^PJGP7ۿ/~>r[O|7}S}CXX=}ԧXXX~~t²­ˋY5ۆBA};|~>3K²Yz2c)RJDZCXXXX u] _}?[Bhszs}K)0RJ)qK)ṷMtۼySGSo;'O^Y o]mR/RJ)}ߕRv'_|[VVE)Y{VJ/_QJO7X RJ)RJ)۷o=}߅ iw/o_JI/~>26_}ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTjROI?'ڟTt1Bs}u3U} np|]wq߽R gmypvyq`aaEG>]8Vxv([;os9r5)O_.;ʟg2_|K~λK_}Bp㭭g??tzC{._Rʇ~?*s?o{?oRGGq ?R?}+_[Jyɷ}g>}ƳJ)={M +/?J)_+_U_}RJiRJSbaa5i)޶K)e[j:yJ)RJS}}] MǿſlRJw}`Y=zUJDZRJ)XJyϰy~={K)e{۟9xw}Kiszs}K)CߗRJ)qJ)o}˛J) +E6Oϼ+^ʿڿW Mm۷.߶{J)}ߗRJ)J);o/>ܭ +`Iy{RnO{wx]b)4RJ)RJ)RnߺC} M}q}/ÓRW}q~rF,,+]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶ]mmnuۮvݶnn{}/b,,,,gt1"x{)4)v}\Š9K)\_֗|+~ɏ(|?>O~3'ǿf+X3;J)8RJ)qK)OOuXjW>z;?~uOpx}]RJ)RJ)RJyZ,,WWWW_;&1X}GXJ)RJ)RJ)K_|oyS)9`aaE\J)R)e۷.vE)RJ)Rq,uyi,֭[}OU=? gQX ꪔRJ)RJ)#=]hj,,b?S?{Yt²BhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSM:4uhԡCSKzԓO4iXXX ճT:b,,,,,,+Dwy}SJiS,,,,,,,+ͣŹBqY?dM1`:y;|߇?Yh]FBX~'~=jŧ|_>?\]o^o~󈅅o|c?}g!=>'>/9}39Ŝg?muqq~qqqyqRJSbaat>{0{o֫?\^\]^\\^^\^\]^\nXVhS\.xHf g9?./.....//.//./.....zgXXXX/ucq'>{O#m XmN_gzG֝RJs:ݬO7>G>Y"Ʋ­ˋ?{[f^]^\]^\\^^\^\]^\KߺXxǫެuyBRhoקˋˋˋˋˋˋ>} MCʗ71ژ,aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaE|Y?^SF\_]=LU#²B/}םww=>²Yۮo<:]^+4XXכOMk55Ĕo.ϣ+ܺ ˡ9;n{ X!g}mo_:O7N^[~WBA孡o'C5Epq~d+\9Y=.ŹQtj跗gI!XO?{G~ч|{G~ﱯ|yq֥Be[caaa}/#>>?#o|7<>?>>?+ ˡi.^]` +ԧcaa)4WW>Sէ눱 wu{O)Opֶ7g VfSZMeF-, B²B#)`է߸5me5 Fe+`YBe,,,,FB²BlaaaaaWC]wC? 0WoG(4 BemwC? 0C? wgXXXXXX B(4V²u8C? 0C? })baaaa(4 -,,,0C? 0C? [XXXXXXXX a臡~a臡~ Bc,,,,C? 0C? 0²BlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaE\oO>ԧcaa)4WW>Sէ눱 wu{O)Opֶ7g VfSZMq)ԡCSM:4uhj CSM:4uhԡЄM:4uhԡCSq M:4uhԡCSM`aaaaaaaaaaaaaaY!4uhԡCSM:4ԡCSM:4uhj +z~> Kz>]Ge7^8;{J)M}e]߼yt88Wh"7맟ljj,,,,,,,,,,,,,,,,,,,,,,,,,,,,tqY?^SF\_]=LU#²B/}םww=>²Yۮo<:]^+4XXכOMk55Vf{M}1Bs}u3U} np|]wq߽R gmypvyq`aE\oO?5nXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXכ5iXXX ճT:b,,,,,,+Dwy}SJiS,,,,,,,+ͣŹBqY?dVScaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaE\oO>ԧcaa)4WW>Sէ눱 wu{O)Opֶ7g VfSZMqY?^SF\_]=LU#²B/}םww=>²Yۮo<:]^+4XXכOMk55Vf{M}1Bs}u3U} np|]wq߽R gmypvyq`aE\oO?5nXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXV`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X V`+X XXXXXXכ5iXXX ճT:b,,,,,,+Dwy}SJiS,,,,,,,+ͣŹBqY?dVScaaaaaaE")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")")"caaaaamnsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjsjs:ksXXXXXכ5iXXX ճT:b,,,,,,+Dwy}SJiS,,,,,,,+ͣŹBqY?dVScaaaaaEܜnNrr<9xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓xyr<9^/O'˓+'˓4&b,,9gtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVMgtVtwn"7'kӈ뫫guXXXXXXVpԧXXXXXXXV8k͛Gˋs +z~v{²B,_zOego-{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;{;o}vw_b`ao8UWWW9666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666:xf}YqY?^SF\_]=LU#²B/}םww=>²Yۮo<:]^+4XXכOMk55Věw>O}RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)R'>|b1V捓Ym#8#8#8#8#8#8XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX#8#8∱" Gzuf+`aaE\oO>ԧcaa)4WW>Sէ눱 wu{O)Opֶ7g VfSZMe6ӟ礔}C}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}?}ЗR'>O9Y!xɻ}f{} +IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII +ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$ER$b,,>Yl,,4b,,,gt1"x{)4)v}\Šެ~j^p~~擟>qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqDZq;>񏞵 )ƛ7N3XXXXXXXXXXXXXXXXXXXXXXXXVO7//|y\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_~y+zu +4 +_/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗,_buˋw?f:k"7'kӈ뫫guXXXXXXVpԧXXXXXXXV8k͛Gˋs +z~v{²YO~b;K)vaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaan-'>񏞵 )ƛ7N3XXXXXXXXXXXXXXXXXXXXXXXѺy{uѻu79E+`aaa5?pvtxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxptxpt'߂,;0<=8)^|ګ?_{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{vY('.Yz@=xpypz@=jᜉnnn>ܼ19ŀzoNǏ~l1313131313131313131313131313131313efb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fb&fbz֛gM0_+))'=5 =]=zx虧=,5=z@|ګ?_xzb)s9ŜbN1S)s9ŜbN1S)77~ᗟz+\20~z{X͙{LbN1Ű:,ˇ?_|ɗ)y-.7ý_ᣇWRn=|o!9߹ٷ~gon˷_|z֝^ӯ9#|t/O>~⽏>Kߌ^>k7{~ ?[)S)s9ŜbN1S)s9ŜbN1S)ƀ̓7&kt0_+))'=5 =]=zx虧=,5=z@|ګ?_x|s7֟P~^__o_ ˷.qwI^Gkm?:0c1r 9C!ǐc1r 9C!ǐce^c@C 8я}c1r 9C!ǐc1r 9C!ǐco_|wO߽|Kk?OĤ~xov>y.GM=^S!bw˲?q j}fO7ߜNS9^9{ovI^_Ő?|{/G oէeۏo|wC9y^:[=nmpgoۯ޿.b)r 9C!ǐc1r 9C!ǐc1b7[S \II9yp=ި_F=px8==ЃG_>_?[oտ?eYz?G^k=x<p<x8x<p<x8x<p<x8x<p<x8x<p<ey߿9yp1_CNO>eYZk˲,˲,˓'}Y?geYQ=z%wb@}@}@}@}@_s0Rwɓ./r jݷ~IB)3x>dݹno>/'z\ ~gYfk˲\W|~/38M,C<޾q}@}@}@}@ǔq)ƀ=pG?D!>>>>GL/<O2;7ן~{?YbYwdmYC@У{w,[?nO77bCpf㲔1on~_ jYܽ_m_)%g]-ru/tG}-O;zs]y_[ |G.eb}@}@}@}@ܾ𛛵:PΕz荚_~kt@zgs@z@=xpQ<~O]z@=rwi/ ΢5y#Xz'=|e9¥p)\ ¥p)\ ¥p)\ ¥p)\ ¥p)\ ¥p)\ ¥p)\ ¥p)\ ¥p)\ ˲Or{-[3eY~yq'[?㛛'OO?W?xkVǀ?}wsq[mqV;kQ,WbNiڷ'NΚǏ9nVnu~:_)|Ǘws{wۻg/~g|_~eyr Ǐ~t_[{xڿ?]eY?/}ч77˲?Ҳ,˲7_^W,ߜ<>^ yjw;.LLLLLLLLLLLLLLLLLLL9ً'~^NɃ!xt֠ro毷noo[kZ٧˲Xz@=J;mF[hk5mF[hk5mF=Vw~ݳϷ~sW_0wޟ5흟zs8_?ܟaOooTwW-[o~g} o?sJ篽Zkj;1E{|l%/֯??x+w?khk5mF[hk5mF[hk*S z@1~heF[hk5mF[hk5m6Z?{;~z5W7֫Ͽ/蒈_nvF[FxeYirN)7=zT"\\}?|w|2o?}*J֚;\_ǀw^%^7}O߾S ީo>}0?ج[&1<Kvy/>֛Ww_}p7Z9khk5mF[hk5mF[FGgM0_+))'=5 =]=zx虧=,5=z@/˲,˲,˲,˲,˲,?|o/bB=+ zhe2ZVF+he2ZVF+hՌ_^u/qϿ޿>Z}:QɛolQyo^_]> )ƷޘZkJN֛V7}Y:?⇯/aZ}#*ۯ>ܻ֛oVF+he2ZVF+he2ZVF+f^N1 bi=wVhe2ZVF+he2ZVF+Jo'G_^0yp?~zr߿q!/8J,0JûoYe7oa2+7Vyf;;onxp6o_֟ݻ|nJ~|x~g\>݋.=\]^ݎs_#/>x{wg\_?2k5Khe2ZVF+he2ZVF+J9_9kR \II9yp=ި_F=px8==ЃGWΞR)C!ŐbH1R )C!ŐbH1R )C!ŐbH1R )C!ŐbH1R )C!ŐbH1=CN!E C@L1C!Чb>Sb!G} bH1Ā1c!)R )C!ŐbH1R )C!ŐbH1R )C!ŐbH1R )C!ŐbH1R )C!=^:هSb;:=5=}ݷxo^[{p('ɃC=+);Nlwb[jjjr',,nNYYY;[jjJVʝRRR 5YfjVn;f5y'vbYJ5K5Ygf9NlgjVTTTTTTTTTTTTTTTTT]s=n}rffffffffffffffffffff)wBRY;N;;ff)wBRR,wjjjRYʝPTT;ff9NlwB̳TTr'v'r'NYr7˝V,wNh5YʝP;!w۝vwRlwb+wBRR 5K5VRR;;ffffffffffffffffffff9zجWΚCa:WRRNz@!7j~=z@=F=z@=D3O?{vYk4z@=<8y޾08C@o|Wno` z@?W_9zp1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1` ƀ1 z8nNO^r\ a'Wǣ=ɓ'?IOzzSD=C@sjjjjjjjjjjjjjjjjjjjjjjjZZjjjjjjjjZjjjjjZjjjjjZjjjjjjjjjjjjjjjjjjJZjjjjJZI5K5K5Kf5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5K5Y5y1 bz߀sܩYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY*5YYYYYYYYYYYYYYYYYYYYYYyJYYYYj5YYYYYYYYYYYYYYyjVTTTTjVTTTTTTTTTTլfffլfffffffffffffffffffff9KM땳&PΕz荚_~kt@zgs@z@=xpQ<~O]z@=rwi/ ΢5y#Xz(O>/V\!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`=nNO^r\ a'Wǣ=8q8k5gYz@!WݝnV[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)r݉Nlir=п93kNln+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)RlJb+V[)rb+79b(WJJɃC=F/5:G=au~9G=<(?z~s.bF=ЃG9ϻ4gz荚A=xp'}ju zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=G#zD=w^__ }^Nу!xt֠z@=z@=z@wz޻h笳9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:kg|;o3z@=O?;眵Ys9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9u:gYs9uւs_[oC)|u<8C@o/Xz8{<Vwzz@ g~'?,hz@=xpM}ap=ިΫЃG9}ч? p8p8p8p8p8p8p8p8p8p8p8p8p8p8pZߗ}^Nу!xt֠z@=z@=z@j~wޜ֛zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWi} Sz@8'=ج߸?n֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWiV3Qv _+))'=5 =]=zx虧=,5=z@=O2D9eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eʙr?ßƀ!ư>~, ߗ})RKٗ/e_ʾ})RKٗ/e_ʾ})RKٗ/e_ʾ}R0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅y_x_ʾ})RKٗ/e_.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̅0\ sa.̥})L{{sQNz@!7j~=z@=F=z@=D3O?{vYk4z@=<8y޾08C@o|Wno` z@=xp~pg'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g'g/rK'/|C f~7{8L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L0=*z_|У:kУz@\@=S?ygeFz@n =Fw^}֠z@}\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^\]^;~=<J!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)B !BH!R)[=}@z@Q/`z@pX5zz@=. Ǐy<ܳ˲Xz@=Qn7Yz;r{{kz@=RND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QND9QNz@9EL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&D(eL2Q&Lr z@=F/5:G=au~9G=<(?z~s.bF=awy7/UI!T:l3tf061C016C̔$VloiGID4Fl)RI L3l{-o?{9=}QXd?vgj7ohŊ5G?ŹvXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ!VXbG~h=Xbi؝=1+VXaL^|v.`=+VXbY~tڳTyC.V1^?zG/.εƊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+o=CNJK'qXbŊe cr;{VwqXbŊNkמ}v]Xc~c^\k+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+V,{e˖-[lٲe˖-[lٲe˖-[lٲe˖-[lٲe˖-[lŊ+VXb#?qX4Ξ~NJ+VX0&W\oguNJ+VXd?vgj7ohŊ5G?ŹvXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXxyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqyiqy8VXbŊkxFkFkFkFkFkFkFkFkFkFkFkFkFkFkFkFkFkFkFkF{8VXbG~h=Xbi؝=1+VXaL^|v.`=+VXbY~tڳpcŊk׏yxcŊaw~vOl8VXbŲ1zw~=8VXbŊe 'ѵk>TyC.V1^?zG/.εƊ+5LxN&l߼h bŊk78VXbŊ+VXc<춻NJ+V,kyd?O+VXbŊ+VXbŊks$Uup8TTPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUxϿݼa bYÍC>v[p8p*p8p8p8p8ϟp8p8p8p8p8}d?NJ+o=CNJK'qXbŊe cr;{VwqXbŊNkמ}v]Xc~c^\k+Vi^ѵdNn.hv׏Xя|mhm_?:>. by}/:Gci?Ï5bv׏_]XbŊ+VX1W\oN?|rsT@n]LUnݺ8??u(*-o~SybŲ'.m[nz}֭p8NOO?gggggߺu8ío7o_ݿ׽xv~vvzzzzznݺ _[_^\<8}d?NJ+o=CNJK'qXbŊe cr;{VwqXbŊNkמ}v]Xc~c^\k+}mNgspCu.p`m [gU1<'7?;:vx~ `=|vq NoXn+VXbŊ5zo|C4_/W>m矿UT7ݼa bYÍC޶n KK[k?e_e֭=zN8o ;ַ?pn:??{>XbG~h=Xbi؝=1+VXaL^|v.`=+VXbY~tڳ{zُ}?~җOk7w_K/~~Gd?yn>z?/_wGϝL+VXbMc^|0lw~.<{7~_S??.UT7ݼa bYÍC޶ns૾Zkn>|~-?<+{?z?3??/~gi;~xɿӟ/x}>p+_ć 8????أNsXb#?qX4Ξ~NJ+VX0&W\oguNJ+VXd?vgj7ohŊ5G?ŹvXbi=qcO/韹7~ώ??_?zݸoů}ث_~Oٗ/_sw¯|oo9=ǿ%Oq翅yw7W}?y;Vz=r|䉷/>9~x+pzXbŊ5zo|ðwU~㭿~Ob?>k[^377!V,kqv-p~~E/q[|f%w|'[ū^}oz '~;xy??c+;>=?<ϯzgOO_=7ۇ?í)<}d?NJ+o=CNJK'qXbŊe cr;{VwqXbŊNkמ}v]Xc~c^\k+}ݯx?}_G>/wW|ˀEW\-KW>g~~/{_w po'9pe;>н_׾xkv?Ï3|~wSO|w~p_+VX1W\om}_/yݝo~~x~:oy{Oqv x˛nްXKon쬪^/3_U/囿Ưo>ӯ>'|޿_ ַu_g??[qq/''7я~'9VXx{葇m8VXvggO?hcŊ+V,kW.yݳ mcŊ+VXp]3O74b{\mX4잿8}%//?^W[^/+|08VXbŚ\r7aG8Տ=|?#NO~k?[PUUoj7oXCXpdХ}_i7Noϟ~+_?/o'>+_Z֭Gs+;_o}K^E_gVw E}ͫ^oȇ>y<~'9VXx{葇m8VXvggO?hcŊ+V,kW.yݳ mcŊ+VXp]3O74b{\mX4잿8{M/ߪxm˿|;Oe_0_{kdwqܡK=>0wO|\Oد|7|o]y}/;~f>{_wWW|O gow_ܿWwDZbŊ+4w cܺu}=|/O/~}?/: M kn/\vvv?M_~/ >+k_GNǏ?~t=׿+/g~g~no?k|kGqq1M?XbG~h=Xbi؝=1+VXaL^|v.`=+VXbY~tڳTyC.V1^?zG/.εƊ+V, 1ǻvwc 8<]I}t峛_<7|g?hnaqϹ.~dҕ~zv{{?g?My~󛾻 4bŊ+VX1W\ouy1gx~y77!V,kq;~o7oLci߸g?]g;gpnOL]yO'v4>wc:>y~{g?0Oncw?d?NJ+o=CNJK'qXbŊe cr;{VwqXbŊNkמ}v]Xc~c^\k+VXc<+ViDziOtcŊk׏yxcŊaw~vOl8VXbŲ1zw~=8VXbŊe 'ѵk>TyC.V1^?zG/.εƊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VX ׮-?wl/=nZCXpdw}~ǻn{ǻn1_ǻn{ǻn{ǻn{ǻn{ǻn{ǻn{ǻn{=>j#zc~+V1^?zv1+O>=>XbŊwqmvXbŊ+5G׮=S Xx{8n+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊe_ϿOqu}ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾ뻮ﺾuuO|n8Xa?OO?_g1''dr?9ٟON''idr?9ٟON''dr?9ٟON''dr?9ٟON''dr?9ٟON?GO+VXc~c+V, 󳳧|b{|4ƱbŊ+5+YDZbŊ+V,k8]{vb=zqq6VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+VXbŊ+~?_z}>p߽w}>p߽w}>p߽w}>p߽w}>p߽w}>p߽w}>p߽w }-?5|V"HE2 (D-c!4)rewZ^lDTm^Z`q]f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnxHIDATvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛vnvnm7f춛v_~H$I~?__~O?|?~O?|?~O?|?~O?|?~O?|xܓ$I)xoS&Ix?oL$ISͯ?w>$I$Id,/GLy~?~/$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ID~뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮!#I$I?ooooooooooooooooooooܮ?%I$ɔ?<)$a<S&I$׿~u][$I$2y#I_?{$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I0~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]v߮~oz]+$I$I22,e_2Y/e,e_2Y/e,e_2Y/e,e_2Y/e,e_2Y/˼̯g&I$I2߾m$I_I$I"c~n]$I$e?_?H)ǯ$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ 2dȐ!C 2dȐ!C 2dȐ!C 2dȐ!C 2dȐ!C$I$I)xoS&Ix?oL$ISͯ?w>$I$Id,/GLy~?~/$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I)xoS&Ix?oL$ISͯ?w>$I$Id,/GLy~?~/$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I)xoS&Ix?oL$ISͯ?w>$I$Id,/GLy~?~{$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Ir~6e$ǿ~/y$I$1?W~K$ID2ϟx$ɔx/_#Irȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9rȑ#G9tx]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Or>]Χt9.|Oq>$I_??~O$I$2?_u}oI$IX?ӟ_$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I_I$I"c~n]$I$e?_?H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?O>O$I$2?_u}oI$IX?ӟ_$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I_I$I"c~n]$I$e?_?H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?O>O$I$2?_u}oI$IX?ӟ_$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I_I$I"c~n]$I$e?_?H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?O>O$I$2?_u}oI$IX?ӟ_$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I_I$I"c~n]$I$e?_?H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?O>O$I$2?_u}oI$IX?ӟ_$I$yN^Sk5zM^Sk5zM^Sk5zM^Sd$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ˟x}2I$IdL7/߭ߒ$I$??0I$ϜOO?}?>~OO?}?>~OO?}?>~O99e$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I0)$IDT_ݺ-I$I<ǿ~ $sooooooooooooooooooooooooooOx]e0x0x0x0x0x0x0xHƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`< ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<y$2ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<2ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<ƃ`<I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I0)$IDT_ݺ-I$I<ǿ~ $sOŧݿݿݿݿݿݿݿݿݿݿݿݿoӿ~~~~~~_)|Yx?x?x?x?x?x?x?e\??x?x?x?x?x?x?er~=x?x?x?x?x?x?x?>><~~~~~~x=I$I$I$I$I$I$I'_$) |ї{;_ևzٳ5keq)B mF\qD먃(^R @w^:i覻"ouʌȌx_oV7mߏ!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DV)޾(B"Dv_CG9<<4q$B"D $L:^5"D$bEcOTя}__Sj^-׫z\rZWj^-׫z\rZWj^-׫z\rZWj^-TvFs*z\rZWj^-׫z\rZWj^-׫z\rZWj^-׫z\OW^c1yZTrZWj^-׫z\rZWj^-׫z\rZWj^-׫z\rZpսp}sT^-׫z\rZWj^-׫z\rZWj^-׫z\rZWj^-׫z˧ytV)իz\rZWj^-׫z\rZWj^-׫z\rZWj^-׫z|~js}u_!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!J)E"D!0z5=ᡉ#"D!Ba'Yg!"8CO|v'O?釟<~O~?y'O?釟<~OO_ɩ8ON}'?釟<~O~_~vÿZ= ^~/{ ^~/{ ^~/{~~o3{~/{ ^~/{ ^~/{ ^{A{K?~~/{ ^~/{ ^~/{ ^^;mg g_vw~~/{ ^~/{ ^~/{ ~sc/nom~~/{ ^~/{ ^~/{ ~]׺d_"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"`|^ho_!B"/ ^أ8!B"Dve{ax^M/"}/}˗/;8888888888888888888888888888888888888888s9wpppppppppppppppY%-iIKZҒ%-iIKZҒ%-iIKZҒ0 `%-iIKZҒ%-iIKZҒ%-iIKZҒ%,ajj aHKZҒ%-iIKZҒ%-iIKZҒ%-iIKXҾ+_;;1iIKZҒ%-iIKZҒ%-iIKZҒ%-i +NTd0%-iIKZҒ%-iIKZҒ%-iIKZҒ% in0(B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DkZG{"DA}i=x}đ"D!, 3lz ֈ3;<s[00A8 ap 0A8 a^v_ǣpp 0|LÁp 0A8 ap 0 v_5hp 0+ˋOU`A8 ap 0A8 apAf_-l< ap 0 ww^kh_!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D5yR}Q"D 4 rxxhH"DAIzu6kDH9Nj\<4,M/\>8|pp僃Wx? 7pw'?9~xP[no?w0w僃+/fW~P~oppp(ŋ{{o{( pp~xh8Á?z~?Á?Á?0ƣnɟۿ~塓'^^8Á?Á?D/իK_AavA888?~7٣_~ݝh<([YxT٘ha~ovA aP.ڿۏ]xx/AA _(3q/!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DV)޾(B"Dv_CG9<<4q$B"D $L:^5"D$}y>Np?Ws7駟mllNT*q<`>ξgFC?{8ͦno  ~ov7/tӑw|w}wqȑ/kݽ0{?Aw8Z8 Ahrir0]J찿;?Ϟ|[n}C;o}^?? 7whZu({?;$B;?{ Ox?n=zz;Oxo ~{acBZ]}A/'>~M7yЇvmz?I8?{?0Z( ^]O4?`}m/9r;?~o#+;ۛpA c&E"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!BXs0*8E!BK<#&D!Bd^WgKFd{{{iWls7p..w`>ɿh4"9믿xw\f.tiǟ vGN_/~ၣOO~o'vo9sL<ԩS_׎9{?=w{nuA ^o;f+~opv}TjۭVٳ?z;_?Z8NnG{Sw0u[?_=w> Ao팆 NjG{y:΅ ~_}G)>{l4 N{;{`J) w7V-|~lwN{;àsL"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B`>UJq/!BݗЃGyGM!B";ɲ0sWL|,K\r~7,g.MP*[~w:poNO뮽ѕ+gs[O<3w{;[axw3}oM^{?> vvvn5now{;[0x뫝w~O~mwalGZr 7=ztkkk<nT(nO~ànvS_ vw{wg\s[ϝvZx;>4xҩS瞷m7 v8.UN|#G?_*v7p{oSN fk=_}ho/mo{?ӗ?;ҚMpï0 GvZ^^xwk?7lmwsG"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B9kR"D!Baa?k{CG"D!BNl/ ԫ%X#BDϽ~QƕK.ͦt_\7߲u7.YMgY]V^z0}^{;Kk]m>}Sj6cvwwsΞ=77~Aww{sw{s_,[Nogu`/:<<4;o;v7/}w={ _{o|zkà9jWAw{9 N|߾dۛۛɏ[ NEp}}ŋΝ/7Ǐ0vv7A¹ZhluG//_(Nzog{w{3 ҉-w0Ldoookkhk/w|l u?ۮzaQ(쯯w6{}sn7$I8iZΝ{饗>O~CwwMw_x`h_!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D5yR}Q"D 4 rxxhH"DAIzu6kDH9UW._dR뮻vsclz)K_rK\pj ^z_޺ƕ˗&Y>e=v770?|(09r?i@r4mmm---9s?7|x4\V;ֆ//?z秾>{;[~ogӺw?S\[[3Hǻ9s瞻۾7p{s}gk#j¹W~w{cgk+ W?+>}+_Mp{v=%q;ٳg>{nonm NOc+o|?k}7}[?wֶ6}[zf9%Ykڹs^z/|;Fw{}smm/q>xG>{~}lonGsnwf$ŋϜ9j4ۛۛ~o &E"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!BXs0*8E!BK<#&D!Bd^WgKFd)^}I:^4I/]>=<<4IgK,ިKzO>+?hx|ܹSN8qooM'Y>e靭͍چ 7]wֻkpx~4(q^z驧馛~_jgs}s:͕n <\_ly-_WVVZޞAy饗N8q 뫝U[ŏ|O6Imo{>O}SKKKFc0ca={^򓟼lmmmv/{Zznnp0 V^_Ϟ=8uܹ3gmyA8x߿eA?;;iVOwGn񩧞:|X__Z__dlϽ/.^fY\dYq3<} 7/BTT*Rꩧw^>giriM/eiOFgֻ^xjnnu/ӧ_~/..^pW^T*'No국nm777֞ji?~Bڿ}zㇶ6ֻZig?{wɗ_~^xŋ_{SNJo~z~z춛ۛҋZ\_-WOߋ;r{>jm77o/+rŋ/;w^Jgo}[#[kjz'\oy+aOꋏ ?7੗F߾-~{;{ٳg/\x3gΔB~3Vs^W;͕Ǟ\_ՍWhZnn-owqUJq/!BݗЃGyGM!B";ɲ0Znz[kk??O|bW[#_믿?}SN:UVOFm7;-oc{gK׺N[_<~kHvl7W7ן7}+_jN:uTZ-J'Nw﮻f춛V9+gNou;-v6w7lɏ贽k7ST\jN:uT\>qDX{ogNou;-6ֺ=S>Zk?Uno[J춛w]z׳>[O:uԩJr_|zӛ~ntN[^<~n嵛+[=^|s_Y^Xmtvsegk藾x#?O>}ԩSNU*'OrxxhH"DAIzu6kDcǯ\>Hd2&,4M4I$K$L$LI^dy>;yħ?8rGy׻yK_ZYi\|dM&d]diOwvs\[Anoo+nt͋G?z78vXT*J<̷n;3W;vs͕c,/^趛nllwv7;vs͕Nk7WkK_RT*{>pM7{Niy-֭|KNiy-^cikcm}nzZ뮻{_8q\. ?7MuJnu;Rkvs\Yw6{;[͵Niynv[?|\>qSO=u뮻 tZ^nzvtxn\鴼vsenlu[+iyjٗ-oϖJ'O.,,|߸[{uj7W:-\vZǏ=mh_!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D5yR}Q"D 4 rxxhH"DAIzu6kD_|&,d$K'Y:INt,d$K'Y:4ٿƕ}qiit~3kݹ.M'Y:IN$M;vn6͆X^ck,5W͕vn3?}^{]wu{?\ww҉6:-o\i7-oy>~勯w^h7-ok,yRh7flNt_wマ|#7tkVh7f-u'?Rmnyvn6F\YnyJh7-itޏ~o//>3?nF嵼Fhyn땗O^__]k_n-viy cOv[-n6Fk4K^cn6Fh7WZjvя~>O{}w~vZrn6Z^Ǟq/!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DV)޾(B"Dv_CG9<<4q$B"D $L:^5"Dq4~W.$K'Y:INt,d$K'Y:INtɾ&Yz`o\}i&,d$K'Y:K,M=thy-o-喷[r[ny-o-j|O3}{O'_[붚+K-o-jyKwZ+-o-喷[r[ny-o-R?/ww/^Zr[ny-o.xjf[jy-o-喷[r[ny-on6V;ӵ?xCwկrxxhH"DAIzu6kDh|W.$K'Y:INt,d$K'Y:INt,$M}%JINt,d$K'Yzis+K^ck,zE5ƢX^ck,zE5KZRe|m{ftk,zE5W/vZ+cO_|ʒX^ck,zE5ƢX^ck,,_ݶn6Ri,_^ck,zŕݶWzzZYY5ƢX^ck,zE5ƢX\Y|:X\Y5F,_\Y5ƢX\Yn6^~vb,_^ck,zE5ƢX^ck,z҅Nm4WV/zvsŕ^ck,zE\YZpXXh7+ƢX^ck,zE5ƢX^ct-w^[^Y5[r5ƢX\Y򖋅8Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5Xk` 5V"D5yR}Q"D 4 rxxhH"DAIzu6kDh\>˗d,d$K'Y:INt,d$K'Y:INt,d$K'Y:INt,dI&/UJq/!BݗЃGyGM!B";ɲ0YjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*ZTjRRUJJV)*zTΜ>/!BXs0*8E!BK<#&D!Bd^WgKF}1*'^i?INt,d$K'Y:INt,d$K'Y:INt,d$K'Y:INt,1k5cXc1k5cXc1k5cXc1k5#Xc1k5cXc1k5cXc1k5cXc1k51 Zc1k5cXc1k5cXc1k5cXc1k5$5k5cXc1k5cXc1k5cXc1k5ֈXc1k5cXc1k5cXc1k5cXc1k5FdhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhG88q4qhytbsm5ٗ"DV)޾(B"Dv_CG9<<4q$B"D $L:^5"Dxrt_,d$K'Y:INt,d$K'Y:INt,d$K'Y:INt,d$K'Y:<]\\\\\\\\\\\\\\\\\\\\\\\\\\\\>wgs||rrrrrrrrrrrrrrrrrrrrrrrrrrr]|6wsssssssssssssssssssssssssssssgs;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|6wܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnܹss͝;7wnͦ~V9 kE"DV)޾(B"Dv_CG9<<4q$B"D $L:^5"Dxr?d$K'Y:INt,d$K'Y:INt,d$K'Y:INt,d$K'Y:IfiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&YdiI&Ydi=X <5Ԥ*35[S; ` `Cņ!ƘxfOp1`ccIbe"E4 ${H&>>-o? 9Ar 9Ar 9Ar 9Ar 9Ar 9Ar 9Ar 9Ar 9Ar 9!Xk<_:=9ޯXs9[O_yhcͱXs9sk]vܶxͱXs9k5ƍgylNk']ym~%I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I=~5ǚc1vozʓ'G5k5ǚcͱc_=?m'k5ǚcͱXs9إG7np}<Ѓ۶9k5ǚcͱcݸ3O]cͱ_乣+Orzr_sͱXs[~5ǚcͱXs9׺~w=mcͱXs9k9vэ>؝95O;vJ$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$99v=~5ǚc1vozʓ'G5k5ǚcͱc_=?m'k5ǚcͱXs9إG7nI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Icأ\s9cwz֭I$9a$Imے$I$I$I9lvq~&$IpXsݚ!I$I$I$II$I$I$r o!I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Irc>rzr_sͱXs[~5ǚcͱXs9׺~w=mcͱXs9k9vэ>؝95O;vJ$I$᰿s'{w۶~%I$I$rضLI$I$gyد m\Owm?$ϒC$I$Ip?/=|͋$¶m۶m I$I$I$ɶmI$I$Ip??~yM'I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$g9G9=9ޯXs9[O_yhcͱXs9sk]vܶxͱXs9k5ƍgylNk']ym~%I$I9m{~O?Oo$I$Iuyyzק]}Y=Ӟyeuzgn۶ w.:l<{}ۿq؟͛7ϓCrgg=L9ܼ8;yq~~Vr~Y߼8K9=̱;ݶmkݼ8yq~I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Irs{ӓk5ǚcNoߺ'Ok9k5ǚc1nkW{~mNOk5ǚcͱXs̱Knx.tͱدyѕ'߶W$I$~m~G}nw_kdsyoo윃_?yqSW|+yO:?ώ_vnk۶//{w.o|wٯGx;}Νׯsgg߯3:W=?v7>O'~鵫4xV:momƵ?ԧH$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Icأ\s9cwz֭G^<~?W|ѫ>ݻo{w|~5|[߸{Uxu}gnWm[}o}K^// t۶W/ǿ~no;o:;?o~+_W}mǿ ^=W쥯y_w'''w_ܗ|}u/{˟_;ɯ}{+_%ڶ[[~Ν^/'o^'I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$g9G9=9ޯXs9[O_yhcͱXs9sk]vܶxͱXs9k5ƍgylNk']ym~%I$Iܶ=w۶o֫^_~%Iܶe/9%[w~|;>m/~k>>oKomگ_Gmw{|}?m~K#nǟn_|gmo~?9>m۶mW>_5ݶ핯|޹a w~~y͋۶v'ug>_oz7tx'mo_ݶ>/z7Omۋm~Y_n-?om#?$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I}xcͱ۷n=}ɓk5ǚcͱXs̱ۯuzp۶ӓ5ǚcͱXs9sң7}橋;]s9k/ݶ|C޶_>_5oxWO i۶W{{6 /׾5/nڝm{̳͟me_?я|߶m۝}W /~|~[發x߾3s?۶oo}>[盾u_7_޼8C$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Yα{GNOk9k;}W<9>گXs9k5Zׯ]}ym;=9^s9k5ǚc1.=qg8?5ǚcsGWx|_I$I$5m{{~xNj/mۃ?7_\!I۶}+_yدǿ{nw_k۶}K?oܶ__O:O|x߽mۗ%;/m;_}۶>m۶ſ?qK~ۿ?5_m^W;=/n_;o?m{:m7~s۶mW~G图nw;-ߺmg}Kn۝۷r—mNK^۶}m;=Կ,I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$99v=~5ǚc1vozʓ'G5k5ǚcͱc_=?m'k5ǚcͱXs9إG7n//o_^~ø{>7~Oo۷챏G//o损c7/o޹{_ɯ? |_{_x7~{>~./ozf:l<[=y=~[\~ʕC//o?>կG\^:?xa?9kLrH$a9vk$99n ~fpL9vJIa>a?9C$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I}xcͱ۷n=}ɓk5ǚcͱXs̱ۯuzp۶ӓ5ǚcͱXs9sң7}橋;]s9krzr_sͱXs[~5ǚcͱXs9׺~w=mcͱXs9k9vэ>؝95O;vJ$I$Ipq~vq~&$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Irc>rzr_sͱXs[~5ǚcͱXs9׺~w=mcͱXs9k9vэ>؝95O;vJ$I$IDI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$g9G9=9ޯXs9[O_yhcͱXs9sk]vܶxͱXs9k5ƍgylNk']ym~%I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I}xcͱ۷n=}ɓk5ǚcͱXs̱ۯuzp۶ӓ5ǚcͱXs9sң7}橋;]s9kگXs9k5Zׯ]}ym;=9^s9k5ǚc1.=qg{AVk-Rq HHI-D.%@ \񂌍NDK3vӭ#X ,]D3t9=stkGw<=`$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$INs姞<>:ܯXs9ŵ+\s9k5ǚc~[7o:\s9k5ǚc1.=}WNxͱدyt3Oo+I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I4]~k5ǚc_\\~5ǚcͱXs9׺uƣy۶pͱXs9k5_=?;5ǚcѝ+:ܯXs9ŵ+\s9k5ǚc~[7oI$I$I$<ݶm۶'$I$I$I$I$I$I搓$YsI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IO=y|t_sͱXskW=:<دXs9k5Znx#=c۶9k5ǚcͱcܾgcwXso}/<:uv>|;E8Ydwwvm//=?q /ӵf_}d'΍?͗/Nnݸyn޽QQׯԚ\vxwO?|'7ݳ$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$99vzpcͱ׮<{tx_sͱXs9k9vnݼGzǶm;>:\s9k5ǚc1.=}WNxͱدyt3Oo+I$nO7?׽~~׿o~]|99a͗[ڏm'_7~+sK_7<}'oׯ]{?7Uz[?i~ ί|G}̶m__?`۶//7n؏%z}Mo7?vxwO|__e:?;dmo}oŽ󓓽'So};Oo¶m~|G޾m{ݶo/m^7~m_ݶ]۶۶}~~wm|m۶?͟m>?C`۶7< CgIW?~=?m/_?moqvv$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IO=y|t_sͱXskW=:<دXs9k5Znx#=c۶9k5ǚcͱcܾgcwXsxd>Wmw~+`/_u۶;w^6/y_W^y?mx?Wm{҃//߶c^{/cͳ>uI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IӜcw'k9k;qqʳG5k5ǚcͱc_^z'l۶5ǚcͱXs9s҃۷~tkGw<=`$I$IN/U_U۶կum >U۶m_w~m|Co{[^yΞϿOe۶׽Їm۶oz s~{ηm^/߸mk^ONO$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I4]~k5ǚc_\\~5ǚcͱXs9׺uƣy۶pͱXs9k5_=?;5ǚcѝ+mw}߽mo/m~+I]_oȏ_<؞}S?GO?k{k_mo/5~w3Wǽm~m?/oo#')wIN$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IӜcw'k9k;qqʳG5k5ǚcͱc_^z'l۶5ǚcͱXs9s҃۷~tkGw<=`$I$I/>_GsO$I9{?_=3''|g|__ܶKwϒ_}O_C??M_?'߽{Kik˿7oo_ֺw||7~-}w|ן̯}G?+~W>ϽdK$K$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I4]~k5ǚc_\\~5ǚcͱXs9׺uƣy۶pͱXs9k5_=?;5ǚcѝ+I8Yk''$Ys$IHkrONkw ?>cwԯ޺w~*''ḵ[k99~$I9vsZ5OɚCNOk'}9$Ys$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$iαԓG5k5߿v٣Ãk5ǚcͱXs̱ۯuG/=?mcͱXs9k9v]z~v:vk5~ͣ;Wyz_I$I$I$I$I$I$I$I$I$I$I$I$Y/['wK$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IӜcw'k9k;qqʳG5k5ǚcͱc_^z'l۶5ǚcͱXs9s҃۷~tkGw<=`$I$I$I$I$I$I$I$I$I$I$I$IS$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$99vzpcͱ׮<{tx_sͱXs9k9vnݼGzǶm;>:\s9k5ǚc1.=}WNxͱدyt3Oo+I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I4]~k5ǚc_\\~5ǚcͱXs9׺uƣy۶pͱXs9k5_=?;5ǚcѝ+:ܯXs9ŵ+\s9k5ǚc~[7o:\s9k5ǚc1.=}WNxͱدyt3Oo+I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ 0K\<9w;{dgώQQDEk4[o!^gPbD hiafbu]>R]U{Z=]'B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B њ# yf3k2k2kZ}rg6&&&&&ƚ<˒^pۭu6gddddddX.r%MO0k55yf+cǎ.L"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"6Dk֏>6ͬɬɬ1kɱJ̚̚̚̚̚k,Ko{mRڠYYYYYYYcͺȕ4?ubksìed;Z׻3"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DY?rڠg6&&Ƭ'ǎ+yf3k2k2k2k2k2kYϳ,YnizK]k~fMfMfMfMfMfMf5"Wtԉ YYgv2vh]"D!B@@Q(P( E@Q(P( E@Q(P( E@Q(P( E@Q(P( E@Q(P( E@Q(P( E@Q(P( EA"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DY?rڠg6&&Ƭ'ǎ+yf3k2k2k2k2k2kYϳ,YnizK]k~fMfMfMfMfMfMf5"Wtԉ YYgv2vh]"D!B :Sn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;NSn[;N}vC"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B5GZfdd֘r{A%lfMfMfMfMfMf5y%7[ozmϬɬɬɬɬɬɬf]J:a2k2kVWƎ]"D?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?g{?=A(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ,rA(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"GQ(r9E"G"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B5GZfdd֘r{A%lfMfMfMfMfMf5y%7[ozmϬɬɬɬɬɬɬf]J:a2k2kVWƎ]"Dln͓_8=p{tNw8=p{tNw8=p{tNw8=p{tNw8=p{tNw8=p{tNw8=p{tNw8=p{twN>SUUYU*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUaU憪r{XUUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêʪ,676rܰ*V*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aUrXêV*U9aU5MIDATrXêV*U9aUrXêV*U9aUrXêV*U9r܆("D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B5GZfdd֘r{A%lfMfMfMfMfMf5y%7[ozmϬɬɬɬɬɬɬf]J:a2k2kVWƎ]"<9}֣=81O ~'`fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6fi6/fϹ͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆l8͆lNsy638?6N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N4N43SAfD!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"6Dk֏>6ͬɬɬ1kɱJ̚̚̚̚̚k,Ko{mRڠYYYYYYYcͺȕ4?ubksìed;Z׻3"DEunsv1|72od|}#F72od|}#F72od|}#F72od|}#F72od|}#F72od|}#F72od|}#F72od|}#_sxN9xN9xN9xN9xN9xN9xN9xN9xN9xN9L> <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s<9~g| <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s <'s |O>~*vC!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"Dl֬9|hm3YYYcc<555555֬Y,G7ߴnA?&&&&&&ƚu+i:~Y_ˬɬ3;X];vwg"D ?GWֲZ7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7iߤ}M7i&Y]=xnY!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"6Dk֏>6ͬɬɬ1kɱJ̚̚̚̚̚k,Ko{mRڠYYYYYYYcͺȕ4?ubksìed;Z׻3"DŰͬɬɬɬɬɬf=ϲd9v-u] 5555555֬\IS'67ZfMfMرu<!BQ ;pbwwsUUUYUUYn뺮뺮*˲ʪ,˲,˲*˪,ʲ*˲,ʲ*˪,ʲ,˪,ʲ*˪,˲ʲ*˪,ʲ,˪,rޭ,˲뺮,*,˲*˪,ʲ*˪,˲ʲ*˪,ʪʲ֏8M^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iKՕtiqG8q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{r܍4q/{iK^Ҹƽ4NjCJ/q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^8^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/{iK^Ҹƽ4q/dڛ>9v*Q"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!BĆhÇ<555f}>9v|_3YYYYYYczertM{/[^3k2k2k2k2k2k2kYNlmn̚̚<ՕcGzy&BnoKD][gϖeYeYnu:Orx*ϕeyݝ*˲pX r,ᰪVeYeYpa]e] ;n__뺮̙3ϟܬ;ò.r8p{~gXeYeYeUeY~Ci%qQGiJ_IWzIM($8J($8J($8J($8J($8J($8J(^'qQGI%qKg}`G$8JiW^%4ziQGI%qQGI%qQGI%qQGI%qQGI%qQGI%qQGI%qQGIqKnGI%qQGr7MkM$8J($8J($J/9hJ$8JhWJ_IW8Y&qQGIqK$8J($8J($8J($8J(d˫+i%]In,Ii%qQGI%qQGI%qQGI%qQGI8$8J($8J($8J($8J($8J(^QGI%q,wW{LxrxUnE!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B њ# yf3k2k2kZ}rg6&&&&&ƚ<˒^pۭu6gddddddX.r%MO0k55yf+cǎ.LDQmoM-u]onmno>5Udݝ2__]]3|uܹsg75<Օ9no8Wkgj89~feeul{~{{\s~_Ylu}أ]t1OUUynSSg{*mnm66U=s>}n{sCIԉNu⨳m΄;xs3SiQ',uZrDn^춗:n^;ێڋbmQ':QgZN;:bkqZ\G8qtf~ч\]I8vƽܔ~IY:Z\8t[Q{ZNuNknQ':qԉKbuqYn{Zi-FvuG$DV,wŨi-vZQi /$t[biQ':qԉrK>i-&8Q': s3N^ s3qG[ biQZ:Krwbi/-G8Q':q˽=?凁jwWWVg VBQ':Qi-vZKvun{):qYj-.tZRuu:nG8,w[bmG;nGNki-.wqԉNuzi<;;^(r"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!bCfCk~̚̚Vno;>ͬɬɬɬɬɬf=ϲd9v-u] 5555555֬\IS'67ZfMfMرu<!BQT[Kwf덍snm/ju]uolmG߼ⵗ\|.e/ ^{WgM{.yK?KN+. .sg]vɥo7?t饗a8??www# ^v饗]qͯ v_~إ>usΞ={;nw__+.|իo>UvqanuvFmK+ɺ1(67fm^ϋXYnGvZmmmD?VzT_u՛뺎RmGv]94vZRw9Ng'׿^{=7u]n;lݜ;,w;,?wv0+rnkƞ=yv#-wۭ^lEqVY^ˊs[X;N+;"s>sJoww#3_ݎ(*s[\[ۭVmGvmw;$9|tf9tKk#<]v_}E]q{gvQgJou{]]+ie]]7nryAnEvmGV'Z^9>/~k/C:3K ? n$Vt[ͭ-dn-ek:nK^3,7tK[jٳViD:wv#__鶖n-(ΝxkQumw:ێ$CF!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B5GZfdd֘r{A%lfMfMfMfMfMf5y%7[ozmϬɬɬɬɬɬɬf]J:a2k2kVWƎ]"ޚoX]٭-u]_u峝NUnlllml w??_s/~]ou]<>򢗾G_ϛ[W#a]ףw}OzKs ׼u]3O?7;>qq^:ŗG][_ۿ?k8uvkֿ@i/--.ݿOn]Iҙÿ_>ON=>>''~?,_wÅNeܿ_׿}|y7c'VzIi/-wsG~0ۭť9llR?_>~{7ݴK~oR85Fy 7x#+Wn߼pjm>9~G_;u:ҙ<3wVw'<|ޯܰo{Lk~n^n;ۿƯ~ɧQki^궗:CKgNt&{u][׻rwS{ԍ?w7o|}${;r _rz߼i/-ω;׽3+v};w_-ZyK;z/w厠$n9ӏt94{y#|GiO>˯3~mxG~p_Z|nvտ'^o>x/]n;x;'ǎW6\"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DY?rڠg6&&Ƭ'ǎ+yf3k2k2k2k2k2kYϳ,YnizK]k~fMfMfMfMfMfMf5"Wtԉ YYgv2vh]"DA幭مցC'Au]_uEu/߻ƛnú/U^X&Sz꺾C:٩}?j7?|_}#7Wu}ŗQgunXuԓW_,>sWu}%yųu{ w|ƿzx}3u]ȷ67nmlmnuδ,.̱|OԻ;vˉ_~ٛ_կf?m}oW]7|_~-_~o}?ޫק&?~K[ 3tx8>>;~/ɬ5k{O ./sgo{8Y O͛/bo~ݯ~?g?tq,]wqu׾w_V\~٥oxOM ׿3gδδD#>0i-.y];\{qwu=OFF_OWrog/Oҗ~~ji-Y͊g7w{r)YM3k+?|ßWյcw W~ 7{e>]^|/q^7>>_3rO׍}/]g=[u]כ`Xu]>՛~\/袝0k /|ÿկvwzG>wO<O>9?_Gu]W[NW<[5~֭뺮W_rϝ?[׻'_.|ksckscks>Z\h-.5k;~/W\WH9~ʋ~xv}٫8/{Ǐ.~{V]_' Klyv멉gx-ZuƝ/NkqqaZ\g#.wKg[gZwK/yk.}þNW]~y]׽$~ƗV˭'vџTяG^.kN5?ܼⷜЯ{a3`eʩ0Z䎟]wݵ;^һ7yu]?;7[o~뿾Lkqa|ȃi/Y\믤>K/ /| jnOг/zwƁ㗾Y#O.,. V#UgZg旖Zݩ}__K^snΏf:??}&y٪vv<77=qw\ ro|C]_|љ®| ˇΞL?}fڙyN7[w.u=/?p<>t|bRukqa|kqm/ɱU"!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"6Dk֏>6ͬɬɬ1kɱJ̚̚̚̚̚k,Ko{mRڠYYYYYYYcͺȕ4?ubksìed;Z׻3"DEynkL]ЦpnO{7|p̉r{]5Rnnh}mk}}[u]zu`:w;ww|б?KA4?}%cxEȕ>w?:zכ?/뺮oۿX]yf77 ggg|SO<3v׾'fd7\&&~en˝ݏ|+<0Wtn~a_E/+_pם?}zW_|Qm073?;=?;}f~6&9|hiqanfj~vzv*i{S+~.0n/NzlK^c'O/}_y%WV=<^\陧6{k_3HW<3?;;kqK_ N4:9~;~MOԙF;3,Nd7]07s'xR/=cWfƳO_xi~uyK^ҋ^{+^4f0.Dgf♱_]{}ũWIw:'''_oݸm׎֙y?w}GyUoVΜY8W+NTW/矙VLeW‹y[1O ~+^?ܙo+^w}Y^\l<{F!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B5GZfdd֘r{A%lfMfMfMfMfMf5y%7[ozmϬɬɬɬɬɬɬf]J:a2k2kVWƎ]"b֙փy %lUcz?23;s}#n]Wkk7nl0޽ߨUUVUt'a[_x;ݘ[-mlOwfkGk}gΖzp|. Uu_woUUUU( nlpc??۹pnfj:ӷ?яfù`9}K>pv驟W/_/~},woC[|.NK_5mڹj}gz兯FY-LOs3S4yŅpf*.-cun}Ώg_ʋI5c5+̌?q׿vVc?yv~n(w֓/x77;7_rᩕ=ϼ󝟸%wߛftLL8g^27ry}]_%/~*t[O?E^uZs3sOoN{ww/YvCf*,?r_<86XOqw/{y873l<̀w7ы_ƃ<#WzfMk+ay/~jv|ş{g KQ5oM~vv7EwyK.3S3Stxf~3Nm"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!Z~A?lfMfMfY_+OWfdddddXgY| n̚̚̚̚̚̚kE[f}-&&`ueѺE!(m-.~D]Go†(ga]u]mB]Vu]u[% u-bC`]bQ zXbQu]u]Wg)B(u]u{vu]平g6 u]u]6%w 8SXlnpC6_|`f* BoܬL~+^]sمw־w]fm5Yz;ynK_j/?/Xlk5kq|Wof7of*&NTuKww\{_}SS Se_}ãnmmm1xz 5W7xəY* f`~vC }wv: n~W꫾ݫ kޣ?}ۻs7^qO9.w[S?_˷W㚷o?}w*Kgs[}ǵo7]93/?鶗fƳO?ya͍/7^׿梏'纋7^}]~֗沯}i67-o׼gxo=~׫.K_!^w\}c??cEox>Z:33S>}F!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B5GZfdd֘r{A%lfMfMfMfMfMf5y%7[ozmϬɬɬɬɬɬɬf]J:a2k2kVWƎ]"bVzc"E)EYc)BDyf5( "2kEY+12Dy($ 3kɬ Rdg֘,H(2k!@ ϬDEn1$ȋ<(E^D"E<C:C~v駞8uTMt͞Yh?z~5ztf&\z'N=66?;=73ē;3?4=2?;=y8 Yԑuxѱ<5~fnq=#wx}dnfj*';C{ӡ4=yGC?rwhͬɬɬɬɬɬf=ϲd9v-u] 5555555֬\IS'67ZfMfMرu<!BQ;nN$H A $H A $H A $H A $H A $H A $H A $H A ~|w*/ݹwo*/nYsffB }wnfjan&𜙩lS07x-,GVT໳sQ573TMT<ãL;xS\O熁73;uZs3SS0TMnQY ݩ qLi-O/Lt07xt/φ;x sS7xSt07xTM^軋 sNL;Sfso*/ݙtO^ӡ^:uZQ{)ggf槃 uO<}S'O:yӧN>uO<}S'O:yӧN>uO<}S'O:yӧN>uO<}S'O:yӧN>uO<}S'O:yӧN>uO<}S'O:yӧN>u߃WʗW/΄0444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444 D@@@0v=v->v S)WM؅؅؅؅؅؅.}]ݵWt ꝍ]]]]]]]BK'yBcb9ӬR>w8˗S a >WvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬ=W}l_vnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7f|sy_vnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7{ۏV}i Άևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևևw%a B{[}bbbBRjg>v ]hΟkT;Ѕ;N8..sY-+##!! ,|3_]8C a <m՗VjVjVjVjVjVjVjVjVjVjVjVjVjVjVjVjVjVjVjVjVjVc[-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղZ-ղmjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjYjylwlۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯzoۯղiƁ!!@؅حxg...O_6}bbbbbb1?wu^qӍ7w6v!v!v!v!v!v!v -!6wq]]cLZVGGB B@HYǾzbG@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@z%~wޞ8!! ]hzw]BBBhTUl.v!v!v!v!v!v ms_w7xzgcbbbbbbbsxxlj}؅؅>v4ez}$B Ϟy;oW;B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc#!| 3B"B [o]]]J9m......tc<8뮽oPUlBBBBBBBZBl8ZΙfT@3}bG@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Àup#$B Bl؅؅؅٦]BBBBBB>ƃ箿+nU.......t%< }iVJH@) =wޮ)v@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0 XW Ί0B"B [o]]]J9m......tc<8뮽oPUlBBBBBBBZBl8ZΙfT@3}bG@BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH@c1zjqYFH@0v=v->v S)WM؅؅؅؅؅؅.}]ݵWt ꝍ]]]]]]]BK'yBcb9ӬR>{汻]US 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 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 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 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 y!,%KR,%KR@@@Àup#$B Bl؅؅؅٦]BBBBBB>ƃ箿+nU.......t%< }iVJH@) =wޮ)v@nKuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZբuE]-jQWZܶwlϟ:yoBW>?G?|?뛯@H@0 XW Ί0B"B [o]]]J9m......tc<8뮽oPUlBBBBBBBZBl8ZΙfT@3}bG01TJ"%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r.9K%sɹ\r"4c߿t"!_-nBJ="O} w6{3;oq B BŅsgE!!@؅حxg...O_6}bbbbbb1?wu^qӍ7w6v!v!v!v!v!v!v -!6wq]]cLZVGGB B@HYvUM#BcVJUK<4v4ez}$B Ϟy;oW;B jp)d)YJd)YJT,%K"%KR,Yd)YJd)YJd)YJdᒥd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJ9dᜥdGQKd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd)YJd8O%KR,%KR(v4ez}$B Ϟy;oW;B jyLUepY8 gaq#KK,\e,,pY8 g,pªGSY8 g,pY8 g,pY8 g,pY8 g,pʤG/_xi^㐅pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pY8 g,pYx*呇,Y8 g,UUUUUU'pY8 g,p%QY8 g<зDd9ѥvW]>~tt$"v4ez}$B Ϟy;oW;B 0va<83<:y/󘳈8>͜y,%w]xoǁ "("@aq|!@"!BH8$D#@h3HE}ܹǛf뽽jY񢗄Gaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaf%gaa汔ozܻss?R8BaDa H}ӈ8 $"@aaaaaaaaaaaҥK<-cK.PJ,<,_ Qx$LO?R? $"@ya " D ED EXEytҙ>zW]>v!v3jYA !egU5Ŏa ]X-0<2#}$(9K}]| T+_9g?KUcTUUU58LQU: G:ga.呈yTUUUU=*UUUHFǁETUUUuh=*}o?Ch}k_xы^/>py.D<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<2#<28,/gaGyDU?/yϼ%Ͽ7fG.^VUUKeaUUUUU'˗qJOG2bwGjrq_wvTUUUaHU/]8 4 /Υjꂪ^uӺ.0 <^0 8H.ƃ箿+nU.......t%< }iVJH@) =wޮ)v@ajyLU aqqqqq0gy}#_s5<_xᵯzo}Kvѿ{+_sG ޗooo׽oZiO^W-ekU~Ǐ?^Xvrq*9x+^6#E^u͇oO;%_[~꧿RU> e/044T|Kק={p7eoMKη}U~__xk^/zE4 ]?:|xpizo/\tƃ箿+nU.......t%< }iVJH@) =wޮ)v@ajyL! @8B~q 1)Oywg;K^"U~/}㿮N7~馬=/v?Λg|~C?CO}t|\7Fݹg}ۧ~u?/|%r?՟~wubg?ŷxT/I,IDATWܞ_?{._k~䙬+_sƘ39/?W=~ p p p p p p p p p p p p p p p p p p p p p p p p p p B"@#@8BUꫮg _zϓ|Ek_o_}8+g/3_o0! Yq q׸yTwg_7~w~g'֫%U}O^||+|_Y׿MǾG>|GB]P_7??[\tg S{3#'U?|pp_>?ı%/u{O˽[~S a p p p p BBJyo9kRbT/x=]D~'^wsߗȃ<Z|v/~{}_use4T#w~*"Yd*Іzg;1va $B aZ\8wV!! ]hzw]BBBhTUl.v!v!v!v!v!v ms_w7xzgcbbbbbbbsxxlj}؅؅>v4ez}$B Ϟy;oW;B 0vaRBBH !!$H8H{=iz3~'_2U}ӟiϿ`;n O;~oW=g>zz>7N>go?/'>ֻ3>[qH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$BBH !!$H@x{E!!$bv4ez}$B Ϟy;oW;B 0vaY]tYӅ6>>>>>ݩЅO{SUUxPT+#U=sJ/}'~g_}U<{zt|]{g>|[~w_OWy/_~s]}//|;x_k_wё'G]};<>WUǁ06>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>v{9>mh}hf.jvG/MET//Gx۟\e|4gޝcO}Siv]hCC؝:ych}yoUu?~~'=%Oz“Uկyg2n{y _/ ^𼣣>wOch}hiv>}^_uŗT6_y~^yϝ}o գywͿ~'< }5]hCCCCCCCCCCCCCCCCCCCC[ o},!4CU}ww 4k|ʓ ?k^]Џ>֩_̿^6Mzz7Ou˗/9ۼ]7U__? ]|᳷~_짾O/73 R?!0`]-.;+.n;.v!v!v!~*vcЅ믻nAU ]h 9<>Ch}BB;gղR=>!Bg^m~ ԧ߽=M}k2D׼~O|SY;ۅgp>kgw/ Oxγ>^=y ]T|ʓ_*#~~xKΝ7~'IO9wttۿ[xMT~oO{Skc7cGGG/~y@3z>ʧ<'_9Zu֤>>x8qtRcZ=c'?>z{>w񙯿3?|SBB BŅsgE!!@؅حxg...O_6}bbbbbb1?wu^qӍ7w6v!v!v!v!v!v!v -!6wq]]cLZVGGB B@HYvUM#BcŹzg5gYcMZ=08k5Κà gƚ;Cך yۏ?;lӵ}o9{.ty};{xpY=<`k۝o?vw;{xp;;<0͡.t=xᇾG#^Ꮫ[Ls\:k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYqִޝ:y/Yq8k55g ?w}h;o15lk}ϵ9kiZNggYsxp;kw6Cluz ]vз?344kà 5#gX띳=wChku g{G`55fw;<{Ν;zq8k5gYq8k5gYq8k54 >M}f|;ƃ箿+nU.......t%< }iVJH@) =wޮ)v@a~]]85gY㬱i3Yis8k555s mΚYcu 98k5!4wg5M띳ƚ9ׅ6u;kMz笱isXxg44.9)aYkYgM5Yq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5gYq8k5k}|]Di5gYzq8k5kkMmƚYzq8k]h[oi54wuav8k5wgƚ;띵wmqXxo[g5ΚYkg;kMc q\8^U'^WU54gk]h[gi5ww֚YZ8kжY8k5gYq8k5gYq8k5g5MK}o;ۅ mZwYcwmqXkжYX8v{Xxgkw֚ƚ{߅6ƚuYqXkwmq8k548/c>vᇏs:v_=￳8!0`]-.;+.n;.v!v!v!~*vcЅ믻nAU ]h 9<>Ch}BB;gղR=>!BgBkivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfg5͙ mkivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivRxn_]hvٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgivٙfgCgg6CL34;L34;L'6=33ywbߛ|jvgf/ٽx}93gI҉vTlN@ʉ6u%@:JI(,$"T$wckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscksckscsc5V޺Ul}cr{FG]=:u;qw.ا?[;rR$N($ʥk=;$8Jh?Ow< ? |wϿ~um 0? 0wO5ȱfa~a~&q~C龿~0ڼyM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=l}ϻoz٦gmz٦gmz٦gmz٦gmz٦gmz٦gmz٦gmz7gmz٦gmz٦gmz٦gmz٦gmz٦gmz٦gmz٦gmz٦gmz6lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6={}ӻo>M6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6=lӳM6?'oܺ5]تv^wyQkN]N\zE ֎Tp?8J(rgh/$8O߽rӝm60/_f0? 0? ߝGk rvYa~aIoP8x< 6y48J(8έ $8N=.T"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"UDT"REH*"4z#Yf,]تv^wyQkN]N\zE ֎Tp?8J(rgh/$8O߽rӝm60/_f0? 0? ߝGk rvYa~aIoP8x< 6y48J(8έ $$ޏBISMޒ";Dv!Cd";Dv!Cd";Dv!Cd";Dvy.";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!ܷ!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";Dv!CdO'[xo}'[xo}";Dv!Cd";Dv!Cd";Dv!Cd";Dv!Cd";DvyKv'ݕ7_eYU9}ݽfwy❸;ӟ9~'qQGU㵇Ϟ^GI%qā{;la_^6a~a~;' l0? 0?w8\_~qt ? ylom^\h&qQGq㳃[7AGI%q$ҷoj j j j j j j j j j j j j z{`;֯>111111111111111111111ت5j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j j ?~%k_}l5Vc`5[Vc`5Vc`+_[X_c11111W[oc5֯>j j j [XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXճIzvR=;YH{#ع;omc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`5Vc`=07',5K7*]].otuڣSWy}#'{vG{I%q~ly~Oϟy6ۜAa~a< pn\I%q~ҏxܽ7X"^x/T&*Ժbwfov|M];/?}﬚_>]#,?(ށ~;7{7{ݭӼZ_ہշG{owd׾~to?A۶_1ƏkA{f^(aΧ?{[q/NoX;{^^ܼ`nZWr7fߨwsp7o?͓CMjpK's=ہѺ~~ufw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgoJ? Y ~&xn؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgbw؝-vgٛoo/gYU9}ݽfwy❸;ӟ9~'qQGU㵇Ϟ^GI%qā{;la_^6a~a~;' l0? 0?w8\_~qt ? ylom^\h&qQGq㳃[7AGI%q\hw+x,{M*e-arnFghgZL_?;=,\qT<5w_h㲶q;'{=8Yn/7v~V/ztgƏgo}x׻ֺûo[]<6Wsfxc_mO_qqef_޻p{ԟ+w{{­+Nw^[?F/?|7R' §/W{Kh_~׏^=>ZᝅmO_>ݲv.o޿ yldj3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+gw. 5|Mӷ?6+aQGw/k_WWw7PnߩtwqnZL+i3ѝҞÝ?~euhϘ<޿m˷~{O:a/+g_}if}ӇWoǯҸ%EFiڛ]};,>qdvhΉ??p77w6/XGܾS9;tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+ݩ?ZwgͿ7/^W_?~@QZwΝJgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+i3tδҙV:JgZL+g=w֗,K7*]].otuڣSWy}#'{kI?$KKoݡꃣg$ϕ./x僕?v}pF|'LO?ݭwp0^h m}/B[_h m}/B[_h m}/B[_h m}/xux7Op_$~pZX/B[_h m}/B[_h m}/B[_h m}/B[_h m}/֏򇫯7oȲt}cr{FG]=:u;qw.ا?[;rR$N($ʥk=;$8Jh?Ow< ? |wϿ~um 0? 0wO5ȱfa~a~&q~C龿~0ڼ}xN /N|[Xݟݓ=xԊl' ל׷۽xPnǻOk)/%^^KzyI//%^^KzyI//%^^KzyI//%^^KzyI//%^^KzyI//%^^KzyI//%^^KzyI//%^^KzyI//%^^KzyI//%^^KB[/~{O{ߜc;t~k<4os`<.><ٙ;9{x3~d^^/L\0x_jn?U獏XWoU>Ý-{9Yɛ}O} ὇^9y788)hm3`0y#֓W9;GIi؛}z^6oFWljw[O|kgg_|m_u\=o }B[/8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)WԵG?lm?jM?Y7ouךOkxxs~o_9Z#kmL&&%qR'%qR'ָtGy/W??=~sgAXxkuu̥_>3}t/^`?OM/|/;yttio@ߟ/҇J-$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NJ$NҴr~F[..ov7:xѩ+މK޿s>ڑ|'qGI%q_U.=^{A%qQGIW.~a~a;?=lsa~a0|hAp=6 ? 0? 07Oݝ0 aGI%qG{?>;xus^$qQOy_Jsrqߜ??;zW[֘k֘kŦ+[c5+/ZyK֘?XyK rfӣ8>^:⩕O$_`3íָxfҩOtj(h^yv5F+/ZyKtj$_:Rlj%q++gF/Rk/⩕O$_`3íOxj3ZIxjƇ[WN^^:r51s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1nixjS+/}RƇ[c⃕Oxj(h\k|5~S_<3s1'h/ZyK c5Zc5Zc5Ԟ\О4OzF;⃕Oxj3Йы'otjpk|5~S+/Zy'MS+[íqtj$CƵƇ[+W^<⩕Wh[Wh<}}o?W,OPo_ٛv5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5Zc5מiq7_MP<^~qhUNq1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1s1svHܾeVw˛华.^{tw҃/:\Ov2IQGIWK>{vG{I%q~ly~Oϟy6ۜAa~a< pn\I%qxޗ.|Z;$QI]n%vI]V5GbsTl #NЊQ9*6Gki\KbsTl 8AZZ9:$hҸ !aTl8A;$h4q-C!A'hEatHиƵ4NиVlvH#N Z9:$hxHиƵC¨qvHЊQQqƵ4FkiQ9*6Gki\K;$QQqƵ4FCVl 'h0ZZ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6G4q-CQ9*6Gki\K;$Q9:$h\KZ!A+6G(Ƶ4NЊQ9*6G0*6G?;/ѡq-qvHЊ!AZ bstHиƵbsTl Ҹ Z9:$Vl!aĵbsĵC¨CƵ4Ft{ýST{̨]?]bsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6G|ٛUşٛUşUşG37VlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6GbsTlQ9*6Gѫ~;odYU9}ݽfwy❸;ӟ9~'qQGU㵇Ϟ^GI%qā{;la_^6a~a~;' l0? 0?w8\_~qt ? ylom^\h&qQGq㳃[7AGI%q4 niƇ!a|HƇ1'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hc4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A, 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hq 'hW1-_CM|veąԊMpK4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8APk\^c;fc;fc;fc>w54N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A4N8A[w^ڝ7,]تv^wyQkN]N\zE ֎Tp?8J(rgh/$8O߽rӝm60/_f0? 0? ߝGk rvYa~aIoP8x< 6y48J(8έ $8~ϝ?߿;,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,ÿ͍?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,»ÿ7_w~Xxw_~{?»»?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,;,7 (7 (7                   ݻ_ݕ+74]تv^wyQkN]N\zE ֎Tp?8J(rgh/$8O߽rӝm60/_f0? 0? ߝGk rvYa~aIoP8x< 6y48J(8έ $$O.~PեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]IuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]Tu.U]Iu%ՕT~Rե_Tu%ՕT.ҥKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU.U]TuRեKU~WWFkolUN_|w]Gx'.=xgkGN*yI%q~|UxgqQGI'q^6Aaׯny~a~ɣ9x;, 0? 0$7o_ s9'o~Vw˛华.^{tw҃/:\Ov2IQ'/ IDATGIWK>{vG{I%q~ly~Oϟy6ۜAa~a< pn\I%qey<?y| 7*]].otuڣSWy}#'uF(%dQ{k2(eȘ]M>n1!{j?w'GV Qv70#`GL.~6\^cz0]=|?y{f׫kGO\>}zkr[o[].mjo-|sz(%/{;鐑Q2JF(%DgO?z3̮3JF(%de[N&?^MF(Cjq[V[]=9>~xEFomq8brq~꿕ݍՃݳ7^X;z[ÐzrvOOn[]V{eoQknfCFF(oۙ]OQ2JF(%|ȼ8;}уϟfvQ2JF(%d(t2o2JF2fWӽ[ujo,2zeoC ï&WnXLW.Oj?WO\[V˶~~zrwwꢷ[.{2\p322JF(e~z:ddQ2JF(QCǏ| 7댒Q2JF(%D֦ɷOe~Q2ʐ1}bCV{VnO`[.{no`G8\~l7oewb`zpnvW/֎}0䲷jo\ӓVjou[ڇQ2JF)_vf!#dQ2JF22/N<~g]gQ2JF(%ʼ6L,󛌒Qtc[sw{r|jouew{8qg+?Ճwgo6Z?~vϕӇ!V{lݶV{ޢ7>̮Q2J3%dQ2Jyqv/?:dQ2JF(Q潵dmed2d̮{됽joşۓXdV{ކ(0#&_?M.[X=\۟={񋵣l>|5 쭷[.mgkEo[]efv=ddQt(%dQ̇̋'=xnf%dQ2JF2M'on/&d!cv5XV{.ݞ}?<"[]6D8q18?oryƏtٛ_֏_=}seaeojoul;['ww.z겷(͵7!#dR7̮CFF(%de>d^>yp3(%dQ2Jyom:|t{Y7% -:do[mu겷!q˫Vv7~,V'owlz~b+ۧ_o C.{V{eZ??=mu[VEo}]%d2{eogv=22JF(%d(!G^>uF(%dQ{k2(eȘ]M>n1!{j?w'GV Qv70#`GL.~6\^cz0]=|?y{f׫kGO\>}zkr[o[].mjo-|sz(%/{;鐑Q2JF(%DgO?z3̮3JF(%de[N&?^MF(Cjq[V[]=9>~xEFomq8brq~꿕ݍՃݳ7^X;z[ÐzrvOOn[]V{eoQknfCFF(oۙ]OQ2JF(%|ȼ8;}уϟfvQ2JF(%d(t2o2JF2fWӽ[ujo,2zeoC ï&WnXLW.Oj?WO\[V˶~~zrwwꢷ[.{2\p322JF(e~z:ddQ2JF(QCǏ| 7댒Q2JF(%D֦ɷOe~Q2ʐ1}bCV{VnO`[.{no`G8\~l7oewb`zpnvW/֎}0䲷jo\ӓVjou[ڇQ2JF)_vf!#dQ2JF22/N<~g]gQ2JF(%ʼ6L,󛌒Qtc[sw{r|jouew{8qg+?Ճwgo6Z?~vϕӇ!V{lݶV{ޢ7>̮Q2J3%dQ2Jyqv/?:dQ2JF(Q潵dmed2d̮{됽joşۓXdV{ކ(0#&_?M.[X=\۟={񋵣l>|5 쭷[.mgkEo[]efv=ddQt(%dQ̇̋'=xnf%dQ2JF2M'on/&d!cv5XV{.ݞ}?<"[]6D8q18?oryƏtٛ_֏_=}seaeojoul;['ww.z겷(͵7!#dR7̮CFF(%de>d^>yp3(%dQ2Jyom:|t{Y7% -:do[mu겷!q˫Vv7~,V'owlz~b+ۧ_o C.{V{eZ??=mu[VEo}]%d2{eogv=22JF(%d(!G^>uF(%dQ{k2(eȘ]M>n1!{j?w'GV Qv70#`GL.~6\^cz0]=|?y{f׫kGO\>}zkr[o[].mjo-|sz(%/{;鐑Q2JF(%DgO?z3̮3JF(%de[N&?^MF(Cjq[V[]=9>~xEFomq8brq~꿕ݍՃݳ7^X;z[ÐzrvOOn[]V{eoQknfCFF(oۙ]OQ2JF(%|ȼ8;}уϟfvQ2JF(%d(t2o2JF2fWӽ[ujo,2zeoC ï&WnXLW.Oj?WO\[V˶~~zrwwꢷ[.{2\p322JF(e~z:ddQ2JF(QCǏ| 7댒Q2JF(%D֦ɷOe~Q2ʐ1}bCV{VnO`[.{no`G8\~l7oewb`zpnvW/֎}0䲷jo\ӓVjou[ڇQ2JF)_vf!#dQ2JF22/N<~g]gQ2JF(%ʼ6L,󛌒Qtc[sw{r|jouew{8qg+?Ճwgo6Z?~vϕӇ!V{lݶV{ޢ7>̮Q2J3%dQ2Jyqv/?:dQ2JF(Q潵dmed2d̮{됽joşۓXdV{ކ(0#&_?M.[X=\۟={񋵣l>|5 쭷[.mgkEo[]efv=ddQt(%dQ̇̋'=xnf%dQ2JF2M'on/&d!cv5XV{.ݞ}?<"[]6D8q18?oryƏtٛ_֏_=}seaeojoul;['ww.z겷(͵7!#dR7̮CFF(%de>d^>yp3(%dQ2Jyom:|t{Y7% -:do[mu겷!q xr{wwUmDE"͎wĿArlllXH5i<̬~f5 =W 0#&GM.m}YN/(%dQ2JEom:|:xw}UQt6c[q{s!ꪷ!q_˫k{[_?&6=8~Ðzjv7OOnooZ]V{UoQo6^gCFF(,?>ήCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L>*yF(Cjv[V[]9vˌjoueog 8q{Ճ/?~oߞo?yumaUojoujۛ'7.{ꪷ(7!#dRwwwg!#dQ2JF2/N?zxųϮ3JF(%de[N&|_:2[]6D8q18?kry`morp~x䏽O^}]9r{r[o[]Mjo-z(%݇t(%dQ,̋Ǐ{)댒Q2JF(%DY֦ɧw7We1(eȘ]Mn3!{j7'ߎ?b[zlaG8\}|o5ze~8]?`om'= ꭷ[Vmw{eo[]ef|v=ddQbz:ddQ2JF(QCGxuF(%dQ,zk﫲g2d̮o됽joۛoǟVW Qv0#`GL.Ώ>7\^=X\?^;ͷn?8~Ðzjv7OOnooZ]V{UoQo6^gCFF(,?>ήCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L>*yF(Cjv[V[]9vˌjoueog 8q{Ճ/yǫۛ=q׵/!WV{ժno޴V{ޢ,lϮQ2JY}ߝ]OQ2JF(%bȼ8;}Ϟb>(%dQ2JEom:|:xw}UQt6c[q{s!ꪷ!q_˫k{[_4'~o|ɫk;_nCzV{UήCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L>*yF(Cjv[V[]9vˌjoueog 8q{Ճo~xOWOO̟o?yumaUojoujۛ'7.{ꪷ(7!#dRwwwg!#dQ2JF2/N?zxųϮ3JF(%de[N&|_ήCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L>*yF(Cjv[V[]9vˌjoueog 8q{Ճ/dۧ7sz0䪷joZӓۛVjou[śQ2JF)ϻ鐑Q2JF(%DY g=Sg%dQ2JFM'OnbQ2ʐ1fCV{V?noN>:2[]6D8q18?kry`moo'= ꭷ[Vmw{eo[]ef|v=ddQbz:ddQ2JF(QCGxuF(%dQ,zk﫲g2d̮o됽joۛoǟVW Qv0#`GL.Ώ>7\^=Xۧ??xO{ooӗ{7sz0䪷joZӓۛVjou[śQ2JF)ϻ鐑Q2JF(%DY g=Sg%dQ2JFM'OnbQ2ʐ1fCV{V?noN>:2[]6D8q18?kry`morpOorhO?\O^}]9r{r[o[]Mjo-z(%݇t(%dQ,̋Ǐ{)댒Q2JF(%DY֦ɧw7We1(eȘ]Mn3!{j7'ߎ?b[zlaG8\}|o5ze~8]?gnֿ'= ꭷ[Vmw{eo[]ef|v=ddQbz:ddQ2JF(QCGxuF(%dQ,zk﫲g2d̮o됽joۛoǟVW Qv0#`GL.Ώ>7\^=X\?^y0c7W_vN\[VWy~zr{{겷[zxz>22JF(e1ywawv=22JF(%d(!^<{:dQ2JF(QdUY3JF2fWیujoɷGXfV{ކ({;[0#&GM.m}YN/(%dQ2JEom:|:xw}UQt6c[q{s!ꪷ!q_˫k{[_?&6=8~Ðzjv7OOnooZ]V{UoQo6^gCFF(,?>ήCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L>*yF(Cjv[V[]9vˌjoueog 8q{Ճ/?~oߞo?yumaUojoujۛ'7.{ꪷ(7!#dRwwwg!#dQ2JF2/N?zxųϮ3JF(%de[N&|_:2[]6D8 i ?]mp&pZI_8羟9LA<{]8brq~꿕ݍՃݳ7^X;z[ÐzrvOOn[]V{eoQknfCFF(oۙ]OQ2JF(%|ȼ8;}уϟfvQ2JF(%d(t2o2JF2fWӽ[ujo,2zeoC ï&WnXLW.Oj?WO\[V˶~~zrwwꢷ[.{2\p322JF(e~z:ddQ2JF(QCǏ| 7댒Q2JF(%D֦ɷOe~Q2ʐ1}bCV{VnO`[.{no`G8\~l7oewb`zpnvW/֎}0䲷jo\ӓVjou[ڇQ2JF)_vf!#dQ2JF22/N<~g]gQ2JF(%ʼ6L,󛌒Qtc[sw{r|jouew{8qg+?Ճwgo6Z?~vϕӇ!V{lݶV{ޢ7>̮Q2J3%dQ2Jyqv/?:dQ2JF(Q潵dmed2d̮{됽joşۓXdV{ކ(0#&_?M.[X=\۟={񋵣l>|5 쭷[.mgkEo[]efv=ddQt(%dQ̇̋'=xnf%dQ2JF2M'on/&d!cv5XV{.ݞ}?<"[]6D8q18?oryƏtٛ_֏_=}seaeojoul;['ww.z겷(͵7!#dR7̮CFF(%de>d^>yp3(%dQ2Jyom:|t{Y7% -:do[mu겷!q˫Vv7~,V'owlz~b+ۧ_o C.{V{eZ??=mu[VEo}]%d2{eogv=22JF(%d(!G^>uF(%dQ{k2(eȘ]M>n1!{j?w'GV Qv70#`GL.~6\^cz0]=|?y{f׫kGO\>}zkr[o[].mjo-|sz(%/{;鐑Q2JF(%DgO?z3̮3JF(%de[N&?^MF(Cjq[V[]=9>~xEFomq8brq~꿕ݍՃݳ7^X;z[ÐzrvOOn[]V{eoQknfCFF(oۙ]OQ2JF(%|ȼ8;}уϟfvQ2JF(%d(t2o2JF2fWӽ[ujo,2zeoC ï&WnXLW.Oj?WO\[V˶~~zrwwꢷ[.{2\p322JF(e~z:ddQ2JF(QCǏ| 7댒Q2JF(%D֦ɷOe~Q2ʐ1}bCV{VnO`[.{no`G8\~l7oewb`zpnvW/֎}0䲷jo\ӓVjou[ڇQ2JF)_vf!#dQ2JF22/N<~g]gQ2JF(%ʼ6L,󛌒Qtc[sw{r|jouew{8qg+?Ճwgo6Z?~vϕӇ!V{lݶV{ޢ7>̮Q2J3%dQ2Jyqv/?:dQ2JF(Q潵dmed2d̮{됽joşۓXdV{ކ(0#&_?M.[X=\۟={񋵣l>|5 쭷[.mgkEo[]efv=ddQt(%dQ̇̋'=xnf%dQ2JF2M'on/&d!cv5XV{.ݞ}?<"[]6D8q18?oryƏtٛ_֏_=}seaeojoul;['ww.z겷(͵7!#dR7̮CFF(%de>d^>yp3(%dQ2Jyom:|t{Y7% -:do[mu겷!q˫Vv7~,V'owlz~b+ۧ_o C.{V{eZ??=mu[VEo}]%d2{eogv=22JF(%d(!G^>uF(%dQ{k2(eȘ]M>n1!{j?w'GV Qv70#`GL.~6\^cz0]=|?y{f׫kGO\>}zkr[o[].mjo-|sz(%/{;鐑Q2JF(%DgO?z3̮3JF(%de[N&?^MF(Cjq[V[]=9>~xEFomq8brq~꿕ݍՃݳ7^X;z[ÐzrvOOn[]V{eoQknfCFF(oۙ]OQ2JF(%|ȼ8;}уϟfvQ2JF(%d(t2o2JF2fWӽ[ujo,2zeoC ï&WnXLW.Oj?WO\[V˶~~zrwwꢷ[.{2\p322JF(e~z:ddQ2JF(QCǏ| 7댒Q2JF(%D֦ɷOe~Q2ʐ1}bCV{VnO`[.{no`G8\~l7oewb`zpnvW/֎}0䲷jo\ӓVjou[ڇQ2JF)_vf!#dQ2JF22/N<~g]gQ2JF(%ʼ6L,󛌒Qtc[sw{r|jouew{8qg+?Ճwgo6Z?~vϕӇ!V{lݶV{ޢ7>̮Q2J3%dQ2Jyqv/?:dQ2JF(Q潵dmed2d̮{됽joşۓXdV{ކ(0#&_?M.[X=\۟={񋵣l>|5 쭷[.mgkEo[]efv=ddQt(%dQ̇̋'=xnf%dQ2JF2M'on/&d!cv5XV{.ݞ}?<"[]6D8q18?oryƏtٛ_֏_=}seaeojoul;['ww.z겷(͵7!#dR7̮CFF(%de>d^>yp3(%dQ2Jyom:|t{Y7% -:do[mu겷!q˫Vv7~,V'owlz~b+ۧ_o C.{V{eZ??=mu[VEo}]%d2{eogv=22JF(%d(!G^>uF(%dQ{k2(eȘ]M>n1!{j?w'GV Qv70#`GL.~6\^cz0]=|?y{f׫kGO\>}zkr[o[].mjo-|sz(%/{;鐑Q2JF(%DgO?z3̮3JF(%de[N&?^MF(Cjq[V[]=9>~xEFomq (0]mp&pZɻoD5̹g9f^q18?ory`mrh~tpf?oxW;Ðzjv6OOnooZ]V{UoQ!#dRwwf!#dQ2JF2/N?zxųϮ3JF(%de[N&_?^0!{j?7'?w|eFomq8brq~ַt_/7>v!WV{ժl޴V{ޢ,7gCFF(,>ͮCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L~*yF(Cjza[V[]9#,3zUoC-/&W-׏Go'o^ozƏ'ᆵ3 ꭷ[Vmogeo[]e~>22JF(e1{w`ov=22JF(%d(!^<{:dQ2JF(QdUY3JF2fWӃ;ujoa[znaG8\d7zm~4]?|{8yz͟7~؛]OQ2JF(%bȼ8;}Ϟb>(%dQ2JEom:|=x{UQc[s{sGXfV{ކ([0#&_>M.o}[M׏.N쟽rO}_=jgr[o[]Mjo-b{|v=ddQbz:ddQ2JF(QCGxuF(%dQ,zkǛ߫g2d̮v됽joۛ?;>2[]6D8q18?ory`mrh~tpf?oxW;Ðzjv6OOnooZ]V{UoQ!#dRwwf!#dQ2JF2/N?zxųϮ3JF(%de[N&_?^0!{j?7'?w|eFomq8brq~ַt_/7>v!WV{ժl޴V{ޢ,7gCFF(,>ͮCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L~*yF(Cjza[V[]9#,3zUoC-/&W-׏Go'o^ozƏ'ᆵ3 ꭷ[Vmogeo[]e~>22JF(e1{w`ov=22JF(%d(!^<{:dQ2JF(QdUY3JF2fWӃ;ujoa[znaG8\d7zm~4]?|{8yz͟7~؛]OQ2JF(%bȼ8;}Ϟb>(%dQ2JEom:|=x{UQc[s{sGXfV{ކ([0#&_>M.o}[M׏.N쟽rO}_=jgr[o[]Mjo-b{|v=ddQbz:ddQ2JF(QCGxuF(%dQ,zkǛ߫g2d̮v됽joۛ?;>2[]6D8q18?ory`mrh~tpf?oxW;Ðzjv6OOnooZ]V{UoQ!#dRwwf!#dQ2JF2/N?zxųϮ3JF(%de[N&_?^0!{j?7'?w|eFomq8brq~ַt_/7>v!WV{ժl޴V{ޢ,7gCFF(,>ͮCFF(%de1d^>~ދgO1]gQ2JF(%ʢ6L~*yF(Cjza[V[]9#,3zUoC-/&W-׏Go'o^ozƏ'ᆵ3 ꭷ[Vmogeo[]e~>22JF(e1{w`ov=22JF(%d(!^<{:dQ2JF(QdUY3JF2fWӃ;ujoa[znaG8\d7zm~4]?|{8yz͟7~؛]OQ2JF(%bȼ8;}Ϟb>(%dQ2JEom:|=x{UQc[s{sGXfV{ކ([0#&_>M.o}[M׏.N쟽rO}_=jgr[o[]Mjo-b{|v=ddQbz:ddQ2JF(QCGxuF(%dQ,zkǛ߫g2d̮v됽joۛ?;>2[]6D8q18?ory`mrh~tpf?oxW;Ðzjv6OOnooZ]V{UoQ!#dRwwf!#dQ2JF2/N?zxųϮ3JF(%de[N&_?^䯶__n?Oo?͏ۗO\YQsNpž2*2ΕO^e]ueq||{.2˼.2˼uG~2˼.2˼.2?Tore^.w?zcʨ֥2*\yZ ۟~'W_}u?~{o~߾x:ʨ8s/elQq\O?~z.2˼.pߏWuYy]ue^y]e~8͏/w>߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.Q2Ox||?铿:~7'?_x:ʨ8s/elQq\O?~z.2˼.pߏWuYy]ue^y]e~8͏/w>߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.Q2Ox||??|17r?-ß??xwӺ++2*|i_UFeTƹr>Ӻ˼.}?/Ow_e]ue^y]uᴮ7?|wpz]ue^y]ue^|u{W__2W?yZQۛۺTFe+Oo?#7wW?}Ww/տɶΕQq>4/_{*2*\~i]e^y]ǗϧׯN.2˼.pZכ_޻|{.2˼.2/Ce//~]uOr矍b;++2*|i_UFeTƹr>Ӻ˼.}?/Ow_e]ue^y]uᴮ7?|wpz]ue^y]ue^|u{W__2W?yZQۛۺTFe+Oo?#7wx{_\ۛ7oU{k?]\YQsNpž2*2ΕO^e]ueq||{.2˼.2˼uG~2˼.2˼.2?Tore^.w?zcʨ֥2*\yZ ۛ_8ϿO?\|q?ʨ8s/elQq\O?~z.2˼.pߏWuYy]ue^y]e~8͏/w>߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.Q2Ox||?\ϱڛ}uy營nOѺʨ8s/elQq\O?~z.2˼.pߏWuYy]ue^y]e~8͏/w>߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.Q2Ox||?\{x{U?_W|ʨ9q~b[VQe~wO.28|>ݽ~uZue^y]ue^Ӻ}?ue^y]ue^y*7_}~92|Z_=l1NkeTFedloklRq<-G\yo.q^_W_L~}꧟?G2++2*|i_UFeTƹr>Ӻ˼.}?/Ow_e]ue^y]uᴮ7?|wpz]ue^y]ue^|u{W__2W?yZQۛۺTFe+Oo?#7wx{s?Ǿoxٸ2^O'h]seeTFe92ʨ8W.ç?{}Zue^y~Ӻ˼.2˼.2?Ǘ;}^˼.2˼.Pnoy~_y]Ӻg#qZ+2*#c{?|ݷ_c[ʨsi?'x||<>>oos珏o?ͫۛ?h]seeTFe92ʨ8W.ç?{}Zue^y~Ӻ˼.2˼.2?Ǘ;}^˼.2˼.Pnoy~_y]Ӻg#qZ+2*#c{?|ݷ_c[ʨsi?'x||<>>oo/s}//Or?Oʨ8s/elQq\O?~z.2˼.pߏWuYy]ue^y]e~8͏/w>߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.Q2?Sǟ_i]o޼y;^N빲2*2}o[eTFe+ӏ߽>˺2we^y]ue^y]e~W|EӺ˼.}?/Ow_e]ue^y]uᴮ7?|wpz]ue^y]ue^|u{W__2W?yZQۛۺTFeTFo?548L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048L048|O|{+_~?կOg?ˋ?_\ʨʨ9q~b[VQe~wO.28|>ݽ~uZue^y]ue^Ӻ}?ue^y]ue^y*7_}~92|Z_=l1NkeTFedloklRQfo˛_[eTƾ~ُ7f?ǛxoRQQq>4/_{*2*\~i]e^y]ǗϧׯN.2˼.pZכ_޻|{.2˼.2/Ce//~]uOr矍߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQq>4/_{*2*\~i]e^y]ǗϧׯN.2˼.pZכ_޻|{.2˼.2/Ce//~]uOr矍߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.QQQ{m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?m?*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*22-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c22*2*2*2*2*2*b2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c*ʨʨʨʨʨʨ-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-c2-cʨʨʨ8s/elQq\O?~z.2˼.pߏWuYy]ue^y]e~8͏/w>߽^y]ue^y]u2_~p.̧uFVFeTFfo/~oƶ.QQ:|ɳO=}gO<{'Ϟ>yɳO=}gO<{'Ϟ>yɳO=}gO<{'Ϟ>yɳO=}gO<{'Ϟ>yɳO=}gO<{'Ϟ>yɳO=}gO<{'Ϟ>yɳO=}gO<{'Ϟ>yɳO=}gO<{'Ϟ>yOݹ2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2**Εs\yݽ~uZue^y]ue^Ӻ}?ue^y]ue^y*7_}~92|Z_=l1NkeTFedloklRQoߎ?xss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}ss}{s}sW~{Zʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨʨ\󫟾|o.././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././_4ޜYQQQ_?'?QQQ۹۫ӫˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋˋ?zuʨʨ9q~b[VQe~wO.28|>ݽ~uZue^y]ue^Ӻ}?ue^y]ue^y*7_}~92|Z_=l1NkeTFedloklRQ{?~gelQQQQQQQQQQQQQQQQAlu:uOݪ[uO%B.NrJ!Or> lyBD!mb <Ҵ-XZ^jc_nz%ɖ,V^{k9s|7c=!B"D!B"D!B"D!B"D!B"D!B"D!B{…go})RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJSJ]wϝ⌫6(B"Z񋯼2>9\OO)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)R>tN䋯|E!BD+:ϧRSSJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)Rߧڛ7_p>E!m{(BV>;{6w;WWarqwsx >x w;&>p}x ޹Õ{M].x yW7!}{̬w].xyKQ*xk߬]pM!BSݹ,/BԿ+8cfǥRJ)RJ9RNNNNNNr9RJ)g>wӟgoݼq[7oܺyn޸uƭ7nݼq[7oܺyn޸uƭ7nݼq[7oܺyn޸uƭ7nݼq[7oܺyn޸uƭ7nݼq[7oܺyn޸uƭ?ӟy???99nfvS7_ROD"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DA^~qy]3;>>.RJ)RJ)RJ)RJ)RJ)RJ)RJ)qs.RJ)%\J)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)O>QDOGmkfRJ)RJ)RJ)RJ)288K)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)bv4ѝ!B"o瞽uS'''ǥRJ)RJ)RJ)RJ)RJ)RJ)RJ)RJqqq9RJ)RJ)J)9s)%\J)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)Ο=rN"ږά"DhE곳Ǫa|.xsu+w7w].xnB߻Y9 w].x]-U.xY߻x B"s7Y ^"W=q̎K)RJ9lffv||< 0 8s63gf݃`:XV`:XV`:XV`:XV`:XV`:XV`:XV`:XV`uwq{w`Wms?{̶n\{kC(B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"/./>y̎K)RJ)RJ)RJ)RJ)RJ)RJ)RJ)'fffc.33RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)._|[ROD"D;j?$3+RJ)RJ)RJ)RJ)fffffffDZRJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)R,'>.D"D vxg_{̎K)RJ)RJ)RJ)RJ)RJ)RJ)RJ)̬RJ)RJ)0J)fVJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)=qD!m{(BV>;{6w;WWarqwsx >x w;&>p}y̎K)RJ)RJ)RJ)RJ)RJ)RJ)RJ˗_?<7"D bw~;dfRJ)RJ)RJ)s)%3\zS7l)1RvH) 㘷CJ)RJ)q̥ð-RJ)aK8RRJ)RJ)RJ)RJ)s6E!go]RJ)RJ)RJ)RJ)RJ)RJ)RJ)9RJ۶>+W^z??=99q; ]o{vҗt/}K)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)ٹ'μ""D-wϝYݽEъggU&].xj; W.n5w].x]݄w2js w]λZ佃W/uG] ~w94ADL}w7o\3DRګ{⌙mۜs9sL&˿/޾}=oo󹙙Y]W7rrrr||<88888888888888888888888xbYw8 ۓۯglݸ׆Q"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"Dq;_\^ܽ`f6s9s9s9s9s9s9s6.uwߏ_ jfGmkffff'hffV\NʘhfvrRr9s9s9s9s9s9s9v5KO>wsC(B"vG?#r9s9s9s)%3}}׷o}{R۸53333;)9g33333333333+9Nbfv<9qXx9s9s9s9s9f"Dx;<3ןjf6s9s9s9s9s9s9snfv̙=]O|$dffff~8֭[''' `ffs9s9s9s9s9s9s9s9vkf8 w"DѶ=wfuNwD!BD+zW=Vmw0\9 wwuG~̪a.x w;j_w& N"D1ݝۯ߼qb"DqHkr3fns8d2_Uy٫?m67bf9s9s9s9s9s9s9s9s9s9s9s98nsq?w}Ͽ\rޚ/gl3qׯ '"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D vH/{̶m9s9s9s9s9s9s9lfz_r%3ݽfOO|?g;>/_Rޯ=;I9s9s9s9s9s9s9nғܐz"!QOH4s9s9s90 f|W~W~>?3+]?p_W~~W>S~_~ONNūKo>9ۉ?ffffffS}ŋ_~~__駟>99n9s9s9s9s9s9s9syݚٹ'μ""D-wϝYݽEъggU&].xj; W.n5w].x]݄w2js w]λZ佃W/uG] ~w94ADL}w7o\3DRګ{⌙ p|||rrr_vnݺ;we3n88888888888888888888888vH'f|ffWI9/g1]vkC(B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"/./^0aqqqqqqqqqqqqq7?]? N>{4K/|=x3?ߺKåyf_7 qqqqqqqqqqqqqq.=3ROD"D;j?'''8888888cOO/_?/L>O쓧/|gM~S?;۷ӫ?yߛQ9_w>gW7'xqqqqqqq;'>.D"D vxg?ŭaqqqqqqqqqqqqqao^{3ЏWO/O3G>gy櫿\Zr888888888888880 fv_Z.R߉!BDrܙ;}Q]}vX9lwp^|.x wM{w|y!36].x KE;8~RwԺ 7{/3;ADAwwn~53A!ʹ'Θv={ԩS/8ysys7~7n߾݊ׯ^2q1cxۯg,dfׯ=u!D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!BDw/v9s9s9s9s9s9s9hf7?~?gv3o>g;{Gy]>˯gIfxs9s9s9s9s9s9syݚ٥'w{sC(B"vG?#q9s9s9sN)٣>7m~cm|7~9}~4ז׿,ǿ~'ff=fϜy^x}?oͬs9s9s98f{"Dx;<׮v9s9s9s9s9s9s9眇akf/^/oo淾if7g̬~oq9s9s9s9s9s9s9s9vkfxD!m{(BV>;{6w;WWarqwsx >x w;&>p}{aaaaaaaaaaaaaR{ 8f_u=w}?w>s3??Y~aaaaaaaaaaaaa3{sC(B"vG?qaaaaaaa8::27~_k3;{?O}|w~x?f[[?s?{rR>{so5=5r|b/d_o;oy#tgtvu0 0 0 0 0 0 0 0䜫jDž(BD<?̵W̬aaaaaaaaaaaaaa>ɝ0RRJo{[7;f}ww#𶷽o)n0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Cwfv""D-wϝYݽEъggU&].xj; W.n5w].x]݄w2js w]λZ佃W/uG] ~w94ADL}w7o\3DL틯}|ff@<:jV 7/ſw GGmۊɯگW+kk^zź:3#qtGGQ{tGGQ{tGGQ{tGGQ{tGGQ{tGGQ{tGGQ{tGG-?YOY_zblO߸>"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!Ð^~i{mնj[VmU۪mնj[VmU۪mնwo~I_o﫿efc|ⲙG)>'?O>׿_Qيb۪mնj[VmU۪mնj[VmU۪mD >̭!D!BӟuQ۪mնj[VmU*y?}?sޚ}?Kfffϝoe>я~0kמz;af)fO=o[}?_7?ox:՝wܘmx||LƶU۪mնj[VmĔ?O|\"DA}z"!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"Czsfc#QD%J(QD%J(QbJoo6;17xs3w_}[oͯ3;w~{+?od QD%J(QD%J(QD r矹5"D bw~]I(QD%Jl`f?Yp}g>?sٟ5ׯ4GЏ-oy7W;O c¥O}[7g%J(QD%}E!gye3Cl$J(QD%J(QD%J1sνMoz-oyo|rrr-M~UCGW~_>y|9FD%J(QD%J(QD@,%?R߉!BDrܙ;}Q]}vX9lwp^|.x wM{w|y!36].x KE;8~RwԺ 7{/3;ADAwwn~53AĔ׾̬iB+?|W~_K=yO$blJ=WWWSWJ)16%J(QD%J(QD%J(QD%J(QD162|~|Mn^r\)%_Jrɧo\ROD"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"DAaH/=NJ<HD"D$"HD"D$"HDƹDpwDdupovDG B D$"HD"D$"HD"D$"x|?{kH=EA;ZD$"HD"D$b| [WŨ^awh16@tfl9G]{Ć|& 1R}׺7nV^mD$"HD"@<:jW{E!瞹zIi'"HD"D$"HD"D$"HDf};oܽuyv'b zDD$"HD"D$"HD"D$bx|g{yB;"Dh[;{;"!6M]v\kw]λ a#?df0x ww{ׯ^ZWW]f}sf'h"o޸ff1x"R_yϜxwG/Oďo_M M ӟ~;O?>ZkW8AlAlAlAlAlAlAlAl؄RI}CM/?ѻ:Ǘ/>}z"!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"CK 撽w1616161616161616161616161616161616161616$4M &6M"жj[!616M4M"mϞy[C(B"vGݩD&6@bi@Vm+ib"؀hbcC"ƦiBQZ16i&16MlbضcMMMMMMMMMMMۻ Q"x/圽w16161616161616161616161616161616161616Mlbl$Vm+Ml&l[ M"жbӄv;̦/!B3w#"Zѻjs \]m&].x K>=CfVmw].x yWwppuu 5o.^8gv&!~kf!)}'LٻiϿj.ccO՝7kfشR+b+b+b+b+b+b+b+b+b+b+b+b+b+b+b+b+@l(xګ_x՛'w!D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!BD^p8uC!|>C!|>C!|>C!|>C!|>C!|>C!|>]] C:?LJ=EA;Uu؄C!|>C!|>C!|>C!|>C!|>C!|>C!|>C!|;o|jB!B"ng\8ǮB!|>C!|>C!|>C!|>C!|>C!|>C!|>C!|UJl:yR߉!BDrܙ;}Q]}vX9lwp^|.x wM{w|y!36].x KE;8~RwԺ 7{/3;ADAwwn~53AĔ׾gq*kM8j| >opԊs5W=uK.{˻/{˻/{˻/{˻/{˻/{˻/{˻/{˻/{˻/{˻矺lG~a0O^xׇQ"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"Dq_z¹'C9M=3{gRQDO?9\7{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W{W#6wnS;"Dq={ғPmjwGyO^~qN"ږά"DhE곳Ǫa|.xsu+w7w].xnB߻Y9 w].x]-U.xY߻x B"s7Y ^"ԿWx3qUmw;su]W;{s몮+ι{G @ @ @ @ @IM?C(B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"8 /t̬6jsXmf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]m7;:sϦ#"Owu96j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6js9\7y=I"!BCZ< p}os6f]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mf]mps>\?_Z!B3w#"Zѻjs \]m&].x K>=CfVmw].x yWwppuu 5o.^8gv&!~kf!W>R9\ruՕ+WW\]ruՕ+WW\]rvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv몮뎞p^ROD"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!;jW{g>3_b+)QD%J(QD%J(QD%J(QD%J(QD%J(QD%J(QD%J(RD+/ۯQ+"D Q^{+w(BD%J(QD%J(QD%J(QD%J(QD%J(QD%J(QD%J(QVtuu7#6"DA?3}m%BD%J(QD%J(QD%J(QD%J(QD%J(QD%J(QD%J(QH+_8Z!BDrܙ;}Q]}vX9lwp^|.x wM{w|y!36].x KE;8~RwԺ 7{/3;ADAwwn~53Aľ^>{lCpՕ+WW\]ruՕ+WW\]ruՕ+WW\]ruՕ+WW\]ruՕ+WW\]ruՕ+WW\]ruՕ+WW\]ruՕ+WW\]ruꪮ6Dx>"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B[/-?~bt2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:y|f:Y.戍"D!bs>y<6Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:y3=>>yD!B" ?~bt2Nfl:M'd6̦t2Nfl:M'd6̦t2Nf!8YIDATl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:M'd6̦t2Nfl:y̦_\2F"DѶ=wfuNwD!BD+zW=Vmw0\9 wwuG~̪a.x w;j_w& N"D1ݝۯ߼qb"Dhݥ'/\|`_W{jo_W{jo_W{jo_W{jo_W{jo_W{jo_W{jo_W{jo{x"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"Kr1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_._&x"D!B ڼ/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r+yGD "D!B"/\,b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗r1_.|/b\̗/,޸z A"Dh[;{;"!6M]v\kw]λ a#?df0x ww{ׯ^ZWW]f}sf'h"o޸ff1x"Dh{~pⓟ'vN?9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9}jӧvN9;O=^8Ɨ_'"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"6]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥ;j%B"D!BD+].]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wH"D!BQ.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wRߥK}.]wR!B"D-wϝYݽEъggU&].xj; W.n5w].x]݄w2js w]λZ佃W/uG] ~w94ADL}w7o\3"DhE"wD!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!BD$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D!B"D!F"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"D!B"D "HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"D$"HD"!B"Dh[;{;"!6M]v\kw]λ a#?df0x ww{ׯ^ZWW]f}sf'h"o޸ff1x"D!B%J(QD%J(QD%J(QD%J(QD%J(QD%J(QD%J(QD%J(QVlE"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!BmsgVw}GD"Dwc >x ޹Õ{M].x yW7!}{̬w].xyKQ*xk߬]pM!BSݹ,/B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B3w#"Zѻjs \]m&].x K>=CfVmw].x yWwppuu 5o.^8gv&!~,/B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D!B"D?Axۃ; z F~ =4lZ=^ `ΒyEftNfDF܌HV_)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)L<쭅 S1+_|&a&o_~&,L$L$LT??㟿^~&a&a&a& ~uP-$L߄oC߿~b߿0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S05_kaz0}`L/߄Ij<߾ 0 0 01o"O?߿_III_ǿ?T0 70)neJL????????????????????????????????????????????????Co]困0 0Q-|7aa&a&a&M$0 0 0 01Uj&a&~0)La__qy籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y籟~y/0)LS7aa&aZ?o$L$L$LLH>~O?a&a&a&ab0_"LM67)La S>0awݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}wݧ>}O}w_0=0 S]困0 0Q-|7aa&a&a&M$0 0 0 01Uj&a&~0)LaZmx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omx[-omh-Z)La S1+_|&a&o_~&,L$L$LT??㟿^~&a&a&a& ~uP-$L߄oC߿~0)Lajzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmzަmz0)La S1+_|&a&o_~&,L$L$LT??㟿^~&a&a&a& ~uP-$L߄oC߿~0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0}`L/߄Ij<߾ 0 0 01o"O?߿_III_ǿ?T0 70)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)LS7aa&aZ?o$L$L$LLH>~O?a&a&a&ab0_"LM60)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)L?ߕ_ 0 y/}&a&a&abD˟~߿/_0 0 0 So: ao_?La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S0)La S[困0 0Q-|7aa&a&a&M$0 0 0 01Uj&a&L˯Zx o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x o-[x oe_|&,L$LT~/_MXII~/~?|"L$L$L$LLf<5ZI&˿eߖm]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[m]ue[[u/_0 0 y/}&a&a&abD˟~߿/_0 0 0 So: a&aoo) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4Li0aJÔ) S4/o߄IIj<߾ 0 0 01o"O?߿_III_ǿ?T0 0 0-&L$L$LDo߄III7|?ᇟ~/$L$L$LTaۯ_EII*BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T BP-T B0Ua&a&a&o_~&,L$L$LT??㟿^~&a&a&a& ~uP-$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$L$LDo߄III7|?ᇟ~/$L$L$LTaۯ_EIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII_~훰0 0 0 S&_?ӏ{EIII*L_<5ܩ|eL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeL2UT*SeLR-~_~&,L$L$LT??㟿^~&a&a&a&z_'a 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 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 0 0˵ǟZo$L$L$LLH>~O?a&a&a&a&a/|||_&$L$L$LT??㟿^~&a&a&a&a&y÷|wi$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$r^GLJgO$I$I$I$I$I$I$I$I$I$I$I$IgO$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iy}֛oΓ=M$I$I$I$I·gó $I$I$I$I$I$I$ɕ?-g$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$W}чok$r~Oo|F$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I>|7^{ۏϞ&I$I$I$Ir_=<I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iy}֛oΓ=M$I$I$Id?G?o'_?ѿqz|ԟ/}鳯ֳgGOއ~/_?/K|3·$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I>|7^{ۏϞ&I$I$I$Iz|||||o_kxܿ?O_ݿ7OoU_o>пݿo|ׯ WܟI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iy}֛oΓ=M$I$I9+L}?g'_?|?7{/믾7w[??K???}_$W^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^yW^ye$I$Iy}֛oΓ=M$I$I}ŋּ|\ι~O_?YWS~y??;?zS;|~O}_ozO?_?'_K~ы9+?Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3kfͬ5f̚Y3WޗW&I$Iy}֛oΓ=M$I$<< /yw}>;_oc?իϟ;=گO=+ַ{~xog?S'ğ}||;?ſ}9'?gv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱oǾv۱o?oǾ}_Ove$I$r^GLJgO$I$I}}'ɚ~gO w<_-gO[og} ʿoǿGg~w_{[W+·5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk5{ͽ^sk{_ѿL$IDΫ>÷|wi$I$r~?!I|O _Xss-8ԟ/^#w;oÚYo7uq|/?|5_kw~Џ~u'g)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)r)'ë⳧_2I$I>|7^{ۏϞ&I$I"gk}'_s·$IO}SD쳯Oy~~||W+|vg/u>w~%go?>>>~Ͼo I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ?/Ϟ~ze$Iy}֛oΓ=M$IDOI$Ϟ&I|xgOLI<>{!I<}ٳg<<{$I糧Ϟ>==M$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I·o|?{I$I"U[o;O~|||x4I$I9?[O>ʗ/s>$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?gO?2I$I>|7^{ۏϞ&I$I"gk}'_s·$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$|L|IDATI$I$I$I8_W&I$W}чok^x$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ 7>K_ܟ=$I$?7x'o?>>><{$I$'|9$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$|^$I$r^GLJgO$I$>䓯|x9C$I"'yr'yr'yr'yr'yr'yr'yr')g$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$/}q+$IDΫ>÷|wi$I$r~֧|//_<|H$Iyb^=Wy|^=Wy|^=Wy|^=Wy|^=Wy|^=Wy|^=Ws%I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?gO?2I$I>|7^{ۏϞ&I$I"gk}'_s·$IO|??ן^O{{?y'ן^O{{?y'ן^O{{?y'O{{s99AAAAAAAAAAAAA3I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I/Ϟ~ze$Iy}֛oΓ=M$IDOI?ſ?}w?x}w?x}w?x}w?x}w?x}w?x}?W_xŋ/^|/_x/^xŋ/^|/_x/^xŋ/^|/_x/^xŋ/}ə$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ 7>K_ܟ=$I$?7x'o?>>><{$I$'|9gϞoO g_/| _}>W}Ͼg_/|'&; <[{۽k)I9Ob;ڬco8UuiCUk/B6b":,RH0G Ѝ@χL9s[?O|w;oη~z[?O|w;o;8k_x^z^|_x^z^|_x^z^|_x^z^|_x^z^|_x^z^|_x߽;$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ?wn2I$I|ׯ=G>Wݹ$I$[ggv:|$wΝ;>?/}뗾K_/җ~__/}뗾K_/җ~_/=?y7~oɗ~__/}뗾K_/?ڿʋW.r+W/r+W/r+W/r+W/r+W/r+W/r+W/r+W/r+W/r+W/r+W/r+W/r+W/z+?޽;$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ?wn2I$I|ׯ=G>Wݹ$I$[ggv:|$w?~;6g9mnsvۜ6g9mnsvvgp>>:nhwvۜ6g߼sa<a<a<a<a<a<a<a<a<a<a<a<a<~|{;?$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iwܾ5d$IP7_{+|>vqqs;I$I9?.=t.I}x]\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\......]?b>w>:yg7ݼvvkg7ݼvvkg7ݼvvkg7߼q}޵޻~7ݼ~vkg7ݼ~v`ԓ;y};$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ܿ3O߹}k$I$n^W_}bwv$I$r~o]zx][ON<|Ç?O>>|Ç>|Ç>xf~_<ߝ_\\ܿÇ>|᧟~:}WƇg7><ٍn|xvóƇg7><ٍ7}xvCv>yƵn|xvóvw>8yc;$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ܿ3O߹}k$I$n^W_}bwv$I$r~o]zx]֭?>|O>|||/..~_/~_o;?Ӈ>xÇɯ7n\ynn\n޸vƵ7ݼqk7o\y{??{v7ݼqk7o\yڍܹ}G?x捻w$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I݃{;o $I$r>#{]\\N$IDK?;qK޺'Ot:=Ow~OO>㋋oj;oƋ/;;˿~g~q;ή_\ه?xn\n\k[//}K_җ~K_ҟsy7p7p}᏾wI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ?wn2I$I|ׯ=G>Wݹ$I$[ggv:|$woݺ4|O׮?'|O>x~W/|ʕ[nv>`ټ+<<ܻw|x|;7޻{Û?7wX,~ӟ~[o}p޻{ٍ~n޸{wH$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I8=gs֐I$I"Cݼ~ѯ<ǿ$I$I:;$;x֭'.O'O㽋g~4ᥟ|K_7oݽ{Ν;믿 /<o?vw>}xݻo|gg7v_?g̟/{}{~y睛7oW^y??s??O_ݾ;o_{ه7{wI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ?wn2I$I|ׯ=G>Wݹ$I$[ggv:|$woOݻ7M4Mxqqs?s>i:O?sW\v횪~Gj?{ _;3޽?Ͼsw{g7wʕ}{7o~?^omwyͿ7_+W_q0 wyw_{^xWտk;o7o\wI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ?wn2I$I|ׯ=G>Wݹ$I$[ggv:|$w?/wa:ޛ=|O?ߺt^\\7/~gyz뭛7o޺uƍo / _o͟~zx:7sw{wo>C.?׾W{zͷz_t׾__uv㝷|goݸ7oܽ;$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ܿ3O߹}k$I$n^W_}bwv$I$r~o]zx]裏ٷ7a|rqqKKO...Ə|{_~w~?K/t_ʕ+/?Oݿw_ 7_{ӽ~o}wo[fэ/Zwg۷|Û~˗/wQw|pK.}_o߾uvgomO7o$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I݃{;o $I$r>#{]\\N$IDK?;qK}o>a?_\?aW?^x?s=SO__x:޻w8ofy}ymy?OZy}{O~w|饗._w7r|o/7o_{WXoͻCI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ ?wn2I$I|ׯ=G>Wݹ$I$[ggv:|$w>>ǻ/kk>{aO=c>O?~wW?887X~mY_o_u]n]goyѿ++K.?}饗^y??^,=SO=ׯn^|xvP$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I=۷L$I9k~=...vwn'I$I"٥矝8%ݼGa~Ëxxۏn/7~~o}_K//dwa?7ݼ~~ҿzǟ'/޽_yw~ˏ ;;_'??3G??go~׮}·g7%I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ܿ3O߹}k$I$n^W_}bwv$I$r~o]zx] yq{88-pa8q:_ܟ/~~~O>>x8~~wyW/_r?_^\?\-ׯ^yʫo?++3?[[__vڕWׯ]y7Xݡ$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I݃{;o $I$r>#{]\\N$IDK?;qK!oO|Ӈƻa?a?a?a?a?a?~{؏}w}7~xuwO~<~<{xw+_}ׯ]~c}ko~ׯ^~嫗_y/oG}Go/޿vڕW^z_vnJ$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I8=gs֐I$I"Cݼ~ѯ<ǿ$I$I:;$폞?}`;a?a?a?a?a?a?a?wxoӋӇq?=~<~<{xw|{}׮ڕW^kW^y+]y+v׮ڕW^W_zھo.?/| __?x?zk~~׮ڕW^ol~ݡ$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I݃{;o $I$r>#{]\\N$IDK?;qK!'ݻCC5~<~<~<{xwx}_y+|՗W_W^}ʫ/_y+|՗W_~W.o7WϾGy뫯ʫ/_y+|՗/!9Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvy$Ip{ps<}!$ID·yڣ_ysݝI$Iauvvg=wI2G?p؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏W7뫛f}uY_ݬnW7뫛f}kׯ]ys[o7ڮ7_Yvyf}uY_ݼ~77O>r~Oqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt48Mi:Nqt4{wԓO<O=SO>ԓO<O=SO>ԓO<O~?G?x'x'z򉧞|'x'~'~o?ß b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.VjX-b\rZ.^yyuvݡ$I݃{;o $I$r>#{]\\N$IDK?;qK!?w~<~<~<~<~<~<~<~<~<~<~<~<~<~<~|w~s[o֛oo[o֛oo[o֛oo[o֛oo[o֛oo[o֛oo[o֛ooٛolvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7fݬvnzYo7W􏮽ݡ$Iwܾ5d$IP7_{+|>vqqs;I$I9?.=t.Iѭgݡ~<~<~<~<~<~<~<~<~<~<~<~<~<~<~Ӈ<6ϟg<6ϟg<6ϟg<6ϟg<6ϟg<6ϟg<6ϟg<g4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|<4ϧy>iO|:͟|oq%C&I=۷L$I9k~=...vwn'I$I"٥矝8%ɐw>S?8ƻa?a?a?a?a?a?a?a?a?a?a?a?a?a?xwơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhơqhw!?ݹ=d$ܿ3O߹}k$I$n^W_}bwv$I$r~o]zx] y[<Ë8t؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏x؏'ߣ$=W䬕sNrl+k4햐 $$e 8 C66VE6`[m$USӭVJui޺63=]{ߪ;&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 VK8<FVF+5>tGGg[hhe2ZloqmW}ם"rx02ZVF+h՘vw;I]hU}|!Q&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L/=v`Tm2ZYnJVF+hej\u]u]whe2ZVF+Vc&W&uƇF+UiHFi&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0bj؉ÃQiheRCwttfu0+6ZVF+Jqivw)"#he2ZVZhow^ԕV{˧"a&0-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK$X&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L X-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aK-aKؒ L`Ic'FF+Jљh4he2ZVF+ƥ1;[w~UwuVF+he2Zi5fN{eRWj|h2ZF-jd L`P1ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;f 2 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 ;;w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;ys9w;yw޹ L`P1i5^z4he2Z;:::FVF+hո4fg{oÃhe2ZVF+LiLJVFS 0 L`B]v;O>v;Niw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nng][vVkݵjwm][vVkݵjwm][vVkݵjv;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;nvvNiw;ݵng~b{y:,&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`N'_xzɧVkݵjwm][vVkݵjwm][vVkݵjwm][vVkݵjwm][vVkݵjwm][vVkݵjwm][vVkݵjwm][vVkݵjwm][vVkݵjwm][vVkݵjwm][vVkkja]1&TLZ;qx0*6ZVj|莎,F{F+he2Zi5.޺ۮ;E`d2ZVF+J1v+RCѪ4`oTC$4L`v:w/<РW_/ zŰaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(ol_a7~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~1~.^xٳ'N{`K&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`2xA͗^XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX?ҋ[8y&X&0 VNJVF+3˭^ihe2ZVZKcvN9<VF+hejD{ʤhe*>[>( N[OnNj:5JW ŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠW zŠ_ zū Rd2'z:z:z:z:z:z:z:z:z:z:'z24W^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1^1~oʕsNl&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`[z^xιI]M&tRO&'u=I]OzRד'u=I]OzRד'u=ɤL餞N餞N餞N餞LI]OzRד'u=I]OzRד'u=I]OzRדI=I=I=I=ԓI=ԓ'u=I]OzRד'u=I]OzRד'z:'u5+y`&TLZ;qx0*6ZVj|莎,F{F+he2Zi5.޺ۮ;E`d2ZVF+J1v+RCѪ4`oTC$4L`v:w.on>NÃS>j.Vj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6<#;[&0 L`&0 L`&0bڻl5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6ZFh5flVj6Zͥ=l:봟L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 L`&0 sgI],,,,,,,,,,Y&0 L`` ` ` ` ` ` ` ` ` 2 L`&0,,,,,,,,,,2 L9}ul:!X&0 VNJVF+3˭^ihe2ZVZKcvN9<VF+hejD{ʤhe*>[>( NǙtvYSMk431 L`&0 L`&0 L`WV^x9+?|ĕ5>Ws%&0 L`B]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]q]1&0 L`l{=7L`*b*b*b*b*b*&&0 L`b*b*b*b*b* L`&0b*b*b*b*b*"bliDng҅tBL`*&K8<FVF+5>tGGg[hhe2ZloqmW}ם"rx02ZVF+h՘vw;I]hU}|!Q&0 ;;[WLܷPWB!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!!B!B!B!B!BJ9|½ L`&0 L`&0 L`J_7s!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!BއB!B!B!B!B{/"O,6_,Ws%&0 L\ڹsyk孝[;v.o\ڹsyk孝[;v.o\ڹsyk孝[;v.o\ڹsyk孝[;v.o\ڹsyk孝[;v.o\ڹsyk孝[{WvJ&0 L`l{=7L`<}`qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qaxi`&0 LyG>t}`qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa䣏  L`P1awwqa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa~qa_x 4"SKf 2 L/=v`Tm2ZYnJVF+hej\u]u]whe2ZVF+Vc&W&uƇF+UiHFi&tRlon<^1ݿpo]W"s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9RJ9s9s9s9s9Rʒݺb&0 L`&0 L`&0 L(^\O)s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s1k V"R9s9s9s9C9ӭ+Ws%&0 /j5~Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z:Z^Nj&0 L``Ks>ɤ&؊]ٝft6fl6fl6fl6fl6fl:fWvw} L`*_XIl6Nt6fl6fl6fl6fl6Mgl6{Wyo^WLL`vfebft6fl6fl6fl6fl6fl6ͦ7^:ȉ+UŶ"SKf 2 L/=v`Tm2ZYnJVF+hej\u]u]whe2ZVF+Vc&W&uƇF+UiHFi&tRlon<^1ݿpo]U"RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)^L)RJ)RJ)RJ)RJ)RJ)|=Wv늙&0 L`&0 L`&04zqa>R1B!B!ƘRJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ) " zZE$ƘRJ)RJ)RJ)RJ)yEdtkK;l&0 L`:W.Zi5jXVcZk5jXVcZk5jXVcZk5jXVcZk5jXVcZk5jXQn}ɹ#ؒ L``Ks>ɤ&tr/RJ)RJ)RJ)RJ)%Gz L``KsHDDDDDDDDDD$gIIREDDDDDDDDDDDz/j,ͦe&usч !RJ)RJ)O}jh6-gl]0N L`BŤxhhƇr`Wm2ZVF+VҘ;nSDFF+he2Z3n2+5>4ZJO5D2J&0`zg{tD$RJ)RJ)B!BH)c)RJ)R !SJ)RJ)B!ƔRJ)RJ)RJ)RJ)c!cL)c)RJ)cL)B!B1RJ)RJ)/RJ)RJ)cL)RJ)RJ)so+uL`&0`&0 L`&04zqa>Rc1c1SJ)RJ)RJ)B)RJ)RJ)RJ)RJ)RJ)RJ"RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)(" ZE$RJ)b1ƔRJ)RJ)yEdtkJ;l&0 L+^{LM&jl2Zi5jl2ZVZVF+he2Zi5jl2ZVZVF+he2Zi5jl2ZVZVZptDĖ L``Ks>ɤ-g 1"RJ)HJ)$"!X&0 L(^w>RJ)RJ)c"""""ER)ƔRJ)c9_#=8N L֥= "!sJIDDDDDDDRJ)%I)C9~thV->ٺta6,Ic'FF+Jљh4he2ZVF+ƥ1;[w~UwuVF+he2Zi5fN{eRWj|h2ZF-jd L`N' UUH1c1c""""""1Fc1c1SJ1FH1c1c1c1|"""""1FcJ)(""ccJ)c1oR1c!}1c1c)ٿ[W&0 L`B]lJ&0 L`&F/.̇DW7w篾oKϷ\,""""""""c1c1c1(")c1c1c1c1c1C,c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1cAD^H1c !H9c1c9Y>}jK;l&0 L+^={O|~_W~W>%އDGϞ;rGh|֥ `&TLZ;qx0*6ZVj|莎,F{F+he2Zi5.޺ۮ;E`d2ZVF+J1v+RCѪ4`oTC$4L`v:wN7_*"1c1c1<)ݔR!cLQ.^GBQD+YY9Ba$b1:玎b1c1&vhw.LRJ;;;)%}Jikkc|VVVΜ9K/1c1p~ŘR1cs='"c1c1gn]1&0bjui: L`&0 L(^w޹#_뿿?wՃL IDAT߹_ׇ>x᫯ GWB1l:Ng`09c1t:ΎB1Fl6Mөs^D/x 1"f>cѻt:μ1Flftvtb1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1x/" zZE$B!ȹs窪}1ctΉr ϗFw+9ؒ L`PWySýKrҶֺ4!2ZVF)_xiKkmXk]}e_{mFVF+Ɣp\ZiKl_xG0Jkح^{RDl&0=wϞLjr6<`^s5|;?~Ǐ?~Ǐ?~;ηmHDb"bmy=&0 ы 1ƔRJ)bL"g'}??in5$cJ)("x㑇M'&Lj{҉ё??>77o׾&""7~\^D~'[hV->ٺta6,Ic'FF+Jљh4he2ZVF+ƥ1;[w~UwuVF+he2Zi5fN{eRWj|h2ZF-jd L`N' U"c1c9lO?[>~~wN1ss?_qYyG'~C|8b"""1ƔR!?_oȷ}c"b|#=CЇ>|+9磣c1c~{EĖ L`&0 ы;w$"^XO};|W{_W?z,">fHD򖷈c""""")EDDDDDD$g޺I! 1H>c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c12i5CQDo^uU9b1F眈,>ѝwd&Y|`л/<~Jz@b3NuVW:OuVcZk+/<^=>zaJr|qS:+S;Jc5̕gVڧ[/SE94\o:d{mPZڭKkO-5&޻Ν}sI [Φ"Bxwoooooo~箿h$"!){Z&0 L(^w>c1FOGo~Go~տҿ[q:)B"?`I]mo]:"?::~o}//ow#""R;?~'> qyEGϞ;rGh|֥ `&TLZ;qx0*6ZVj|莎,F{F+he2Zi5.޺ۮ;E`d2ZVF+J1v+RCѪ4`oTC$4L`v:wN7_s!B!s־7}NDipGYd|w?0~&1 Þ)tc|'xt:HDȫ?Z|ӟ"я~tiiikkEDDDDDB1B!B8b1RF>?#]wwݜ>B!gn]1&,?{E22 L`&F/.̟۟|/ELQt_{GpxWt^w>}QDdz_~CWvY|{r1~'zs>qroO$"o\~ϵom|sw]~W?kǛ"ō?ЇnoݫDr>B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!BދpJ^D/p >ooo6B!8DdujK;l&0 L+^={<ooNّ̅7?}OD/Ld8""{|;'EDDө ]ymGr',""~SX?y߽ŝxc !B!c{y7կz"!B1ٿ[W&0 L ؊ID/}wG%&0 L(^\?rG" 9{t|wm7_/&"_7>}'_?oh2ȹw<.Ouս(Gt?m>pwDN5^o᷿?g:,ۏ-?ӣB!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!BދpJ>twnmmHK_BHD[_x4^L`3˽ÖU]=do8(+sv_04ZJO5D2J&0`zg{t{){1tc?cz׻?~"o~3c+geb-t]]GGI]Ν;w̙O~z̙'|HDs㍯:)96g_}SdN,˜o<#ƘO_w<d2{ι/w޻Mx{>0ݺb&0 L`֖FDݿ{?Ghݎ0 L`P0?Dʓ_Z>Ww?Ǘ~_~/_ojYes]MD]||oyϿIoq'=fS︶xq~g_|=?bp陧ȩ""u]{{{{{{{{{{{{{{{{{sG9J圝s{I)NS眈w{l6ӭ ϗFw+9ؒ L`PWzfyزמ|eЃ-늻7^{'NW̶4.~;:zʕ˳駞 +~z_]m*4[/WZu+;۳l3LUg`ʙSSi'NWl]][[j&0 L-wϝ;&M'..hrι_ 7p z׻rι{Z&0 L(^w>Y<ޏmo;6:vltرѱccFǎwwH$ګ[>( NӍ+-K3M뺪몮f"""9'뮯~:xES?;o|AG"3;fG}3|-\s5ozӛn喏~G|}D$">"r7_;㯿M7$"C]WIUU]Wu]UE}Ut:Qj{9H.\xc2뺪몮&ze L`[w4۹?ϻ+餆-&0 L(^wXDδO:u|˻.^mmo^{|oӟ§_{mcl~o~Wߜ85ט97哟C?oKIsԷ]bqi/~}?~WDrJGG>,"ei꺪몮꺪몮꺪몮꺪몮꺪몮꺪몮꺪몮꺪몮꺪몮꺪몮꺪몮bSkuttT\Յ os*K3u]uL"r ϗFu+9ؒ L`PWzfyز'7Ҥ]{׶v֞XWzO9[1&umꥧ:4dїzOt 4[.tVEĖ L``Ks>ɤ-gɃQUsG;_ 7077777777777777777777w 7\wu[޻⣣h=d-&F/;?N꺪&9ӳ'FW_=:vltرѱccFǎћtd:'uUqa8=Ʉ`I]mo]zE,.}{o|"[_k曯ڏ}c"Bfݧά>JE٧:[.̦eP1i5^z4he2Z;:::FVF+hո4fg{oÃhe2ZVF+LiLJVFS 0 L :xbҘtRU\U\U\U*"W^S?^DD}s"""҅}_?_9%O/,~f_Cl>w$"GGS⺮Ͽwo"{1"TWWuؿ[W&0 L-f+]w{{ew'[2 L`{ID;/w^Y|V^|?gO9G?j%"ŏ~CԱL%)87|97";nk?=~/K?3׊t:yW!"_+""PO,A{g<7:̓,/x+:|Sl\xX?:Sۛ3xGwOݸ84Wάi/Ϭ^RVjƋLhR3r҅ڪR3 L`l{=7԰l:yph62믿nKGG3fN'{We{'IUqE܌.q 8ɟ]}رѱccFǎ]}'~B}lZUL~xg 2 uO9RDᄋ-{}_ /p5|^{>1,RNO?vflV->ٺta6,Ic'FF+Jљh4he2ZVF+ƥ1;[w~UwuVF+he2Zi5fN{eRWj|h2ZF-jd L`N' b&fb&fLh ,yϵ׽?߻0oԯn?9F}O}GGG#f"}7y{?G_:VcYfb&f"^uW}{{dR~Wv늙&0`zww=yu]sli*&&0 L`Px<S?|cփ./|?XƉGfk{ 7>w'z(qnMx5?[ν./|w97^;kwmg5o}:^{="2՗Oq=ck&"9G}~DDkLLLLLLLLLLLLLLLLLLLLLLDYFtJɤ~晳|;o{&rj.=ҋϗFu+9ؒ L`PWzfyJ=DSW.޽0x|y ZWL_ٽlx'/:{BiK[݋NkiTN7ٶe ;=˧Norqi5O5~CcڭKk"bK&0 sgdRÖ&d{{믿n뮻 re{Z&0 L(^w+"l_6ѱccFo~-oO&{M GW&e&uuyS1F[}o{۾t:y箹暛ok}\2]WNf"SKf 2 L/=v`Tm2ZYnJVF+hej\u]u]whe2ZVF+Vc&W&uƇF+UiHFi&tRlon<^1ݿp֪D @@"vo֥w-Zkl۲L&֥{TO,PM"h[[5dZ\th<[FK.nm]ںt.3D `Ͽ%|W^K"̴ؿ[W&0 f2g>ګmi&0 L`Pxٟ?|[P_~ }SGGGxҥC]O'D3i uyqI"G]5.Wu]Z+"Z+"L+{egkkk[⪲Z֖Z+"D @"D @"D @"D @"D @"D ;N&/[,`@41_zҨN{;[2 L`W,^>OQcuih4hUǣѾֺhe2Z֥QR+UiFZR+he2ZFKKV1z<:kKVݺtR3 L`l{=7԰l:y\+֥sss7|M7tM7tM7tM7tM7tM7|{ޘԕ-MŴs{Z&0 L(^3l [h0awg;Mo-}7~'F*-aK[tR|чMje&uuy,KKNݷw~~g~4{O|9UiwΓٴ4Z$}ul:!X&0 VNJVF+3˭^ihe2ZVZKcvN9<VF+hejD{ʤhe*>[>( NӍ+UjL,` X2` X ت⺮꺪%`ke&Z[b,`-,`a XZ[ZتbrUuUUdmilUq]Wu]uUUlm X֖_z9W֖몪+.m X?+uL`+)N 2 L`&0 ы朿?җ>|Cݽ cltω૯2NJ[s]WZ+f֖ 몮YCGo?3-da Xf֖ꪮ+&km ,,,,` X,` X,` X,` X,` X,` Xr2 U]W֖**1x/BiT$&oEQTנhkРKO$KE`(  bO@w;`An"Ϣ>hBb>:{Pjtf>uOםY~Շo #(b4#(b4##0#0#(F#0ˆb,F#0ˆb,F#0‡tY0!y}(W><??m_׿_׿_׿O?OhƐ? CCǒJa)V?O??|{)V_˿y(Bx|+sNtw/?ϗ'zg\^~ߝI>{w#0#\Nw|_η,K;#0#0!}xϧ#r2ˆbeyb!y<}<=cݜPbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)VbX)637ňX)V+JR+ņbcOoOw׈X1bX)VbX)VbX)Vb$W/q4+JR+JR+JR+JR+JR+JR+JR+JR+JR+JR+JR+JR+JR+JR+JR+JR+J13~Fb,Jb4c1bX)VbD^/o^vPB<x߿[@d"D&2Ld"D&2Ld"D&2Ld"D&2Ld"D&2Ld"D&jY0!y}(W><'ȥX??~?އ?/ň< '9aD1~1?nJP#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0"_r0'#0#0#0ˆb8FC٬?_~|ٯ~竟׏ʩFaFaFaFȗryߵ^Ηtcߵ9}Nǟ_s1.zw'| 0t\Y}(F#0# r1;}o|;ֲ,0#0"/?>#o?|Oɋ?cOii>Ny8O(B܇r]Yi(?χD(B2 e0a(P C2 eJ"a(l>JC_o+y"E(BC %PBE(B?{=Bڿ~ᅧP"$y)6 s""BRRaP"g毦PlY֫~<ɇ|Gf~Y٬lo67ff~Y٬lo67ff~Y٬lo67ff~Y٬lo67ff~Y٬lo67ff~Y٬lo67,B<>׿ǐNu/>{zW/_zׯ^~_|W/_zׯ^~?髗/>8~/B| n/~g?}ׯ^~_|W/_zׯ^~_|W/Wٿ?W݇?ȇ?J}WFar^._|>FaF>7okYwFaFaC뗟OGdط>ɧBˇyx:{P?#rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'T9 9!'䄜rBN 9!'D??c(!yC{ϟxg/?{ً^<ϟxg/?{ً^<㻽e {w#0#\Nw|_η,K;#0#0!}xϧ#r2ˆbeyb!y<}<=毫߿?Ox8t!yy/r/r/r/r/r/r/r/r/y9aD1~>܍Wşٟ?z{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{?}OW?C ņbCPl(6 ņbCPl(6 ņbCP _|??pGppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppGw}u{#xz#o?|Oɋ9aD1~t?㟿~ǟmWj^m?߬Wj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬW7o֫j<6j<6j<6j<6j<6j<6jڬWjfڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m֫zY6fڬWj^m?߬y\٬_<ׯ_~~^}(!yC_6_<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j<6j~{#o?|Oɋ?J}WFar^._|>FaF>7okYwFaFaC뗟OGdط>ɧB<y:yt<}Fc~'.˓ yC\> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> |A> B{w#0#\Nw|_η,K;#0#0!}xϧ#r2ˆbeyb!yC?J}WFar^._|>FaF>7okYwFaFaC뗟OGdط>ɧӓ yC]',!yCFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiB y1"g8]1az|ٳPFaFAbv:weYRaFaD_~>}FQ/~!'##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#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˜@l#09]//>{w#0#\Nw|_η,K;#0#0!}xϧ#r2#1/W_VM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5uUSWM]5ue#09]//>{w#0#\Nw|_η,K;#0#0!}xϧ#r2#(b컶ھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkھkb,F#0#rg}0#0tx7|[˲3#0#҇_|8"'#0#(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b4#0#rg}0#0tx7|[˲3#0#҇_|8"'#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#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#0#0#09]//>{w#0#\Nw|_η,K;#0#0!뗟OGdFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaF gC1aFao~keI}gFaF9?~FaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFaFcNr~ٳPFaFAbv:weYRaFaDt<~9H=rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜rBN 9!'䄜 k/׻<X6 EdcMXKZkQ}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>}SߧO}>_<f`,,,,,,,k?[?_~ZXXXXXXXXXXr- kIDATךcaaaaaaaY;`JN Vr폿ׯƟׯ_?-,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,k?[?_~ZXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo_~0l%~kaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaY;`JN²v~oׯ_emk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[ֶmmk[;~?O?o9zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6zFom6z???-?O~_%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩTr*9JN%SɩO?gd1떞?%tEXtdate:create2015-12-03T10:28:20+00:00z>t%tEXtdate:modify2015-12-03T10:28:20+00:00'tEXtSoftwaregnome-screenshot>IENDB`idjc-0.8.16/doc/tutorials_jack_ports_demystified.html0000644000175000017500000001536712711160237017742 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Aims

To inform the reader of possible uses and reasons for the existence of the JACK ports generated by IDJC.

Context

The JACK audio connection kit homepage.

What is a JACK port?

It's a unidirectional (input or output) data connection point that can be for the transmission of time sensitive single channel audio or MIDI information.

An audio output port can be connected to multiple input ports and an input port can take connection from multiple output ports. When two ports are connected audio data passes from the output port to the input port. An input port will mix together the audio of all connected output ports. The audio routing of IDJC to the soundcard happens via JACK ports.

Ports available

In the IDJC main application window main menu under JACK Ports are the classifications referred to in the table below and in their submenu the ports concerned.

Channels

General purpose audio input channels e.g. for mic and aux connections.

Players

For player audio procesing or for injecting player audio from another application e.g. Mixxx.

The default audio routing is player output port to player input port.

plr_l is the left player, plr_r is the right, plr_i for the background tracks player, plr_e refers to the effects players.

VoIP

Voice over IP ports. See the VoIP tutorial for more info.

DSP

These ports are for routing the audio to a compressor/equalizer prior to going to the stream mix.

The DSP button on the main panel must be activated to use this feature.

Mix

The mixed audio.

This consists of the DJ mix and the stream mix.

Output

The output module which handles streaming and recording.

Misc

The MIDI port can be connected to ports of MIDI devices to use them to control IDJC.

The DJ alarm port produces an audible tone when playlists are about to end.

idjc-0.8.16/doc/style.css0000644000175000017500000000476512711160237012073 00000000000000 body{ margin:0; background-color:#444; font-family:verdana, sans; text-align:center; } html{ overflow-y:scroll; } h1.unshown{ display:none; font-size:10px; } h2{ font-size:25px; margin-top:8px; margin-bottom:14px; } h3{ font-size:22px; } h4{ font-size:17px; margin-top:13px; margin-bottom:13px; } h5{ font-size:13px; margin-top:11px; margin-bottom:11px; } p{ font-size:13px; margin-top:10px; margin-bottom:10px; } pre{ font-family:'courier new', monospace; font-size:12px; margin:0px 0px 0px 0px; padding:6px; border:1px inset; width:834px; overflow-x:auto; } pre.inset{ width:auto; } pre.reduced{ width:98%; } pre.big-code{ height:300px; overflow-y:auto; } strong{ white-space:nowrap; } ul{ font-size:13px; } ol{ font-size:13px; } li.content-page{ margin-bottom:10px; } br.division{ clear:both; } img.clickthrough{ border-style:hidden; margin-top:14px; } img.clickthrough-left{ border-style:hidden; float:left; margin-right:9px; margin-top:14px; } img.clickthrough-right{ border-style:hidden; float:right; margin-left:9px; margin-top:14px; } #logo-holder td { padding:0px; } div.centered-contents { margin:0 auto; text-align:center } #jackports-table{ border:1px solid; width:100%; } #jackports-table td{ border:1px solid #d3d3d3; } #dep-table{ border:2px solid black; font-size:12px; width:100%; } #dep-table th{ border:1px outset; } #dep-table td{ border:1px solid #d3d3d3; } #main-table{ margin-left:auto; margin-right:auto; margin-bottom:20px; background-color:#fff; text-align:left; } #main-table td{ vertical-align:top; } #left-sidebar{ background-color:#ccc; color:#222; padding-left:7px; } #left-sidebar h3{ margin-left:7px; margin-top:16px; margin-bottom:15px; } #sidebar-menu{ font-size:17px; padding-left:7px; margin-bottom:22px; list-style-type:none; } #sidebar-menu ul{ font-size:15px; padding-left:10px; margin:0; list-style-type:none; } #sidebar-menu li{ padding-top:4px; margin:0; } #sidebar-menu ul li{ padding-top:1px; padding-bottom:4px; margin:0; } #sidebar-menu a{ text-decoration:none; font-weight:normal; color:#C60; } #sidebar-menu a:hover{ text-decoration:none; font-weight:bold; color:#F70; } #right-table{ width:854px; padding-bottom:6px; } #top-titlebar{ background-color:#ccc; } #top-titlebar h2{ padding-left:10px; } #signature{ font-size:11px; } idjc-0.8.16/doc/code.html0000644000175000017500000001103112711160237012001 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Some relevant code modules

idjc-0.8.16/doc/Makefile.am0000644000175000017500000000104712711160237012243 00000000000000EXTRA_DIST=index.html tour.html tour_main.html tour_jingles.html tour_output.html tour_preferences.html install.html install_standard.html install_build.html install_first_run.html tutorials.html tutorials_icecast.html tutorials_shoutcast.html tutorials_voip.html tutorials_streaming_aac.html tutorials_jack_ports_demystified.html code.html code_idjcmon.html contact.html main-window.png jingles-window.png output-window.png prefs-general.png prefs-channels.png prefs-jack-ports.png prefs-bindings.png style.css style_ie.css favicon.png site-logo.png idjc-0.8.16/doc/install_first_run.html0000644000175000017500000002146712711160237014646 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

The purpose of this page

Some system configuration needs to be done in order to be able to run IDJC. Fortunately it only needs to be done once and full details follow.

Configuring your system for JACK Audio Connection Kit

No JACK means no IDJC

I'm going to be talking about JACK Audio Connection Kit (or JACK) from now on and its sound server, jackd. Forget IDJC exists for the moment as the information on this page applies to all applications that require JACK in order to function.

Manually running jackd to see what happens
$ jackd -d alsa
jackd 0.121.0
Copyright 2001-2009 Paul Davis, Stephane Letz, Jack O'Quinn, Torben Hohn and others.
jackd comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details


JACK is running in realtime mode, but you are not allowed to use realtime scheduling.
Please check your /etc/security/limits.conf for the following line
and correct/add it if necessary:

  @audio          -       rtprio          99

After applying these changes, please re-login in order for them to take effect.

You don't appear to have a sane system configuration. It is very likely that you
encounter xruns. Please apply all the above mentioned changes and start jack again!

What just happened here is jackd just failed to start because it runs realtime mode by default and your system as it is configured won't supply it. Realtime mode helps to ensure that the small and therefore low latency audio buffers are refilled without interruption. By choosing not to use realtime mode the buffer fills become more erratic making solid performance rely on using larger buffers that result in higher latency.

Let's get reconfiguring

Add the line mentioned above to the file also mentioned above.

  • Ubuntu

    $ sudo su -c 'echo "@audio   -   rtprio   99" >> /etc/security/limits.conf'
  • Debian

    $ su -c 'echo "@audio   -   rtprio   99" >> /etc/security/limits.conf'

The above change applies only to members of the audio group. Ensure your user account is a member.

$ sudo usermod -a -G audio $(whoami)

Log out of your desktop and log back in again for the new settings to take effect.

Let's try starting jackd one more time.

$ jackd -d alsa
jackd 0.121.0
Copyright 2001-2009 Paul Davis, Stephane Letz, Jack O'Quinn, Torben Hohn and others.
jackd comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details

JACK compiled with System V SHM support.
cannot lock down memory for jackd (Cannot allocate memory)
loading driver ..
creating alsa driver ... hw:0|hw:0|1024|2|48000|0|0|nomon|swmeter|-|32bit
control device hw:0
configuring for 48000Hz, period = 1024 frames (21.3 ms), buffer = 2 periods
ALSA: final selected sample format for capture: 16bit little-endian
ALSA: use 2 periods for capture
ALSA: final selected sample format for playback: 16bit little-endian
ALSA: use 2 periods for playback

This time it has successfully started so you can now run IDJC.

Making a simple JACK configuration file
$ echo "/usr/bin/jackd -d alsa -r 44100 -p 256" > ~/.jackdrc

This will ensure that when jackd is started on demand that it will do so with a sample rate equalling that of CD audio and therefore most likely your entire music collection.

Making JACK use a particular sound card

It's a two step process of finding the names of all the sound cards and specifying which one to use to jackd.

$ cat /proc/asound/cards
 0 [Revolution71   ]: ICE1724 - M Audio Revolution-7.1
                      M Audio Revolution-7.1 at 0xd000, irq 19
 1 [nanoKONTROL    ]: USB-Audio - nanoKONTROL
                      KORG INC. nanoKONTROL at usb-0000:00:1d.0-2, full speed
$ jackd -d alsa -d Revolution71 -r 44100 -p 256
Enabling MIDI events
$ jackd -d alsa -r 44100 --midi raw

Only use the --midi option if you intend to use a MIDI device to control IDJC.

Finally

The program qjackctl can be used to start a JACK sound server. It has a nice graphical user interface and can generate a .jackdrc file as well.

idjc-0.8.16/doc/tour_preferences.html0000644000175000017500000001502412711160237014447 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Preferences Window Screenshot (general)

General

Here there are extensive controls that alter the way IDJC behaves on often subtle levels.

The basic streamer option's effect is not so subtle. It allows you to stream just music with an absolute minimum CPU load as well as reducing the amount of screen space that is occupied.

It's possible to toggle the meters that are visible, configure ReplayGain and much more.


Preferences Window Screenshot (audio channels)

Audio channel processing

A great deal of care has been taken to make sure your voice can be heard consistently over the mix. The controls to do this are placed in your hands so experimenting and making recordings for review are advised before going on air.

The design of the audio stack is intended to reflect real-world station set-ups and best of all, it's all done in software. That said, a good microphone is still advised for the best possible sound.


Preferences Window Screenshot (microphones)

Key and MIDI bindings

Set your keyboard shortcuts here.

You can even set bindings for MIDI events, which means you can control IDJC from MIDI control surfaces or MIDI devices generally. The superiority of such a set-up will become apparent with use.

Key presses are collected from the Main and Jingles windows only and depend on focus whereas MIDI events apply to all applications that are configured to receive them.

The list shown to the left represents the inputs that have bindings already assigned to them and not the complete list of possible actions which is much larger.

idjc-0.8.16/doc/site-logo.png0000644000175000017500000010102312711160237012612 00000000000000PNG  IHDRsRGB pHYs  tIME  !!iTXtCommentCreated with The GIMPm IDATx^yeUu/c}>tuNUPX%XFͻנߍ/nrj|=MMg0ņ&B*n9c5u{ǜJݬ4d]9}̾/4{f-B{*l0Hߦbf:Ҵ%HW]P*T녴Fi~˾U^%"TZERfeҟz[J׽?&-i S.ذ*O{SITFVtJާK7UI>Jsf4L-aTS2Yw}.˲VJ Wk8ZSEٴh2mn좷Le,DDNof zve fnn@VJUƒCH[_~e+vTH!AȲ즛n˿Kccc^{pw/#{HӋU=MITX!Yov*DJ_򗯹v׾Qp 2003mN VLV(VUMLOO[N__K,K1eb~DfJ%(Vj,177K%aKYbYcQ2{fr/ ~=zsE$`+v"M["ZIJstЎ9Dt%}> 7ܰm۶UV<Џۿ'xr'>zo߾~o~ιW[mv}EQLNN o83SS?nFf>;[o;xg6nxn+2˲?Ͽ{o馗^zhyo+0[ouǎ{-bgV#;o޽2~OӝNGU/uUQ?E^Hy}|@;wcn鳟YgU@"j6?dY&"jڵO,byc}K_ڹsg]s5?}4 |pΝs=䓑yFD[]v9箺-Owy ᇿ/=C)2W_} 'p~W{بn6{u֥MтBo:ͬ8i̻vO:I/?}2r_~ꫯ;׬Yn:+êuZl^uUk׮=餓&&&W\}vU^SO}SڹsX+ݰaqbŊ(cccr '׿~||<%,(17?S~\z饗\r ~zk׮BMNN~k_[.z[S%?_|E{>zZ矿ug}kG>b"ӆ /Ci6<.4i( o{.z~_l~ᇷl٢ ?޽{p _|hvv3۟~뮻sύ'|w/| ?Olڴ_zJ 58,toޟ'pYmo{1@өrzh6Ql4)9]U뮻jXld۶mGЃX{>Or!Ʃ3E>>77gY 8U E&:{ЏqKH-[Y Vua m{,K͋6BʳhW", t\$eYv>N:~z=jj꥗^:éG{fFXb\@|c=^e˖ .``` {x)219t[)<"o"uzD8Tst/w[#}Y5y{__?55e˖zj^~;wٳ+XډQ'|+_իx׻eNu 4qQGb #豩TvL6mڴqƧ~ 7p 7`#<2Y N;O|wywމ\d,D e1xU@n FΥ,^(FӧKH^,fVRA.m/R[wib 6-\нޑPߵ/cB+}EʀVK*!-8Ql| I_zlcK "p*wy]^z饩N{q1x饗,c"r+W^?'''lPAϞF-O#Fg[fyv"4B%{H"}2Hb飘]LYidff׿w޹cǎݻwy}qw#" Xֲ,"HN1eYvkYMv;mcm4dYlٲ>~6o|衇| +S폜=<9ͦNqz>WE1xJ%W^ zˤ*՗7%&-l?snwϞ=?o{,=Ln088h4UTԋ(LݼPYKQn RP}xdXUk4V+b޽{ݺu+7oM&&& ؾֽ|<{hXmU :M bAI%Z""iip\<'~ӟn߾}ݕ{z\n/6αO"aZEQ8B-#V 2s^ouT#?38xʕ+@}W_pLKI8fC{ۭ] $]y1JJ%oPovя~tM\J|Zw8pK.jwF- oֹL+DJċ,sP 1AԔ ""[N0`BfPdYP V0l5**9Zט)J j g/b3OO:묡!)lDRi?JC~ߟƭJ8/b-j 6rXUo&8v&s0 󴉈D@"09LIP/_{\;sV J$ %U Ȩk~Mh (}vܽs02{/jm߾lڴ)}&RURsXd*+x?On۶rÍC9 9veP3U(@L,k Y O 0&*,#[l3)1 sRAdQ0BTcsNj p# 0M g lk\ve_Wm-ɵR"@d t%?'|rƗ-Xn*$NM]l,j"%s96 f"^*2v{VǖfEu+.n-4C죺prcD()ADCLe[90y[^T뮻PcPa+]l;¶m.f͚z9 (ٺm--(PH-D7SU_dK@Sռ8 "JRorI'lcVZ v1Tw^T۝ի˷/>ݻ7%/*,]}KJm7g?E]o>?C%UXU/ @$:oP(3KsfaL}8'/m?A3`EQU{e?xa |Lth]{0GU8μ+W:l߾ .ؽ{7%HҔ)S",Wb\TUf֭_m ;tÆNY 9"YpF`!)(Y@ĪPQ&vjh)%UQ̶lJ#9 ~LZbUOK#Ü0m3DvV,_nz.{FkW^ 2O[o箻)D~!EYdF<Asw `4bLMBz&" SU`2@8ӶWx=fTE%*A1{1MuJ B"(Pn~Xͤ#`GPeի;w^tEˏ%Gec뽉&7k `ڵyލd<@Xrb)4! `b >s+}y7HP=#c~2zڵB y,R̷spA 5H;Z⋟EׯC9Z.ͯůY r$>ڽ@fʂ@/QgQnچHr*x R{[yqkGNWIAixdBc͏gz)]VAU;fe,#nK/4= W ׷4'61;;{{=Ps,*lY)"9l;VxԂDH*# X4QXZf`H {^͵qK5* Q4\'k"U11 s\ avDTW]p4 IDATuW\z)y~_,ݺuEQX@DŰ0j'c sZ:, ޠK6640/CD<@0E%kY͐/7 u5U7|߱[ ;"(Z xvU"M8ʿA&б1=(o}[r^J^X%}3-p0W,7ODTCZr`lL}P>(fy6(5W3;Ǫ]<vŋ(SJ051B̼a`uc[HQ)T_$1rQ[ەBb J=ΨY(ԃX# kڅnpNB5Wt^;]\]V[PkO} yYŗ^G? "bK]٘V"r Dt!t<լ}fR%8%j;TDU* &\0,^f&jaƂ:v 5WOB!:JLjx!fq{1)|5=n$ l% 1.f"#Jɖ0OZ(8,ML1/_n{W\qŖ-[?x,T;,0$op '<Ұwjμb($"*!(Aj&e"Lg8Wt ,bK)r {}QP5I1!~x#5ahX@Ű%$)G'v4hj=l 4v[k ؍333_W" *dZ!\Kuaf͊+@fr0@@a_ɜ5Uz "5s2fR* F>xdՃ͎" ,)U~TH"#b?\wm['Y5kl,=0bN\"&Ⳕя~CYkqmDZ`$D!6 2(F0"Y>"]1ADy ;6|TQ~b$7ڿ놺v-ރ c 2]^XJ|2fJfPvvtaB.~g Lo6m/dd$si킲 l[BLP%T'%tVq{EynX i)lN9 E~HG:M*YK;Pau;iP"%(|]K\s1{ kh@D1kkJۘ }؏X.;vTY|yyũFg  jB(Ph֬ct`&2v(-D M[H1 PyQx}UETŋE|!'/h TTDe>!bmTPR OsPh|eW?νʠXn~SDVl*0%f"^gϨs!(Ze䭷w !%Wx$ (s=sڝ?"* "L+;+aRE69C!& bƶMnR ljm/ 9:g]iuР˅.,dhk'BD%ԓ )VNX0yp6 "J .uݕ+Vyaky[Z׍# [7| Nk Q?xlېTpƎ{*Z"-Dd[jyܫD9LP̂}ξW~ZU]Sw TnbeZ9 =99On~ܘ0 { V3+A M _o{8#[D fm}IA3c=k׮׽uX$ {X*Z `Ϟ=MccEQ!+kfp2<(9*1"r l i2Ixgv9n؇u4UTχ0Ph!H#L*( QlE[ͻ<@*U5lҀ$ 1HE8 ,?{&^-\, =k6wu=u7NCs^<)%eb"[ELW!lJ$,/sf|EZmxxU]Q(K"3M$$"\|ٿ{޲??o˩)In:0pF5@ q`r2۟e~Sw% 6R49dIIw zRwc$3SO=e@u`wxL(vҋW[ЅoӦ4.mE߀ )s EرԘ\w7yUCʤ0Qf}QnCgK?I/²u6H WgLZl n֗s #ˋjLĬ gow~ωWt KF^[(^t:Ddw(ab"P<+P('ꙝx?==m#I1&G|Nl p).dMzdG׮o5cۍQǤH:M |A?CU}!&%D CGs) ?66fgΝyjZN*W##Zi5c稌}jiZ "B&n"vj-4{bb /}酗ܔFFH#1MoyQZc؟\?aZ8l&@=eܭ߸0S @搘POMUvEy"af k03eY<3Qa#ok{%"ィ(,LQ5Wyr Ftshy&B+Wo~Gf^j:U(3 g[\ufG/V'Wx B=Vl뮮zP8-D`b3E S0PB3e&;i8paI# > /<3ZB)aA""0~i?I!c"@;b2=l+UT! *Z+:pm+PNJ>:Sx HynL\hw/mC-oz1;_~gQB΀<\ j6!i8$) xF2;QKIdoPЩbnn8pYEǹLuA;H&,He%}y{DDZn58>?'G纬ƣ{2\85^a("? 'ETU$z;qcv=.dAe߾}HYaEq8J)ejN!fyY͍5BOEEp7 UƸe(.I/0HxV4Z ϻ6?w3y-}W_v; Za)WOM/ O@Q\v6bf2yWxg;NZAD>1Ft͝ e"gbھuD m\9g+ @IU:ݎu9{ky yKWTTZHd{j&̃vGn]$hC0eWd;!X"`.ċYڃW Mٵk5粌98\I$l x:Z [-,d3oX?GQ?4i@-Lo,K?X9/<[ cF, RP vt+2/|Y /EQثD xoL(Lgy\ٸllC27%gxq+h EIbf &ٿC;tjtQ(C$dS~*fTAl{ڛ|ƍqyj`AATΈZUUbR "ge=;y3NŘ8dffJKaoQA{88 70Q *H6GȖ _XcpkuY(1+mZҸj5W^O Tҋr)Z͕?@#cF/պV*(X:JdQ.H1)́k׮:0/7kf`0O$l\]Q 󜘥zѴD$L Ͳ+e՜X>i).kEިjQYȾ}L#+lÌ Iמ*زYЗFiZʲ31αA2ajyƀ!{{QTOLGh(F9HA"eD!b%(e R*Au;J@ i [9),`& RLfDT՚VuQG]䮶LRPDd?BoY0-_mr9. `S{ML}\) ugeYmӿX{LTxav5 0@)k fBXYD)Dķ 6SR1l/?3tm۶viɌ[dG%D[P?ԠDND B9@d6beMM%:IprDdnnnzzڞjg}"(Gjܚ'18솥^P `BK1fR fbHck0 ٤Ez3F-JtjvcWE-PJs@l6"B*C3,agYԳGKCs"f9Sv?gmOHUmB(<@\<&J[^̇"oH϶=vw1ǫObP IDATzݸCɲ*Z(Op֤Ni5*'"{>13dn9;6OG夝RJE$"hOoy[6o~cľz_RblW vNG1l8ӃYEW{PU;8Ğ;Z 6 VzOiESWr{nnnll]8ӝsyQd S/fl&K̵{*̮v?FM'H͋?^)DѤMK )"3t?ScBw p !"T*(j4˲@HH@ fcccv?̌sJ/_%\e‚ƂdSư)y,ɴа̩|E'{ok6RJA%$ p0ZrnmT;n1ݜe^e!~$ (x5GD'P3"d @p6eӁ kFKa^l '&&0/DA"sDDvvlRqoz)f *sJw=<@{hh9QEi'"z43M+ƺP_=ľ""J$,,ƎsL5f!"X،m\n/pA@D7n`CJZ0T5[)|zؾ0veEu>v&oni/_wpÎ\2E˳~Js\' 9(2uW/vMT"A [ 6l o)Iئ@H%Uf,B g~by}h(cDry•'P%qhCD:84ԝin<+Va``VV` A'a  C&+" /uZy```&PS@n. %Pxjq5e2,WL8Li6VC(l UO^QE/"VZ I(ͪ3 /.#3u^G33~g\Wqiں繙y}sN>ys%222m3LPʴUjuDf1#KtGLHa_5Xfl ][UbRq1XmJ?*'IOg2! ޅ tU0GWN+ 4Df.}}ZW)ąca O6<+Np$T+;owdt@;EDVL5GDTV\6H8SEBocL$ yz+tk<:=Dǜl ^qϵtLU$affkE81jUWM3zV TM (&20858C_@V,=C\.g! IJ?aN$tQ"+jDOYBU 0lTWtѱ`1kVA;wKdmX(f*PH/xZ!0R-YW*RhZ'Ϯ]-P gݳ=+).L\i]ULlLݣ/Uʍ}7cCadkGQ twlqƘ1N$1{6t^%~(sz$?t^`A-[sxΜ9zKZ[*%0vNtHD~ ryfPu*@lf3&1ιV)pEf hδ:e޵/EBACd/oIWѢ*%GHmy.޹Dc콷[ y<JJv;ݗP-8s@IG5NDt$fc$3d:MS/^& Z gVWtދmM!n 'so&!*X3c%Æݹzfo_k%I@ 'Zz+S[J[MzV'g'xZ"JJmϽ뾣z]%zMڐY 4l,FĢYDw Bt-;3̟??K?D$RT*K.}CC׉ 9'~;'"5|fb^ƈ WY{҇`sI6ܮ1704߿}uNQ41Nhu88rڿmWW^޵-wM @\u5ڬZ V"j +փ3}9(۵x}V2{b@Rl2 dDL7!1^w?,DDu։u)8 /⡁foe!'{Nݻ;?RYC]Lg uvl+w?^':G 5, #lNT^fD8gA mk3g9f6%>XӴV*{Ys.ND @C ]uz!ߍ/_7f^<7xg !N圈MFq ?\(:8k%6î2$ \+;.ZmOvϷ jZ 3t p&@DDa͉q %ttLn͛Hdis9g'NX7tc!e/e Ni5pjeƷӌZ'Gv>{Cm۶9ӦM+ pv$V@^RYA؏@tqDtˏc5.{,&q;TDtQGyccc3OwΉ59q!ٝs^HA_kyԿ9h%)yEX\_K,is[?ăz>mڴt Jo"i"z*}٩!NT/_d V9C*J~=Xxgw}i L>]I5]є[b 5IZx@ 'ƙ i5tBé dƌَ5@wϿto7wNsWX!8$R^08@T:@lB &VED.JԩSoF(l * j"tS\I'Bhc ,CpZR= Zu@a]'A2!ڃAqNjeV6&I01?2RbޢEt14}4lٲUV=#V6&1Ɗuۓi2MrޗWCcX2yN[=+bq HҐ#K8sa%UN4H:u8'@{<;E+zZ ;`Nu1"iٔ 9$ ݶ>N}'Dy[o@D szi  "9f 1 }֭͝79:GIb 1sB MMDlg{zSIjHI0F%V'LEAE4=c7mE@5p+Uf`LĹDŽ}kC{&D @oV^].< ~ʋ&:;;;K ۻƚc:s$KScbf"kE/~#7[.I B'+߭el!DD["ubh]u}9sTbUj aܙMZZka&ה\"HmLXZtw-℘)M- b6Βv  /I̙3 .ȱ nd2P ^zɒ%Ec!N&l zU/iFvDL f #Y՞ %#Tޗʯ7ܵ7JJQjZZT:j#CDB^YB2{KDg4z6T RF8ѳp兙7{ bu)Hw9*Kszꮮ" 2t$CXɖӐND#sӦM;kϮ]nWlS}אXAs zR`K! e!0`  @$RB)m;1T*"$I`fsNU2;D,'1?tN"pfyNZ :b*8t ҌoFJ'r=yO̭/<>}Qx&PE] yB]}ai[( a$L$b9#e"$moOwPZ+V;? "Z nZSO8==8+#:9q D@2K2Zf[@"@7IG+{}"rLi3ά .IDlgd31 ޛ0Ov {0B0(tk bDSNr,NCÊcOO}ӡp"lY1TDjT-NД ?yLJjƻr&!C%IQJ Mwz3!"@f:8$1">%)@9Hb %kuN9]Vm T*}1cFبcm\\߻muzL"ч7#ۚ{SI*'*WEG'~x  dHHzNKP+!{#[,"ΩK ppVb?8]K+V CzA8lyg Q8ZGJ>aѧcg~MO8SO=U2/% 10?+B ,袋4fΝRI/A*Sϝ| }I KTN`pBƀ(ÄT~0`(9 398HDMw;v$@ 6e,ݐ@$M. ַLz9q22Rc 31C֑TEJdbجב:pntlL7 &?'y<yuQeI"u2}g6PKF8JT+SG;kQ!2pee@ԑ'JRšwl!HgWA,1xVe#=ls.*g*D~PBDJ DAfѩDN,^P<+bcϞ=Z…^ƙȅЄbϡ; [$'>O~h!X@O?5MҔ %T jeL)QɠlbbQ:W {g8߻*D$tdž5mL#N!b;~fpwu ڪiNX%TN…99?'YL˘N PVnۦȼo~PqS+c=G2|x5|\s f^pب6VV "8+FQ"[2TIR6*G.ࡆHT 02d㏃SsĤ9?J1B DBBįz0qBDFދDLQASa&'Ψ16j69s/\-sP8:Ť(R{n͚5ι͛7-YdxxF LLLv͔Y&2B眵\ V+U;0ℌW1Aȡ;|XoT1X!NY'$^BD }cfo B6#ŇOQBo2OP"$3!*~A90'jr De-r"ڲ 뷶T}sr~j6ƀD"f"6ެёW!"cc)r87SGO tbU{0vVʕ eBg{xD"^ħh:R#T-zuՈ))}bbCf#jʠ* sĔiȴLԫ۷mW2^pgyf opmA`!øVq6I/zHR9BD ˉ ?'[Z#c%lKwvW\cezq|T18>Ay!\Kf2ʼn8g]6Wν*2Q@m!sĞ{kIf|-c$F9餓.m_DNlb" %K|3Qac%}Ю윷db=qG/4Ȩ U'P)sɭ5n H>Vs6Ȇs~Uzc0sf} {V !ZD~uht:33m5q:>sjmv?,Yկ~U]0'q6  s_~}WcuΉIƒNE*%h_öJRŊDW-S/6n4k'U% IDATi89 d~w Zc2~lKuFUM&o8DD Q)Q i[փ=Uh:nѯdIӴ^o߾M9s\{ZE7k1B ײwИ-[uJ9tGoج<89k5@F`&!$%T*tˣz`]1k8LbۘXgMvYPR6=BU̇tNY'ND{icDt:Ȉ##D L?cOv&IBm|: VP'7"b}ӱw4kMD "N,P ~:* 4#0Isj+縐<$b<&O}o޽ػaMS XM_ `E5؛?lJR+88XV}Ag$ 8(Iի{޼~7/J̡bv{96 6MusYk-ʢjTMKΉsIX[¬ XœqD=wLbPڥJyӦMa+`r9f t}%~ӟCCCuԈ"54=`>F Ymȝ/TMeaY6&8?3jDq:VT F6q))j`wf)@¦PHOĉoH<3gqj{syUWtIS/O.p(ߩbcJv\IsB8 3_#ݛ7WUf"^!'+#)oYըY?8ZM,"iZgAΩA:sߤ@ߡ/N?kaoR76mRj,\? &^nx,hK!O\h.2}??_M7J$)u͐mFl#uj̢D2B? L)%+D-TI~HaJ>wįCʰ![Aa r`ENN3Lʴ[WV蜳.vb9}{!G"rЖSZA* m˼9Qoy[|{K|ǩ#ƠIBB*~lcgOL!fKXhC RS0@ ICV9RuMc6DO߀L^m CSkS}8Y==uVYIZ޲%8p93zubMDgʆZ5n _ ,_{GiFwXk4aJĪcы;Z7=xmQT&^kC"^b$"Uq;)]!fc]\2;Lt|#L@j-ƓIF  DVsƍf@R⋿lgC4AB t3A`["2cƌ뮻hZcj.IF9W2רg_;G I&'s\ 0I)Q**!"l~"N*FDLGZRGG;qn];w>cƜٳQk-43ƙ)CDw67|FRc$]@~كj5)E" QvGjwI/Y?Cc$Te,G#azȪbE1P38k[ 2Wi5͛7E_@T>}ԩӚͱVufGTg5b"Y!&b'SqVUQQn1W&1T)'F/^3PlA(ڶdĹdh_6s/~"F*Ͼeȍ}Ϸ):oa#!ݻ{wAP.͙[UscccYM!6{8 3e;+DY[kER"*˥rY;44VZxǩkih~[Պ3,r!~@D8) ,{l*W"Ȧ~Kt~cccwj)S:6ӱ֘鳹i&IWåJ[9"N2#T*I8Zt9600ND{=N;Moz^ &J¨Nsf߳tR;=e^cv>ӿ|M6%VJl6j`ش1"P[zADff"#c̙3W\y1ǜqṂmB<| Lb2˯CsmZ2c/}?_Ø%+?Ed?7o J%"2ZIZbp6M6\VᡡVegy…/>ꨣ:(:6ƭy q->ȍ8uQRr1%zn Oκf066iӦ~^z^~"b0L>}Ŋtʕ+7̞=[qt !|aYFܶufG]J82ĵZmɒ%K,AܰaC0[Pj͞={ JFV\isvB/f rh443KxF*L辪-}S:fuG[v̓FwϞ\8q11EMZV<.-Ɋ>$dɥGx0!*b!3ȳY?O5 &8XT;gNy5ƿ>8o2h1'iB #PZQ1 ֶ s8mqKqh' MĹfu5Xq_JE26#R6׼ b!mK+->mcqʠm s&2~R46t4ttƌǟtt+ugfΜ ^ y-19B1"sc^mc& D)'gS\ Veڴuc{_鯆WK^m~o 1nSD9Q8ҿ[L%O@ eVmHȃ !¬Yå!o.c['g\f8fpmOak\dhEQp3-''xʔg^x-N= x5_Kb)6l,!M.mdaX\-z9MD2WcCBw'$"2rmOzۧ %LD^^wO1ćįZVvMQӭ b@)߃'O6QpUЖ?|kXr%+ڕX?mC\DɊ09 70&Əkqh, ^!Y &H!װb5~ˑBsYE6Q&qşr X_kc-X#8cBSk?=CDG}>)`w5޽|g{zzܹs=O}ٳn:::}+W6]z 7Νz^xʕ+ц } .ug B )ЖjBrl^/-ʝ;chaHn޼yݺuV*>xʕ@ 6(کS.]T(2@3x駟~{ZkOjժ7 (0H3Шb5aBdz9sM7x7mڴhѢ(1\|3?|`J-[,+w{=޽;VV\#;ٳ4o/?35v5k\v~w]o~gϞY;찿 qaO{ׇ~8^LrI']ve*6;kw1(\DVIm*ݸq1+{xU[֏cܔ)S$i4/p WH7cs*&pR xs30Q0'i0"h#ܓ=2o<d4 1' Ϟ={ҥVi[j9smxGyP)}^+>aQ\`n6@"Hk׮]v- xڌb۲!K˖-7ocՅN;C |AD(a/Orljկs9V={;wtM?%; {xϧP(:s-J -y7q'wuuMTk p'.]瞳G?Z|D#Cwdd䮻:S׽u{az 7f͚SB B3*ߞygqsntttppc=4K@cӦMv3g\n͛!T!\*<@<̋.hil6ýgq3{Y~N9唐~ժUZ\VXqS 9묳{Ν\sY%\2gv6A '8ӦM[h)r^5Jc?̛7/0F#ĵJ/yѢE͛ٳ8∸!5xܹgW̙3:蠶*%e]3駟~W,#e.`ƍ[lHӴ\.L]0Ng ˏyPOλB$ M?44tE;˖- .sT8bUΎzⱘ09rWRgSQ(9cC4̬ש:D͡֋"xJR=FA^ub2j@\>>^;Ԛ%f^x1hh 1Ю"؟kcR1iX1!A?E|*&uiXheb[B2Eu?޹oq1HZ=sGGGΝr?-qNw9(63vU[ )M+E]yPԯc'bB  kEC"\!AfHapHIDAT 5Αvn?5B<&,q 4ѴZ," /..&en-hieծu>Ŵ1Fjǹ͋Ȅ'rي, oL&L0LQb$"@Lɱ PjC96b:;りm˕KuƶYBd[j5hgkW>y3"ʼn(Cm5.!ȥwQ9N 羆ʌSQL󪑓TNY xJӷυcƟH8Ж7(p%ȲLDMRkL_4N3yW|d?/r<`ZysIENDB`idjc-0.8.16/doc/tour_jingles.html0000644000175000017500000001160412711160237013601 00000000000000 Internet DJ Console Homepage

Internet DJ Console Homepage IDJC

website logo

Jingles Window Screenshot

The Jingles tab contains two separate players. Effects, which is for sound effects and brief jingles, and Background Tracks which is intended to provide background audio as the DJ speaks. The Background Tracks player audio fades in and out automatically depending the main players.

idjc-0.8.16/python/0000755000175000017500000000000012711167613011046 500000000000000idjc-0.8.16/python/irc.py0000644000175000017500000017250612630014503012115 00000000000000"""IRC bots for IDJC.""" # Copyright (C) 2011, 2012 # Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . from __future__ import absolute_import import re import json import time import sys import threading import traceback import gettext from inspect import getargspec from functools import wraps, partial import gobject import gtk import pango try: from irc import client from irc import events except ImportError: traceback.print_exc() print "No IRC support" HAVE_IRC = False else: HAVE_IRC = True from idjc import FGlobs from idjc.prelims import ProfileManager from .gtkstuff import DefaultEntry from .gtkstuff import NamedTreeRowReference from .gtkstuff import ConfirmationDialog from .gtkstuff import threadslock, gdklock from .gtkstuff import timeout_add, source_remove from .utils import string_multireplace from .tooltips import set_tip __all__ = ["IRCPane"] _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext XCHAT_COLOR = { 0: 0xCCCCCCFF, 1: 0x000000FF, 2: 0x3636B2FF, 3: 0x2A8C2AFF, 4: 0xC33B3BFF, 5: 0xC73232FF, 6: 0x80267FFF, 7: 0x66361FFF, 8: 0xD9A641FF, 9: 0x3DCC3DFF, 10: 0x1A5555FF, 11: 0x2F8C74FF, 12: 0x4545E6FF, 13: 0xB037B0FF, 14: 0x4C4C4CFF, 15: 0x959595FF } MESSAGE_CATEGORIES = ( # TC: IRC message subcategory, triggers on new track announcements. _("Track announce"), # TC: IRC message subcategory, triggered by a timer. _("Timer"), # TC: IRC message subcategory, triggered once when the stream starts. _("On stream up"), # TC: IRC message subcategory, triggered once at the stream's end. _("On stream down"), # TC: IRC message subcategory, triggered once at the stream's end. _("Operations")) ASCII_C0 = "".join(chr(x) for x in range(32)) CODES_AND_DESCRIPTIONS = zip((u"%r", u"%t", u"%l", u"%s", u"%n", u"%d", u"%u", u"%U"), (_('Artist'), _('Title'), _('Album'), _('Song name'), _('DJ name'), _('Description'), _('Listen URL'), _('Source URI'))) class IRCEntry(gtk.Entry): # pylint: disable=R0904 """Specialised IRC text entry widget. Features pop-up menu and direct control character insertion. """ _control_keytable = {107: u"\u0003", 98: u"\u0002", 117: u"\u001F", 111: u"\u000F"} def __init__(self, *args, **kwds): gtk.Entry.__init__(self, *args, **kwds) self.connect("key-press-event", self._on_key_press_event) self.connect("populate-popup", self._popup_menu_populate) def _on_key_press_event(self, entry, event): """Handle direct insertion of control characters.""" if entry.im_context_filter_keypress(event): return True # Check for CTRL key modifier. if event.state & gtk.gdk.CONTROL_MASK: # Remove the effect of CAPS lock - works for letter keys only. keyval = event.keyval + ( 32 if event.state & gtk.gdk.LOCK_MASK else 0) try: replacement = self._control_keytable[keyval] except KeyError: pass else: entry.reset_im_context() cursor = entry.get_position() entry.insert_text(replacement, cursor) entry.set_position(cursor + 1) return True def _popup_menu_populate(self, entry, menu): """Builds the right click pop-up menu on the IRCEntry widget.""" # TC: Popup menu item for a GTK text entry widget. menuitem = gtk.MenuItem(_('Insert Attribute or Colour Code')) menu.append(menuitem) submenu = gtk.Menu() menuitem.set_submenu(submenu) menuitem.show() self._popup_menu_add_substitutions(entry, submenu) self._popup_menu_add_colourselectors(entry, submenu) def _popup_menu_add_substitutions(self, entry, submenu): """Adder for menu items that insert substitute characters or codes.""" def sub(pairs): """Build the attribute inserting menu elements.""" for code, menutext in pairs: menuitem = gtk.MenuItem() label = gtk.Label() label.set_alignment(0.0, 0.5) label.set_markup(menutext) menuitem.add(label) label.show() menuitem.connect_object("activate", self._on_menu_item_activate, entry, code) submenu.append(menuitem) menuitem.show() sub(CODES_AND_DESCRIPTIONS) # Separate data tokens from formatting tokens. sep = gtk.SeparatorMenuItem() submenu.append(sep) sep.show() sub(zip((u"\u0002", u"\u001F", u"\u000F"), ( # TC: Text formatting style. _('Bold'), # TC: Text formatting style. _('Underline'), # TC: Text formatting style. _('Normal')))) def _popup_menu_add_colourselectors(self, entry, submenu): """Adder for menuitems that choose text colour.""" for lower, upper in ((0, 7), (8, 15)): menuitem = gtk.MenuItem(_("Colours") + " %d-%d" % (lower, upper)) submenu.append(menuitem) colourmenu = gtk.Menu() menuitem.set_submenu(colourmenu) colourmenu.show() for i in xrange(lower, upper + 1): try: rgba = XCHAT_COLOR[i] except (IndexError, TypeError): continue colourmenuitem = gtk.MenuItem() colourmenuitem.connect_object("activate", self._on_menu_insert_colour_code, entry, i) hbox = gtk.HBox() label = gtk.Label() label.set_alignment(0, 0.5) label.set_markup( "%02d" % i) hbox.pack_start(label) label.show() pixbuf = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 20, 20) pixbuf.fill(rgba) image = gtk.image_new_from_pixbuf(pixbuf) image.connect_after("expose-event", lambda w,e: self._on_colour_box_expose(w)) hbox.pack_start(image) image.show() colourmenuitem.add(hbox) hbox.show() colourmenu.append(colourmenuitem) colourmenuitem.show() menuitem.show() @staticmethod def _on_menu_item_activate(entry, code): """Perform relevant character code insertion.""" cursor = entry.get_position() entry.insert_text(code, cursor) entry.set_position(cursor + len(code)) @staticmethod def _on_menu_insert_colour_code(entry, code): """Insert the colour palette control code.""" cursor = entry.get_position() if cursor < 3 or entry.get_text()[cursor - 3] !="\x03": # Foreground colour. entry.insert_text(u"\u0003" + unicode("%02d" % code), cursor) else: # Background colour. entry.insert_text(unicode(",%02d" % code), cursor) entry.set_position(cursor + 3) @staticmethod def _on_colour_box_expose(widget): """If we are here the mouse is hovering over a colour palette item. This causes pre-light which messes up the colour so all we do here is cancel it. """ widget.set_state(gtk.STATE_NORMAL) class IRCView(gtk.TextView): # pylint: disable=R0904 """A viewer for IRC text. This text window shows the text as it would be displayed to other users. Variables are substituted for human readable place markers. """ matches = tuple((a, re.compile(b)) for a, b in ( ("foreground_background", "\x03[0-9]{1,2},[0-9]{1,2}"), ("foreground", "\x03[0-9]{1,2}(?!=,)"), ("bold", "\x02"), ("underline", "\x1F"), ("normal", "\x0F"), ("text", "[^\x00-\x1F]*"), )) readable_equiv = tuple((x, "<%s>" % y) for x, y in CODES_AND_DESCRIPTIONS) def __init__(self): gtk.TextView.__init__(self) self.set_size_request(500, -1) self.set_wrap_mode(gtk.WRAP_CHAR) self.set_editable(False) self.set_cursor_visible(False) self._rslt = self._foreground = self._background = None self._bold = self._underline = False def set_text(self, text): """Apply text to the viewer. IRC text formatting is handled and the view updated. """ text = string_multireplace(text, self.readable_equiv) buf = self.get_buffer() buf.remove_all_tags(buf.get_start_iter(), buf.get_end_iter()) buf.delete(buf.get_start_iter(), buf.get_end_iter()) start = 0 while start < len(text): for name, match in self.matches: self._rslt = match.match(text, start) if self._rslt is not None and self._rslt.group(): # Execute the handler routine. getattr(self, "_handle_" + name)() start = self._rslt.end() break else: start += 1 self._foreground = self._background = None self._bold = self._underline = False @staticmethod def _colour_string(code): """The colour as a string of format "#rrggbb. rgb = red, green, blue as a 2 digit hex number.""" return "#%06X" % (XCHAT_COLOR[int(code)] >> 8) def _handle_bold(self): """Bold toggle.""" self._bold = not self._bold def _handle_underline(self): """Underline toggle.""" self._underline = not self._underline def _handle_foreground(self): """Foreground colour setting.""" try: self._foreground = self._rslt.group()[1:] except IndexError: self._foreground = None def _handle_foreground_background(self): """Foreground and background colour setting.""" try: self._foreground, self._background = \ self._rslt.group()[1:].split(",") except IndexError: self._foreground = self._background = None def _handle_normal(self): """The normal formatting tag.""" self._bold = self._underline = False self._foreground = self._background = None def _handle_text(self): """Normal printable text.""" buf = self.get_buffer() tag = buf.create_tag() props = tag.props props.family = "monospace" try: props.foreground = self._colour_string(self._foreground) props.background = self._colour_string(self._background) except (TypeError, KeyError): pass if self._underline: props.underline = pango.UNDERLINE_SINGLE if self._bold: props.weight = pango.WEIGHT_BOLD buf.insert_with_tags(buf.get_end_iter(), self._rslt.group(), tag) class EditDialogMixin(object): """Mix-in class to convert initial-data-entry dialogs to edit dialogs.""" def __init__(self, orig_data): bb = self.get_action_area() self.refresh = gtk.Button(gtk.STOCK_REFRESH) self.refresh.set_use_stock(True) self.refresh.connect("clicked", lambda w: self.from_tuple(orig_data)) bb.add(self.refresh) bb.set_child_secondary(self.refresh, True) self.refresh.clicked() self.delete = gtk.Button(stock=gtk.STOCK_DELETE) bb.add(self.delete) def delete_confirmation(self, deleter): """Override in subclass to install a confirmation dialog. In this case the deleter function is run without question. """ return deleter server_port_adj = gtk.Adjustment(6667.0, 0.0, 65535.0, 1.0, 10.0) class ServerDialog(gtk.Dialog): """Data entry dialog for adding a new IRC server.""" optinfo = _("Optional data entry field for information only.") # TC: Tab heading text. def __init__(self, title=_("IRC server")): gtk.Dialog.__init__( self, title + " - IDJC" + ProfileManager().title_extra) self.network = gtk.Entry() set_tip(self.network, self.optinfo) self.network.set_width_chars(25) self.hostname = gtk.Entry() self.port = gtk.SpinButton(server_port_adj) self.username = gtk.Entry() self.password = gtk.Entry() self.password.set_visibility(False) self.manual_start = gtk.CheckButton(_("Manual start")) set_tip(self.manual_start, _('Off when restarting IDJC and off initially.')) self.nick1 = gtk.Entry() self.nick2 = gtk.Entry() self.nick3 = gtk.Entry() self.realname = gtk.Entry() self.nickserv = gtk.Entry() self.nickserv.set_visibility(False) hbox = gtk.HBox() hbox.set_border_width(16) hbox.set_spacing(5) image = gtk.image_new_from_stock( gtk.STOCK_NETWORK, gtk.ICON_SIZE_DIALOG) image.set_alignment(0.5, 0) table = gtk.Table(10, 2) table.set_col_spacings(6) table.set_row_spacings(3) rvbox = gtk.VBox(True) hbox.pack_start(image, False, padding=20) hbox.pack_start(table, True) for i, (text, widget) in enumerate(zip(( # TC: The IRC network e.g. EFnet. _("Network"), # TC: label for hostname entry. _("Hostname"), # TC: TCP/IP port number label. _("Port"), _("User name"), _("Password"), "", # TC: IRC nickname data entry label. _("Nickname"), # TC: Second choice of IRC nickname. _("Second choice"), # TC: Third choice of IRC nickname. _("Third choice"), # TC: The IRC user's 'real' name. _("Real name"), # TC: The NickServ password. _("NickServ p/w")), (self.network, self.hostname, self.port, self.username, self.password, self.manual_start, self.nick1, self.nick2, self.nick3, self.realname, self.nickserv))): # TC: Tooltip to IRC 'User name' field. set_tip(self.username, _("Ideally set this to something even on " "servers that allow public anonymous access.")) l = gtk.Label(text) l.set_alignment(1.0, 0.5) table.attach(l, 0, 1, i, i + 1, gtk.SHRINK | gtk.FILL) table.attach(widget, 1, 2, i, i + 1) for each in (self.nick1, self.nick2, self.nick3): # TC: tooltip to all IRC nicknames entry fields. set_tip(each, _("When a nickname is in use on the target IRC " "network, during connection these IRC nicknames are cycled through," " then twice again after appending an additional underscore until " "giving up. This gives IDJC a maximum of nine IRC nicknames " "to try.")) set_tip(self.realname, _("The real name you want to use which will be " "available regardless of whether the network connection was made with " "the primary nickname or not.\n\nIdeally set this to something.")) set_tip(self.nickserv, _("If this value is set an attempt will be made " "to acquire your first choice IRC nickname (if needed) and log in with " "NickServ@services.\n\nThe use of the NickServ service requires prior " "nickname registration on the network using a regular chat client.")) self.get_content_area().add(hbox) def as_tuple(self): """Data extraction method.""" return (self.manual_start.get_active(), self.port.get_value(), False, self.network.get_text().strip(), self.hostname.get_text().strip(), self.username.get_text().strip(), self.password.get_text().strip(), self.nick1.get_text().strip(), self.nick2.get_text().strip(), self.nick3.get_text().strip(), self.realname.get_text().strip(), self.nickserv.get_text().strip()) class EditServerDialog(ServerDialog, EditDialogMixin): """Adds a delete and restore button to the standard server dialog.""" def __init__(self, orig_data): ServerDialog.__init__(self) EditDialogMixin.__init__(self, orig_data) def delete_confirmation(self, deleter): def inner(w): cd = ConfirmationDialog("", _("" "Permanently delete this server?\n\nThis action will also " "erase all of its associated messages."), markup=True) cd.set_transient_for(self) cd.ok.connect("clicked", deleter) cd.show_all() return inner def from_tuple(self, orig_data): """The data restore method.""" n = iter(orig_data).next self.manual_start.set_active(n()) self.port.set_value(n()) n() self.network.set_text(n()) self.hostname.set_text(n()) self.username.set_text(n()) self.password.set_text(n()) self.nick1.set_text(n()) self.nick2.set_text(n()) self.nick3.set_text(n()) self.realname.set_text(n()) self.nickserv.set_text(n()) message_delay_adj = gtk.Adjustment(10, 0, 30, 1, 10) message_offset_adj = gtk.Adjustment(0, 0, 9999, 1, 10) message_interval_adj = gtk.Adjustment(600, 60, 9999, 1, 10) class ChannelsDialog(gtk.Dialog): """Channels entry dialog.""" icon = gtk.STOCK_NEW title = "missing title" def __init__(self, title=None): if title is None: title = self.title gtk.Dialog.__init__( self, title + " - IDJC" + ProfileManager().title_extra) chbox = gtk.HBox() chbox.set_spacing(6) # TC: An IRC channel #chan or user name entry box label. l = gtk.Label(_("Channels/Users")) self.channels = gtk.Entry() chbox.pack_start(l, False) chbox.pack_start(self.channels, True) set_tip(self.channels, _("The comma or space separated list of channels" " and/or users to whom the message will be sent.\n\nProtected channels " "are included with the form:\n#channel:keyword.")) self.mainbox = gtk.VBox() self.mainbox.set_spacing(5) self.mainbox.pack_start(chbox, False) self.hbox = gtk.HBox() self.hbox.set_border_width(16) self.hbox.set_spacing(5) self.image = gtk.image_new_from_stock(self.icon, gtk.ICON_SIZE_DIALOG) self.image.set_alignment(0.5, 0) self.hbox.pack_start(self.image, False, padding=20) self.hbox.pack_start(self.mainbox) self.get_content_area().add(self.hbox) self.channels.grab_focus() def _from_channels(self): text = self.channels.get_text().replace(",", " ").split() return ",".join(x for x in text if x) def as_tuple(self): """Data extraction method.""" return (self._from_channels(),) class EditChannelsDialog(ChannelsDialog, EditDialogMixin): """Adds delete and restore buttons to a channels dialog.""" icon = gtk.STOCK_EDIT def __init__(self, title, orig_data): ChannelsDialog.__init__(self, title) EditDialogMixin.__init__(self, orig_data) def from_tuple(self, orig_data): """The data restore method.""" self.channels.set_text(orig_data[0]) class MessageDialog(ChannelsDialog): """Message entry dialog.""" def __init__(self, title=None): ChannelsDialog.__init__(self, title) hbox = gtk.HBox() hbox.set_spacing(6) # TC: Message text to send to an IRC channel. Widget label. l = gtk.Label(_("Message")) self.message = IRCEntry() hbox.pack_start(l, False) hbox.pack_start(self.message) set_tip(self.message, _("The message to send.\n\nOn the pop-up window " "(mouse right click) are some useful options for embedding metadata and" " for text formatting.\n\nThe window below displays how the message " "will appear to users of XChat.")) self.mainbox.pack_start(hbox, False) sw = gtk.ScrolledWindow() sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) irc_view = IRCView() sw.add(irc_view) self.mainbox.pack_start(sw, False) self.message.connect("changed", lambda w: irc_view.set_text(w.get_text())) def _pack(self, widgets): vbox = gtk.VBox() for l, w in widgets: ivbox = gtk.VBox() ivbox.set_spacing(4) vbox.pack_start(ivbox, True, False) l = gtk.Label(l) ivbox.pack_start(l) ivbox.pack_start(w) self.hbox.pack_start(vbox, False, padding=20) def as_tuple(self): """Data extraction method.""" return self._from_channels(), self.message.get_text().strip() class EditMessageDialog(MessageDialog, EditDialogMixin): """Adds delete and restore buttons to a message creation dialog.""" icon = gtk.STOCK_EDIT def __init__(self, title, orig_data): MessageDialog.__init__(self, title) EditDialogMixin.__init__(self, orig_data) def from_tuple(self, orig_data): """The data restore method.""" self.channels.set_text(orig_data[0]) self.message.set_text(orig_data[1]) class AnnounceMessageDialog(MessageDialog): """Adds delay functionality to the message dialog.""" # TC: Dialog window title text. title = _("IRC track announce") def __init__(self): MessageDialog.__init__(self) self.delay = gtk.SpinButton(message_delay_adj) # TC: Spinbutton label for a delay value. self._pack(((_("Delay"), self.delay), )) # TC: tooltip on a spinbutton widget. set_tip(self.delay, _("The delay time of this message.\n\nTypically " "listener clients will buffer approximately ten seconds of audio data " "which means they are listening the same amount of time behind the " "actual stream therefore without a delay IRC messages will appear to " "the listener many seconds ahead of the audio.\n\nThis setting will " "help synchronise the track change with the message.")) def as_tuple(self): """Data extraction method.""" return (self.delay.get_value(), ) + MessageDialog.as_tuple(self) class EditAnnounceMessageDialog(AnnounceMessageDialog, EditDialogMixin): icon = gtk.STOCK_EDIT def __init__(self, orig_data): AnnounceMessageDialog.__init__(self) EditDialogMixin.__init__(self, orig_data) def from_tuple(self, orig_data): return (self.delay.set_value(orig_data[0]), self.channels.set_text(orig_data[1]), self.message.set_text(orig_data[2])) class TimerMessageDialog(MessageDialog): # TC: Dialog window title text. title = _("IRC timed message") def __init__(self): MessageDialog.__init__(self) self.offset = gtk.SpinButton(message_offset_adj) self.interval = gtk.SpinButton(message_interval_adj) self._pack(( # TC: Spinbutton time offset value label. (_("Offset"), self.offset), # TC: Spinbutton timed interval duration value label. (_("Interval"), self.interval))) # TC: spinbutton tooltip set_tip(self.offset, (_("The time offset within the below specified " "interval at which the message will be issued."))) # TC: spinbutton tooltip set_tip(self.interval, ( _("The interval in seconds of the timed message."))) def as_tuple(self): return (self.offset.get_value(), self.interval.get_value() ) + MessageDialog.as_tuple(self) class EditTimerMessageDialog(TimerMessageDialog, EditDialogMixin): icon = gtk.STOCK_EDIT def __init__(self, orig_data): TimerMessageDialog.__init__(self) EditDialogMixin.__init__(self, orig_data) def from_tuple(self, orig_data): return (self.offset.set_value(orig_data[0]), self.interval.set_value(orig_data[1]), self.channels.set_text(orig_data[2]), self.message.set_text(orig_data[3])) def glue(f): """IRCPane function decorator for new/edit button callbacks. Provides item infrormation and wires up the edit dialogs. """ @wraps(f) def inner(self, widget): model, _iter = self._treeview.get_selection().get_selected() if _iter is not None: def dialog(d, cb, *args, **kwds): cancel = gtk.Button(gtk.STOCK_CANCEL) d.ok = gtk.Button(gtk.STOCK_OK) bb = d.get_action_area() for each in (cancel, d.ok): each.set_use_stock(True) each.connect_after("clicked", lambda w: d.destroy()) bb.add(each) d.set_modal(True) d.set_transient_for(self.get_toplevel()) d.ok.connect("clicked", lambda w: cb(d, model, _iter, *args, **kwds)) if hasattr(d, "delete"): @d.delete_confirmation def delete(w): iter_parent = model.iter_parent(_iter) self._treeview.get_selection().select_iter(iter_parent) model.remove(_iter) d.destroy() d.delete.connect("clicked", delete) d.show_all() return f(self, model.get_value(_iter, 0), model, _iter, dialog) else: return None return inner def highlight(f): """IRCPane function decorator to highlight newly added item.""" @wraps(f) def inner(self, mode, model, iter, *args, **kwds): new_iter = f(self, mode, model, iter, *args, **kwds) path = model.get_path(new_iter) self._treeview.expand_to_path(path) self._treeview.expand_row(path, True) self._treeview.get_selection().select_path(path) return new_iter return inner class IRCTreeView(gtk.TreeView): """A gtk.TreeView that has a tooltip which handles IRC text formatting.""" def __init__(self, model=None): gtk.TreeView.__init__(self, model) self.set_headers_visible(False) self.set_enable_tree_lines(True) self.connect("query-tooltip", self._on_query_tooltip) self.set_has_tooltip(True) self.tooltip_coords = (0, 0) def _on_query_tooltip(self, tv, x, y, kb_mode, tooltip): """Display an IRCView tooltip for appropriate data elements.""" if (x, y) != self.tooltip_coords: self.tooltip_coords = (x, y) elif None not in (x, y): path = tv.get_path_at_pos( *tv.convert_widget_to_bin_window_coords(x, y)) if path is not None: model = tv.get_model() iter = model.get_iter(path[0]) mode = model.get_value(iter, 0) if mode in (3, 5, 7, 9): message = model[model.get_path(iter)].message irc_view = IRCView() irc_view.set_text(message) tooltip.set_custom(irc_view) return True class IRCRowReference(NamedTreeRowReference): """A gtk.TreeRowReference but with named attributes. The naming scheme depends on the data type of each row. """ _lookup = { 1: {"manual":2, "port":3, "unused":4, "network":5, "hostname":6, "username":7, "password":8, "nick1":9, "nick2":10, "nick3":11, "realname":12, "nickserv":13, "nick":14}, 3: {"delay":4, "channels":5, "message":6}, 5: {"offset":3, "interval":4, "channels":5, "message":6, "issue":14}, 7: {"channels":5, "message":6}, 9: {"channels":5, "message":6}, 11: {"channels":5} } def get_index_for_name(self, tree_row_ref, name): """An abstract method of the base class that performs the lookup.""" if name == "type": return 0 elif name == "active": return 1 else: data_type = tree_row_ref[0] return self._lookup[data_type][name] class IRCTreeStore(gtk.TreeStore): """The data storage object.""" @property def data_format(self): return (int, ) * 5 + (str, ) * 10 def __init__(self): gtk.TreeStore.__init__(self, *self.data_format) self._row_changed_blocked = False self.connect_after("row-changed", self._on_row_changed) def path_is_active(self, path): """True when this and all parent elements are active.""" while self[path].active: path = path[:-1] if not path: return True return False def row_changed_block(self): self._row_changed_blocked = True def row_changed_unblock(self): self._row_changed_blocked = False def _on_row_changed(self, model, path, iter): """This is the very first handler that will be called.""" if self._row_changed_blocked: self.stop_emission("row-changed") def __getitem__(self, path): """Properly wrap the TreeRowReference.""" return IRCRowReference(gtk.TreeStore.__getitem__(self, path)) class IRCPane(gtk.VBox): """The main user interface.""" def __init__(self): gtk.VBox.__init__(self) self.set_border_width(8) self.set_spacing(3) self._treestore = IRCTreeStore() self._treestore.insert(None, 0, (0, 1, 0, 0, 0) + ("", ) * 10) self._treeview = IRCTreeView(self._treestore) col = gtk.TreeViewColumn() toggle = gtk.CellRendererToggle() toggle.props.sensitive = False col.pack_start(toggle, False) col.add_attribute(toggle, "active", 1) crt = gtk.CellRendererText() crt.props.ellipsize = pango.ELLIPSIZE_END col.pack_start(crt, True) col.set_cell_data_func(crt, self._cell_data_func) self._treeview.append_column(col) sw = gtk.ScrolledWindow() sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) sw.add(self._treeview) bb = gtk.HButtonBox() bb.set_spacing(6) bb.set_layout(gtk.BUTTONBOX_END) edit = gtk.Button(gtk.STOCK_EDIT) new = gtk.Button(gtk.STOCK_NEW) for b, c in zip((edit, new), ("edit", "new")): b.set_use_stock(True) b.connect("clicked", getattr(self, "_on_" + c)) bb.add(b) toggle_button = gtk.Button("_Toggle") toggle_button.connect("clicked", self._on_toggle) bb.add(toggle_button) bb.set_child_secondary(toggle_button, True) selection = self._treeview.get_selection() selection.connect("changed", self._on_selection_changed, edit, new) selection.select_path(0) if HAVE_IRC: self.pack_start(sw) self.pack_start(bb, False) self.connections_controller = ConnectionsController(self._treestore) else: self.set_sensitive(False) label = gtk.Label( _("This feature requires the installation of python-irc.")) self.add(label) self.connections_controller = ConnectionsController(None) self.show_all() def _m_signature(self): """The client data storage signature. Used to crosscheck with that of the saved data to test for usability. """ return [x.__name__ for x in self._treestore.data_format] def marshall(self): """Convert all our data into a string.""" if HAVE_IRC: store = [self._m_signature()] self._treestore.foreach(self._m_read, store) return json.dumps(store) else: return "" def _m_read(self, model, path, iter, store): row = IRCRowReference(list(model[path])) if row.type == 1 and row.active and row.manual: row.active = 0 store.append((path, list(row))) def unmarshall(self, data): """Set the TreeStore with data from a string.""" if HAVE_IRC: try: store = json.loads(data) except ValueError: return if store.pop(0) != self._m_signature(): print "IRC server data format mismatch." return selection = self._treeview.get_selection() selection.handler_block_by_func(self._on_selection_changed) self._treestore.clear() for path, row in store: pos = path.pop() pi = self._treestore.get_iter(tuple(path)) if path else None self._treestore.insert(pi, pos, row) self._treeview.expand_all() selection.handler_unblock_by_func(self._on_selection_changed) selection.select_path(0) def _on_selection_changed(self, selection, edit, new): model, iter = selection.get_selected() if iter is not None: mode = model.get_value(iter, 0) edit.set_sensitive(mode % 2) new.set_sensitive(not mode % 2) else: edit.set_sensitive(False) new.set_sensitive(False) def _on_toggle(self, widget): model, iter = self._treeview.get_selection().get_selected() model.set_value(iter, 1, not model.get_value(iter, 1)) def _cell_data_func(self, column, cell, model, iter): """Converts tree data into something viewable. There is only one line to display on so the actual text is not given too much priority. For that there is the tooltip IRCView. """ row = model[model.get_path(iter)] text = "" if row.type % 2: if row.type == 1: if row.nick: text = row.nick + "@" text += "%s:%d" % (row.hostname, row.port) if row.network: text += "(%s)" % row.network opt = [] if row.password: # TC: Indicator text: We used a password. opt.append(_("PASSWORD")) if row.nickserv: # TC: Indicator text: We interact with NickServ. opt.append(_("NICKSERV")) if row.manual: # TC: Indicator text: Server connection started manually. opt.append(_("MANUAL")) if opt: text += " " + ", ".join(opt) else: channels = row.channels if row.type < 11: message = row.message if row.type == 3: text = "+%d;%s; %s" % (row.delay, channels, message) elif row.type == 5: text = "%d/%d;%s; %s" % ( row.offset, row.interval, channels, message) elif row.type in (7, 9): text = channels + "; " + message elif row.type == 11: text = channels else: text = (("Server", ) + MESSAGE_CATEGORIES)[row.type / 2] cell.props.text = text # TC: Dialog title text. _dsu = _("IRC stream up message") # TC: Dialog title text. _dsd = _("IRC stream down message") # TC: Dialog title text. _dso = _("IRC station operations") @glue def _on_new(self, mode, model, iter, dialog): if mode == 0: dialog(ServerDialog(), self._add_server) elif mode == 2: dialog(AnnounceMessageDialog(), self._add_announce) elif mode == 4: dialog(TimerMessageDialog(), self._add_timer) elif mode in (6, 8): title = self._dsu if mode == 6 else self._dsd dialog(MessageDialog(title), self._add_message, mode) elif mode == 10: dialog(ChannelsDialog(self._dso), self._add_channels, mode) else: self._unhandled_mode(mode) @glue def _on_edit(self, mode, model, iter, dialog): row = tuple(model[model.get_path(iter)]) if mode == 1: dialog(EditServerDialog(row[2:14]), self._standard_edit, 2) elif mode == 3: dialog(EditAnnounceMessageDialog(row[4:7]), self._standard_edit, 4) elif mode == 5: dialog(EditTimerMessageDialog(row[3:7]), self._standard_edit, 3) elif mode in (7, 9): title = self._dsu if mode == 7 else self._dsd dialog(EditMessageDialog(title, row[5:7]), self._standard_edit, 5) elif mode == 11: dialog(EditChannelsDialog(self._dso, row[5:6]), self._standard_edit, 5) else: self._unhandled_mode(mode) @staticmethod def _unhandled_mode(mode): print "unhandled message category with numerical code,", mode def _standard_edit(self, d, model, iter, start): model.row_changed_block() for i, each in enumerate(d.as_tuple(), start=start): model.set_value(iter, i, each) model.row_changed_unblock() model.row_changed(model.get_path(iter), iter) @highlight def _add_server(self, d, model, parent_iter): # Check whether row initially needs to be switched off. row = IRCRowReference(list((1, 1) + d.as_tuple() + ("", ))) if row.manual: row.active = 0 iter = model.insert(parent_iter, 0, row) # Add the subelements. for i, x in enumerate(xrange(2, 2 + len(MESSAGE_CATEGORIES) * 2, 2)): model.insert(iter, i, (x, 1, 0, 0, 0) + ("", ) * 10) return iter @highlight def _add_announce(self, d, model, parent_iter): return model.insert(parent_iter, 0, (3, 1, 0, 0) + d.as_tuple() + ("", ) * 8) @highlight def _add_timer(self, d, model, parent_iter): return model.insert(parent_iter, 0, (5, 1, 0) + d.as_tuple() + ("", ) * 8) @highlight def _add_message(self, d, model, parent_iter, mode): return model.insert(parent_iter, 0, (mode + 1, 1, 0, 0, 0) + d.as_tuple() + ("", ) * 8) @highlight def _add_channels(self, d, model, parent_iter, mode): return model.insert(parent_iter, 0, (mode + 1, 1, 0, 0, 0) + d.as_tuple() + ("", ) * 9) class ConnectionsController(list): """Layer between the user interface and the ServerConnection classes. As a list it contains the active server connections. """ def __init__(self, model): self.model = model self._ignore_count = 0 if model is not None: model.connect("row-inserted", self._on_row_inserted) model.connect("row-deleted", self._on_row_deleted) model.connect_after("row-changed", self._on_row_changed) list.__init__(self) self._stream_active = False def cleanup(self): for each in self: each.cleanup() def set_stream_active(self, stream_active): self._stream_active = stream_active for each in self: each.set_stream_active(stream_active) def new_metadata(self, new_meta): for each in self: each.new_metadata(new_meta) def _on_row_inserted(self, model, path, iter): if model.get_value(iter, 0) == 1: self.append(IRCConnection(model, path, self._stream_active)) def _on_row_deleted(self, model, path): if len(path) == 2: for i, irc_conn in enumerate(self): if not irc_conn.valid(): self[i].cleanup() del self[i] break def _on_row_changed(self, model, path, iter): i = model.iter_children(iter) while i is not None: model.row_changed(model.get_path(i), i) i = model.iter_next(i) class IRCConnection(gtk.TreeRowReference, threading.Thread): """Self explanatory really.""" def __init__(self, model, path, stream_active): gtk.TreeRowReference.__init__(self, model, path) threading.Thread.__init__(self) self._hooks = [] self._queue = [] self._played = [] self._message_handlers = [] self._keepalive = True self._have_welcome = False self._stream_active = stream_active try: self.reactor = client.Reactor() except AttributeError: self.reactor = client.IRC() # Old API compatibility self.server = self.reactor.server() self.start() self._hooks.append((model, model.connect("row-inserted", self._on_row_inserted))) self._hooks.append((model, model.connect_after("row-changed", self._on_ui_row_changed))) self._on_ui_row_changed(model, path, model.get_iter(path)) def set_stream_active(self, stream_active): self._stream_active = stream_active for each in self._message_handlers: each.set_stream_active(stream_active) def new_metadata(self, new_meta): if self._stream_active: self._played.insert(0, (new_meta["songname"], time.time())) del self._played[10:] for each in self._message_handlers: each.new_metadata(new_meta) def _on_row_inserted(self, model, path, iter): if path[:-1] == self.get_path(): type = model[path].type mh = globals()["MessageHandlerForType_" + str(type + 1)](model, path, self._stream_active) mh.connect("channels-changed", self._on_channels_changed) mh.connect("privmsg-ready", self._on_privmsg_ready) self._message_handlers.append(mh) def _on_channels_changed(self, message_handler, channel_set): if self._have_welcome: rest = frozenset.union(frozenset(), *(x.props.channels for x in self._message_handlers if x is not message_handler)) joins = channel_set.difference(rest and message_handler.props.channels) parts = message_handler.props.channels.difference( channel_set).difference(rest) def deferred(): for each in joins: if each[0] in "#&": each = each.split(":") try: channel, key = each except ValueError: channel = each[0] key = "" self.server.join(channel, key) for each in parts: if each[0] in "#&": self.server.part(each) self._queue.append(deferred) def _channels_invalidate(self): for each in self._message_handlers: each.channels_invalidate() def _on_privmsg_ready(self, handler, targets, message, delay): if self._have_welcome: chan_targets = [x.split(":")[0] for x in targets if x[0] in "#&"] user_targets = [x for x in targets if x[0] not in "#&"] def deferred(): self.server.privmsg_many(chan_targets, message) for target in user_targets: self.server.notice(target, message) if delay: self._queue.append( lambda: self.server.execute_delayed(delay, deferred)) else: self._queue.append(deferred) def _on_ui_row_changed(self, model, path, iter): if path == self.get_path(): row = self.get_model()[self.get_path()] if model.path_is_active(path): ref = gtk.TreeRowReference(model, path) hostname = row.hostname port = row.port nickname = row.nick1 or "eyedeejaycee" password = row.password or None username = row.username or None ircname = row.realname or None opts = {} def deferred(): self._alternates = [ row.nick2, row.nick3, nickname + "_", row.nick2 + "_", row.nick3 + "_", nickname + "__", row.nick2 + "__", row.nick3 + "__"] connect = partial(self.server.connect, hostname, port, nickname, password, username, ircname) def try_connect(*delays): model = ref.get_model() path = ref.get_path() if not ref.valid() or not model.path_is_active(path): print "IRC connection attempt cancelled" return print "Attempting to connect IRC %s:%d" % ( hostname, port) try: connect() except client.ServerConnectionError as e: print e try: delay = delays[0] except IndexError: print "No more connection attempts" self._ui_set_nick("") else: print "%d more tries" % len(delays) self.server.execute_delayed(delay, try_connect, delays[1:]) else: self._ui_set_nick(nickname) print "New IRC connection: %s@%s:%d" % ( nickname, hostname, port) try_connect(1, 2, 3) else: def deferred(): try: self.server.disconnect() except client.ServerConnectionError as e: print >>sys.stderr, str(e) self._ui_set_nick("") self._queue.append(deferred) def run(self): for event in events.all: try: target = getattr(self, "_on_" + event) except AttributeError: target = self._generic_handler self.server.add_global_handler(event, target) while self._keepalive: while len(self._queue): self._queue.pop(0)() self.reactor.process_once(0.2) self.reactor.process_once() def cleanup(self): for each in self._message_handlers: each.cleanup() for obj, handler_id in self._hooks: obj.disconnect(handler_id) if self.server.is_connected(): def deferred(): self.server.add_global_handler("disconnect", self.end_thread) try: self.server.disconnect() except client.ServerConnectionError as e: print >>sys.stderr, str(e) self._ui_set_nick("") self._queue.append(deferred) else: self._keepalive = False self.join(1.0) def end_thread(self, server, event): self._keepalive = False @threadslock def _ui_set_nick(self, nickname): if self.valid(): model = self.get_model() model.row_changed_block() model[self.get_path()].nick = nickname model.row_changed_unblock() def _try_alternate_nick(self): try: nextnick = self._alternates.pop(0) except IndexError: # Ran out of nick choices. self.server.disconnect() else: self._ui_set_nick(nextnick) self.server.nick(nextnick) @threadslock def _on_welcome(self, server, event): print "Got IRC welcome", event.source self._have_welcome = True self._channels_invalidate() model = self.get_model() path = self.get_path() iter = model.iter_children(model.get_iter(path)) while iter is not None: model.row_changed(model.get_path(iter), iter) iter = model.iter_next(iter) row = model[path] model.row_changed_block() row.nick = event.target model.row_changed_unblock() target = row.nick1 nspw = row.nickserv if event.target != target and nspw: self._nick_recover(server, target, nspw) def _nick_recover(self, server, target, nspw): print "Will issue recover and release commands to NickServ" for i, (func, args) in enumerate(( (server.privmsg, ( "NickServ", "RECOVER %s %s" % (target, nspw))), (server.privmsg, ( "NickServ", "RELEASE %s %s" % (target, nspw))), (server.nick, (target,))), start=1): server.execute_delayed(i, func, args) def _on_privnotice(self, server, event): source = event.source if source is not None: source = source.split("@")[0] if source != "Global!services": print "-%s- %s" % (source, event.arguments[0]) if source == "NickServ!services": with gdklock(): nspw = self.get_model()[self.get_path()].nickserv if "NickServ IDENTIFY" in event.arguments[0] and nspw: server.privmsg("NickServ", "IDENTIFY %s" % nspw) print "Issued IDENTIFY command to NickServ" self._ui_set_nick(event.target) elif "Guest" in event.arguments[0]: newnick = event.arguments[0].split()[-1].strip(ASCII_C0) self._ui_set_nick(newnick) if nspw: self._nick_recover(server, event.target, nspw) else: self._ui_set_nick(event.target) else: self._generic_handler(server, event) def _on_disconnect(self, server, event): self._have_welcome = False self._ui_set_nick("") print event.source, "disconnected" def _on_nicknameinuse(self, server, event): self._try_alternate_nick() def _on_nickcollision(self, server, event): self._try_alternate_nick() def _on_nonicknamegiven(self, server, event): self._try_alternate_nick() def _on_erroneousenickname(self, server, event): self._try_alternate_nick() def _on_join(self, server, event): print "Channel joined", event.target def _on_ctcp(self, server, event): source = event.source.split("!")[0] args = event.arguments reply = partial(server.ctcp_reply, source) if args == ["CLIENTINFO"]: reply("CLIENTINFO VERSION TIME SOURCE PING ACTION CLIENTINFO " "PLAYED STREAMSTATUS KILLSTREAM") elif args == ["VERSION"]: reply("VERSION %s %s (python-irc)" % ( FGlobs.package_name, FGlobs.package_version)) elif args == ["TIME"]: reply("TIME " + time.ctime()) elif args == ["SOURCE"]: reply("SOURCE http://www.sourceforge.net/projects/idjc") elif args[0] == "PING": reply(" ".join(args)) elif args == ["PLAYED"]: t = time.time() with gdklock(): show = [x for x in self._played if t - x[1] < 5400.0] for i, each in enumerate(show, start=1): age = int((t - each[1]) // 60) if age == 1: message = "PLAYED \x0304%s\x0f, \x0306%d minute ago\x0f." else: message = "PLAYED \x0304%s\x0f, \x0306%d minutes ago\x0f." server.execute_delayed(i, reply, (message % (each[0], age),)) if not show: reply("PLAYED Nothing recent to report.") else: server.execute_delayed(i + 1, reply, ("PLAYED End of list.",)) elif args == ["STREAMSTATUS"]: reply("STREAMSTATUS The stream is %s." % ( "up" if self._stream_active else "down")) elif args == ["KILLSTREAM"]: reply("KILLSTREAM This feature was added as a joke.") elif args == ["ACTION"]: pass else: pass #print "CTCP from", source, args def _on_motd(self, server, event): pass def _generic_handler(self, server, event): return print "Type:", event.eventtype() print "Source:", event.source() print "Target:", event.target() print "Args:", event.arguments() class MessageHandler(gobject.GObject): __gsignals__ = { 'channels-changed': (gobject.SIGNAL_RUN_LAST | gobject.SIGNAL_ACTION, gobject.TYPE_NONE, (gobject.TYPE_PYOBJECT, )), 'privmsg-ready': (gobject.SIGNAL_RUN_LAST | gobject.SIGNAL_ACTION, gobject.TYPE_NONE, (gobject.TYPE_PYOBJECT, gobject.TYPE_STRING, gobject.TYPE_INT)) } __gproperties__ = { 'channels': (gobject.TYPE_PYOBJECT, 'channels', 'ircchannels', gobject.PARAM_READABLE) } @property def stream_active(self): return self._stream_active subst_keys = ("artist", "title", "album", "songname", "djname", "description", "url", "source") subst_tokens = ("%r", "%t", "%l", "%s", "%n", "%d", "%u", "%U") subst = dict.fromkeys(subst_keys, "") def __init__(self, model, path, stream_active): gobject.GObject.__init__(self) self.tree_row_ref = gtk.TreeRowReference(model, path) self._channels = frozenset() self._stream_active = stream_active model.connect("row-inserted", self.channels_evaluate) model.connect("row-deleted", self.channels_evaluate) model.connect_after("row-changed", self.channels_evaluate) def set_stream_active(self, stream_active): if self._stream_active != stream_active: self._stream_active = stream_active if stream_active: self.on_stream_active() else: self.on_stream_inactive() def on_stream_active(self): pass def on_stream_inactive(self): pass def cleanup(self): pass def on_new_metadata(self): pass def new_metadata(self, new_meta): assert not frozenset(new_meta).difference(frozenset(self.subst_keys)) self.subst.update(new_meta) self.on_new_metadata() def channels_evaluate(self, model, path, iter=None): pp = self.tree_row_ref.get_path() if path[:-1] == pp: nc = set() iter = model.iter_children(model.get_iter(pp)) while iter is not None: rowpath = model.get_path(iter) if model.path_is_active(rowpath): row = model[rowpath] for each in row.channels.split(","): if each: nc.add(each) iter = model.iter_next(iter) nc = frozenset(nc) if nc != self._channels: self.channels_changed(nc) def channels_invalidate(self): self._channels = frozenset() def channels_changed(self, new_channels): self.emit("channels-changed", new_channels) def do_channels_changed(self, new_channels): """Called after the handlers connected on 'channels-changed'. Joins and parts may be computed against self.props.channels. """ self._channels = frozenset(new_channels) def do_get_property(self, prop): if prop.name == 'channels': return self._channels else: raise AttributeError("unknown property '%s'" % prop.name) def issue_messages(self, delay_calc=lambda row: 0, forced_message=None): model = self.tree_row_ref.get_model() iter = model.get_iter(self.tree_row_ref.get_path()) iter = model.iter_children(iter) while iter is not None: path = model.get_path(iter) if model.path_is_active(path): row = model[path] delay_s = delay_calc(row) if delay_s is not None: targets = [x.split("!")[0] for x in row.channels.split(",")] table = [("%%", "%")] + zip(self.subst_tokens, ( self.subst[x] for x in self.subst_keys)) if forced_message is not None: message = string_multireplace(forced_message, table) else: message = string_multireplace(row.message, table) self.emit("privmsg-ready", targets, message, delay_s) iter = model.iter_next(iter) class MessageHandlerForType_3(MessageHandler): def on_new_metadata(self): if self.stream_active: self.issue_messages(lambda row: row.delay) class MessageHandlerForType_5(MessageHandler): def __init__(self, *args, **kwargs): self._timeout_id = None MessageHandler.__init__(self, *args, **kwargs) if self.stream_active: self.on_stream_active() def on_stream_active(self): self._timeout_id = timeout_add(500, self._timeout) def on_stream_inactive(self): if self._timeout_id is not None: source_remove(self._timeout_id) self._timeout_id = None @threadslock def _timeout(self): self.issue_messages(partial(self._delay_calc, the_time=int(time.time()))) return True def _delay_calc(self, row, the_time): """Returns either a delay of 0 or suppression value None.""" issue = (the_time - row.offset) // row.interval if issue > int(row.issue or 0): row.issue = str(issue) return 0 def cleanup(self): if self._timeout_id is not None: source_remove(self._timeout_id) class MessageHandlerForType_7(MessageHandler): def on_stream_active(self): self.issue_messages() class MessageHandlerForType_9(MessageHandler): def on_stream_inactive(self): self.issue_messages() class MessageHandlerForType_11(MessageHandler): def on_stream_active(self): self.issue_messages(forced_message="!handover acquired %U") def on_stream_inactive(self): self.issue_messages(forced_message="!handover dropped %U") idjc-0.8.16/python/popupwindow.py0000644000175000017500000001411312630014503013720 00000000000000# popupwindow.py: for when standard gtk tooltips just don't cut it # Copyright (C) 2007, 2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . __all__ = ['PopupWindow'] import gobject import gtk from .gtkstuff import threadslock, timeout_add, source_remove class PopupWindow: def message(self, text): if self.messages: print "PopupWindow:", text def set_messages(self, boolean): """Show status messages on the console when boolean = true.""" self.messages = boolean and True or False def get_messages(self): return self.messages class new_popup_window(gtk.Window): def __init__(self): gtk.Window.__init__(self, gtk.WINDOW_POPUP) gtk.Window.set_decorated(self, False) @threadslock def timeout_callback(self): class bugout: def __init__(self, parent, text): if parent.popup_window is not None: parent.popup_window.destroy() parent.popup_window = None parent.message(text) try: self.timer_count += 1 self.total_timer_count += 1 if self.timer_count == self.popuptime: if not self.timeout or self.total_timer_count < \ self.popuptime + self.timeout: self.popup_window = self.new_popup_window() if self.winpopulate_callback(self.popup_window, \ self.widget, self.x, self.y) != -1: self.popup_window.realize() # Calculate the popup window positioning. w_popup = self.popup_window.get_size()[0] # Get root window width. w_root = self.popup_window.get_screen( ).get_root_window().get_geometry()[2] offset = w_root - int(self.x_root) - w_popup - 4 if offset > 0: # Right justify if needed. offset = 0 x_pos = int(self.x_root) + 4 + offset # No right justification for popups that won't fit. if x_pos < 0: # Display against left window edge. x_pos = 0 self.popup_window.move(x_pos, int(self.y_root) + 4) self.popup_window.show() self.message("popup window created") else: raise bugout(self, "window populate callback returned" " -1 -- window cancelled") else: raise bugout(self, "timeout exceeded") if self.timer_count > self.popdowntime: raise bugout(self, "popdown time reached") except bugout: return False else: return True def handle_mouse(self, widget, event, data): self.timer_count = 0 # Store absolute mouse x and y coordiates. self.x_root = event.x_root self.y_root = event.y_root # This information could be useful too. self.x = event.x self.y = event.y # Any event triggers destruction of popup windows currently open. if self.popup_window is not None: self.popup_window.destroy() source_remove(self.timeout_id) self.popup_window = None self.message("popup window destroyed due to the sensing of an " "event, timer removed") if data == "leave": return False if data == "enter" and self.inside_widget == False: self.timeout_id = timeout_add(100, self.timeout_callback) self.inside_widget = True self.total_timer_count = 0 self.message("timer started") if data == "leave": if self.inside_widget: source_remove(self.timeout_id) self.inside_widget = False self.message("timer removed") if data == "button" or data == "scroll" or self.inhibit_callback() \ and self.inside_widget: source_remove(self.timeout_id) self.message("timer removed") def dummy(self): return False def __init__(self, widget, popuptime, popdowntime, timeout, \ winpopulate_callback, inhibit_callback = None): self.widget = widget self.popuptime = popuptime self.popdowntime = popdowntime self.timeout = timeout self.winpopulate_callback = winpopulate_callback self.inhibit_callback = inhibit_callback or self.dummy self.popup_window = None self.inside_widget = False self.messages = False self.widget.connect("motion_notify_event", self.handle_mouse, "move") self.widget.connect("enter_notify_event", self.handle_mouse, "enter") self.widget.connect("leave_notify_event", self.handle_mouse, "leave") self.widget.connect("button_press_event", self.handle_mouse, "button") self.widget.connect("button_release_event", self.handle_mouse, "button") self.widget.connect("scroll_event", self.handle_mouse, "scroll") idjc-0.8.16/python/gtkstuff.py0000644000175000017500000006144612631563757013222 00000000000000"""Generally useful gtk based widgets.""" # Copyright (C) 2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # 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 in the file entitled COPYING. # If not, see . import os import json import gettext from abc import ABCMeta, abstractmethod from functools import wraps from contextlib import contextmanager import gobject import gtk import pango import glib from idjc import FGlobs, PGlobs t = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True) _ = t.gettext # Fix PyGTK spin button binding. def SB(): GTK_SB = gtk.SpinButton class SpinButton(GTK_SB): def __init__(self, adjustment=None, climb_rate=0.0, digits=0): GTK_SB.__init__(self, adjustment, climb_rate, digits) return SpinButton gtk.SpinButton = SB() del SB class NotebookSR(gtk.Notebook): """Add methods so the save/restore scheme does not have to be extended.""" def get_active(self): return self.get_current_page() def set_active(self, page): self.set_current_page(page) class LEDDict(dict): """Dictionary of pixbufs of LEDs.""" def __init__(self, size=10): names = "clear", "red", "green", "yellow" filenames = ("led_unlit_clear_border_64x64.png", "led_lit_red_black_border_64x64.png", "led_lit_green_black_border_64x64.png", "led_lit_amber_black_border_64x64.png") for name, filename in zip(names, filenames): self[name] = gtk.gdk.pixbuf_new_from_file_at_size( FGlobs.pkgdatadir / filename, size, size) class CellRendererLED(gtk.CellRendererPixbuf): """A cell renderer that displays LEDs.""" __gproperties__ = { "active" : (gobject.TYPE_INT, "active", "active", 0, 1, 0, gobject.PARAM_WRITABLE), "color" : (gobject.TYPE_STRING, "color", "color", "clear", gobject.PARAM_WRITABLE) } def __init__(self, size=10, actives=("clear", "green")): gtk.CellRendererPixbuf.__init__(self) self._led = LEDDict(size) self._index = [self._led[key] for key in actives] def do_set_property(self, prop, value): if prop.name == "active": item = self._index[value] elif prop.name == "color": item = self._led[value] else: raise AttributeError("unknown property %s" % prop.name) gtk.CellRendererPixbuf.set_property(self, "pixbuf", item) class CellRendererTime(gtk.CellRendererText): """Displays time in days, hours, minutes.""" __gproperties__ = { "time" : (gobject.TYPE_INT, "time", "time", 0, 1000000000, 0, gobject.PARAM_WRITABLE) } def do_set_property(self, prop, value): if prop.name == "time": m, s = divmod(value, 60) h, m = divmod(m, 60) d, h = divmod(h, 24) if d: text = "%dd.%02d:%02d" % (d, h, m) else: text = "%02d:%02d:%02d" % (h, m, s) else: raise AttributeError("unknown property %s" % prop.name) gtk.CellRendererText.set_property(self, "text", text) class StandardDialog(gtk.Dialog): def __init__(self, title, message, stock_item, label_width, modal, markup): gtk.Dialog.__init__(self) self.set_border_width(6) self.get_child().set_spacing(12) self.set_modal(modal) self.set_destroy_with_parent(True) self.set_title(title) hbox = gtk.HBox() hbox.set_spacing(12) hbox.set_border_width(6) image = gtk.image_new_from_stock(stock_item, gtk.ICON_SIZE_DIALOG) image.set_alignment(0.0, 0.0) hbox.pack_start(image, False) vbox = gtk.VBox() hbox.pack_start(vbox) for each in message.split("\n"): label = gtk.Label(each) label.set_use_markup(markup) label.set_alignment(0.0, 0.0) label.set_size_request(label_width, -1) label.set_line_wrap(True) vbox.pack_start(label) ca = self.get_content_area() ca.add(hbox) aa = self.get_action_area() aa.set_spacing(6) class ConfirmationDialog(StandardDialog): """This needs to be pulled out since it's generic.""" def __init__(self, title, message, label_width=300, modal=True, markup=False, action=gtk.STOCK_DELETE, inaction=gtk.STOCK_CANCEL): StandardDialog.__init__(self, title, message, gtk.STOCK_DIALOG_WARNING, label_width, modal, markup) aa = self.get_action_area() cancel = gtk.Button(stock=inaction) cancel.connect("clicked", lambda w: self.destroy()) aa.pack_start(cancel) self.ok = gtk.Button(stock=action) self.ok.connect_after("clicked", lambda w: self.destroy()) aa.pack_start(self.ok) class ErrorMessageDialog(StandardDialog): """This needs to be pulled out since it's generic.""" def __init__(self, title, message, label_width=300, modal=True, markup=False): StandardDialog.__init__(self, title, message, gtk.STOCK_DIALOG_ERROR, label_width, modal, markup) b = gtk.Button(stock=gtk.STOCK_CLOSE) b.connect("clicked", lambda w: self.destroy()) self.get_action_area().add(b) def threadslock(inner): """Function decorator to safely apply gtk/gdk thread lock to callbacks. Needed to lock non gtk/gdk callbacks originating in the wider glib main loop whenever they may call gtk or gdk code, read properties etc. Useful for callbacks that mainly manipulate gtk. """ @wraps(inner) def wrapper(*args, **kwargs): gtk.gdk.threads_enter() try: if gtk.main_level(): return inner(*args, **kwargs) else: # Cancel timeouts and idle functions. print "callback cancelled" return False finally: gtk.gdk.threads_leave() return wrapper @contextmanager def gdklock(): """Like threadslock but for 'with' code blocks that manipulate gtk.""" gtk.gdk.threads_enter() yield gtk.gdk.threads_leave() @contextmanager def gdkunlock(): """Like gdklock but unlock instead. Useful for calling threadslock functions when already locked. """ gtk.gdk.threads_leave() yield gtk.gdk.threads_enter() @contextmanager def nullcm(): """Null context. eg. with (gdklock if lock_f else nullcm)():""" yield class DefaultEntry(gtk.Entry): def __init__(self, default_text, sensitive_override=False): gtk.Entry.__init__(self) self.connect("focus-in-event", self.on_focus_in) self.connect("focus-out-event", self.on_focus_out) self.props.primary_icon_activatable = True self.connect("icon-press", self.on_icon_press) self.connect("realize", self.on_realize) self.default_text = default_text self.sensitive_override = sensitive_override def on_realize(self, entry): layout = self.get_layout().copy() layout.set_markup("%s" % self.default_text) extents = layout.get_pixel_extents()[1] drawable = gtk.gdk.Pixmap(self.get_parent_window(), extents[2], extents[3]) gc = gtk.gdk.GC(drawable) gc2 = entry.props.style.base_gc[0] drawable.draw_rectangle(gc2, True, *extents) drawable.draw_layout(gc, 0, 0, layout) pixbuf = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, extents[2], extents[3]) pixbuf.get_from_drawable(drawable, drawable.get_colormap(), 0, 0, *extents) self.empty_pixbuf = pixbuf if not gtk.Entry.get_text(self): self.props.primary_icon_pixbuf = pixbuf def on_icon_press(self, entry, icon_pos, event): self.grab_focus() def on_focus_in(self, entry, event): self.props.primary_icon_pixbuf = None def on_focus_out(self, entry, event): text = gtk.Entry.get_text(self).strip() if not text: self.props.primary_icon_pixbuf = self.empty_pixbuf def get_text(self): if (self.flags() & gtk.SENSITIVE) or self.sensitive_override: return gtk.Entry.get_text(self).strip() or self.default_text else: return "" def set_text(self, newtext): newtext = newtext.strip() gtk.Entry.set_text(self, newtext) if newtext: self.props.primary_icon_pixbuf = None else: try: self.props.primary_icon_pixbuf = self.empty_pixbuf except AttributeError: pass class HistoryEntry(gtk.ComboBoxEntry): """Combobox which performs history function.""" def __init__(self, max_size=6, initial_text=("",), store_blank=True): self.max_size = max_size self.store_blank = store_blank self.ls = gtk.ListStore(str) gtk.ComboBoxEntry.__init__(self, self.ls, 0) self.connect("notify::popup-shown", self.update_history) self.child.connect("activate", self.update_history) self.set_history("\x00".join(initial_text)) geo = self.get_screen().get_root_window().get_geometry() cell = self.get_cells()[0] cell.props.wrap_width = geo[2] * 2 // 3 cell.props.wrap_mode = pango.WRAP_CHAR def update_history(self, *args): text = self.child.get_text().strip() if self.store_blank or text: # Remove duplicate stored text. for i, row in enumerate(self.ls): if row[0] == text: del self.ls[i] # Newly entered text goes at top of history. self.ls.prepend((text,)) # History size is kept trimmed. if len(self.ls) > self.max_size: del self.ls[-1] def get_text(self): return self.child.get_text() def set_text(self, text): self.update_history() self.child.set_text(text) def get_history(self): self.update_history() return "\x00".join([row[0] for row in self.ls]) def set_history(self, hist): self.ls.clear() for text in reversed(hist.split("\x00")): self.set_text(text) class NamedTreeRowReference(object): """Provides named attribute access to gtk.TreeRowReference objects. This is a virtual base class. Virtual method 'get_index_for_name()' must be provided in a subclass. """ __metaclass__ = ABCMeta def __init__(self, tree_row_ref): object.__setattr__(self, "_tree_row_ref", tree_row_ref) @abstractmethod def get_index_for_name(self, tree_row_ref, name): """This method must be subclassed. Note the TreeRowReference in question is passed in in case that information is required to allocate the names. When a name is not available an exception must be raised and when one is the index into the TreeRowReference must be returned. """ pass def _index_for_name(self, name): try: return self.get_index_for_name(self._tree_row_ref, name) except Exception: raise AttributeError("%s has no attribute: %s" % (repr(self._tree_row_ref), name)) def __iter__(self): return iter(self._tree_row_ref) def __len__(self): return len(self._tree_row_ref) def __getitem__(self, path): return self._tree_row_ref[path] def __setitem__(self, path, data): self._tree_row_ref[path] = data def __getattr__(self, name): return self._tree_row_ref.__getitem__(self._index_for_name(name)) def __setattr__(self, name, data): self._tree_row_ref[self._index_for_name(name)] = data NamedTreeRowReference.register(list) class WindowSizeTracker(object): """This class will monitor the un-maximized size of a window.""" def __init__(self, window, tracking=True): self._window = window self._is_tracking = tracking self._x = self._y = 100 self._max = False window.connect("configure-event", self._on_configure_event) window.connect("window-state-event", self._on_window_state_event) def set_tracking(self, tracking): self._is_tracking = tracking def get_tracking(self): return self._is_tracking def get_x(self): return self._x def get_y(self): return self._y def get_max(self): return self._max def get_text(self): """Marshalling function for save settings.""" return json.dumps((self._x, self._y, self._max)) def set_text(self, s): """Unmarshalling function for load settings.""" try: self._x, self._y, self._max = json.loads(s) except StandardError: pass def apply(self): self._window.unmaximize() self._window.resize(self._x, self._y) if self._max: idle_add(threadslock(self._window.maximize)) def _on_configure_event(self, widget, event): if self._is_tracking and not self._max: self._x = event.width self._y = event.height def _on_window_state_event(self, widget, event): if self._is_tracking: self._max = event.new_window_state & \ gtk.gdk.WINDOW_STATE_MAXIMIZED != 0 class IconChooserButton(gtk.Button): """Imitate a FileChooserButton but specific to image types. The image rather than the mime-type icon is shown on the button. """ __gsignals__ = { "filename-changed" : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_PYOBJECT,)), } def __init__(self, dialog): gtk.Button.__init__(self) dialog.set_icon_from_file(PGlobs.default_icon) hbox = gtk.HBox() hbox.set_spacing(4) image = gtk.Image() hbox.pack_start(image, False, padding=1) label = gtk.Label() label.set_alignment(0, 0.5) label.set_ellipsize(pango.ELLIPSIZE_END) hbox.pack_start(label) vsep = gtk.VSeparator() hbox.pack_start(vsep, False) rightmost_icon = gtk.image_new_from_stock(gtk.STOCK_OPEN, gtk.ICON_SIZE_MENU) hbox.pack_start(rightmost_icon, False) self.add(hbox) hbox.show_all() self.connect("clicked", self._cb_clicked, dialog) self._dialog = dialog self._image = image self._label = label self.set_filename(dialog.get_filename()) def set_filename(self, f): try: disp = glib.filename_display_name(f) pb = gtk.gdk.pixbuf_new_from_file_at_size(f, 16, 16) except (glib.GError, TypeError): # TC: Text reads as /path/to/file.ext or this when no file is chosen. self._label.set_text(_("(None)")) self._image.clear() self._filename = None else: self._label.set_text(disp) self._image.set_from_pixbuf(pb) self._filename = f self._dialog.set_filename(f) self.emit("filename-changed", self._filename) def get_filename(self): return self._filename def _cb_clicked(self, button, dialog): response = dialog.run() if response == gtk.RESPONSE_OK: self.set_filename(dialog.get_filename()) elif response == gtk.RESPONSE_NONE: filename = self.get_filename() if filename is not None: dialog.set_filename(filename) self.set_filename(None) dialog.hide() def __getattr__(self, attr): if attr in gtk.FileChooser.__dict__: return getattr(self._dialog, attr) raise AttributeError("%s has no attribute, %s" % ( self, attr)) class IconPreviewFileChooserDialog(gtk.FileChooserDialog): def __init__(self, *args, **kwds): gtk.FileChooserDialog.__init__(self, *args, **kwds) filefilter = gtk.FileFilter() # TC: the file filter text of a file chooser dialog. filefilter.set_name(_("Supported Image Formats")) filefilter.add_pixbuf_formats() self.add_filter(filefilter) vbox = gtk.VBox() frame = gtk.Frame() vbox.pack_start(frame, expand=True, fill=False) frame.show() image = gtk.Image() frame.add(image) self.set_use_preview_label(False) self.set_preview_widget(vbox) self.set_preview_widget_active(False) self.connect("update-preview", self._cb_update_preview, image) vbox.show_all() def _cb_update_preview(self, dialog, image): f = self.get_preview_filename() try: pb = gtk.gdk.pixbuf_new_from_file_at_size(f, 16, 16) except (glib.GError, TypeError): active = False else: active = True image.set_from_pixbuf(pb) self.set_preview_widget_active(active) class LabelSubst(gtk.Frame): """User interface label substitution widget -- by the user.""" def __init__(self, heading): gtk.Frame.__init__(self, " %s " % heading) self.vbox = gtk.VBox() self.vbox.set_border_width(2) self.vbox.set_spacing(2) self.add(self.vbox) self.textdict = {} self.activedict = {} def add_widget(self, widget, ui_name, default_text): frame = gtk.Frame(" %s " % default_text) frame.set_label_align(0.5, 0.5) frame.set_border_width(3) self.vbox.pack_start(frame) hbox = gtk.HBox() hbox.set_spacing(3) frame.add(hbox) hbox.set_border_width(2) use_supplied = gtk.RadioButton(None, _("Alternative")) use_default = gtk.RadioButton(use_supplied, _('Default')) self.activedict[ui_name + "_use_supplied"] = use_supplied hbox.pack_start(use_default, False) hbox.pack_start(use_supplied, False) entry = gtk.Entry() self.textdict[ui_name + "_text"] = entry hbox.pack_start(entry) if isinstance(widget, gtk.Frame): def set_text(new_text): new_text = new_text.strip() if new_text: new_text = " %s " % new_text widget.set_label(new_text or None) widget.set_text = set_text entry.connect("changed", self.cb_entry_changed, widget, use_supplied) args = default_text, entry, widget use_default.connect("toggled", self.cb_radio_default, *args) use_supplied.connect_object("toggled", self.cb_radio_default, use_default, *args) use_default.set_active(True) def cb_entry_changed(self, entry, widget, use_supplied): if use_supplied.get_active(): widget.set_text(entry.get_text()) elif entry.has_focus(): use_supplied.set_active(True) def cb_radio_default(self, use_default, default_text, entry, widget): if use_default.get_active(): widget.set_text(default_text) else: widget.set_text(entry.get_text()) entry.grab_focus() class FolderChooserButton(gtk.Button): """Replaces the now-broken gtk.FileChosserButton for folder selection. The old chooser also had some issues with being able to visually select unmounted partitions that resulted in no change from the last valid selection. This button fixes that by dispensing with the drop down list entirely. In order to work properly this button's dialog must be in folder select mode. """ __gsignals__ = { 'current-folder-changed' : (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, (gobject.TYPE_STRING,)) } def __init__(self, dialog=None): gtk.Button.__init__(self) self._current_folder = None self._handler_ids = [] hbox = gtk.HBox() hbox.set_spacing(3) self.add(hbox) self._icon = gtk.image_new_from_stock(gtk.STOCK_DIRECTORY, gtk.ICON_SIZE_MENU) hbox.pack_start(self._icon, False) # TC: FolderChooserButton text for null -- no directory is set. self._label = gtk.Label(_("(None)")) self._label.set_alignment(0.0, 0.5) self._label.set_ellipsize(pango.ELLIPSIZE_END) hbox.pack_start(self._label) self._label.show() self.set_dialog(dialog) self.connect("clicked", self._on_clicked) self.get_child().show_all() def set_dialog(self, dialog): self._disconnect_from_dialog() if dialog is None: self._update_visual() else: self._connect_to_dialog(dialog) self.set_current_folder(dialog.get_current_folder()) def get_dialog(self): return self._dialog def get_current_folder(self): return self._dialog and self._current_folder def set_current_folder(self, new_folder): """Call this, not the underlying dialog.""" if new_folder is not None: new_folder = new_folder.strip() if new_folder != os.sep: new_folder = new_folder.rstrip(os.sep) if new_folder != self._current_folder: self._dialog.set_current_folder(new_folder) self.emit("current-folder-changed", new_folder) def unselect_all(self): self.set_current_folder("") def _update_visual(self): folder_name = self.get_current_folder() if not folder_name: folder_name = _("(None)") else: folder_name = os.path.split(folder_name)[1] self._label.set_text(folder_name) def _disconnect_from_dialog(self): for hid in self._handler_ids: self._dialog.handler_disconnect(hid) del self._handler_ids[:] self._dialog = None def _connect_to_dialog(self, dialog): app = self._handler_ids.append app(dialog.connect("destroy", self._on_dialog_destroy)) self._dialog = dialog def _on_dialog_destroy(self, dialog): del self._handler_ids[:] self._dialog = None if not self.flags() & gtk.IN_DESTRUCTION: self._update_visual() def _on_clicked(self, button): if self._dialog is not None: self._dialog.set_current_folder(self._current_folder or "") if self._dialog.run() == gtk.RESPONSE_ACCEPT: new_folder = self._dialog.get_current_folder() if new_folder != self._current_folder: self.emit('current-folder-changed', new_folder) else: self._dialog.set_current_folder(self._current_folder or "") self._dialog.hide() def do_current_folder_changed(self, new_folder): self._current_folder = new_folder self._update_visual() def _source_wrapper(data): if data[0]: ret = data[1](*data[2], **data[3]) if ret: return ret data[0] = False def source_remove(data): if data[0]: glib.source_remove(data[4]) data[0] = False def timeout_add(interval, callback, *args, **kwargs): data = [True, callback, args, kwargs] data.append(glib.timeout_add(interval, _source_wrapper, data)) return data def timeout_add_seconds(interval, callback, *args, **kwargs): data = [True, callback, args, kwargs] data.append(glib.timeout_add_seconds(interval, _source_wrapper, data)) return data def idle_add(callback, *args, **kwargs): data = [True, callback, args, kwargs] data.append(glib.idle_add(_source_wrapper, data)) return data idjc-0.8.16/python/utils.py0000644000175000017500000002122612630014503012470 00000000000000"""Generally useful Python code. But strictly no third party module dependencies. """ # Copyright (C) 2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . __all__ = ["Singleton", "PolicedAttributes", "FixedAttributes", "PathStr", "SlotObject", "string_multireplace"] import os import uuid import re import glob import shutil import threading from functools import wraps # pylint: disable=C0203 # # The mcs parameter goes to the __new__ method, not any other. class Singleton(type): """Enforce the singleton pattern upon the user class.""" def __init__(cls, name, bases, dict_): super(Singleton, cls).__init__(name, bases, dict_) cls._instance = None def __call__(cls, *args, **kwds): if cls._instance is not None: # Return an existing instance. return cls._instance else: # No existing instance so instantiate just this once. cls._instance = super(Singleton, cls).__call__(*args, **kwds) return cls._instance def _pa_rlock(func): """Policed Attributes helper for thread locking.""" @wraps(func) def _wrapper(cls, *args, **kwds): """Wrapper with locking feature. Performs rlock.""" rlock = type.__getattribute__(cls, "_rlock") try: rlock.acquire() return func(cls, *args, **kwds) finally: rlock.release() return _wrapper class FixedAttributes(type): """Implements a namespace class of constants.""" def __setattr__(cls, name, value): raise AttributeError("attribute is locked") def __call__(cls, *args, **kwds): raise TypeError("%s object is not callable" % cls.__name__) class PolicedAttributes(FixedAttributes): """Polices data access to a namespace class. Prevents write access to attributes after they have been read. Envisioned useful for the implementation of "safe" global variables. """ def __new__(mcs, name, bases, dict_): @classmethod @_pa_rlock def peek(cls, attr, callback, *args, **kwds): """Allow read + write within a callback. Typical use might be to append to an existing string. No modification ban is placed or bypassed. """ if attr not in type.__getattribute__(cls, "_banned"): new = callback( super(PolicedAttributes, cls).__getattribute__(attr), *args, **kwds) type.__setattr__(attr, new) else: raise AttributeError("attribute is locked") dict_["peek"] = peek dict_["_banned"] = set() dict_["_rlock"] = threading.RLock() return super(PolicedAttributes, mcs).__new__(mcs, name, bases, dict_) @_pa_rlock def __getattribute__(cls, name): type.__getattribute__(cls, "_banned").add(name) return type.__getattribute__(cls, name) @_pa_rlock def __setattr__(cls, name, value): if name in type.__getattribute__(cls, "_banned"): FixedAttributes.__setattr__(cls, name, value) type.__setattr__(cls, name, value) class PathStrMeta(type): """PathStr() returns None if called with None.""" def __call__(cls, arg): if arg is None: return None else: return cls.__new__(cls, arg) class PathStr(str): """A data type to perform path joins using the / operator. In this case the higher precedence of / is unfortunate. """ # pylint: disable=R0904 __metaclass__ = PathStrMeta def __div__(self, other): return PathStr(os.path.join(str(self), other)) def __add__(self, other): return PathStr(str.__add__(self, other)) def __repr__(self): return "PathStr('%s')" % self class SlotObject(object): """A mutable object containing an immutable object.""" # pylint: disable=R0903 __slots__ = ['value'] def __init__(self, value): self.value = value def __str__(self): return str(self.value) def __int__(self): return int(self.value) def __float__(self): return float(self.value) def __repr__(self): return "SlotObject(%s)" % repr(self.value) def __getattr__(self, what): """Universal getter for get_ prefix.""" def assign(value): """Returned by set_ prefix call. A setter function.""" self.value = value if what.startswith("get_"): return lambda : self.value elif what.startswith("set_"): return assign else: object.__getattribute__(self, what) def string_multireplace(part, table): """Replace multiple items in a string. Table is a sequence of 2 tuples of from, to strings. """ if not table: return part parts = part.split(table[0][0]) t_next = table[1:] for i, each in enumerate(parts): parts[i] = string_multireplace(each, t_next) return table[0][1].join(parts) class LinkUUIDRegistry(dict): """Manage substitute hard links for data files.""" __metaclass__ = Singleton link_re = re.compile( "\{[a-fA-F0-9]{8}-([a-fA-F0-9]{4}-){3}[a-fA-F0-9]{12}\}") link_dir = None def add(self, uuid_, pathname): if os.path.exists(pathname): self[uuid_] = pathname else: print "LinkUUIDRegistry: pathname does not exist", pathname def remove(self, uuid_): try: del self[uuid_] except KeyError: print "LinkUUIDRegisty: remove -- UUID does not exist: {%s}" % uuid_ def _purge(self, where): """Clean orphaned hard links from the links directory.""" basedir, dirs, files = os.walk(where).next() for filename in files: match = self.link_re.match(filename) try: if match is None or str(uuid.UUID(match.group(0))) not in self: os.unlink(os.path.join(basedir, filename)) except EnvironmentError as e: print "LinkUUIDRegistry: link purge failed: %s" % e def _save(self, where, copy): """Write new hard links to the links directory. Existing links are kept as they are. To unlink them could delete the only copy of the link source. """ # Create the links directory as needed. if not os.path.isdir(where): try: os.mkdir(where) except EnvironmentError as e: print "LinkUUIDRegistry: link directory creation failed:", e return for uuid_, source in self.iteritems(): ext = os.path.splitext(source)[1] if copy: cmd = shutil.copyfile else: cmd = os.link try: cmd(source, os.path.join(where, "{%s}%s" % (uuid_, ext))) except EnvironmentError as e: if e.errno != 17: print "LinkUUIDRegistry: link failed:", e except shutil.Error: pass def update(self, where, copy=False): """Update the hard links in the links directory.""" self._save(where, copy) # Purge after save because the link source may just be in the # links directory itself. self._purge(where) self.link_dir = where def get_link_filename(self, uuid_): """Check in the links directory for a specific UUID filename.""" if self.link_dir is not None: matches = glob.glob(os.path.join(self.link_dir, "{%s}.*" % uuid_)) if len(matches) == 1: return os.path.basename(matches[0]) # Link does not exist e.g. can't hard-link across filesystems # or was not made due to policy. # For a return value of None the caller must substitute the # pre-existing pathname to preserve functionality. return None idjc-0.8.16/python/dialogs.py0000644000175000017500000002550512630014503012756 00000000000000"""Server dialogs for IDJC.""" # Copyright 2006-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . import os import time import gtk import glib import pango from idjc import FGlobs from idjc.prelims import ProfileManager from .gtkstuff import threadslock, idle_add import gettext t = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True) _ = t.gettext pm = ProfileManager() class dialog_group: """A mutually exclusive list of dialogs Only one can be on screen at a time. The dialogs below can call the hide method to remove any other dialogs. """ def __init__(self): self.dialist = [] def add(self, newdialog): self.dialist.append(newdialog) def hide(self, apartfrom = None): for each in self.dialist: if each is not apartfrom: each.hide() class disconnection_notification_dialog(gtk.Dialog): """Used to show a dialog related to the failure of the server connection.""" def window_attn(self, widget, event): if event.new_window_state | gtk.gdk.WINDOW_STATE_ICONIFIED: widget.set_urgency_hint(True) else: widget.set_urgency_hint(False) def respond(self, dialog, response): if response in (gtk.RESPONSE_CLOSE, gtk.RESPONSE_DELETE_EVENT): dialog.hide() def present(self): self.dial_group.hide(self) gtk.Dialog.present(self) def __init__(self, dial_group = None, window_group = None, window_title = None, text = None): if window_title is None: window_title = pm.title_extra.strip() else: window_title += pm.title_extra gtk.Dialog.__init__(self, window_title, None, gtk.DIALOG_DESTROY_WITH_PARENT, (gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE)) if window_group is not None: window_group.add_window(self) self.set_resizable(False) self.set_border_width(6) self.get_child().set_spacing(12) self.connect("close", self.respond) self.connect("response", self.respond) self.connect("window-state-event", self.window_attn) hbox = gtk.HBox(False, 20) hbox.set_spacing(12) self.get_content_area().pack_start(hbox, True, True, 0) hbox.show() image = gtk.Image() image.set_alignment(0.5, 0) image.set_from_stock(gtk.STOCK_DISCONNECT, gtk.ICON_SIZE_DIALOG) hbox.pack_start(image, False) image.show() vbox = gtk.VBox() hbox.pack_start(vbox, True, True, 0) vbox.show() if text is not None: for each in text.splitlines(): label = gtk.Label(each) label.set_use_markup(True) label.set_alignment(0.0, 0.5) vbox.pack_start(label, False) label.show() if dial_group is not None: dial_group.add(self) self.dial_group = dial_group # Dialog is not shown upon creation, but rather is (re)shown when needed. class autodisconnection_notification_dialog(gtk.Dialog): """Used to show when autodisconnection is imminent.""" def window_attn(self, widget, event): if event.new_window_state | gtk.gdk.WINDOW_STATE_ICONIFIED: widget.set_urgency_hint(True) else: widget.set_urgency_hint(False) def respond(self, dialog, response, actionok = None, actioncancel = None): if response == gtk.RESPONSE_OK or response == gtk.RESPONSE_DELETE_EVENT: if actionok is not None: actionok() if response == gtk.RESPONSE_CANCEL: if actioncancel is not None: actioncancel() dialog.hide() def present(self): self.dial_group.hide(self) gtk.Dialog.present(self) def __init__(self, dial_group = None, window_group = None, window_title = "", additional_text = None, actionok = None, actioncancel = None): gtk.Dialog.__init__(self, window_title, None, gtk.DIALOG_DESTROY_WITH_PARENT, (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OK, gtk.RESPONSE_OK)) if window_group is not None: window_group.add_window(self) self.set_resizable(False) self.connect("close", self.respond, actionok, actioncancel) self.connect("response", self.respond, actionok, actioncancel) self.connect("window-state-event", self.window_attn) self.set_default_response(gtk.RESPONSE_OK) hbox = gtk.HBox(False, 20) hbox.set_border_width(20) self.vbox.pack_start(hbox, True, True, 0) hbox.show() image = gtk.Image() image.set_from_stock(gtk.STOCK_DIALOG_WARNING, gtk.ICON_SIZE_DIALOG) hbox.pack_start(image, True, True, 0) image.show() vbox = gtk.VBox() vbox.set_spacing(8) hbox.pack_start(vbox, True, True, 0) vbox.show() if additional_text is not None: if type(additional_text) is str: additional_text = additional_text.splitlines() for each in additional_text: label = gtk.Label() attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(12500, 0, len(each))) label.set_attributes(attrlist) label.set_text(each) vbox.add(label) label.show() if dial_group is not None: dial_group.add(self) self.dial_group = dial_group class ReconnectionDialog(gtk.Dialog): """Displayed when a reconnection is scheduled. User may expedite or cancel the reconnection operation using this widget. """ td = (0.0,) # TC: The contents of <> and {} must not be changed. lines = _('The connection to the server ' 'in tab {servertab} has failed.\nA reconnection attempt will' ' be made in {countdown} seconds.\nThis is attempt number {attempt}' ' of {maxtries}.').splitlines() def update_countdown_text(self): remaining = self.remaining self.remaining = int(self.event_time - time.time()) if self.remaining != remaining: self.label2.set_text(self.lines[1].format(countdown=self.remaining)) if self.remaining == 0: self.hide() idle_add(self.reconnect_idle) @threadslock def reconnect_idle(self): self.tab.server_connect.set_active(True) if self.tab.server_connect.get_active() == False: self.activate() def run(self): if self.active: self.update_countdown_text() def activate(self): if not self.tab.troubleshooting.automatic_reconnection.get_active(): self.deactivate() self.tab.scg.disconnected_dialog.present() return if self.active == False: self.trycount = 0 self.td = [] for each in \ self.config.reconnection_times.child.get_text().split(","): try: x = max(float(each), 5.0) except: x = 5.0 self.td.append(x) self.active = True else: self.trycount += 1 repeat = self.config.reconnection_repeat.get_active() if not repeat and self.trycount >= len(self.td): self.deactivate() self.tab.scg.disconnected_dialog.present() return self.remaining = self.td[self.trycount % len(self.td)] self.event_time = time.time() + self.remaining self.update_countdown_text() if repeat: self.label3.set_text(_('This is attempt number %d. There is no ' 'retry limit.') % (self.trycount + 1)) else: self.label3.set_text(self.lines[2].format( attempt = self.trycount + 1, maxtries = len(self.td))) if self.config.reconnection_quiet.get_active(): self.realize() else: self.present() def deactivate(self): if self.active: self.hide() self.active = False def cb_response(self, dialog, response): if response == gtk.RESPONSE_CANCEL: self.deactivate() if response == gtk.RESPONSE_OK: self.event_time = time.time() + 0.25 def cb_delete(self, widget, event): self.deactivate() return True def __init__(self, tab): self.tab = tab gtk.Dialog.__init__(self, pm.title_extra.strip(), None, gtk.DIALOG_DESTROY_WITH_PARENT, (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, _('_Retry Now'), gtk.RESPONSE_OK)) self.set_modal(False) self.set_resizable(False) self.set_border_width(6) self.vbox.set_spacing(12) hbox = gtk.HBox() hbox.set_spacing(12) self.get_content_area().pack_start(hbox, False) hbox.show() i = gtk.image_new_from_stock(gtk.STOCK_DISCONNECT, gtk.ICON_SIZE_DIALOG) i.set_alignment(0.5, 0) hbox.pack_start(i, False) i.show() vbox = gtk.VBox() vbox.set_spacing(3) hbox.pack_start(vbox, False) self.label1 = gtk.Label(self.lines[0].format( servertab = tab.numeric_id + 1) + "\n") self.label1.set_use_markup(True) self.label2 = gtk.Label(self.lines[1].format(countdown = 0)) self.label3 = gtk.Label(self.lines[2].format(attempt = 1, maxtries = 1)) for l in (self.label1, self.label2, self.label3): l.set_alignment(0.0, 0.5) vbox.pack_start(l, False) l.show() vbox.show() self.config = tab.troubleshooting self.active = False self.connect("delete-event", self.cb_delete) self.connect("response", self.cb_response) idjc-0.8.16/python/mutagentagger.py0000644000175000017500000006371212630014503014170 00000000000000# mutagengui.py: GTK based file tagger. # Copyright (C) 2009 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . __all__ = ['MutagenGUI'] import os import sys import string import re import gettext import gtk import pango import glib import mutagen import mutagen.id3 as id3 from mutagen.mp3 import MP3 from mutagen.apev2 import APEv2, APETextValue from mutagen.musepack import Musepack from mutagen.monkeysaudio import MonkeysAudio from mutagen.asf import ASF, ASFUnicodeAttribute from idjc import FGlobs from .tooltips import set_tip from idjc.prelims import ProfileManager t = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True) _ = t.gettext pm = ProfileManager() class LeftLabel(gtk.HBox): """Use in place of gtk.Label where left justification is needed.""" def __init__(self, text): gtk.HBox.__init__(self) self.label = gtk.Label(text) self.pack_start(self.label, False, False, 0) class RightLabel(gtk.HBox): """Use in place of gtk.Label where right justification is needed.""" def __init__(self, text): gtk.HBox.__init__(self) self.pack_end(gtk.Label(text), False, False, 0) class FreeTagFrame(gtk.Frame): def __init__(self): gtk.Frame.__init__(self) sw = gtk.ScrolledWindow() sw.set_border_width(5) sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) self.add(sw) sw.show() self.tb = gtk.TextBuffer() tv = gtk.TextView(self.tb) tv.set_wrap_mode(gtk.WRAP_CHAR) tv.modify_font(pango.FontDescription('sans 12')) sw.add(tv) tv.show() class MutagenTagger(gtk.VBox): """Base class for ID3Tagger and NativeTagger.""" def __init__(self, pathname): gtk.VBox.__init__(self) self.pathname = pathname class WMATagger(MutagenTagger): """Handles tagging of WMA files""" primary_data = ("Title", "Author") secondaries = ("WM/AlbumTitle", "WM/AlbumArtist", "WM/Year", "WM/Genre") def save_tag(self): """Updates the tag with the GUI data.""" tag = self.tag tb = self.tag_frame.tb for key in self.text_set: try: del tag[key] except KeyError: pass for each in self.primary_line: val = each[1].get_text().strip() if val: tag[each[0]] = val else: try: del tag[each[0]] except KeyError: pass lines = tb.get_text(tb.get_start_iter(), tb.get_end_iter()).splitlines() for line in lines: try: key, val = line.split("=", 1) except ValueError: continue else: key = key.strip() val = val.strip() if val: try: tag[key] += [ASFUnicodeAttribute(val.decode("utf-8"))] except (KeyError, AttributeError): try: tag[key] = [ ASFUnicodeAttribute(val.decode("utf-8"))] except KeyError: print "Unacceptable key", key tag.save() def load_tag(self): """(re)Writes the tag data to the GUI.""" tag = self.tag for each in self.primary_line: try: data = tag[each[0]] except KeyError: pass else: each[1].set_text("/".join(unicode(y) for y in data)) additional = [] for key in self.secondaries: values = tag.get(key, [ASFUnicodeAttribute("")]) for val in values: additional.append(key.encode("utf-8") + "=" + unicode( val).encode("utf-8")) for key in self.text_set: if key not in self.primary_data and key not in self.secondaries: values = tag[key] for val in values: additional.append(key.encode("utf-8") + "=" + unicode( val).encode("utf-8")) self.tag_frame.tb.set_text("\n".join(additional)) def __init__(self, pathname): MutagenTagger.__init__(self, pathname) try: self.tag = mutagen.asf.ASF(pathname) if not isinstance(self.tag, mutagen.asf.ASF): raise mutagen.asf.error except mutagen.asf.error: print "Not a real wma/asf file apparently." self.tag = None return hbox = gtk.HBox() hbox.set_border_width(5) hbox.set_spacing(8) self.pack_start(hbox, False, False, 0) vbox_text = gtk.VBox() hbox.pack_start(vbox_text, False, False, 0) vbox_entry = gtk.VBox() hbox.pack_start(vbox_entry, True, True, 0) self.primary_line = [] for text, entry in ((x, gtk.Entry()) for x in self.primary_data): self.primary_line.append((text, entry)) vbox_text.add(LeftLabel(text)) vbox_entry.add(entry) hbox.show_all() self.tag_frame = FreeTagFrame() self.tag_frame.set_border_width(5) self.add(self.tag_frame) self.tag_frame.show() self.text_set = [] for key, val in self.tag.iteritems(): if key not in self.primary_line and all(isinstance(v, ( ASFUnicodeAttribute, unicode)) for v in val): self.text_set.append(key) class ID3Tagger(MutagenTagger): """ID3 tagging with Mutagen.""" primary_data = (("TIT2", _('title')), ("TPE1", _('artist')), ("TALB", _('album')), ("TRCK", _('track/total')), ("TCON", _('genre')), ("TDRC", _('record date'))) def save_tag(self): """Updates the tag with the GUI data.""" tag = self.tag # Remove all text tags. for fid in tag.iterkeys(): if fid[0] == "T": del tag[fid] # Add the primary tags. for fid, entry in self.primary_line: text = entry.get_text().strip() if text: frame = getattr(id3, fid) tag[fid] = frame(3, [text]) # Add the freeform text tags. tb = self.tag_frame.tb lines = tb.get_text(tb.get_start_iter(), tb.get_end_iter()).splitlines() for line in lines: try: fid, val = line.split(":", 1) except ValueError: continue fid = fid.strip() val = val.strip().decode("utf-8") try: frame = id3.Frames[fid] except NameError: continue if not issubclass(frame, id3.TextFrame): continue if frame is id3.TXXX: try: key, val = val.split(u"=", 1) except ValueError: continue f = frame(3, key.strip(), [val.strip()]) tag[f.HashKey] = f else: try: val_list = tag[fid].text except KeyError: tag[fid] = frame(3, [val]) else: val_list.append(val) tag.save() def load_tag(self): """(re)Writes the tag data to the GUI.""" additional = [] done = [] for fid, entry in self.primary_line: try: frame = self.tag[fid] if fid[0] == "T": try: entry.set_text(frame.text[0]) except TypeError: # Handle occurrence of ID3Timestamp. entry.set_text(str(frame.text[0])) for each in frame.text[1:]: additional.append(fid + ":" + each.encode("utf-8")) except KeyError: entry.set_text("") done.append(fid) for fid, frame in self.tag.iteritems(): if fid[0] == "T" and fid not in done: sep = "=" if fid.startswith("TXXX:") else ":" for text in frame.text: additional.append(fid + sep + text.encode("utf-8")) self.tag_frame.tb.set_text("\n".join(additional)) def __init__(self, pathname, force=False): MutagenTagger.__init__(self, pathname) if force: try: self.tag = mutagen.File(pathname) if not isinstance(self.tag, MP3): raise mutagen.mp3.error except mutagen.mp3.error: print "Not a real mp3 file apparently." self.tag = None return try: self.tag.add_tags() print "Added ID3 tags to", pathname except mutagen.id3.error: print "Existing ID3 tags found." else: try: # Obtain ID3 tags from a non mp3 file. self.tag = mutagen.id3.ID3(pathname) except mutagen.id3.error: self.tag = None return hbox = gtk.HBox() hbox.set_border_width(5) hbox.set_spacing(8) self.pack_start(hbox, False, False, 0) vbox_frame = gtk.VBox() hbox.pack_start(vbox_frame, False, False, 0) vbox_text = gtk.VBox() hbox.pack_start(vbox_text, False, False, 0) vbox_entry = gtk.VBox() hbox.pack_start(vbox_entry, True, True, 0) self.primary_line = [] for frame, text, entry in ( (x, y, gtk.Entry()) for x, y in self.primary_data): self.primary_line.append((frame, entry)) vbox_frame.add(LeftLabel(frame)) vbox_text.add(RightLabel(text)) vbox_entry.add(entry) hbox.show_all() self.tag_frame = FreeTagFrame() set_tip(self.tag_frame, _('Add any other ID3 text frames here.\ne.g. ' 'TIT2:Alternate Title\nThis will be appended onto the main TIT2 tag.' '\n\nEnter user defined text frames like this:\nTXXX:foo=bar\n\n' 'For more information visit www.id3.org.')) self.tag_frame.set_border_width(5) # TC: Remaining textual ID3 data is show below this heading. self.tag_frame.set_label(_(' Additional Text Frames ')) self.add(self.tag_frame) self.tag_frame.show() class MP4Tagger(MutagenTagger): """MP4 tagging with Mutagen.""" primary_data = (("\xa9nam", _('Title')), ("\xa9ART", _('Artist')), ("\xa9alb", _('Album')), ("trkn", _('Track')), ("\xa9gen", _('Genre')), ("\xa9day", _('Year'))) def save_tag(self): """Updates the tag with the GUI data.""" tag = self.tag for fid, entry in self.primary_line: text = entry.get_text().strip() if fid == "trkn": mo1 = re.search("\d+", text) try: track = int(text[mo1.start():mo1.end()]) except AttributeError: new_val = None else: text = text[mo1.end():] mo2 = re.search("\d+", text) try: total = int(text[mo2.start():mo2.end()]) except AttributeError: new_val = [(track, 0)] else: new_val = [(track, total)] else: new_val = [text] if text else None if new_val is not None: tag[fid] = new_val else: try: del tag[fid] except KeyError: pass tag.save() def load_tag(self): """(re)Writes the tag data to the GUI.""" additional = [] for fid, entry in self.primary_line: try: frame = self.tag[fid][0] except KeyError: entry.set_text("") else: if fid == "trkn": if frame[1]: entry.set_text("%d/%d" % frame) else: entry.set_text(str(frame[0])) else: entry.set_text(frame) def __init__(self, pathname): MutagenTagger.__init__(self, pathname) try: self.tag = mutagen.mp4.MP4(pathname) if not isinstance(self.tag, mutagen.mp4.MP4): raise mutagen.mp4.error except mutagen.mp4.error: print "Not a real mp4 file apparently." self.tag = None return hbox = gtk.HBox() hbox.set_border_width(5) hbox.set_spacing(8) self.pack_start(hbox, False, False, 0) vbox_text = gtk.VBox() hbox.pack_start(vbox_text, False, False, 0) vbox_entry = gtk.VBox() hbox.pack_start(vbox_entry, True, True, 0) self.primary_line = [] for frame, text, entry in ( (x, y, gtk.Entry()) for x, y in self.primary_data): self.primary_line.append((frame, entry)) vbox_text.add(LeftLabel(text)) vbox_entry.add(entry) hbox.show_all() class NativeTagger(MutagenTagger): """Native format tagging with Mutagen. Mostly FLAC and Ogg.""" blacklist = "coverart", "metadata_block_picture" def save_tag(self): """Updates the tag with the GUI data.""" tag = self.tag for key in tag.iterkeys(): if key not in self.blacklist: del tag[key] tb = self.tag_frame.tb lines = tb.get_text(tb.get_start_iter(), tb.get_end_iter()).splitlines() for line in lines: try: key, val = line.split("=", 1) except ValueError: continue else: key = key.strip() val = val.strip() if key not in self.blacklist and val: try: tag[key] += [val.decode("utf-8")] except (KeyError, AttributeError): try: tag[key] = [val.decode("utf-8")] except KeyError: print "Unacceptable key", key tag.save() def load_tag(self): """(re)Writes the tag data to the GUI.""" tag = self.tag lines = [] primaries = "title", "artist", "author", "album",\ "tracknumber", "tracktotal", "genre", "date" for key in primaries: try: values = tag[key] except KeyError: lines.append(key + "=") else: for val in values: lines.append(key + "=" + val.encode("utf-8")) for key, values in tag.iteritems(): if key not in primaries and key not in self.blacklist: for val in values: lines.append(key + "=" + val.encode("utf-8")) self.tag_frame.tb.set_text("\n".join(lines)) def __init__(self, pathname, ext): MutagenTagger.__init__(self, pathname) self.tag = mutagen.File(pathname) if isinstance(self.tag, (MP3, APEv2)): # MP3 and APEv2 have their own specialised tagger. self.tag = None return self.tag_frame = FreeTagFrame() self.add(self.tag_frame) self.tag_frame.show() class ApeTagger(MutagenTagger): """APEv2 tagging with Mutagen.""" opener = {"ape": MonkeysAudio, "mpc": Musepack } def save_tag(self): """Updates the tag with the GUI data.""" tag = self.tag for key, values in tag.iteritems(): if isinstance(values, APETextValue): del tag[key] tb = self.tag_frame.tb lines = tb.get_text(tb.get_start_iter(), tb.get_end_iter()).splitlines() for line in lines: try: key, val = line.split("=", 1) except ValueError: continue else: key = key.strip() val = val.strip() if val: try: tag[key].value += "\0" + val.decode("utf-8") except (KeyError, AttributeError): try: tag[key] = APETextValue(val.decode("utf-8"), 0) except KeyError: print "Unacceptable key", key tag.save() def load_tag(self): """(re)Writes the tag data to the GUI.""" tag = self.tag lines = [] primaries = "TITLE", "ARTIST", "AUTHOR", "ALBUM",\ "TRACKNUMBER", "TRACKTOTAL", "GENRE", "DATE" for key in primaries: try: values = tag[key] except KeyError: lines.append(key + "=") else: for val in values: lines.append(key + "=" + val.encode("utf-8")) for key, values in tag.iteritems(): if key not in primaries and isinstance(values, APETextValue): for val in values: lines.append(key + "=" + val.encode("utf-8")) self.tag_frame.tb.set_text("\n".join(lines)) def __init__(self, pathname, extension): MutagenTagger.__init__(self, pathname) try: self.tag = self.opener[extension](pathname) except KeyError: try: self.tag = APEv2(pathname) except: print "ape tag not found" self.tag = None return else: print "ape tag found on non-native format" except: print "failed to create tagger for native format" self.tag = None return else: try: self.tag.add_tags() except: print "ape tag found on native format" else: print "no existing ape tags found" self.tag_frame = FreeTagFrame() self.add(self.tag_frame) self.tag_frame.show() class MutagenGUI: ext2name = {"aac": "AAC", "mp3": "ID3", "mp2": "ID3", "mp4": "MP4", "m4a": "MP4", "spx": "Speex", "flac": "FLAC", "ogg": "Ogg Vorbis", "oga": "XIPH Ogg audio", "opus": "Ogg Opus", "m4b": "MP4", "m4p": "MP4", "wma": "Windows Media Audio"} def destroy_and_quit(self, widget, data = None): gtk.main_quit() sys.exit(0) def update_playlists(self, pathname, idjcroot): newplaylistdata = idjcroot.player_left.get_media_metadata(pathname) idjcroot.player_left.update_playlist(newplaylistdata) idjcroot.player_right.update_playlist(newplaylistdata) @staticmethod def is_supported(pathname): supported = [ "mp2", "mp3", "ogg", "oga" ] if FGlobs.avenabled: supported += ["aac", "mp4", "m4a", "m4b", "m4p", "ape", "mpc", "wma"] if FGlobs.flacenabled: supported.append("flac") if FGlobs.speexenabled: supported.append("spx") if FGlobs.opusenabled: supported.append("opus") extension = os.path.splitext(pathname)[1][1:].lower() if supported.count(extension) != 1: if extension: print "File type", extension, "is not supported for tagging" return False else: return extension def __init__(self, pathname, encoding, idjcroot = None): if not pathname: print "Tagger not supplied any pathname." return extension = self.is_supported(pathname) if extension == False: print "Tagger file extension", extension, "not supported." return self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) if idjcroot is not None: idjcroot.window_group.add_window(self.window) self.window.set_size_request(550, 450) # TC: Window title. self.window.set_title(_('IDJC Tagger') + pm.title_extra) self.window.set_destroy_with_parent(True) self.window.set_border_width(9) self.window.set_resizable(True) if idjcroot == None: self.window.connect("destroy", self.destroy_and_quit) vbox = gtk.VBox() self.window.add(vbox) vbox.show() label = gtk.Label() if idjcroot: if encoding is not None: label.set_markup(u"" + _('Filename:').decode("utf-8") + \ u" " + glib.markup_escape_text(unicode(os.path.split( pathname)[1], encoding).encode("utf-8", "replace")) + u"") else: label.set_markup(u"" + _('Filename:').decode("utf-8") + \ u" " + glib.markup_escape_text(os.path.split( pathname)[1]).encode("utf-8", "replace") + u"") else: label.set_markup(u"" + _('Filename:').decode("utf-8") + u" " + \ glib.markup_escape_text(unicode(os.path.split( pathname)[1], "latin1").encode("utf-8", "replace")) + u"") vbox.pack_start(label, False, False, 6) label.show() hbox = gtk.HBox() hbox.set_border_width(2) apply_button = gtk.Button(None, gtk.STOCK_APPLY) if idjcroot is not None: apply_button.connect_object_after("clicked", self.update_playlists, pathname, idjcroot) hbox.pack_end(apply_button, False, False, 0) apply_button.show() close_button = gtk.Button(None, gtk.STOCK_CLOSE) close_button.connect_object("clicked", gtk.Window.destroy, self.window) hbox.pack_end(close_button, False, False, 10) close_button.show() reload_button = gtk.Button(None, gtk.STOCK_REVERT_TO_SAVED) hbox.pack_start(reload_button, False, False, 10) reload_button.show() vbox.pack_end(hbox, False, False, 0) hbox.show() hbox = gtk.HBox() vbox.pack_end(hbox, False, False, 2) hbox.show() notebook = gtk.Notebook() notebook.set_border_width(2) vbox.pack_start(notebook, True, True, 0) notebook.show() try: self.ape = ApeTagger(pathname, extension) if extension in ("mp3", "aac"): self.id3 = ID3Tagger(pathname, True) self.native = None else: self.id3 = ID3Tagger(pathname, False) if extension in ("mp4", "m4a", "m4b", "m4p"): self.native = MP4Tagger(pathname) elif extension == "wma": self.native = WMATagger(pathname) elif extension in ("ape", "mpc"): # APE tags are native to this format. self.native = None else: self.native = NativeTagger(pathname, ext=extension) if self.id3 is not None and self.id3.tag is not None: reload_button.connect("clicked", lambda x: self.id3.load_tag()) apply_button.connect("clicked", lambda x: self.id3.save_tag()) label = gtk.Label("ID3") notebook.append_page(self.id3, label) self.id3.show() if self.ape is not None and self.ape.tag is not None: reload_button.connect("clicked", lambda x: self.ape.load_tag()) apply_button.connect("clicked", lambda x: self.ape.save_tag()) label = gtk.Label("APE v2") notebook.append_page(self.ape, label) self.ape.show() if self.native is not None and self.native.tag is not None: reload_button.connect("clicked", lambda x: self.native.load_tag()) apply_button.connect("clicked", lambda x: self.native.save_tag()) label = gtk.Label(_('Native') + " (" + self.ext2name[ extension] + ")") notebook.append_page(self.native, label) self.native.show() reload_button.clicked() apply_button.connect_object_after("clicked", gtk.Window.destroy, self.window) self.window.show() except IOError as e: print e self.window.destroy() idjc-0.8.16/python/maingui.py0000644000175000017500000045203412642452554013005 00000000000000# maingui.py: Main python code of IDJC # Copyright 2005-2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . import os import sys import fcntl import subprocess import ConfigParser import operator import socket import pickle import stat import signal import time import gettext import itertools import collections import json import uuid import ctypes from binascii import hexlify, unhexlify import dbus import dbus.service import glib import gobject import gtk import cairo import pango from idjc import FGlobs, PGlobs from .playergui import * from .sourceclientgui import * from .preferences import * from .jingles import ExtraPlayers from .utils import SlotObject from .utils import LinkUUIDRegistry from .utils import PathStr from .gtkstuff import threadslock, WindowSizeTracker, ConfirmationDialog from .gtkstuff import IconChooserButton, IconPreviewFileChooserDialog, LEDDict from .gtkstuff import LabelSubst, gdklock, nullcm from .gtkstuff import idle_add, timeout_add, timeout_add_seconds, source_remove from . import midicontrols from .tooltips import set_tip from . import songdb from .prelims import * _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext args = ArgumentParserImplementation().parse_args() pm = ProfileManager() link_uuid_reg = LinkUUIDRegistry() METER_TEXT_SIZE = 8000 class FreewheelButton(gtk.Button): LED = LEDDict(9) def __init__(self, mixer_write): gtk.Button.__init__(self) hbox = gtk.HBox() self._indicator = gtk.Image() self._indicator.set_alignment(0.0, 0.0) hbox.pack_start(self._indicator, False) self._indicator.show() label = gtk.Label() label.set_padding(2, 0) label.set_alignment(1.0, 0.5) label.set_markup(u"\u2699") hbox.pack_start(label, False) label.show() self.add(hbox) hbox.show() self._mixer_write = mixer_write self.connect("clicked", lambda w: self._cb_toggle()) self._enabler = gtk.CheckButton(_('Show a JACK freewheel control on the main panel')) self._enabler.connect("toggled", self._cb_enabler) set_tip(self, _('Toggle JACK freewheel mode.')) self._active = None self.set_meter_value(False) def _cb_toggle(self): self._mixer_write("ACTN=freewheel_toggle\nend\n") def set_active(self, active): self._mixer_write( "ACTN=freewheel_%s\nend\n" % ("on" if active else "off")) def _cb_enabler(self, widget): self.set_visible(widget.get_active()) @property def enabler(self): """This button has a show/hide control in prefs.""" return self._enabler @property def activedict(self): """Info for save/restore.""" return {"freewheel_button_enable": self._enabler} def set_meter_value(self, active): """Indicator of freewheel mode to be set using this method.""" if active != self._active: self._active = active self._indicator.set_from_pixbuf(self.LED["red" if active else "clear"]) class MenuMixin(object): def build(self, menu, autowipe=False, use_underline=True): def mkitems(x, how=gtk.MenuItem): for name, text in x: mi = how(text) mi.set_use_underline(use_underline) menu.append(mi) mi.show() setattr(self, name + "menu_i", mi) if autowipe: mi.connect("activate", self.cb_autowipe) if issubclass(how, gtk.CheckMenuItem) and use_underline == True: a = gtk.ToggleAction(None, text, None, None) a.connect_proxy(mi) setattr(self, name + "menu_a", a) return mkitems def submenu(self, mi, name): m = gtk.Menu() mi.set_submenu(m) m.show() setattr(self, name + "menu", m) return m def sep(self, menu): s = gtk.SeparatorMenuItem() menu.append(s) s.show() def cb_autowipe(self, mi): mi.get_submenu().foreach(lambda w: w.destroy()) class MainMenu(gtk.MenuBar, MenuMixin): def __init__(self): gtk.MenuBar.__init__(self) self.build(self)((("file", _('File')), ("view", _('View')), ("jack", _('JACK Ports')), ("help", _('Help')))) self.submenu(self.filemenu_i, "file") self.build(self.filemenu, autowipe=True)((("streams", _('Streams')), ("recorders", _('Recorders')))) self.sep(self.filemenu) self.build(self.filemenu)((("quit", gtk.STOCK_QUIT),), gtk.ImageMenuItem) for each in ("streams", "recorders"): mi = getattr(self, each + "menu_i") m = self.submenu(mi, each) self.submenu(self.viewmenu_i, "view") mkitems = self.build(self.viewmenu) mkitems(zip("output prefs profiles".split(" "), (_('Output'), _('Preferences'), _('Profiles')))) self.sep(self.viewmenu) mkitems(zip("songdb chmeters strmeters players backgroundtracks buttonbar".split(" "), (_('Music Database'), _('Channel Meters'), _('Output Meters'), _('Tabbed Area'), _('Background Tracks'), _('Button Bar'))), gtk.CheckMenuItem) if not songdb.have_songdb: self.songdbmenu_i.hide() self.submenu(self.jackmenu_i, "jack") self.submenu(self.helpmenu_i, "help") self.build(self.helpmenu)((("about", gtk.STOCK_ABOUT),), gtk.ImageMenuItem) self.filemenu_i.connect("activate", self.cb_filemenu_activate) def cb_filemenu_activate(self, menuitem): self.streamsmenu_i.emit("activate") self.recordersmenu_i.emit("activate") class JackMenu(MenuMixin): def __init__(self, menu, write, read): self.menu = menu self.write = write self.read = read self.ports = [] self.pathname = pm.ports_pathname self.session_type = pm.session_type # pylint: disable=E1103 # # member really exists, was created by setattr mkitems = self.build(menu.jackmenu) mkitems(zip( "channels players voip dsp mix output other".split(), ( _('Channels'), _('Players'), _('VoIP'), _('DSP'), _('Mix'), _('Output'), _('Misc')))) self.submenu(self.channelsmenu_i, "channels") self.submenu(self.playersmenu_i, "players") self.submenu(self.voipmenu_i, "voip") self.submenu(self.dspmenu_i, "dsp") self.submenu(self.mixmenu_i, "mix") self.submenu(self.outputmenu_i, "output") self.submenu(self.othermenu_i, "other") out2_in2 = itertools.cycle(("_out_",)*2 + ("_in_",)*2) out2_in1 = itertools.cycle(("_out_",)*2 + ("_in_",)*1) lr = itertools.cycle("lr") dj2_str2 = itertools.cycle(("dj",)*2 + ("str",)*2) for prefix in "pl pr pi".split(): for each in zip((prefix,) * 4, out2_in2, lr): self.add_port(self.playersmenu, "".join(each)) for prefix in "pe01-12 pe13-24".split(): for each in zip((prefix,) * 2, ("_out_", ) * 2, lr): self.add_port(self.playersmenu, "".join(each)) for each in zip(("pe_in_", ) * 2, lr): self.add_port(self.playersmenu, "".join(each)) for each in zip(("voip",) * 4, out2_in2, lr): self.add_port(self.voipmenu, "".join(each)) for each in zip(("dsp",) * 4, out2_in2, lr): self.add_port(self.dspmenu, "".join(each)) for each in zip(dj2_str2, ("_out_",)*4, lr): self.add_port(self.mixmenu, "".join(each)) for i in range(1, PGlobs.num_micpairs * 2 + 1): self.add_port(self.channelsmenu, "ch_in_" + str(i)) for each in zip(("output_in_",) * 2, lr): self.add_port(self.outputmenu, "".join(each)) self.add_port(self.othermenu, "midi_control") self.add_port(self.othermenu, "alarm_out") self._port_data = [] self.sep(menu.jackmenu) mkitems((("reset", _('Reset')),)) self.resetmenu_i.connect("activate", self._reset_confirm_dialog) set_tip(self.resetmenu_i, _('Reset the JACK port connections to the default settings.')) def _reset_confirm_dialog(self, menuitem): dialog = ConfirmationDialog("", _('Reset all JACK port connections?\n\n' 'All currently established connections will be lost\n' 'and replaced with defaults.'), markup=True, action=gtk.STOCK_YES, inaction=gtk.STOCK_NO) dialog.set_transient_for(self.menu.get_toplevel()) dialog.ok.connect("clicked", lambda w: self._reset_port_connections()) dialog.show_all() def _reset_port_connections(self): for port in self.ports: self.write("disconnect", "JPRT=%s\nJPT2=\nend\n" % port) self.load(where="") def add_port(self, menu, port): pport = os.environ["client_id"] + ":" + port self.ports.append(pport) self.build(menu, autowipe=True, use_underline=False)(((port, pport),)) mi = getattr(self, port + "menu_i") sub = self.submenu(mi, port) mi.connect("activate", self.cb_port_connections, pport, sub) mi.emit("activate") def cb_port_connections(self, mi, port, menu): reply = "" if "_in_" in port or port.endswith("_in"): filter_ = "outputs" elif "_out_" in port or port.endswith("_out"): filter_ = "inputs" elif "midi" in port: filter_ = "midioutputs" else: print "JackMenu.port_connections: unknown port type" return self.write("portread", "JFIL=%s\nJPRT=%s\nend\n" % (filter_, port)) while not reply.startswith("jackports="): reply = self.read() reply = reply[10:].rstrip().split() if not reply: self.build(menu)((("noports", _('No compatible ports available.')),)) self.noportsmenu_i.set_sensitive(False) else: for destport in reply: self.build(menu, use_underline=False)( (("targetport", unhexlify(destport[1:])),), how=gtk.CheckMenuItem) mi = getattr(self, "targetportmenu_i") if destport.startswith("@"): mi.set_active(True) mi.connect( "activate", self.cb_activate, port, unhexlify(destport[1:])) def cb_activate(self, mi, local, dest): cmd = "connect" if mi.get_active() else "disconnect" self.write(cmd, "JPRT=%s\nJPT2=%s\nend\n" % (local, dest)) # Defer save until backend reports connections have changed. def get_playback_port_qty(self): self.write("portread", "JFIL=\nJPRT=\nend\n") reply = "" while not reply.startswith("jackports="): reply = self.read() match = "-" + hexlify("system:playback_") pbports = [x for x in reply[10:-1].split() if x.startswith(match)] return len(pbports) def standard_save(self): self._port_data = self._get_port_data() if self.session_type == "L0": self._save(self._port_data) def session_save(self, where=None): self._port_data = self._get_port_data() self._save(self._port_data, where) if pm.profile is not None: arg = _("{0} profile={1}:{2} settings saved.").format( PGlobs.app_shortform, self.session_type, pm.profile) else: arg = _("{0} session={1}:{2} settings saved.").format( PGlobs.app_shortform, self.session_type, pm.session_name) try: subprocess.call(["notify-send", arg]) except OSError: pass def _get_port_data(self): total = [] for port in self.ports: element = [port] self.write("portread", "JFIL=\nJPRT=%s\nend\n" % port) reply = "" while not reply.startswith("jackports="): reply = self.read() element.append([unhexlify(x.lstrip("@-")) for x in reply[10:-1].split() if x.startswith("@")]) total.append(element) return total def _save(self, data, where=None): if where is not None: where = os.path.join(where, os.path.split(self.pathname)[1]) client_id = "\"%s:" % os.environ["client_id"] try: with open(where or self.pathname, "w") as f: f.write(json.dumps(data).replace(client_id, "\"{client_id}:")) except Exception as e: print "problem writing", self.pathname else: print "jack connections saved" def load(self, where=None , startup=False): try: where = self.pathname if where is None else where with open(where) as f: cons = f.read() except Exception: if where: print "problem reading JACK connections files,", where if args.no_default_jack_connections: cons = [] else: cons = """[ ["{client_id}:pl_out_l", ["{client_id}:pl_in_l"]], ["{client_id}:pl_out_r", ["{client_id}:pl_in_r"]], ["{client_id}:pr_out_l", ["{client_id}:pr_in_l"]], ["{client_id}:pr_out_r", ["{client_id}:pr_in_r"]], ["{client_id}:pi_out_l", ["{client_id}:pi_in_l"]], ["{client_id}:pi_out_r", ["{client_id}:pi_in_r"]], ["{client_id}:pe01-12_out_l", ["{client_id}:pe_in_l"]], ["{client_id}:pe01-12_out_r", ["{client_id}:pe_in_r"]], ["{client_id}:pe13-24_out_l", ["{client_id}:pe_in_l"]], ["{client_id}:pe13-24_out_r", ["{client_id}:pe_in_r"]], ["{client_id}:ch_in_1", ["system:capture_1"]], ["{client_id}:ch_in_2", ["system:capture_2"]], ["{client_id}:dj_out_l", ["system:playback_1"]], ["{client_id}:dj_out_r", ["system:playback_2"]], ["{client_id}:alarm_out", ["system:playback_1", "system:playback_2"]], ["{client_id}:output_in_l", ["{client_id}:str_out_l"]], ["{client_id}:output_in_r", ["{client_id}:str_out_r"]], """ if self.get_playback_port_qty() < 8: cons += """ ["{client_id}:str_out_l", ["system:playback_3", "{client_id}:output_in_l"]], ["{client_id}:str_out_r", ["system:playback_4", "{client_id}:output_in_r"]]] """ else: cons += """ ["{client_id}:str_out_l", ["system:playback_5", "{client_id}:output_in_l"]], ["{client_id}:str_out_r", ["system:playback_6", "{client_id}:output_in_r"]]] """ try: cons = json.loads(cons.format(client_id=os.environ["client_id"])) except ValueError: print "jack port connections file is empty" else: self._port_data = cons if not startup or not args.no_jack_connections: self.restore(cons) def restore(self, cons=None, restrict=""): cons = cons or self._port_data for port, targets in cons: for target in targets: if port.startswith(restrict): self.write("connect", "JPRT=%s\nJPT2=%s\nend\n" % (port, target)) class ColouredArea(gtk.DrawingArea): def __init__(self, colour=gtk.gdk.Color()): gtk.DrawingArea.__init__(self) self.colour = colour self.rect = gtk.gdk.Rectangle() self.connect("realize", self._on_realize) self.connect("configure-event", self._on_configure) self.connect("expose-event", self._on_expose) def set_colour(self, colour): self.colour = colour self.queue_draw_area(0, 0, self.rect.width, self.rect.height) def _on_realize(self, widget): self.gc = gtk.gdk.GC(self.window) def _on_configure(self, widget, event): self.rect.width = event.width self.rect.height = event.height def _on_expose(self, widget, event): self.gc.set_rgb_fg_color(self.colour) self.window.draw_rectangle( self.gc, True, 0, 0, self.rect.width, self.rect.height) class ColourButton(gtk.ColorButton): def get_text(self): return self.get_color().to_string() def set_text(self, string): self.set_color(gtk.gdk.Color(string)) class IconChooserButtonExtd(IconChooserButton): def get_text(self): return self.get_filename() or "" def set_text(self, filename): self.set_filename(filename or None) class MicButton(gtk.ToggleButton): @property def flash(self): return self.__flash @flash.setter def flash(self, value): self.__flash = bool(value) and self.has_reminder_flash() self.__indicate() @staticmethod def __cb_toggle(self): self.__indicate() if self.get_active(): self.set_colour(self.open_colour) self.opener_tab.button_was_on = True else: self.opener_tab.button_was_on = False def __indicate(self): if self.get_active(): if self.flash: self.set_colour(self.flash_colour) else: self.set_colour(self.open_colour) else: self.set_colour(self.closed_colour) def set_colour(self, colour): for each in (self.ca1, self.ca2): each.set_colour(colour) def __init__(self, opener_settings, opener_tab, mic_agc_list): gtk.ToggleButton.__init__(self) self.opener_tab = opener_tab nsa = not opener_settings.button_numbers.get_active() self.open_colour = opener_settings.open_colour.get_color() self.closed_colour = opener_settings.closed_colour.get_color() self.flash_colour = opener_settings.reminder_colour.get_color() self.has_reminder_flash = opener_tab.has_reminder_flash.get_active attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, 100)) hbox = gtk.HBox() hbox.set_spacing(4) def make_indicator(): ca = ColouredArea(self.closed_colour) width = opener_settings.indicator_width.get_value_as_int() if width: ca.set_size_request(width, -1) hbox.pack_start(ca, False) return ca self.ca1 = make_indicator() lvbox = gtk.VBox() hbox.pack_start(lvbox, False) self._ident_label = gtk.Label() self._ident_label.set_no_show_all(nsa) self._ident_label.set_alignment(0.0, 0.0) self._ident_label.set_attributes(attrlist) lvbox.pack_start(self._ident_label, False) self._chan_label3 = gtk.Label() self._chan_label3.set_no_show_all(nsa) self._chan_label3.set_alignment(0.0, 1.0) self._chan_label3.set_attributes(attrlist) lvbox.pack_end(self._chan_label3, False) pad = gtk.HBox() hbox.pack_start(pad) self._text_label = gtk.Label() text = opener_tab.button_text.get_text().strip() if text: self._text_label.set_text(text) hbox.pack_start(self._text_label, False) self._icon_image = gtk.Image() icon = opener_tab.icb.get_filename() try: pb = gtk.gdk.pixbuf_new_from_file_at_size(icon, 47, 20) except (TypeError, glib.GError): pass else: self._icon_image.set_from_pixbuf(pb) hbox.pack_start(self._icon_image, False) pad = gtk.HBox() hbox.pack_start(pad) rvbox = gtk.VBox() hbox.pack_start(rvbox, False) self._chan_label1 = gtk.Label() self._chan_label1.set_no_show_all(nsa) self._chan_label1.set_alignment(1.0, 0.0) self._chan_label1.set_attributes(attrlist) rvbox.pack_start(self._chan_label1, False) self._chan_label2 = gtk.Label() self._chan_label2.set_no_show_all(nsa) self._chan_label2.set_alignment(1.0, 1.0) self._chan_label2.set_attributes(attrlist) rvbox.pack_end(self._chan_label2, False) self.ca2 = make_indicator() self.add(hbox) to_close = ",".join(str(i) for i, cb in enumerate( opener_tab.closer_hbox.get_children(), start=1) if cb.get_active()) if to_close: to_close = "!" + to_close self._ident_label.set_text("(%d)%s" % (opener_tab.ident, to_close)) def labeltext(): for blk in itertools.izip_longest(*(iter(mic_agc_list),) * 4): yield ",".join(x.ui_name for x in blk if x is not None) for text, label in zip(labeltext(), (self._chan_label1, self._chan_label2, self._chan_label3)): label.set_text(text) self.connect("toggled", self.__cb_toggle) self.__flash = False self.show_all() class OpenerTab(gtk.VBox): __gsignals__ = { "changed" : ( gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ())} def __init__(self, ident): gtk.VBox.__init__(self) self.set_border_width(6) self.set_spacing(4) self.label = gtk.Label() self.label.show() self.set_ident(ident) self.activedict = {} sg = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) lhbox = gtk.HBox() lhbox.set_spacing(3) label = gtk.Label(_('Text')) lhbox.pack_start(label, False) self.button_text = gtk.Entry() set_tip(self.button_text, _("The opener button's text.")) self.button_text.connect("changed", lambda w: self.emit("changed")) sg.add_widget(self.button_text) lhbox.pack_start(self.button_text) spc = gtk.HBox() lhbox.pack_start(spc, False, padding=2) label = gtk.Label(_('Icon')) lhbox.pack_start(label, False) self.icon_chooser = IconPreviewFileChooserDialog("Choose An Icon", buttons = (gtk.STOCK_CLEAR, gtk.RESPONSE_NONE, gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OK, gtk.RESPONSE_OK)) self.icb = IconChooserButtonExtd(self.icon_chooser) set_tip(self.icb, _("The opener button's icon.")) self.icb.connect("filename-changed", lambda w, r: self.emit("changed")) sg.add_widget(self.icb) lhbox.pack_start(self.icb, True) self.pack_start(lhbox, False) hbox = gtk.HBox() set_tip(hbox, _('The headroom is the amount by which to reduce player ' 'volume when this opener is active. Note that the actual amount will be' ' the largest value of all the currently open buttons.')) self.pack_start(hbox, False) label = gtk.Label(_('The amount of headroom required (dB)')) label.set_alignment(0.0, 0.5) hbox.pack_start(label, False) self.headroom = gtk.SpinButton( gtk.Adjustment(0.0, 0.0, 32.0, 0.5), digits=1) self.headroom.connect("value-changed", lambda w: self.emit("changed")) hbox.pack_end(self.headroom, False) self.has_reminder_flash = gtk.CheckButton( _('This button will flash as a reminder to close')) set_tip(self.has_reminder_flash, _("After a number of seconds where a " "main player is active this button's status indicator will start to " "flash and will continue to do so until the button is closed or the " "player stops.")) self.pack_start(self.has_reminder_flash, False) self.is_microphone = gtk.CheckButton( _('This button is to be treated as a microphone opener')) set_tip(self.is_microphone, _("The button will be grouped with the " "other microphone opener buttons. It will be affected by signals to " "close microphone buttons. Channels associated with this button will " "be mixed differently when using the VoIP modes.")) self.is_microphone.connect("toggled", lambda w: self.emit("changed")) self.pack_start(self.is_microphone, False) self.freewheel_cancel = gtk.CheckButton( _('This button will automatically cancel JACK freewheel mode')) self.pack_start(self.freewheel_cancel, False) set_tip(self.freewheel_cancel, _('This should be set for all buttons' ' that control input from a live sound source or device.')) frame = gtk.Frame(" %s " % _('Button Open Triggers')) self.pack_start(frame, False, padding=3) self.open_triggers = collections.OrderedDict() lvbox = gtk.VBox() rvbox = gtk.VBox() for w, t, col in zip( ("advance", "stop_control", "stop_control2", "announcement"), (_('Playlist advance button'), _("'%s' control") % _('Player Stop'), _("'%s' control") % _('Player Stop 2'), _('Announcements')), itertools.cycle((lvbox, rvbox))): cb = gtk.CheckButton(t) self.open_triggers[w] = cb col.pack_start(cb, False) self.activedict["oc_" + w] = cb hbox = gtk.HBox(True, 10) hbox.set_border_width(6) for each in (lvbox, rvbox): hbox.pack_start(each, False) frame.add(hbox) frame = gtk.Frame(" %s " % _('When opened close these other buttons')) self.pack_start(frame, False, padding=3) self.closer_hbox = gtk.HBox() self.closer_hbox.set_border_width(3) for i in range(1, ident): cb = gtk.CheckButton(str(i)) cb.connect("toggled", lambda w: self.emit("changed")) self.closer_hbox.pack_start(cb) self.activedict["close_%d_button" % i] = cb frame.add(self.closer_hbox) frame = gtk.Frame(" %s " % _('Shell Command')) set_tip(frame, _("Mostly useful issuing 'amixer' commands, in " "particular for setting capture.")) self.pack_start(frame, False, padding=3) ivbox = gtk.VBox() frame.add(ivbox) ivbox.set_border_width(6) ivbox.set_spacing(3) sg = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) def enbox(l, r): hbox = gtk.HBox() hbox.set_spacing(3) label = gtk.Label(l) label.set_alignment(0.0, 0.5) hbox.pack_start(label, False) hbox.pack_start(r) sg.add_widget(r) return hbox self.shell_on_open = gtk.Entry() self.shell_on_close = gtk.Entry() ivbox.pack_start(enbox(_('On open'), self.shell_on_open), False) ivbox.pack_start(enbox(_('On close'), self.shell_on_close), False) self.activedict.update({ "reminderflash" : self.has_reminder_flash, "isamicrophone" : self.is_microphone, "cancelsfreewheel" : self.freewheel_cancel }) self.valuesdict = { "headroom" : self.headroom } self.textdict = { "iconpathname" : self.icb, "buttontext" : self.button_text, "shell_onopen" : self.shell_on_open, "shell_onclose" : self.shell_on_close, } self.button_was_on = False def set_ident(self, ident): self.label.set_text(str(ident)) self.ident = ident def add_closer(self, closer_ident): cb = gtk.CheckButton(str(closer_ident)) if closer_ident == self.ident: cb.set_sensitive(False) else: cb.connect("toggled", lambda w: self.emit("changed")) self.activedict["close_%d_button" % closer_ident] = cb self.closer_hbox.pack_start(cb) cb.show() class OpenerSettings(gtk.Frame): __gsignals__ = { "changed" : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_PYOBJECT,))} def __init__(self): gtk.Frame.__init__(self, " %s " % _('Main Panel Opener Buttons')) self.set_border_width(3) def changed(*args): self.emit("changed", None) vbox = gtk.VBox() self.add(vbox) vbox.set_border_width(7) vbox.set_spacing(3) self.button_numbers = gtk.CheckButton( _('Indicate button numbers and associated channel numbers')) set_tip(self.button_numbers, _("A useful feature to have switched on " "while allocating channel openers.")) self.button_numbers.connect("toggled", changed) vbox.pack_start(self.button_numbers, False) frame = gtk.Frame(" %s " % _('Status Indicator Appearance')) set_tip(frame, _('Each opener button has two vertical bars at the side to make the ' 'button state more apparent. These settings control their appearance.')) vbox.pack_start(frame, False, padding=6) hbox = gtk.HBox() hbox.set_border_width(3) hbox.set_spacing(3) frame.add(hbox) hbox.pack_start(gtk.Label(_('Width')), False) self.indicator_width = gtk.SpinButton( gtk.Adjustment(4.0, 0.0, 10.0, 1.0), digits=0) self.indicator_width.connect("value-changed", changed) hbox.pack_start(self.indicator_width, False) hbox.pack_start(gtk.HBox()) hbox.pack_start(gtk.Label(_('Opened')), False) self.open_colour = ColourButton(gtk.gdk.Color(0.95, 0.2, 0.2)) hbox.pack_start(self.open_colour, False) hbox.pack_start(gtk.HBox()) hbox.pack_start(gtk.Label(_('Closed')), False) col = gtk.gdk.Color("gray") self.closed_colour = ColourButton(col) hbox.pack_start(self.closed_colour, False) hbox.pack_start(gtk.HBox()) hbox.pack_start(gtk.Label(_('Remind')), False) self.reminder_colour = ColourButton(col) hbox.pack_start(self.reminder_colour, False) for each in (self.open_colour, self.closed_colour, self.reminder_colour): each.connect("color-set", changed) self.notebook = gtk.Notebook() vbox.pack_start(self.notebook, False, padding=3) self.show_all() self.activedict = { "btnnumbers" : self.button_numbers, } self.textdict = { "btncolour_opened" : self.open_colour, "btncolour_closed" : self.closed_colour, "btncolour_remind" : self.reminder_colour, } self.valuesdict = { "btnreminderwidth": self.indicator_width, } def add_channel(self): tab = OpenerTab(len(self.notebook) + 1) self.notebook.append_page(tab, tab.label) def add_closer(each_tab): each_tab.add_closer(tab.ident) self.notebook.foreach(add_closer) tab.show_all() tab.connect("changed", lambda w: self.emit("changed", tab)) def finalise(self): for tab in self.notebook.get_children(): for attrname in ("activedict", "valuesdict", "textdict"): dest = getattr(self, attrname) src = getattr(tab, attrname) for key, val in src.iteritems(): dest[key + "_%d" % tab.ident] = val class MicOpener(gtk.HBox): @property def any_mic_selected(self): return self._any_mic_selected def notify_others(self, freewheel_cancel=False): r = self.approot if freewheel_cancel: r.freewheel_button.set_active(False) # Player headroom for mic-audio toggle. r.mixer_write("ACTN=anymic\nFLAG=%d\nend\n" % self.any_mic_selected) r.mixer_write("HEAD=%f\nACTN=headroom\nend\n" % self._headroom) r.new_mixermode(r.mixermode) def cb_mictoggle(self, button, mics): self._flashing_timer = 0 fwc = False if button.get_active(): fwc = button.opener_tab.freewheel_cancel.get_active() cmd = button.opener_tab.shell_on_open.get_text().strip() closers = button.opener_tab.closer_hbox.get_children() for i, closer in enumerate(closers, start=1): if closer.get_active(): try: self.ix2button[i].set_active(False) except KeyError: pass else: cmd = button.opener_tab.shell_on_close.get_text().strip() if cmd and not button.block_shell_command: print "button %d shell command: %s" % (button.opener_tab.ident, cmd) subprocess.Popen(cmd, shell=True, close_fds=True) for mic in mics: mic.open.set_active(button.get_active()) self._any_mic_selected = any(mb.get_active() for mb in self.buttons if mb.opener_tab.is_microphone.get_active()) try: self._headroom = max(mb.opener_tab.headroom.get_value() for mb in self.buttons if mb.get_active()) except ValueError: self._headroom = 0.0 self.notify_others(freewheel_cancel=fwc) def cb_reconfigure(self, widget, trigger=None): self.new_button_set() def new_button_set(self): # Clear away old button widgets. self.foreach(lambda x: x.destroy()) self.mic2button = {} self.buttons = [] self.ix2button = {} joiner = ' ' mic_group_list = [[] for x in xrange(PGlobs.num_micpairs * 2)] aux_group_list = [[] for x in xrange(PGlobs.num_micpairs * 2)] ot = self.opener_settings.notebook.get_children() mic_qty = aux_qty = 0 # Categorisation of channels into button groups. for m in self.mic_list: mode = m.mode.get_active() if mode: pm = m.partner if mode == 3 else m if pm.group.get_active(): oti = int(pm.groups_adj.value) - 1 if ot[oti].is_microphone.get_active(): t = mic_group_list[oti] if not t: mic_qty += 1 else: t = aux_group_list[oti] if not t: aux_qty += 1 t.append(m) # Opener buttons built here. def build(group_list, closer): image = gtk.image_new_from_stock( gtk.STOCK_CLOSE, gtk.ICON_SIZE_BUTTON) closer_button = gtk.Button() closer_button.set_image(image) closer_button.show_all() if closer == "left": self.pack_start(closer_button, False) for i, g in enumerate(group_list): if g: mic_list = [] mb = MicButton(self.opener_settings, ot[i], g) self.ix2button[mb.opener_tab.ident] = mb self.buttons.append(mb) active = False for m in g: mic_list.append(m) if m.open.get_active(): active = True self.mic2button[m.ui_name] = mb mb.connect("toggled", self.cb_mictoggle, mic_list) self.add(mb) mb.show() mb.block_shell_command = mb.opener_tab.button_was_on mb.set_active(active) mb.block_shell_command = False closer_button.connect("clicked", lambda w, btn: btn.set_active(False), mb) if closer == "right": self.pack_start(closer_button, False) if aux_qty: build(aux_group_list, closer=("right" if aux_qty > 1 else None)) if mic_qty: spc = gtk.HBox() spc.set_size_request(3, -1) self.pack_start(spc, False) spc.show() if mic_qty: build(mic_group_list, closer=("left" if mic_qty > 1 else None)) if self._forced_on_mode: self.force_all_on(True) if not self.mic2button: # TC: A placeholder text for when there are no opener buttons. l = gtk.Label(_('No Channel Opener Buttons')) l.set_sensitive(False) self.add(l) l.show() # Categorisation of channels according to type a or m (aux or mic) channel_modes = ['a' for i in range(PGlobs.num_micpairs * 2)] for button in mic_group_list: for channel in button: channel_modes[channel.index] = 'm' self.approot.mixer_write("CMOD=%s\nACTN=new_channel_mode_string\nend\n" % "".join(channel_modes)) self.notify_others() @threadslock def cb_flash_timeout(self): if self._flash_test() and not self._forced_on_mode: self._flashing_timer += 1 else: self._flashing_timer = 0 flash_value = bool((self._flashing_timer % 2) if self._flashing_timer > 7 else 0) for mb in self.buttons: mb.flash = flash_value return True def force_all_on(self, val): """Switch on all front panel mic buttons and make them insensitive.""" self._forced_on_mode = val for mb in self.buttons: if mb.opener_tab.is_microphone.get_active(): if val: mb.set_active(True) mb.set_sensitive(not val) mb.set_inconsistent(val) def open_auto(self, type_): for b in self.buttons: try: cb = b.opener_tab.open_triggers[type_] except KeyError: print "unknown auto open type:", type_ else: if cb.get_active(): b.set_active(True) def oc(self, mic, val): """Perform open/close.""" try: self.mic2button[mic].set_active(val) except: for m in self.mic_list: if mic == m.ui_name: mode = m.mode.get_active() if mode in (1, 2): m.open.set_active(val) elif mode == 3: m.partner.open.set_active(val) break def get_opener_button(self, ix): try: m = self.mic_list[ix] return self.mic2button[m.ui_name] except KeyError: mode = m.mode.get_active() if mode in (1, 2): return m.open elif mode == 3: return m.partner.open print "channel %d is not active" % (ix + 1) except IndexError: print "channel %d does not exist" % (ix + 1) return None def close_all(self): for mb in self.buttons: mb.set_active(False) def open(self, val): self.oc(val, True) def close(self, val): self.oc(val, False) def add_mic(self, mic): """mic: AGCControl object passed here to register it with this class.""" self.opener_settings.add_channel() self.mic_list.append(mic) for attr, signal in zip ( ("mode", "group", "no_front_panel_opener", "groups_adj"), ("changed", "toggled", "toggled", "notify::value")): getattr(mic, attr).connect(signal, self.cb_reconfigure) def finalise(self): self.opener_settings.finalise() def __init__(self, approot, flash_test): self.approot = approot self._flash_test = flash_test gtk.HBox.__init__(self) self.set_spacing(2) self.mic_list = [] self.buttons = [] self.mic2button = {} self._any_mic_selected = False self._forced_on_mode = False self._flashing_mode = False self._flashing_timer = 0 self._headroom = 0.0 timeout = timeout_add(700, self.cb_flash_timeout) self.connect("destroy", lambda w: source_remove(timeout)) self.opener_settings = OpenerSettings() self.opener_settings.connect("changed", self.cb_reconfigure) class PaddedVBox(gtk.VBox): def vbox_pack_start(self, *args, **kwargs): self.vbox.pack_start(*args, **kwargs) def vbox_add(self, *args, **kwargs): self.vbox.add(*args, **kwargs) def __init__(self, l, t, r, b, s): gtk.VBox.__init__(self) d = gtk.VBox() self.pack_start(d, False, False, t) d.show() d = gtk.VBox() self.pack_end(d, False, False, b) d.show() h = gtk.HBox() self.pack_start(h, True, True) h.show() d = gtk.VBox() h.pack_start(d, False, False, l) d.show() d = gtk.VBox() h.pack_end(d, False, False, r) d.show() self.vbox = gtk.VBox() self.vbox.set_spacing(s) h.pack_start(self.vbox) self.vbox.show() self.pack_start = self.vbox_pack_start self.add = self.vbox_add def make_meter_scale(): # A logarithmic meter scale for a 'VU' meter scalebox = gtk.VBox() label = gtk.Label(" 0") attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) alignment = gtk.Alignment(0, 0) alignment.add(label) label.show() scalebox.add(alignment) alignment.show() label = gtk.Label(" -6") attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) alignment = gtk.Alignment(0, 0) alignment.add(label) label.show() scalebox.add(alignment) alignment.show() label = gtk.Label("-12") attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) alignment = gtk.Alignment(0, 0.25) alignment.add(label) label.show() scalebox.add(alignment) alignment.show() label = gtk.Label("-18") attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) alignment = gtk.Alignment(0, 0.5) alignment.add(label) label.show() scalebox.add(alignment) alignment.show() label = gtk.Label("-24") attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) alignment = gtk.Alignment(0, 0.75) alignment.add(label) label.show() scalebox.add(alignment) alignment.show() label = gtk.Label("-30") attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) alignment = gtk.Alignment(0, 1) alignment.add(label) label.show() scalebox.add(alignment) alignment.show() label = gtk.Label("-36") attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) alignment = gtk.Alignment(0, 1) alignment.add(label) label.show() scalebox.add(alignment) alignment.show() return scalebox def make_meter_unit(text, l_meter, r_meter): mic_peak_box = gtk.VBox() mic_peak_box.set_border_width(0) frame = gtk.Frame() frame.set_border_width(4) hbox = gtk.HBox() hbox.set_border_width(1) frame.add(hbox) label = gtk.Label(text) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(text))) label.set_attributes(attrlist) labelbox = gtk.HBox() labelbox.add(label) label.show() mic_peak_box.pack_start(labelbox, False, False, 0) labelbox.show() mic_peak_box.add(frame) frame.show() hbox.show() l_meter.set_size_request(16, -1) hbox.add(l_meter) scalebox = make_meter_scale() hbox.add(scalebox) scalebox.show() r_meter.set_size_request(16, -1) hbox.add(r_meter) l_meter.show() r_meter.show() return mic_peak_box def make_stream_meter_unit(text, meters): outer_vbox = gtk.VBox() outer_vbox.set_border_width(0) frame = gtk.Frame() frame.set_border_width(4) inner_vbox = gtk.VBox() frame.add(inner_vbox) label = gtk.Label(text) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(text))) label.set_attributes(attrlist) labelbox = gtk.HBox() labelbox.add(label) label.show() outer_vbox.pack_start(labelbox, False, False, 0) labelbox.show() outer_vbox.pack_start(frame, False, False, 0) frame.show() inner_vbox.show() for num, meter in enumerate(meters): hbox = gtk.HBox() hbox.set_border_width(1) hbox.set_spacing(1) inner_vbox.add(hbox) hbox.show() label = gtk.Label(str(num + 1)) hbox.pack_start(label, False, False, 0) label.show() vbox = gtk.VBox() vbox.pack_start(meter, True, True, 2) meter.show() hbox.pack_start(vbox, True, True, 0) vbox.show() set_tip(frame, _('This indicates the state of the various streams. Flashing' ' means stream packets are being discarded because of network congestion. ' 'Partial red means the send buffer is partially full indicating difficulty' ' communicating with the server. Green means everything is okay.')) frame = gtk.Frame() # Main panel listener figures box. frame.set_label_align(0.5, 0.5) pixbuf = gtk.gdk.pixbuf_new_from_file_at_size( FGlobs.pkgdatadir / "listenerphones.png", 20, 16) image = gtk.image_new_from_pixbuf(pixbuf) frame.set_label_widget(image) image.show() frame.set_border_width(4) inner_vbox = gtk.VBox() frame.add(inner_vbox) inner_vbox.show() connections = gtk.Label("0") inner_vbox.add(connections) connections.show() outer_vbox.pack_start(frame, False, False, 0) frame.show() set_tip(frame, _('The combined total number of listeners in all server tabs.')) return outer_vbox, connections class StreamMeter(gtk.Frame): """Main panel meter showing stream status and buffer fill.""" def realize(self, widget): self.gc = gtk.gdk.GC(self.window) self.gc.copy(self.da.get_style().fg_gc[gtk.STATE_NORMAL]) self.green = gtk.gdk.color_parse("#30D030") self.red = gtk.gdk.color_parse("#D05044") self.grey = gtk.gdk.color_parse("darkgray") def expose(self, widget, event): if self.flash or not self.active: self.gc.set_rgb_fg_color(self.grey) self.da.window.draw_rectangle( self.gc, True, 0, 0, self.rect.width, self.rect.height) else: valuep = int(float(self.value - self.base) / float(self.top - self.base) * self.rect.width) self.gc.set_rgb_fg_color(self.red) self.da.window.draw_rectangle( self.gc, True, 0, 0, valuep, self.rect.height) self.gc.set_rgb_fg_color(self.green) self.da.window.draw_rectangle(self.gc, True, valuep, 0, self.rect.width - valuep, self.rect.height) def cb_configure(self, widget, event): self.rect.width = event.width self.rect.height = event.height def set_value(self, value): if value < self.base: self.value = self.base elif self.value > self.top: self.value = self.top else: self.value = value if value != self.oldvalue: self.invalidate() def set_active(self, active): if active != self.active: self.active = active self.invalidate() def set_flash(self, flash): if flash != self.flash: self.flash = flash self.invalidate() def invalidate(self): if self.da.flags() & gtk.REALIZED: self.da.window.invalidate_rect(self.rect, False) def __init__(self, base, top): self.base = base self.top = top gtk.Frame.__init__(self) self.set_shadow_type(gtk.SHADOW_IN) self.da = gtk.DrawingArea() self.add(self.da) self.da.connect("configure_event", self.cb_configure) self.da.connect("realize", self.realize) self.da.connect("expose_event", self.expose) self.da.show() self.rect = gtk.gdk.Rectangle() self.value = self.oldvalue = self.base self.active = False self.flash = False class BasicMeter(gtk.Frame): """A meter widget with a simple rectangular vertical bar.""" def realize(self, widget): self.gc = gtk.gdk.GC(self.window) self.gc.copy(self.da.get_style().fg_gc[gtk.STATE_NORMAL]) self.lowc = gtk.gdk.color_parse("#30D030") self.midc = gtk.gdk.color_parse("#CCCF44") self.highc = gtk.gdk.color_parse("#D05044") self.backc = gtk.gdk.color_parse("darkgray") self.linec = gtk.gdk.color_parse("#505050") def expose(self, widget, event): self.oldvalue = self.top self.set_value(self.value) if self.value != self.base: self.oldvalue = self.base self.set_value(self.value) def cb_configure(self, widget, event): self.width = event.width self.height = event.height # calculate colour threshold pixels self.lutp = int(self.height * float(self.lut - self.base) / float(self.top - self.base)) self.mutp = int(self.height * float(self.mut - self.base) / float(self.top - self.base)) def set_value(self, value): if value > self.top: value = self.top if value < self.base: value = self.base self.value = value if self.da.flags() & gtk.REALIZED: valuep = int(self.height * float(self.value - self.base) / float(self.top - self.base)) if value < self.oldvalue: self.gc.set_rgb_fg_color(self.backc) self.da.window.draw_rectangle(self.gc, True, 0, 0, self.width, self.height - valuep) if value > self.oldvalue: if valuep > self.mutp: self.gc.set_rgb_fg_color(self.highc) self.da.window.draw_rectangle(self.gc, True, 0, self.height - valuep, self.width, valuep - self.mutp) valuep = self.mutp if valuep > self.lutp: self.gc.set_rgb_fg_color(self.midc) self.da.window.draw_rectangle(self.gc, True, 0, self.height - valuep, self.width, valuep - self.lutp) valuep = self.lutp if valuep > 0: self.gc.set_rgb_fg_color(self.lowc) self.da.window.draw_rectangle(self.gc, True, 0, self.height - valuep, self.width, valuep) if self.line is not None: valuel = int(self.height * float(self.line - self.base) / float(self.top - self.base)) self.gc.set_rgb_fg_color(self.linec) self.da.window.draw_lines(self.gc, ((0, self.height - valuel), (self.width, self.height - valuel))) self.oldvalue = value def set_line(self, lineval): if lineval is not None and ( lineval >= self.top or lineval <= self.base): lineval = None self.line = lineval self.expose(None, None) def get_value(self): return self.value def __init__(self, base, top, lut, mut): """This widget will draw in up to three colours. mut = mid upper threshold, lut = low upper threshold """ assert top > base, "top must be greater than base" assert lut >= base, "lut must be greater than or equal to base" assert lut <= top, "lut must not exceed top" assert mut >= lut, "mut must be greater than or equal to lut" assert mut <= top, "mut must not exceed top" gtk.Frame.__init__(self) self.set_shadow_type(gtk.SHADOW_IN) self.da = gtk.DrawingArea() self.add(self.da) self.da.connect("configure_event", self.cb_configure) self.da.connect("realize", self.realize) self.da.connect("expose_event", self.expose) self.da.show() self.base = base self.top = top self.lut = lut self.mut = mut self.value = base self.oldvalue = self.top self.line = None class StackedMeter(gtk.Frame): """Meter with three fill levels showing as different colours.""" def realize(self, widget): self.gc = gtk.gdk.GC(self.window) self.gc.copy(self.da.get_style().fg_gc[gtk.STATE_NORMAL]) self.ngc = gtk.gdk.color_parse("#30D030") self.dsc = gtk.gdk.color_parse("#CCCF44") self.compc = gtk.gdk.color_parse("#D05044") self.backc = gtk.gdk.color_parse("darkgray") def expose(self, widget, event): self.set_meter_value(self.c, self.d, self.n, True) def cb_configure(self, widget, event): self.width = event.width self.height = event.height self.uh = self.height / float(self.top - self.base) def set_meter_value(self, c, d, n, force=False): if not force and (self.c == c and self.d == d and self.n == n): # Values not changed from last time so no need to redraw. return if c < self.base: c = self.base if d < self.base: d = self.base if n < self.base: n = self.base if c > self.top: c = self.top if d > self.top: d = self.top if n > self.top: n = self.top self.c = c self.d = d self.n = n if self.da.flags() & gtk.REALIZED: nh = int(self.uh * n) dh = int(self.uh * d) ch = int(self.uh * c) if ch + dh + nh > self.height: ch = self.height - dh - nh if nh: self.gc.set_rgb_fg_color(self.ngc) self.da.window.draw_rectangle( self.gc, True, 0, 0, self.width, nh) if dh: self.gc.set_rgb_fg_color(self.dsc) self.da.window.draw_rectangle( self.gc, True, 0, nh, self.width, dh) if ch: self.gc.set_rgb_fg_color(self.compc) self.da.window.draw_rectangle( self.gc, True, 0, nh + dh, self.width, ch) self.gc.set_rgb_fg_color(self.backc) self.da.window.draw_rectangle(self.gc, True, 0, nh + dh + ch, self.width, self.height - (nh + dh + ch)) def __init__(self, base, top): self.base = base self.top = top assert top > base, "top must be greater than base" gtk.Frame.__init__(self) self.set_shadow_type(gtk.SHADOW_IN) self.da = gtk.DrawingArea() self.add(self.da) self.da.connect("configure_event", self.cb_configure) self.da.connect("realize", self.realize) self.da.connect("expose_event", self.expose) self.da.show() self.c = self.d = self.n = base - 1 class vumeter(BasicMeter): """A VU meter that needs to be fed values at 50ms intervals.""" def set_meter_value(self, newvalue): if newvalue > self.scale: newvalue = self.scale self.gen6 = self.gen5 self.gen5 = self.gen4 self.gen4 = self.gen3 self.gen3 = self.gen2 self.gen2 = self.gen1 self.gen1 = newvalue # Weighted mean over 300ms. newvalue = (5 * self.gen1 + 6 * self.gen2 + 4 * self.gen3 + 3 * self.gen4 + 2 * self.gen5 + self.gen6 ) / 21 BasicMeter.set_value(self, -newvalue) def __init__(self): BasicMeter.__init__(self, -36, 0, -12, -7) self.scale = 36 self.gen1 = self.gen2 = self.gen3 = self.gen4 = self.gen5 = self.scale class peakholdmeter(BasicMeter): """A peak-hold meter.""" def set_meter_value(self, newval): oldval = self.get_value() if newval > oldval: self.peakage = 0 oldval = newval else: self.peakage += 1 if self.peakage > self.peakholditers: newval = oldval - (self.peakage - self.peakholditers) ** 1.1 else: newval = oldval BasicMeter.set_value(self, newval) def __init__(self): BasicMeter.__init__(self, -36, 0, -12, -2) self.peakage = 0 self.oldval = 0 self.peakholditers = 4 # Meter hold iterations. class MicMeter(gtk.VBox): def set_meter_value(self, newvals): gain, red, yellow, green = (int(x) for x in newvals.split(",")) self.peak.set_meter_value(gain) self.attenuation.set_meter_value(red, yellow, green) def set_led(self, value): self.led.set_from_pixbuf(self.led_onpb if value else self.led_offpb) def always_show(self, widget): self.show_while_inactive = widget.get_active() if self.show_while_inactive: self.show() elif not (self.flags() & gtk.SENSITIVE): self.hide() def set_sensitive(self, value): gtk.VBox.set_sensitive(self, value) if self.show_while_inactive == False and value == False: self.hide() else: self.show() def _cb_tooltip(self, widget, x, y, keyboard_mode, tooltip): if self.agc: text = self.agc.alt_name.get_text().strip() if not text: return False label = gtk.Label(text) tooltip.set_custom(label) label.show() return True else: return False def __init__(self, labelbasetext, index): gtk.VBox.__init__(self) self.set_border_width(0) lhbox = gtk.HBox() pad = gtk.VBox() lhbox.add(pad) pad.show() lhbox.set_spacing(2) self.led_onpb = gtk.gdk.pixbuf_new_from_file_at_size( FGlobs.pkgdatadir / "led_lit_green_black_border_64x64.png", 7, 7) self.led_offpb = gtk.gdk.pixbuf_new_from_file_at_size( FGlobs.pkgdatadir / "led_unlit_clear_border_64x64.png", 7, 7) self.led = gtk.Image() lhbox.pack_start(self.led, False, False) self.set_led(False) self.led.show() labeltext = labelbasetext + " " + str(index) label = gtk.Label(labeltext) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, len(labeltext))) label.set_attributes(attrlist) lhbox.pack_start(label, False, False) label.show() pad = gtk.VBox() lhbox.add(pad) pad.show() self.pack_start(lhbox, False, False) lhbox.show() frame = gtk.Frame() frame.set_border_width(4) self.pack_start(frame, True, True) frame.show() hbox = gtk.HBox() hbox.set_border_width(1) frame.add(hbox) hbox.show() self.peak = peakholdmeter() self.peak.set_size_request(16, -1) hbox.pack_start(self.peak, False, False) self.peak.show() scale = make_meter_scale() hbox.pack_start(scale, False, False) scale.show() self.attenuation = StackedMeter(0, 36) self.attenuation.set_size_request(16, -1) hbox.pack_start(self.attenuation, False, False) self.attenuation.show() self.show_while_inactive = True self.agc = None self.set_tooltip_window(None) self.connect("query-tooltip", self._cb_tooltip) self.set_has_tooltip(True) class RecIndicator(gtk.HBox): colour = "clear", "red", "amber" def set_indicator(self, colour): self.image.set_from_pixbuf(self.led[self.colour.index(colour)]) def __init__(self, label_text): gtk.HBox.__init__(self) label = gtk.Label(label_text) self.pack_start(label) label.show() attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(METER_TEXT_SIZE, 0, 1)) label.set_attributes(attrlist) self.image = gtk.Image() self.pack_start(self.image, False) self.image.show() self.led = [gtk.gdk.pixbuf_new_from_file_at_size( FGlobs.pkgdatadir / (which + ".png"), 9, 9) for which in ( "led_unlit_clear_border_64x64", "led_lit_red_black_border_64x64", "led_lit_amber_black_border_64x64")] self.set_indicator("clear") class RecordingPanel(gtk.VBox): def __init__(self, howmany): gtk.VBox.__init__(self) # TC: Record as in, to make a recording. label = gtk.Label(" %s " % _('Record')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize( METER_TEXT_SIZE, 0, len(label.get_text()))) label.set_attributes(attrlist) self.pack_start(label) label.show() frame = gtk.Frame() frame.set_border_width(4) self.pack_start(frame) frame.show() hbox = gtk.HBox() hbox.set_spacing(1) hbox.set_border_width(3) frame.add(hbox) hbox.show() box = [gtk.VBox(), gtk.VBox()] for each in box: each.set_spacing(4) hbox.pack_start(each) each.show() self.indicator = [] for i in range(howmany): ind = RecIndicator(str(i+1)) self.indicator.append(ind) box[i%2].pack_start(ind, False) ind.show() # A dialog window to appear when shutdown is selected while still streaming. class idjc_shutdown_dialog: def window_attn(self, widget, event): if event.new_window_state | gtk.gdk.WINDOW_STATE_ICONIFIED: widget.set_urgency_hint(True) else: widget.set_urgency_hint(False) def respond(self, dialog, response, actionyes, actionno): if response == gtk.RESPONSE_OK: print "Dialog quit" if actionyes is not None: actionyes() if response == gtk.RESPONSE_DELETE_EVENT or \ response == gtk.RESPONSE_CANCEL: print "Dialog keep running" if actionno is not None: actionno() dialog.destroy() def __init__(self, window_group = None, actionyes = None, actionno = None, additional_text = None): dialog = gtk.Dialog(pm.title_extra.strip(), None, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_QUIT, gtk.RESPONSE_OK)) if window_group is not None: window_group.add_window(dialog) dialog.set_resizable(False) dialog.connect("close", self.respond, actionyes, actionno) dialog.connect("response", self.respond, actionyes, actionno) dialog.connect("window-state-event", self.window_attn) dialog.set_border_width(6) dialog.vbox.set_spacing(12) hbox = gtk.HBox(False, 20) hbox.set_spacing(12) dialog.get_content_area().add(hbox) image = gtk.image_new_from_stock( gtk.STOCK_DIALOG_WARNING, gtk.ICON_SIZE_DIALOG) image.set_alignment(0.5, 0) hbox.pack_start(image, False) vbox = gtk.VBox() hbox.pack_start(vbox, True, True, 0) vbox.show() if additional_text is not None: if type(additional_text) is str: additional_text = additional_text.splitlines() for each in additional_text: label = gtk.Label() label.set_alignment(0.0, 0.5) label.set_markup(each) vbox.pack_start(label, False) dialog.show_all() class MainWindow(dbus.service.Object): def send_new_mixer_stats(self): deckadj = deck2adj = self.deckadj.get_value() if self.prefs_window.dual_volume.get_active(): deck2adj = self.deck2adj.get_value() string_to_send = ":%03d:%03d:%03d:%03d:%03d:%03d:%03d:%03d:%03d:" \ "%d:%d%d%d%d%d:%d%d:%d%d%d%d:%d:%d:%d:%d:%d:%f:%f:" \ "%d:%f:%d:%d:%d:%d:%d:%d:%d:%03d:%f:" % ( deckadj, deck2adj, self.crossadj.get_value(), self.jingles.jvol_adj[0].get_value(), self.jingles.jmute_adj[0].get_value(), self.jingles.jvol_adj[1].get_value(), self.jingles.jmute_adj[1].get_value(), self.jingles.ivol_adj.get_value(), self.mixbackadj.get_value(), self.jingles.playing, self.player_left.stream.get_active(), self.player_left.listen.get_active(), self.player_right.stream.get_active(), self.player_right.listen.get_active(), self.listen_stream.get_active(), self.player_left.pause.get_active(), self.player_right.pause.get_active(), self.player_left.flush, self.player_right.flush, self.jingles.flush, self.jingles.interludeflush, self.simplemixer, self.alarm, self.mixermode, True, self.player_left.play.get_active() or self.player_right.play.get_active(), 1.0 / self.player_left.pbspeedfactor, 1.0 / self.player_right.pbspeedfactor, self.prefs_window.speed_variance.get_active(), self.prefs_window.dj_aud_adj.get_value(), self.crosspattern.get_active(), self.dsp_button.get_active(), self.jingles.interlude.pause.get_active(), self.jingles.interlude.stream.get_active(), self.jingles.interlude.listen.get_active(), self.jingles.interlude.force.get_active(), self.prefs_window.alarm_aud_adj.get_value(), self.voipgainadj.get_value(), 1.0 / self.jingles.interlude.pbspeedfactor ) self.mixer_write("MIXR=%s\nACTN=mixstats\nend\n" % string_to_send) self.alarm = False iteration = 0 while self.player_left.flush or self.player_right.flush or \ self.jingles.flush or self.jingles.interludeflush: time.sleep(0.05) self.vu_update(False) self.jingles.interludeflush = self.jingles.interludeflush & \ self.interlude_playing.value self.jingles.flush = self.jingles.flush & self.jingles_playing.value self.player_left.flush = self.player_left.flush & \ self.player_left.mixer_playing.value self.player_right.flush = self.player_right.flush & \ self.player_right.mixer_playing.value # decide which metadata source to use (0 = left, 1 = right) if self.metadata_src == self.METADATA_LEFT_DECK: meta = 0 elif self.metadata_src == self.METADATA_RIGHT_DECK: meta = 1 elif self.metadata_src == self.METADATA_LAST_PLAYED: if self.last_player == "left": meta = 0 else: meta = 1 elif self.metadata_src == self.METADATA_CROSSFADER: if self.crossadj.get_value() < 50: meta = 0 else: meta = 1 elif self.metadata_src == self.METADATA_NONE: meta = -1 elif self.metadata_src == self.METADATA_BACKGROUND: meta = 2 # get metadata from left (meta == 0) or right (meta == 1) player target = (self.player_left, self.player_right, self.jingles.interlude, None)[meta] meta_context = None if target is None: self.songname = self.artist = self.title = self.album = "" self.music_filename = "" else: if target.element: self.artist = target.cuesheet_track_performer or "" self.title = target.cuesheet_track_title or "" self.album = target.cuesheet_track_album or target.title else: self.artist = target.artist self.title = target.title self.album = target.album self.songname = target.songname self.music_filename = target.music_filename meta_context = target, target.player_cid, \ self.artist, self.title, self.album, self.music_filename # update metadata on stream if it has changed if meta_context != self.old_meta_context: self.old_meta_context = meta_context if self.songname: if target.element: if "(" in self.album or ")" in self.album: form = "%s - %s - [%s]" else: form = "%s - %s - (%s)" self.songname = form % (self.artist, self.title, self.album) self.set_track_metadata(self.artist, self.title, self.album, self.songname, self.music_filename, True) else: self.window.set_title(self.appname + pm.title_extra) print "song title: %s\n" % self.songname @dbus.service.method(dbus_interface=PGlobs.dbus_bus_basename) def new_plugin_started(self): self.channel_states = [-1, ] * 12 self.dbus_voip_mode = -1 @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="u") def voip_mode_changed(self, mode): pass @dbus.service.method(dbus_interface=PGlobs.dbus_bus_basename, out_signature="s") def get_database_credentials(self): return json.dumps(self.topleftpane.prefs_controls.credentials()) @dbus.service.method(dbus_interface=PGlobs.dbus_bus_basename, in_signature="sssssb") def set_track_metadata(self, artist, title, album, songname, filename, log): args = artist, title, album, songname, filename self.window.set_title("%s :: IDJC%s" % (songname, pm.title_extra)) if log: tm = time.localtime() ts = "%02d:%02d :: " % (tm[3], tm[4]) # hours and minutes tstext = songname.encode("utf-8") self.history_buffer.place_cursor( self.history_buffer.get_end_iter()) self.history_buffer.insert_at_cursor(ts + tstext + "\n") adjustment = self.history_window.get_vadjustment() adjustment.set_value(adjustment.upper) try: with open(pm.basedir / "history.log", "a") as f: f.write(time.strftime("%x %X :: ") + tstext + "\n") except IOError: print "failed to write log entry to history.log" if self._old_metadata_2 == args: return self._old_metadata_2 = args self.track_metadata_changed(*args) self.server_window.new_metadata(*args[:-1]) # Don't pass music_filename @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="sssss") def track_metadata_changed(self, artist, title, album, songname, music_filename): """DBus signal for plugins to attach to for metadata updates.""" print "track_metadata_changed called and signal emitted" @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="ssu") def effect_started(self, title, pathname, player): """DBus signal for plugins to attach to when new effects play""" pass @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="u") def effect_stopped(self, player): """DBus signal for plugins to attach to when new effects play""" pass @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="ub") def channelstate_changed(self, index, is_open): """DBus signal indicating audio channel toggle state""" self.channel_states[index] = is_open def songname_decode(self, data): i = 1 while 1: if data[i - 1] != "d": print "songname_decode: WARNING, read past end boundary" yield None continue colon_index = data.index(":", i) text_length = int(data[i : colon_index]) text = data[colon_index + 1 : colon_index + 1 + text_length] yield text i = colon_index + text_length + 2 def update_songname(self, player, data): gen = self.songname_decode(data) infotype = int(gen.next()) artist = gen.next() title = gen.next() album = gen.next() player_context = int(gen.next()) time_lag = int(gen.next()) if infotype in (1, 2): artist = artist.decode("utf-8") title = title.decode("utf-8") album = album.decode("utf-8") infotype = 1 # Chain if infotype in (3, 4): artist = artist.decode("latin1") title = title.decode("latin1") album = album.decode("latin1") infotype = 1 # Chain if infotype == 1: def fmt(artist, title, album): o, c = ("[", "]") if "(" in album or ")" in album else ("(", ")") return "%s - %s - %s%s%s" % (artist, title, o, album, c) if not album and not artist: sep = title.count(u" - ") if sep == 2: artist, title, album = title.split(u" - ") elif sep == 1: artist, title = title.split(u" - ") if artist and title and album: song = fmt(artist, title, album) elif artist and title: song = u" - ".join((artist, title)) else: song = title elif not album: song = u" - ".join((artist, title)) else: song = fmt(artist, title, album) artist = artist.encode("utf-8") title = title.encode("utf-8") album = album.encode("utf-8") if infotype == 7: model = player.model_playing iter = player.iter_playing song = model.get_value(iter, 3) artist = model.get_value(iter, 6) title = model.get_value(iter, 5) album = model.get_value(iter, 9) if infotype > 4 and infotype < 7: # unicode chapter tags unsupported return if not player_context & 1: time_lag = 0 else: time_lag = int(time_lag / player.pbspeedfactor) timeout_add(time_lag, self.new_songname_timeout, (song, artist, title, album, player, player_context)) @threadslock def new_songname_timeout(self, (song, artist, title, album, player, player_context)): if player.player_cid == (player_context | 1) and player.cuesheet is None: player.songname = song player.artist = artist player.title = title player.album = album self.send_new_mixer_stats() else: print "context mismatch, player context id =", player.player_cid,\ "metadata update carries context id =", player_context return False def ui_detail_leveller(self, level): def inner(widget): try: widget.forall(inner) except AttributeError: pass try: l = widget.viewlevels except AttributeError: pass else: if level in l: widget.show() else: widget.hide() return inner def callback(self, widget, data): print "%s was pressed" % data if data == "Show about": self.prefs_window.notebook.set_current_page(4) self.prefs_window.window.present() if data == "Features": if widget.get_active(): self.simplemixer = False self.min_wst.set_tracking(False) self.window.forall(self.ui_detail_leveller(5)) self.send_new_mixer_stats() for each in (self.player_left, self.player_right): each.pl_mode.emit("changed") self.full_wst.apply() self.full_wst.set_tracking(True) else: self.simplemixer = True self.full_wst.set_tracking(False) self.player_right.stop.clicked() self.crossadj.set_value(0) self.crossadj.value_changed() self.window.forall(self.ui_detail_leveller(0)) for each in (self.player_left, self.player_right): each.pl_delay.set_sensitive(False) self.min_wst.apply() self.min_wst.set_tracking(True) if data == "Advance": if self.crossfade.get_value() < 50: self.player_left.advance() else: self.player_right.advance() if data.startswith("cfm"): if self.crosspass: source_remove(self.crosspass) self.crosspass = 0 self.crossfade.set_value(data == "cfmright" and 100 \ or data == "cfmmidl" and 48 \ or data == "cfmmidr" and 52 \ or data == "cfmleft" and 0) if data == "pass-crossfader": if self.crosspass: self.crossdirection = not self.crossdirection else: self.crossdirection = (self.crossadj.get_value() <= 50) self.crosspass = timeout_add( int(self.passspeed_adj.get_value() * 10), self.cb_crosspass) if data == "Clear History": self.history_buffer.set_text("") def expandercallback(self, expander, param_spec, user_data=None): if expander.get_expanded(): self.history_vbox.show() else: self.history_vbox.hide() if self.player_left.is_playing: self.player_left.reselect_cursor_please = True if self.player_right.is_playing: self.player_right.reselect_cursor_please = True @threadslock def cb_crosspass(self): x = self.crossadj.get_value() if x == 100 * self.crossdirection: self.crosspass = 0 return False if self.crossdirection: self.crossfade.set_value(x+1) else: self.crossfade.set_value(x-1) return True # handles selection of metadata source def cb_metadata_source(self, widget): print "Metadata source was changed. Before: %d" % self.metadata_src self.metadata_src = widget.get_active() print "Metadata source was changed. Now: %d" % self.metadata_src for each in (self.player_left, self.player_right, self.jingles.interlude): each.expire_metadata() # update mixer status and metadata self.send_new_mixer_stats() return True; def cb_toggle(self, widget, data): print "%s was toggled %s" % (data, ("OFF","ON")[widget.get_active()]) if data == "stream-mon": self.send_new_mixer_stats() if data == "Greenphone": mode = self.mixermode if widget.get_active() == True: if self.mixermode == self.PRIVATE_PHONE: self.mixermode = self.PUBLIC_PHONE self.redphone.set_active(False) self.mixermode = self.PUBLIC_PHONE else: if self.mixermode == self.PUBLIC_PHONE: self.mixermode = self.NO_PHONE if self.mixermode != mode: self.new_mixermode(self.mixermode) if data == "Redphone": mode = self.mixermode if widget.get_active() == True: if self.mixermode == self.PUBLIC_PHONE: self.mixermode = self.PRIVATE_PHONE self.greenphone.set_active(False) self.mixermode = self.PRIVATE_PHONE else: if self.mixermode == self.PRIVATE_PHONE: self.mixermode = self.NO_PHONE if self.mixermode != mode: self.new_mixermode(self.mixermode) def new_mixermode(self, mode): mic = self.mic_opener.any_mic_selected sens = (mode == self.NO_PHONE or mode == self.PUBLIC_PHONE or \ mic == True) self.player_left.listen.set_sensitive(sens) self.player_right.listen.set_sensitive(sens) self.mic_opener.force_all_on(mode == self.PUBLIC_PHONE) if mode == self.PRIVATE_PHONE: self.voiplevsbox.show() self.spacerbox.show() self.voipgainvbox.show() self.mixbackvbox.show() elif mode == self.PUBLIC_PHONE: self.voiplevsbox.show() self.spacerbox.show() self.voipgainvbox.show() self.mixbackvbox.hide() else: self.voiplevsbox.hide() self.spacerbox.hide() self.send_new_mixer_stats() def cb_crossfade(self, fader): cf = fader.get_value() if self.metadata_src == self.METADATA_CROSSFADER and ( cf < 50 <= self.old_cf or self.old_cf < 50 <= cf): self.player_left.expire_metadata() self.player_right.expire_metadata() self.send_new_mixer_stats() self.old_cf = cf def cb_crosspattern(self, widget): print "crossfader pattern changed" self.send_new_mixer_stats() def cb_deckvol(self, gain): self.send_new_mixer_stats() def save_session(self, trigger, where=None): print "save_session called" if where is None: session_filename = pm.basedir / self.session_filename else: where = PathStr(where) session_filename = where / self.session_filename if trigger in ("atexit", "periodic") and pm.profile is None \ and pm.session_type != "L0": if trigger == "periodic": print "periodic save cancelled" else: print "save at exit blocked" # Cancel the periodic timeout with this return value. return False self.prefs_window.save_resource_template() if trigger == "template": print "saving template only" return True try: with open(session_filename, "w") as fh: fh.write("deckvol=" + str(self.deckadj.get_value()) + "\n") fh.write("deck2vol=" + str(self.deck2adj.get_value()) + "\n") fh.write("crossfade=" + str(self.crossadj.get_value()) + "\n") fh.write("stream_mon=" + str(int(self.listen_stream.get_active())) + "\n") fh.write("tracks_played=" + str(int(self.history_expander.get_expanded())) + "\n") fh.write("pass_speed=" + str(self.passspeed_adj.get_value()) + "\n") fh.write("prefs=" + str(int((self.prefs_window.window.flags() & gtk.VISIBLE) != 0)) + "\n") fh.write("server=" + str(int((self.server_window.window.flags() & gtk.VISIBLE) != 0)) + "\n") fh.write("prefspage=" + str(self.prefs_window.notebook.get_current_page()) + "\n") fh.write("metadata_src=" + str(self.metadata_source.get_active()) + "\n") fh.write("crosstype=" + str(self.crosspattern.get_active()) + "\n") fh.write("hpane=" + str(self.paned.get_position()) + "\n") fh.write("vpane=" + str(self.leftpane.get_position()) + "\n") fh.write("cw_tree=" + self.topleftpane.get_col_widths("tree") + "\n") fh.write("cw_flat=" + self.topleftpane.get_col_widths("flat") + "\n") fh.write("cw_catalogs=" + self.topleftpane.get_col_widths("catalogs") + "\n") fh.write("dbpage=" + str(self.topleftpane.notebook.get_current_page()) + "\n") fh.write("playerpage=" + str(self.player_nb.get_current_page()) + "\n") fh.close() # Save a list of files played and timestamps. fh = open(session_filename + "_files_played", "w") cutoff = time.time() - 2592000 # 2592000 = 30 days. recent = {} for key, value in self.files_played.iteritems(): if value > cutoff: recent[key] = value pickle.Pickler(fh).dump(recent) fh.close() except Exception as e: print "Error writing out main session data", e try: fh = open(session_filename + "_tracks", "w") start, end = self.history_buffer.get_bounds() text = self.history_buffer.get_text(start, end) fh.write(text) fh.close() except Exception as e: print "Error writing out tracks played data", e self.prefs_window.save_player_prefs(where) self.controls.save_prefs(where) self.server_window.save_session_settings(where) # Build links directory when in session mode. if pm.profile is None: link_uuid_reg.clear() for row in itertools.chain(self.player_left.liststore, self.player_right.liststore, self.jingles.interlude.liststore): uuid_ = row[10] try: uuid.UUID(uuid_) except: pass else: link_uuid_reg.add(uuid_, row[1]) effects = self.jingles.effects for uuid_, pathname in zip(effects.uuids(), effects.pathnames()): if pathname is not None: link_uuid_reg.add(str(uuid_), pathname) link_uuid_reg.update(PathStr(where or pm.basedir) / "links") self.player_left.save_session(where) self.player_right.save_session(where) self.jingles.save_session(where) # JACK ports are saved at the moment of change, not here. return True # This is also a timeout routine def restore_session(self): try: fh = open(pm.basedir / self.session_filename, "r") except Exception as e: print e return while 1: try: line = fh.readline() if line == "": break except: break k, _, v = line[:-1].partition('=') if k=="deckvol": self.deckadj.set_value(float(v)) elif k=="deck2vol": self.deck2adj.set_value(float(v)) elif k=="crossfade": self.crossadj.set_value(float(v)) elif k=="stream_mon": self.listen_stream.set_active(int(v)) elif k=="tracks_played": if int(line[14:-1]): self.history_expander.emit("activate") elif k=="pass_speed": self.passspeed_adj.set_value(float(v)) elif k=="prefs": if v=="1": self.prefs_window.window.show() elif k=="server": if v=="1": self.server_window.window.show() elif k=="jingles": if v=="1": self.jingles.show() elif k=="prefspage": self.prefs_window.notebook.set_current_page(int(v)) elif k=="metadata_src": self.metadata_source.set_active(int(v)) elif k=="crosstype": self.crosspattern.set_active(int(v)) elif k=="hpane": self.paned.set_position(int(v)) elif k=="vpane": self.leftpane.set_position(int(v)) elif k in ("cw_tree", "cw_flat", "cw_catalogs"): self.topleftpane.set_col_widths(k[3:], v) elif k=="dbpage": self.topleftpane.notebook.set_current_page(int(v)) elif k=="playerpage": self.player_nb.set_current_page(int(v)) try: fh = open(self.session_filename + "_files_played", "r") except: pass else: self.files_played = pickle.Unpickler(fh).load() fh.close() mst = pm.basedir / (self.session_filename + "_tracks") try: stat = os.stat(mst) except OSError as e: print e return if stat.st_ctime + 21600 > time.time(): try: fh = open(mst, "r") except Exception as e: print e return text = fh.read() fh.close() self.history_buffer.set_text(text) else: print "disregarding out of date track history text" def destroy_hard(self, widget=None, data=None): if self.session_loaded: self.freewheel_button.set_active(False) self.save_session("atexit") self.quitting() if gtk.main_level(): gtk.main_quit() while gtk.gdk.events_pending(): gtk.main_iteration() time.sleep(0.3) exit(5) def destroy(self, widget=None, data=None): self.freewheel_button.set_active(False) self.save_session("atexit") if self.crosspass: source_remove(self.crosspass) self.server_window.cleanup() self.mic_opener.close_all() self.player_left.cleanup() self.player_right.cleanup() self.jingles.cleanup() self.player_left.flush = True self.player_right.flush = True self.send_new_mixer_stats() self.prefs_window.songdbprefs.disconnect() source_remove(self.statstimeout) source_remove(self.vutimeout) source_remove(self.savetimeout) self._mixer_ctrl.close() self.quitting() self.window.hide() self.prefs_window.window.hide() self.server_window.window.hide() pm.profile_dialog.hide() if gtk.main_level(): gtk.main_quit() while gtk.gdk.events_pending(): gtk.main_iteration() time.sleep(0.3) # Allow time for all subthreads/programs time to exit exit(0) @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="") def quitting(self): """Called to notify plugins that this session is closing.""" pass @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="") def heartbeat(self): """Called to notify plugins that this session is healthy.""" pass @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="") def tracks_finishing(self): """Called to notify DJ that music tracks are ending.""" pass @dbus.service.method(dbus_interface=PGlobs.dbus_bus_basename, out_signature="u") def pid(self): """Reply with the process ID.""" return int(os.getpid()) def delete_event(self, widget, event, data=None): qm = ["%s" % _("Confirmation to quit IDJC is required."), ""] if self.server_window.is_streaming and self.server_window.is_recording: qm.append( _("All active recordings and radio streams will terminate.")) elif self.server_window.is_streaming: qm.append(_("All of the active radio streams will terminate.")) elif self.server_window.is_recording: qm.append(_("All active recordings will cease.")) else: self.destroy() return False idjc_shutdown_dialog(self.window_group, self.destroy, None, qm) return True def mixer_write(self, message, target="mx"): """The means to communicate with and launch the backend.""" if target == True or target == False or target == None: raise RuntimeError("want traceback") try: self._mixer_ctrl.write("%s\n%s" % (target, message)) self._mixer_ctrl.flush() except (IOError, ValueError, AttributeError) as e: if message == "bootstrap": print "launching backend" else: print str(e) for i in range(1, 4 if self.session_loaded else 2): print "backend launch attempt", i read = ctypes.c_int() write = ctypes.c_int() if not self.backend.init_backend(ctypes.byref(read), ctypes.byref(write)): print "call to init_backend failed" continue try: self._mixer_ctrl = os.fdopen(write.value, "w") self._mixer_rply = os.fdopen(read.value, "r") except OSError: "failed to open streams to backend" continue print "awaiting reply" for j in range(10): reply = self.mixer_read() print "got", reply if reply == "idjc backend ready\n": break else: print "bad response from newly started backend" continue if FGlobs.have_libmpg123: self.mixer_write("ACTN=mp3_getstatus\nend\n") self.mp3status = int(self.mixer_read()) if message != "bootstrap": # Restore previous settings. self.send_new_mixer_stats() self.prefs_window.mic_controls_backend_update() self.prefs_window.voip_pan_backend_update() self.player_left.next.clicked() self.player_right.next.clicked() self.jingles.interlude.next.clicked() self.server_window.source_client_open() self.comms_reply_pending = False self.server_window.restart_streams_and_recorders() self.jack.restore() self.mixer_write(message, target) break else: print "giving up" self.destroy_hard() def mixer_read(self, iters = 0): if iters == 5: self.destroy_hard() try: line = self._mixer_rply.readline() except IOError as e: print str(e) line = self.mixer_read(iters + 1) if line == "Segmentation Fault\n": line = "" print "Mixer reports a segmentation fault" self._mixer_rply.close() self._mixer_ctrl.close() return line def vu_update(self, locking=True, vu_update_counter=[0]): session_ns = {} player_metadata = [] session_cmd = midis = '' cons_changed = False with (gdklock if locking else nullcm)(): if not gtk.main_level(): return False vu_update_counter[0] += 1 if vu_update_counter[0] % 20 == 0: self.heartbeat() try: self.mixer_write("ACTN=requestlevels\nend\n") except (ValueError, IOError): return True while 1: line = self.mixer_read().rstrip() if line == "": return True if line == "end": break if not line.count("="): print line continue key, value = line.split("=", 1) if key == "midi": midis= value continue if key.startswith("session_"): session_ns[key[8:]] = value continue if key == "ports_connections_changed": cons_changed = value != "0" if key.endswith("_silence"): try: value = float(value) except ValueError: pass else: try: value = int(value) except ValueError: pass if key.endswith("_new_metadata"): if not key.startswith("jingles"): if key.startswith("interlude"): target = self.jingles.interlude else: target = getattr(self, "player_" + key.split("_", 1)[0]) player_metadata.append((target, value)) continue try: self.vumap[key].set_meter_value(value) except KeyError: pass #print "key value", key, "missing from vumap" if self.jingles.playing == True and int(self.jingles_playing) == 0: self.jingles.clear_indicators() for player, data in player_metadata: self.update_songname(player, data) if midis: for midi in midis.split(','): input, _, value = midi.partition(':') self.controls.input(input, int(value, 16)) if session_ns["command"] == "save_L1" and pm.session_type == "L1": self.jack.session_save() self.save_session("L1") if session_ns["command"].endswith("_JACK") and \ pm.session_type == "JACK": self.handle_jack_session(**session_ns) if cons_changed: self.jack.standard_save() ep = int(self.effects_playing) if ep != -1: self.jingles.update_effect_leds(ep) return True def handle_jack_session(self, command, event, directory, uuid): """A JACK session event occurred and the reply data is crafted here.""" subdir = PathStr(directory) / ("idjc-%s-%s" % (pm.session_type, pm.session_name)) try: os.mkdir(subdir) except EnvironmentError as e: if e.errno != 17: print e command = command.rstrip("_JACK") if command in ("save", "saveandexit"): self.jack.session_save(subdir) self.save_session("JACK", subdir) if command == "savetemplate": self.save_session("template", subdir) commandline = " ".join((sys.argv[0], "run" "--session=JACK:%s:${SESSION_DIR}" % pm.session_name, "--jackserver=%s" % uuid)) if args.channels is not None: commandline += " -c " + " ".join(args.channels) if args.voip is not None: commandline += " -V " + args.voip[0] if args.servers is not None: commandline += " -s " + " ".join(args.servers) if args.crossfader is not None: commandline += " -x " + args.crossfader[0] if args.players is not None: commandline += " -P " + " ".join(args.players) print "## Restored session commandline will be:", commandline # Reply to backend confirms save has took place. self.mixer_write("ACTN=session_reply\nsession_event=%s\n" "session_commandline=%s\n" % ( event, commandline)) self.mixer_read() # At this point the session event has been disposed of. if command == "saveandquit": self.destroy() @threadslock def stats_update(self): players = self.player_left, self.player_right, self.jingles.interlude for player in players: if player.player_is_playing: player.check_mixer_signal() elif player.pl_mode.get_active() == 0: player.update_time_stats() ch = self.mic_opener.mic_list for i in xrange(PGlobs.num_micpairs * 2): if self.channel_states[i] == -1: ch[i].open.emit("toggled") if self.dbus_voip_mode != self.mixermode: self.dbus_voip_mode = self.mixermode self.voip_mode_changed(self.mixermode) return True def cb_history_populate(self, textview, menu): menusep = gtk.SeparatorMenuItem() menu.append(menusep) menusep.show() menuitem = gtk.MenuItem(_('Remove Contents')) menuitem.connect_object("activate", gtk.Button.clicked, self.history_clear) menu.append(menuitem) menuitem.show() def cb_key_capture(self, widget, event): if self.topleftpane.in_text_entry(): return self.controls.input_key(event) def configure_event(self, widget, event): if self.player_left.is_playing: self.player_left.reselect_cursor_please = True if self.player_right.is_playing: self.player_right.reselect_cursor_please = True def cb_panehide(self, widget): """ hide widget when all it's children are hidden or non existent """ c1 = widget.get_child1() c2 = widget.get_child2() if (not c1 or not c1.flags() & gtk.VISIBLE) and \ (not c2 or not c2.flags() & gtk.VISIBLE): widget.hide() def strip_focusability(self, widget): try: widget.forall(self.strip_focusability) except AttributeError: pass widget.unset_flags(gtk.CAN_FOCUS) class initfailed: def __init__(self, errormessage = "something bad happened"): print errormessage class initcleanexit: pass def flash_test(self): """True if the mic button needs to be flashing now or soon.""" return self.player_left.is_playing or self.player_right.is_playing def __init__(self): self.appname = PGlobs.app_longform self.version = FGlobs.package_version self.copyright = PGlobs.copyright self.license = PGlobs.license self.profile = pm.profile signal.signal(signal.SIGINT, self.destroy_hard) signal.signal(signal.SIGUSR1, signal.SIG_IGN) signal.signal(signal.SIGUSR2, signal.SIG_IGN) socket.setdefaulttimeout(15) # Resources to reserve. config = ConfigParser.RawConfigParser() config.read(pm.basedir / 'config') try: PGlobs.num_micpairs = config.getint( 'resource_count', 'num_micpairs') // 2 except ConfigParser.Error: pass try: count = config.getint('resource_count', 'num_streamers') except ConfigParser.Error: pass else: PGlobs.num_streamers = count PGlobs.num_encoders = count try: PGlobs.num_recorders = config.getint( 'resource_count', 'num_recorders') except ConfigParser.Error: pass try: PGlobs.num_effects = config.getint( 'resource_count', 'num_effects') except ConfigParser.Error: pass if pm.session_uuid is None: if args.jackserver is None: os.environ["jack_parameter"] = "default" else: os.environ["jack_parameter"] = args.jackserver[0] else: os.environ["jack_parameter"] = pm.session_uuid if pm.profile is not None: client_id = "idjc_" + pm.profile else: # Client ID is by session type and name. client_id = "idjc_%s_%s" % (pm.session_type, pm.session_name) os.environ["app_name"] = "%s (%s) %s" % (PGlobs.app_longform, FGlobs.package_name, FGlobs.package_version) os.environ["client_id"] = client_id os.environ["mic_qty"] = str(PGlobs.num_micpairs * 2) os.environ["num_streamers"] = str(PGlobs.num_streamers) os.environ["num_encoders"] = str(PGlobs.num_encoders) os.environ["num_recorders"] = str(PGlobs.num_recorders) os.environ["num_effects"] = str(PGlobs.num_effects) os.environ["has_head"] = "1" os.environ["libmp3lame_filename"] = FGlobs.libmp3lame_filename os.environ["libmpg123_filename"] = FGlobs.libmpg123_filename # For IPC. os.environ["ui2be"] = pm.basedir / "ui2be" os.environ["be2ui"] = pm.basedir / "be2ui" print "jack client ID:", client_id self.session_loaded = False try: self.backend = ctypes.CDLL(FGlobs.backend) except OSError: try: subprocess.call(["notify-send", "-u", "critical", "-a", "IDJC", "IDJC Failed to open %s\n\nCannot continue" % FGlobs.backend]) except OSError: pass raise self.initfailed self.mixer_write("bootstrap") # create the GUI elements self.window_group = gtk.WindowGroup() self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.set_gravity(gtk.gdk.GRAVITY_STATIC) self.window_group.add_window(self.window) self.window.set_title(self.appname + pm.title_extra) self.window.connect("delete_event", self.delete_event) self.hbox10 = gtk.HBox(False) self.hbox10.set_spacing(6) self.paned = gtk.HPaned() self.leftpane = gtk.VPaned() self.paned.pack1(self.leftpane) self.topleftpane = songdb.MediaPane() self.leftpane.pack1(self.topleftpane) self.topleftpane.connect_object("show", gtk.VPaned.show, self.leftpane) self.topleftpane.connect_object("hide", self.cb_panehide, self.leftpane) # Facility for widget label renaming by the user. self.label_subst = LabelSubst(_('Renameable Labels')) # Expand features by adding something useful here # a dummy widget is needed to prevent a segfault when F8 is pressed self.bottomleftpane = gtk.Button("Bottom") self.leftpane.pack2(self.bottomleftpane) self.rightpane = gtk.HBox(False, 0) self.paned.pack2(self.rightpane, True, False) self.vbox8 = gtk.VBox(False, 0) menuhbox = gtk.HBox() self.vbox8.pack_start(menuhbox, False) menuhbox.show() self.menu = MainMenu() menuhbox.pack_start(self.menu) self.menu.show() self.rightpane.pack_start(self.vbox8, True, True ,0) self.window.add(self.paned) self.rightpane.show() self.paned.show() self.player_nb = gtk.Notebook() main_label = gtk.Label() self.label_subst.add_widget(main_label, "mainplayerslabel", _('Main Players')) self.vbox6 = gtk.VBox(False, 0) self.player_nb.append_page(self.vbox6, main_label) main_label.show() self.vbox8.pack_start(self.player_nb, True, True, 0) self.player_nb.show() self.hbox7 = gtk.HBox(True) self.hbox10.show() self.hbox10spc = gtk.HBox() self.vbox8.pack_start(self.hbox10spc, False, padding=3) self.hbox10spc.show() self.vbox8.pack_start(self.hbox10, False, False, 0) spc = gtk.HBox() self.vbox8.pack_start(spc, False, padding=2) spc.show() # show box 8 now that it's finished self.vbox8.show() self.freewheel_button = FreewheelButton(self.mixer_write) self.hbox10.pack_start(self.freewheel_button, False) self.dsp_button = gtk.ToggleButton() self.dsp_button.viewlevels = (5,) label = gtk.Label() label.set_markup("%s" % _('DSP')) self.dsp_button.add(label) label.show() self.dsp_button.connect("toggled", lambda w: self.send_new_mixer_stats()) self.hbox10.pack_start(self.dsp_button, False) self.dsp_button.show() phonebox = gtk.HBox() phonebox.viewlevels = (5,) phonebox.set_spacing(2) pixbuf4 = gtk.gdk.pixbuf_new_from_file( FGlobs.pkgdatadir / "greenphone.png") pixbuf4 = pixbuf4.scale_simple(25, 20, gtk.gdk.INTERP_BILINEAR) image = gtk.Image() image.set_from_pixbuf(pixbuf4) image.show() self.greenphone = gtk.ToggleButton() self.greenphone.add(image) self.greenphone.connect("toggled", self.cb_toggle, "Greenphone") phonebox.pack_start(self.greenphone) self.greenphone.show() set_tip(self.greenphone, _('Mix voice over IP audio to the output stream.')) pixbuf5 = gtk.gdk.pixbuf_new_from_file( FGlobs.pkgdatadir / "redphone.png") pixbuf5 = pixbuf5.scale_simple(25, 20, gtk.gdk.INTERP_BILINEAR) image = gtk.Image() image.set_from_pixbuf(pixbuf5) image.show() self.redphone = gtk.ToggleButton() self.redphone.add(image) self.redphone.connect("toggled", self.cb_toggle, "Redphone") phonebox.pack_start(self.redphone) self.redphone.show() set_tip(self.redphone, _('Mix voice over IP audio to the DJ only.')) self.hbox10.pack_start(phonebox, False) phonebox.show() self.pan_preset_chooser = PanPresetChooser() self.pan_preset_chooser.viewlevels = (5,) self.hbox10.pack_start(self.pan_preset_chooser, False) self.pan_preset_chooser.show_all() # microphone open/unmute dynamic widget cluster thingy self.mic_opener = MicOpener(self, self.flash_test) self.mic_opener.viewlevels = (5,) self.hbox10.pack_start(self.mic_opener) self.mic_opener.show() # playlist advance button pixbuf = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "advance.png") pixbuf = pixbuf.scale_simple(32, 14, gtk.gdk.INTERP_BILINEAR) image = gtk.Image() image.set_from_pixbuf(pixbuf) self.advance = gtk.Button() self.advance.add(image) image.show() self.advance.connect("clicked", self.callback, "Advance") self.hbox10.pack_end(self.advance, False) self.advance.show() set_tip(self.advance, _('This button steps through the active playlist,' ' pausing between tracks. The active playlist is' ' defined by the placement of the crossfader.')) self.hbox7.show() self.hbox10.show() self.hbox4 = gtk.HBox(False, 0) self.vbox6.pack_start(self.hbox4, True, True, 0) # Boxes 3L and 3R contain our media players self.vbox3L = gtk.VBox(False, 0) self.vbox3L.set_border_width(2) self.hbox4.pack_start(self.vbox3L, True, True, 0) # A vertical box for our main volume controls self.vboxvol = gtk.VBox(False, 0) self.vboxvol.set_border_width(2) self.volframe = gtk.Frame() self.volframe.viewlevels = (5,) self.volframe.set_border_width(5) self.volframe.set_shadow_type(gtk.SHADOW_ETCHED_IN) self.volframe.add(self.vboxvol) self.volframe.show() self.hbox4.pack_start(self.volframe, False, True, 3) # A pictoral volume label above horizontally-stacked volume control(s) image = gtk.Image() image.set_from_file(FGlobs.pkgdatadir / "volume2.png") self.vboxvol.pack_start(image, False, False, 0) image.show() hboxvol = gtk.HBox(True, 0) self.vboxvol.pack_start(hboxvol, True, True, 0) hboxvol.show() # Primary volume control self.deckadj = gtk.Adjustment(127.0, 0.0, 127.0, 1.0, 6.0) self.deckadj.connect("value_changed", self.cb_deckvol) self.deckvol = gtk.VScale(self.deckadj) self.deckvol.set_update_policy(gtk.UPDATE_CONTINUOUS) self.deckvol.set_draw_value(False) self.deckvol.set_inverted(True) hboxvol.pack_start(self.deckvol, False, False, 4) self.deckvol.show() set_tip(self.deckvol, _('The volume control shared by both music players.')) # Visible when using separate player volume controls. self.deck2adj = gtk.Adjustment(127.0, 0.0, 127.0, 1.0, 6.0) self.deck2adj.connect("value_changed", self.cb_deckvol) self.deck2vol = gtk.VScale(self.deck2adj) self.deck2vol.set_update_policy(gtk.UPDATE_CONTINUOUS) self.deck2vol.set_draw_value(False) self.deck2vol.set_inverted(True) hboxvol.pack_start(self.deck2vol, False) set_tip(self.deck2vol, _('The volume control for the right music player.')) self.spacerbox = gtk.VBox() self.vboxvol.pack_start(self.spacerbox, False, padding=3) self.voiplevsbox = gtk.HBox(True, 0) self.vboxvol.pack_start(self.voiplevsbox, True) self.voipgainvbox = gtk.VBox() self.voipgainvbox.set_spacing(1) self.voiplevsbox.pack_start(self.voipgainvbox, False) self.voipgainvbox.show() pixbuf = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "greenphone.png") pixbuf = pixbuf.scale_simple(20, 17, gtk.gdk.INTERP_HYPER) greenphoneimage = gtk.Image() greenphoneimage.set_from_pixbuf(pixbuf) self.voipgainvbox.pack_start(greenphoneimage, False) greenphoneimage.show() self.voipgainadj = gtk.Adjustment(64.0, 0.0, 127.0, 1.0, 6.0) self.voipgainadj.connect("value_changed", self.cb_deckvol) voipgain = gtk.VScale(self.voipgainadj) voipgain.set_update_policy(gtk.UPDATE_CONTINUOUS) voipgain.set_draw_value(False) voipgain.set_inverted(True) self.voipgainvbox.pack_start(voipgain) voipgain.show() set_tip(self.voipgainvbox, _('VoIP level adjustment. 0dB gain is at the mid point.')) self.mixbackvbox = gtk.VBox() self.mixbackvbox.set_spacing(1) self.voiplevsbox.pack_start(self.mixbackvbox, False) self.mixbackvbox.show() pixbuf = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "pbphone.png") pixbuf = pixbuf.scale_simple(20, 17, gtk.gdk.INTERP_HYPER) pbphoneimage = gtk.Image() pbphoneimage.set_from_pixbuf(pixbuf) self.mixbackvbox.pack_start(pbphoneimage, False) pbphoneimage.show() self.mixbackadj = gtk.Adjustment(64.0, 0.0, 127.0, 1.0, 6.0) self.mixbackadj.connect("value_changed", self.cb_deckvol) mixback = gtk.VScale(self.mixbackadj) mixback.set_update_policy(gtk.UPDATE_CONTINUOUS) mixback.set_draw_value(False) mixback.set_inverted(True) self.mixbackvbox.pack_start(mixback) mixback.show() set_tip(self.mixbackvbox, _('The stream volume level to send to the voice over IP connection.')) self.vboxvol.show() # A box for the second deck. self.vbox3R = gtk.VBox(False, 0) self.vbox3R.viewlevels = (5,) self.vbox3R.set_border_width(2) self.hbox4.pack_start(self.vbox3R, True, True, 0) # hbox4 is full now so let's show it. self.hbox4.show() # The contents of the two player panes 3L and 3R are next up # The two identical players have been moved into one class self.player_left = IDJC_Media_Player(self.vbox3L, "left", self) self.vbox3L.show() self.player_right = IDJC_Media_Player(self.vbox3R, "right", self) self.vbox3R.show() # A track history window to help with announcements history_expander_hbox = gtk.HBox() # Expander widget text for indicating recent tracks played. self.history_expander = gtk.expander_new_with_mnemonic( _('Tracks Played')) history_expander_hbox.pack_start(self.history_expander, True, True, 6) self.history_expander.connect("notify::expanded", self.expandercallback) self.history_expander.show() self.vbox6.pack_start(history_expander_hbox, False, False, 0) history_expander_hbox.show() self.history_vbox = gtk.VBox() history_hbox = gtk.HBox() self.history_vbox.pack_start(history_hbox, True, True, 0) self.vbox6.pack_start(self.history_vbox, True, True, 0) history_hbox.show() history_frame = gtk.Frame() history_hbox.pack_start(history_frame, True, True, 6) history_frame.show() history_frame.set_border_width(0) self.history_window = gtk.ScrolledWindow() history_frame.add(self.history_window) self.history_window.set_border_width(4) self.history_window.show() self.history_window.set_size_request(-1, 81) self.history_window.set_shadow_type(gtk.SHADOW_IN) self.history_window.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) history_clear_box = gtk.HBox() # TC: Popup menu item, wipes away the tracks played history text. self.history_clear = gtk.Button(" " + _('Remove Contents') + " ") self.history_clear.connect("clicked", self.callback, "Clear History") history_clear_box.pack_start(self.history_clear, True, False, 0) self.history_clear.show() self.history_vbox.pack_start(history_clear_box, False, False, 1) spacer = gtk.VBox() self.history_vbox.pack_start(spacer, False, False, 1) spacer.show() self.history_textview = gtk.TextView() self.history_textview.connect( "populate-popup", self.cb_history_populate) self.history_window.add(self.history_textview) self.history_textview.show() self.history_textview.set_cursor_visible(False) self.history_textview.set_editable(False) self.history_textview.set_wrap_mode(gtk.WRAP_CHAR) self.history_buffer = self.history_textview.get_buffer() self.abox = gtk.HBox() self.abox.viewlevels = (5,) self.abox.set_border_width(2) self.vbox6.pack_start(self.abox, False, False, 0) self.abox.show() # The crossfader. No DJ should be without one. ;) self.outercrossbox = gtk.HBox() self.outercrossbox.viewlevels = (5,) crossframe = gtk.Frame() self.outercrossbox.pack_start(crossframe, True, True, 6) self.outercrossbox.show() crossframe.set_border_width(0) self.crossbox = gtk.HBox() crossframe.add(self.crossbox) crossframe.show() self.crossbox.set_border_width(2) self.crossbox.set_spacing(3) cross_sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) cross_sizegroup2 = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) sg3 = gtk.SizeGroup(gtk.SIZE_GROUP_VERTICAL) smvbox = gtk.VBox() label = gtk.Label(_('Monitor Mix')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('Monitor Mix')))) label.set_attributes(attrlist) smvbox.add(label) label.show() smhbox = gtk.HBox() smhbox.set_border_width(1) self.listen_dj = gtk.RadioButton(None, _('DJ')) smhbox.add(self.listen_dj) self.listen_dj.show() self.listen_stream = gtk.RadioButton(self.listen_dj, _('Stream')) smhbox.add(self.listen_stream) self.listen_stream.show() smhbox.show() smvbox.add(smhbox) sg3.add_widget(smhbox) self.listen_stream.connect("toggled", self.cb_toggle, "stream-mon") # TC: Context {0}, {1}, {2} = Monitor Mix, Stream, DJ # TC: Or whatever they become translated to. set_tip(smvbox, _("In IDJC there are are two audio paths and this '{0}'" " control toggles between them. When '{1}' is active you can hear what" " the listeners are hearing including the effects of the crossfader. " "'{0}' needs to be set to '{2}' in order to make proper use of the " "VoIP features.").format(_("Monitor Mix"), _("Stream"), _("DJ"))) cross_sizegroup.add_widget(smhbox) self.crossbox.pack_start(smvbox, False, False, 0) smvbox.show() # metadata source selector combo box mvbox = gtk.VBox() # TC: Dropdown box title text widget. label = gtk.Label(_('Metadata Source')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('Metadata Source')))) label.set_attributes(attrlist) mvbox.add(label) label.show() self.metadata_source = gtk.combo_box_new_text() # TC: The chosen source of track metadata. self.metadata_source.append_text(_('Playlist 1')) # TC: The chosen source of track metadata. self.metadata_source.append_text(_('Playlist 2')) # TC: The chosen source of track metadata. self.metadata_source.append_text(_('Last Played')) # TC: The chosen source of track metadata. self.metadata_source.append_text(_('Crossfader')) # TC: The chosen source of track metadata. In this case no metadata. self.metadata_source.append_text(_('None')) # TC: The chosen source of track metadata. In this case no metadata. self.metadata_source.append_text(_('Playlist 3')) self.metadata_source.set_active(3) cross_sizegroup.add_widget(self.metadata_source) self.metadata_source.connect("changed", self.cb_metadata_source) set_tip(self.metadata_source, _('Select the origin for the playing track metadata on the stream.')) mvbox.add(self.metadata_source) self.metadata_source.show() self.crossbox.pack_start(mvbox, False, False, 0) mvbox.show() cross_sizegroup2.add_widget(self.metadata_source) sg3.add_widget(self.metadata_source) plvbox = gtk.VBox() # TC: Abbreviation of left. label = gtk.Label(_('L')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('L')))) label.set_attributes(attrlist) plvbox.add(label) label.show() self.passleft = make_arrow_button( self, gtk.ARROW_LEFT, gtk.SHADOW_NONE, "cfmleft") plvbox.add(self.passleft) self.passleft.show() self.crossbox.pack_start(plvbox, False, False, 0) plvbox.show() set_tip(plvbox, _('Move the crossfader fully left.')) sg3.add_widget(self.passleft) self.crossadj = gtk.Adjustment(0.0, 0.0, 100.0, 1.0, 3.0, 0.0) self.crossadj.connect("value_changed", self.cb_crossfade) cvbox = gtk.VBox() label = gtk.Label(_('Crossfader')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('Crossfader')))) label.set_attributes(attrlist) cvbox.add(label) label.show() self.crossfade = gtk.HScale(self.crossadj) self.crossfade.set_update_policy(gtk.UPDATE_CONTINUOUS) self.crossfade.set_draw_value(False) cvbox.add(self.crossfade) self.crossfade.show() self.crossbox.pack_start(cvbox, True, True, 0) cvbox.show() self.vbox6.pack_start(self.outercrossbox, False, False, 2) set_tip(cvbox, _('The crossfader.')) prvbox = gtk.VBox() # TC: Abbreviation of right. label = gtk.Label(_('R')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('R')))) label.set_attributes(attrlist) prvbox.add(label) label.show() self.passright = make_arrow_button( self, gtk.ARROW_RIGHT, gtk.SHADOW_NONE, "cfmright") prvbox.add(self.passright) self.passright.show() self.crossbox.pack_start(prvbox, False, False, 0) prvbox.show() set_tip(prvbox, _('Move the crossfader fully right.')) sg3.add_widget(self.passright) patternbox = gtk.HBox() patternbox.set_spacing(2) sg4 = gtk.SizeGroup(gtk.SIZE_GROUP_VERTICAL) passbox = gtk.VBox() # TC: Describes a mid point. label = gtk.Label(_('Middle')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('Middle')))) label.set_attributes(attrlist) label.show() passbox.add(label) passhbox = gtk.HBox() passhbox.set_spacing(2) passbox.add(passhbox) passhbox.show() patternbox.pack_start(passbox, False, False, 0) passbox.show() self.passmidleft = make_arrow_button( self, gtk.ARROW_UP, gtk.SHADOW_NONE, "cfmmidl") sg4.add_widget(self.passmidleft) passhbox.pack_start(self.passmidleft, False, False, 0) self.passmidleft.show() set_tip(self.passmidleft, _('Move the crossfader to the middle of its range of travel.')) self.passmidright = make_arrow_button( self, gtk.ARROW_UP, gtk.SHADOW_NONE, "cfmmidr") passhbox.pack_start(self.passmidright, False, False, 0) self.passmidright.show() set_tip(self.passmidright, _('Move the crossfader to the middle of its range of travel.')) sg4.add_widget(self.passmidright) pvbox = gtk.VBox() # TC: The attenuation response curve of the crossfader. User selectable. label = gtk.Label(_('Response')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('Response')))) label.set_attributes(attrlist) pvbox.add(label) label.show() liststore = gtk.ListStore(gtk.gdk.Pixbuf) self.crosspattern = gtk.ComboBox(liststore) cell = gtk.CellRendererPixbuf() self.crosspattern.pack_start(cell, True) self.crosspattern.add_attribute(cell, 'pixbuf', 0) liststore.append((gtk.gdk.pixbuf_new_from_file( FGlobs.pkgdatadir / "classic_cross.png"), )) liststore.append((gtk.gdk.pixbuf_new_from_file( FGlobs.pkgdatadir / "mk2_cross.png"), )) liststore.append((gtk.gdk.pixbuf_new_from_file( FGlobs.pkgdatadir / "pat3.png"), )) pvbox.pack_start(self.crosspattern, True, True, 0) self.crosspattern.show() self.crossbox.pack_start(patternbox, False, False, 0) patternbox.show() cross_sizegroup2.add_widget(patternbox) self.crosspattern.set_active(0) self.crosspattern.connect("changed", self.cb_crosspattern) set_tip(self.crosspattern, _('This selects the response curve of the ' 'crossfader.\n\nThe mid-point attenuations are -3dB, 0dB, and -22dB ' 'respectively.')) patternbox.pack_start(pvbox, True, True, 0) pvbox.show() sg4.add_widget(self.crosspattern) passbox = gtk.HBox() passbox.set_spacing(2) tvbox = gtk.VBox() # TC: Duration in seconds. label = gtk.Label(_('Time')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('Time')))) label.set_attributes(attrlist) tvbox.add(label) label.show() self.passspeed_adj = gtk.Adjustment(1.0, 0.25, 20.0, 0.25, 0.25) psvbox = gtk.VBox() hs = gtk.HSeparator() psvbox.pack_start(hs, False) hs.show() self.passspeed = gtk.SpinButton(self.passspeed_adj, 0, 2) psvbox.pack_start(self.passspeed, True, False) self.passspeed.show() hs = gtk.HSeparator() psvbox.pack_start(hs, False) hs.show() tvbox.pack_start(psvbox, False, False, 0) psvbox.show() set_tip(tvbox, _('The time in seconds that the crossfader will take to' ' automatically pass across when the button to the right is clicked.')) passbox.pack_start(tvbox, False, False, 0) tvbox.show() sg4.add_widget(psvbox) pvbox = gtk.VBox() # TC: The crossfader pass-across button text. # TC: The actual button appears as [<-->] with this text above it. label = gtk.Label(_('Pass')) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(_('Pass')))) label.set_attributes(attrlist) pvbox.add(label) label.show() image = gtk.Image() image.set_from_file(FGlobs.pkgdatadir / "pass.png") image.show() self.passbutton = gtk.Button() self.passbutton.set_size_request(53, -1) self.passbutton.add(image) self.passbutton.connect("clicked", self.callback, "pass-crossfader") pvbox.add(self.passbutton) self.passbutton.show() set_tip(pvbox, _('This button causes the crossfader to move to the ' 'opposite side at a speed determined by the speed selector to the' ' left.')) passbox.pack_start(pvbox, True, True, 0) pvbox.show() sg4.add_widget(self.passbutton) self.crossbox.pack_start(passbox, False, False, 0) cross_sizegroup.add_widget(passbox) passbox.show() self.crossbox.show() abox = gtk.HBox() abox.set_border_width(1) self.vbox6.pack_start(abox, False, False, 0) abox.show() # We are done with vbox6 so lets show it self.vbox6.show() # The various meters self.metereventbox = gtk.EventBox() self.metereventbox.viewlevels = (5,) self.meterbox = gtk.HBox() self.metereventbox.add(self.meterbox) self.rightpane.pack_start(self.metereventbox, False, False, 0) self.meterbox.show() self.metereventbox.show() # Box contains stream peak, vu and connection status, listener stats. self.streammeterbox = PaddedVBox(3, 2, 0, 0, 5) self.meterbox.pack_start(self.streammeterbox, False, False, 0) self.streammeterbox.show() # Table that contains 1, 2, or 4 microphone meters. self.micmeterbox = PaddedVBox(3, 2, 0, 0, 5) self.meterbox.pack_start(self.micmeterbox, False, False, 0) self.micmeterbox.show() self.str_l_peak = peakholdmeter() self.str_r_peak = peakholdmeter() # TC: This text appears above the stream mix peak level meter. self.stream_peak_box = make_meter_unit( _('Peak'), self.str_l_peak, self.str_r_peak) self.streammeterbox.pack_start(self.stream_peak_box) self.stream_peak_box.show() set_tip(self.stream_peak_box, _('A peak hold meter indicating the ' 'signal strength of the stream audio.')) sg = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) self.stream_indicator = [] for i in range(PGlobs.num_streamers): self.stream_indicator.append(StreamMeter(1, 100)) self.stream_indicator_box, self.listener_indicator = \ make_stream_meter_unit(_('Streams'), self.stream_indicator) self.streammeterbox.pack_start( self.stream_indicator_box, False, False, 0) self.stream_indicator_box.show() sg.add_widget(self.stream_indicator_box) if PGlobs.num_recorders: self.recording_panel = RecordingPanel(PGlobs.num_recorders) self.streammeterbox.pack_start(self.recording_panel, False) self.recording_panel.show() self.str_l_rms_vu = vumeter() self.str_r_rms_vu = vumeter() # TC: This text appears above the stream mix VU meter. stream_vu_box = make_meter_unit(_('VU'), self.str_l_rms_vu, self.str_r_rms_vu) self.streammeterbox.pack_start(stream_vu_box) stream_vu_box.show() set_tip(stream_vu_box, _('A VU meter for the stream audio.')) # TC: Appears above the mic meters as a label followed by a number. self.mic_meters = [MicMeter(_("Ch"), i) for i in range(1, PGlobs.num_micpairs * 2 + 1)] if len(self.mic_meters) <= 4: for meter in self.mic_meters: self.micmeterbox.pack_start(meter) meter.show() else: chvbox = gtk.VBox() chvbox.set_spacing(4) self.micmeterbox.pack_start(chvbox) chvbox.show() def showhide(widget, state, box, l, r): if l.flags() & gtk.SENSITIVE or r.flags() & gtk.SENSITIVE: box.show() else: box.hide() for l, r in zip(*((iter(self.mic_meters),) * 2)): chhbox = gtk.HBox() chhbox.set_spacing(4) chhbox.pack_start(l, False) chhbox.pack_end(r, False) chvbox.pack_start(chhbox) chhbox.show() for each in l, r: each.connect("state-changed", showhide, chhbox, l, r) each.show() set_tip(self.micmeterbox, _('A peak hold meter indicating the ' 'microphone signal strength and a meter indicating attenuation levels ' 'in the microphone signal processing system. Green indicates ' 'attenuation from the noise gate, yellow from the de-esser, red from ' 'the limiter.')) # Aux players initialisation. self.jingles = ExtraPlayers(self) self.player_nb.append_page(self.jingles, self.jingles.nb_label) self.player_nb.set_page(0) # Variable initialisation self.songname = u"" self.newmetadata = False self.showing_left_file_requester = False self.showing_right_file_requester = False self.old_metadata = None self._old_metadata_2 = None self.simplemixer = False self.crosspass = 0 self.old_meta_context = None self.old_cf = 0 # initialize metadata source setting self.last_player = "" self.METADATA_LEFT_DECK = 0 self.METADATA_RIGHT_DECK = 1 self.METADATA_LAST_PLAYED = 2 self.METADATA_CROSSFADER = 3 self.METADATA_NONE = 4 self.METADATA_BACKGROUND = 5 self.metadata_src = self.METADATA_CROSSFADER self.alarm = False self.NO_PHONE = 0 self.PUBLIC_PHONE = 1 self.PRIVATE_PHONE = 2 self.mixermode = self.NO_PHONE self.jingles_playing = SlotObject(0) self.interlude_playing = SlotObject(0) self.player_left.playtime_elapsed = SlotObject(0) self.player_right.playtime_elapsed = SlotObject(0) self.jingles.interlude.playtime_elapsed = SlotObject(0) self.player_left.mixer_playing = SlotObject(0) self.player_right.mixer_playing = SlotObject(0) self.jingles.interlude.mixer_playing = SlotObject(0) self.player_left.mixer_signal_f = SlotObject(0) self.player_right.mixer_signal_f = SlotObject(0) self.jingles.interlude.mixer_signal_f = SlotObject(0) self.player_left.mixer_cid = SlotObject(0) self.player_right.mixer_cid = SlotObject(0) self.jingles.interlude.mixer_cid = SlotObject(0) self.left_compression_level = SlotObject(0) self.right_compression_level = SlotObject(0) self.left_deess_level = SlotObject(0) self.right_deess_level = SlotObject(0) self.left_noisegate_level = SlotObject(0) self.right_noisegate_level = SlotObject(0) self.jingles.mixer_jingles_cid = SlotObject(0) self.jingles.mixer_interlude_cid = SlotObject(0) self.player_left.runout = SlotObject(0) self.player_right.runout = SlotObject(0) self.jingles.interlude.runout = SlotObject(0) self.metadata_left_ctrl = SlotObject(0) self.metadata_right_ctrl = SlotObject(0) self.metadata_interlude_ctrl = SlotObject(0) self.player_left.silence = SlotObject(0.0) self.player_right.silence = SlotObject(0.0) self.jingles.interlude.silence = SlotObject(0.0) self.sample_rate = SlotObject(0) self.effects_playing = SlotObject(0) self.channel_states = [-1, ] * 12 self.dbus_voip_mode = -1 self.feature_set = gtk.ToggleButton() self.feature_set.set_active(True) self.feature_set.connect("toggled", self.callback, "Features") self.full_wst = WindowSizeTracker(self.window, True) self.min_wst = WindowSizeTracker(self.window, False) self.in_vu_timeout = False self.vucounter = 0 self.session_filename = "main_session" self.files_played = {} self.files_played_offline = {} # Variable map for stuff read from the mixer self.vumap = { "str_l_peak" : self.str_l_peak, "str_r_peak" : self.str_r_peak, "str_l_rms" : self.str_l_rms_vu, "str_r_rms" : self.str_r_rms_vu, "left_elapsed" : self.player_left.playtime_elapsed, "right_elapsed" : self.player_right.playtime_elapsed, "interlude_elapsed" : self.jingles.interlude.playtime_elapsed, "left_playing" : self.player_left.mixer_playing, "right_playing" : self.player_right.mixer_playing, "jingles_playing" : self.jingles_playing, "interlude_playing" : self.jingles.interlude.mixer_playing, "left_signal" : self.player_left.mixer_signal_f, "right_signal" : self.player_right.mixer_signal_f, "interlude_signal" : self.jingles.interlude.mixer_signal_f, "left_cid" : self.player_left.mixer_cid, "right_cid" : self.player_right.mixer_cid, "jingles_cid" : self.jingles.mixer_jingles_cid, "interlude_cid" : self.jingles.interlude.mixer_cid, "left_audio_runout" : self.player_left.runout, "right_audio_runout" : self.player_right.runout, "interlude_audio_runout" : self.jingles.interlude.runout, "left_additional_metadata" : self.metadata_left_ctrl, "right_additional_metadata" : self.metadata_right_ctrl, "interlude_additional_metadata" : self.metadata_interlude_ctrl, "left_silence" : self.player_left.silence, "right_silence" : self.player_right.silence, "interlude_silence" : self.jingles.interlude.silence, "sample_rate" : self.sample_rate, "effects_playing" : self.effects_playing, "freewheel_mode" : self.freewheel_button } for i, mic in enumerate(self.mic_meters): self.vumap.update({"mic_%d_levels" % (i + 1): mic}) self.controls= midicontrols.Controls(self) self.controls.load_prefs() self.window.realize() media_sg = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) media_sg.add_widget(self.vbox3L) media_sg.add_widget(self.vbox3R) self.menu.playersmenu_i.set_active(True) self.menu.playersmenu_i.connect("activate", lambda w: self.player_nb.set_visible(w.get_active())) self.menu.quitmenu_i.connect_object( "activate", self.delete_event, self.window, None) self.menu.outputmenu_i.connect( "activate", lambda w: self.server_window.window.present()) self.menu.prefsmenu_i.connect( "activate", lambda w: self.prefs_window.window.present()) if pm.profile is not None: self.menu.profilesmenu_i.connect( "activate", lambda w: pm.profile_dialog.present()) else: self.menu.profilesmenu_i.set_sensitive(False) self.menu.aboutmenu_i.connect( "activate", lambda w: self.prefs_window.show_about()) self.jack = JackMenu(self.menu, lambda s, r: self.mixer_write( "ACTN=jack%s\n%s" % (s, r)), lambda: self.mixer_read()) self.jack.load(startup=True) self.server_window = SourceClientGui(self) self.prefs_window = mixprefs(self) self.prefs_window.load_player_prefs() self.prefs_window.apply_player_prefs() self.vutimeout = timeout_add(50, self.vu_update) self.statstimeout = timeout_add(100, self.stats_update) self.savetimeout = timeout_add_seconds( 120, threadslock(self.save_session), "periodic") for sig in (signal.SIGINT, signal.SIGTERM, signal.SIGHUP): signal.signal(sig, lambda s, f: idle_add(threadslock(self.destroy))) (self.full_wst, self.min_wst)[bool(self.simplemixer)].apply() self.window.connect("configure_event", self.configure_event) self.jingles.interlude.listen.set_active(False) if self.prefs_window.restore_session_option.get_active(): print "Restoring previous session" self.player_left.restore_session() self.player_right.restore_session() self.jingles.restore_session() self.restore_session() self.session_loaded = True self.window.set_focus_chain((self.player_left.scrolllist, self.player_right.scrolllist, self.jingles.interlude.scrolllist)) self.server_window.update_metadata() self.window.forall(self.strip_focusability) self.topleftpane.repair_focusability() self.player_left.treeview.set_flags(gtk.CAN_FOCUS) self.player_right.treeview.set_flags(gtk.CAN_FOCUS) self.jingles.interlude.treeview.set_flags(gtk.CAN_FOCUS) self.player_left.treeview.grab_focus() self.window.add_events(gtk.gdk.KEY_PRESS_MASK) self.window.connect("key-press-event", self.cb_key_capture) self.window.connect("key-release-event", self.cb_key_capture) self.window.show() idle_add(lambda: self.prefs_window.window.realize() and False) self.player_left.treeview.emit("cursor-changed") self.player_right.treeview.emit("cursor-changed") # DBus object initialization dbus.service.Object.__init__(self, pm.dbus_bus_name, PGlobs.dbus_objects_basename + "/main") if args.channels is not None: for each in args.channels: self.mic_opener.open(each) if args.voip is not None: if args.voip == ["public"]: self.greenphone.set_active(True) elif args.voip == ["private"]: self.redphone.set_active(True) if args.kicksources is not None: servtabs = self.server_window.streamtabframe.tabs for n in range(len(servtabs)): if chr(n + ord("1")) in args.kicksources: servtabs[n].kick_incumbent.clicked() time.sleep(0.1) if args.servers is not None: servtabs = self.server_window.streamtabframe.tabs for n in range(len(servtabs)): if chr(n + ord("1")) in args.servers: servtabs[n].server_connect.set_active(True) time.sleep(0.1) for n in range(len(servtabs)): if chr(n + ord("1")) in args.servers: servtabs[n].server_connect.set_active(False) time.sleep(0.1) for n in range(len(servtabs)): if chr(n + ord("1")) in args.servers: servtabs[n].server_connect.set_active(True) if args.crossfader is not None: if args.crossfader == "1": self.passleft.clicked() elif args.crossfader == "2": self.passright.clicked() if args.players is not None: if "1" in args.players: self.player_left.play.clicked() if "2" in args.players: self.player_right.play.clicked() if "3" in args.players: self.jingles.interlude.play.clicked() def main(self): gtk.main() def main(): try: run_instance = MainWindow() except (MainWindow.initfailed, MainWindow.initcleanexit, KeyboardInterrupt): return 5 try: run_instance.main() except KeyboardInterrupt: return 5 return 0 idjc-0.8.16/python/preferences.py0000644000175000017500000021215512636046320013644 00000000000000# IDJCmixprefs.py: Preferences window code for IDJC # Copyright (C) 2005-2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . import os import shutil import gettext import itertools import gtk import glib from idjc import FGlobs, PGlobs from . import licence_window from . import songdb from . import midicontrols from .gtkstuff import WindowSizeTracker, DefaultEntry, threadslock from .gtkstuff import timeout_add, source_remove from .prelims import ProfileManager from .utils import PathStr from .tooltips import set_tip, MAIN_TIPS __all__ = ['mixprefs', 'PanPresetChooser'] _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext def N_(text): return text pm = ProfileManager() class CSLEntry(gtk.Entry): def cb_keypress(self, widget, event): if event.string: if len(event.string) > 1: return True if not event.string in "0123456789,": return True return False def __init__(self, max = 0): gtk.Entry.__init__(self, max) self.connect("key-press-event", self.cb_keypress) class InitialPlayerConfig(gtk.Frame): def __init__(self, title, player, prefix): self.player = player gtk.Frame.__init__(self, " %s " % title) vbox = gtk.VBox() vbox.set_border_width(3) self.add(vbox) pl_label = gtk.Label(_("Playlist Mode")) fade_label = gtk.Label(_("Fade")) if hasattr(gtk, "ComboBoxText"): self.pl_mode = gtk.ComboBoxText(player.pl_mode.get_model()) self.fade = gtk.ComboBoxText(player.fade.get_model()) else: self.pl_mode = gtk.combo_box_new_text() self.pl_mode.set_model(player.pl_mode.get_model()) self.fade = gtk.combo_box_new_text() self.fade.set_model(player.pl_delay.get_model()) for each in (self.pl_mode, self.fade): each.set_active(0) self.elapsed = gtk.RadioButton(None, _("Track time elapsed")) self.remaining = gtk.RadioButton(self.elapsed, _("Track time remaining")) s1 = gtk.HSeparator() self.to_stream = gtk.CheckButton(_("Audio to stream")) self.to_dj = gtk.CheckButton(_("Audio to DJ")) for each in (self.to_stream, self.to_dj): each.set_active(True) for each in (pl_label, self.pl_mode, fade_label, self.fade, self.elapsed, self.remaining, s1, self.to_stream, self.to_dj): vbox.pack_start(each, False) self.show_all() self.activedict = { prefix + "pl_mode": self.pl_mode, prefix + "fade": self.fade, prefix + "timeremaining": self.remaining, prefix + "tostream": self.to_stream, prefix + "todj": self.to_dj } def apply(self): p = self.player p.pl_mode.set_active(self.pl_mode.get_active()) p.pl_delay.set_active(self.fade.get_active()) p.stream.set_active(self.to_stream.get_active()) p.listen.set_active(self.to_dj.get_active()) if self.remaining.get_active(): p.digiprogress_click() class PanWidget(gtk.Frame): _instances = [] def __init__(self, title, commandname): self._instances.append(self) gtk.Frame.__init__(self) self.modes = (1, 2, 3) set_tip(self, _('Stereo panning is the selection of where an audio ' 'source sits from left to right within the stereo mix.\n\nThis control ' 'maintains constant audio power throughout its range of travel, giving ' '-3dB attenuation in both audio channels at the half way point.\n\n' 'If you require 0dB straight down the middle or require a stereo ' 'source remain as stereo then this feature should be turned off.\n\n' 'Paired channels should be set to 100% left/right unless narrowing of ' 'the stereo field is the intention.')) self.valuesdict = {} self.activedict = {} self._source_id = None hbox = gtk.HBox() self.pan_active = gtk.CheckButton(title) self.activedict[commandname + "_pan_active"] = self.pan_active hbox.pack_start(self.pan_active, False, False, 0) self.pan_active.show() self.set_label_widget(hbox) hbox.show() panvbox = gtk.VBox() panvbox.set_border_width(1) self.add(panvbox) panadj = gtk.Adjustment(50.0, 0.0, 100.0, 1, 1, 0) self.pan = gtk.HScale(panadj) self.pan.set_digits(0) self.pan.connect("format-value", self._cb_format_value) self.valuesdict[commandname + "_pan"] = self.pan panvbox.pack_start(self.pan, False, padding=2) label = gtk.Label(_('Presets')) label.set_alignment(0.0, 0.5) label.set_padding(3, 3) panvbox.pack_start(label, False) self._presets = [] for i in range(PGlobs.num_panpresets): preadj = gtk.Adjustment(50.0, 0.0, 100.0, 1, 1, 0) preset = gtk.HScale(preadj) preset.set_digits(0) preset.connect("format-value", self._cb_format_value) self.valuesdict[commandname + "_panpreset" + str(i)] = preset self._presets.append(preset) panvbox.pack_start(preset, False, padding=2) def load_preset(self, index): try: target = int(self._presets[index].get_value() + 0.5) except IndexError: print "Attempt made to load a non existent pan preset" else: if self._source_id: source_remove(self._source_id) self._source_id = timeout_add(5, self._timeout, target) @threadslock def _timeout(self, target): current_value = int(self.pan.get_value() + 0.5) new_value = current_value + cmp(target, current_value) self.pan.set_value(new_value) return new_value != target @classmethod def load_presets(cls, index): for self in cls._instances: self.load_preset(index) def set_values(self, value): self.pan.set_value(value) for each in self._presets: each.set_value(value) def _cb_format_value(self, scale, value): if value == 50: return u"\u25C8" pc = str(abs(int(value) * 2 - 100)) if value < 50: return u"\u25C4 %s%%" % pc return u"%s%% \u25BA" % pc class PanPresetButton(gtk.Button): def __init__(self, labeltext): self._labeltext = labeltext gtk.Button.__init__(self) self._label = gtk.Label(labeltext) self.add(self._label) def highlight(self): self._label.set_markup("%s" % self._labeltext) def unhighlight(self): self._label.set_text(self._labeltext) class PanPresetChooser(gtk.HBox): def __init__(self): gtk.HBox.__init__(self) self.set_spacing(1) label = gtk.Label(u"\u25C4") self.pack_start(label) label.show() self.buttons = [] for i in range(PGlobs.num_panpresets): button = PanPresetButton(str(i + 1)) self.pack_start(button, False) button.show() self.buttons.append(button) button.connect_object("clicked", PanWidget.load_presets, i) button.connect("clicked", self._cb_clicked) label = gtk.Label(u"\u25BA") self.pack_start(label) label.show() set_tip(self, _('The pan preset selection buttons.\n\n' 'In the stereo image at a click the DJ can be on the left and a guest ' 'on the right and when the guest is gone at a click the DJ can be ' 'central again.\n\n' 'Note: preconfiguration of pan preset settings is required.')) def load_preset(self, index): try: button = self.buttons[index] except IndexError: pass else: button.clicked() def _cb_clicked(self, clicked_button): for button in self.buttons: if button is clicked_button: button.highlight() else: button.unhighlight() class AGCControl(gtk.Frame): mic_modes = ( # TC: Microphone mode combobox text. N_('Deactivated'), # TC: Microphone mode combobox text. N_('Basic input'), # TC: Microphone mode combobox text. N_('Processed input'), # TC: Microphone mode combobox text. N_('Partnered with channel %s')) def sendnewstats(self, widget, wname): if wname != NotImplemented: if isinstance(widget, (gtk.SpinButton, gtk.Scale)): value = widget.get_value() if isinstance(widget, (gtk.ToggleButton, gtk.ComboBox)): value = int(widget.get_active()) stringtosend = "INDX=%d\nAGCP=%s=%s\nACTN=%s\nend\n" % ( self.index, wname, str(value), "mic_control") self.approot.mixer_write(stringtosend) def set_partner(self, partner): self.partner = partner self.mode.set_cell_data_func(self.mode_cell, self.mode_cell_data_func, partner.mode) def mode_cell_data_func(self, celllayout, cell, model, iter, opposite): index = model.get_path(iter)[0] oindex = opposite.get_active() cell.props.sensitive = not (((index == 0 or index == 3) and oindex == 3) or (index == 3 and oindex == 0)) trans = _(model.get_value(iter, 0)) if index == 3: cell.props.text = trans % self.partner.ui_name else: cell.props.text = trans def numline(self, label_text, wname, initial=0, mini=0, maxi=0, step=0, digits=0, adj=None): hbox = gtk.HBox() label = gtk.Label(label_text) if not adj: adj = gtk.Adjustment(initial, mini, maxi, step) sb = gtk.SpinButton(adj, 0, digits) sb.connect("value-changed", self.sendnewstats, wname) sb.emit("value-changed") hbox.pack_start(label, False, False, 0) hbox.pack_end(sb, False, False, 0) hbox.show_all() self.valuesdict[self.commandname + "_" + wname] = sb self.fixups.append(lambda: sb.emit("value-changed")) return hbox def frame(self, label, container): frame = gtk.Frame(label) container.pack_start(frame, False, False, 0) frame.show() ivbox = gtk.VBox() ivbox.set_border_width(3) frame.add(ivbox) ivbox.show() return ivbox def widget_frame(self, widget, container, tip, modes): frame = gtk.Frame() frame.modes = modes set_tip(frame, tip) frame.set_label_widget(widget) container.pack_start(frame, False, False, 0) frame.show() ivbox = gtk.VBox() ivbox.set_border_width(3) frame.add(ivbox) ivbox.show() return ivbox def toggle_frame(self, label_text, wname, container): frame = gtk.Frame() cb = gtk.CheckButton(label_text) cb.connect("toggled", self.sendnewstats, wname) cb.emit("toggled") cbb = gtk.HBox() cbb.pack_start(cb, True, False, 2) cb.show() frame.set_label_widget(cbb) cbb.show() container.pack_start(frame, False, False, 0) frame.show() ivbox = gtk.VBox() ivbox.set_border_width(3) frame.add(ivbox) ivbox.show() self.activedict[self.commandname + "_" + wname] = cb self.fixups.append(lambda: cb.emit("toggled")) return ivbox def check(self, label_text, wname, save=True): cb = gtk.CheckButton(label_text) cb.connect("toggled", self.sendnewstats, wname) cb.emit("toggled") cb.show() if save: self.activedict[self.commandname + "_" + wname] = cb self.fixups.append(lambda: cb.emit("toggled")) return cb def cb_open(self, widget): active = widget.get_active() self.meter.set_led(active) if gtk.main_level(): self.approot.channelstate_changed(self.index, active) def cb_mode(self, combobox): mode = combobox.get_active() # Show pertinent features for each mode. def showhide(widget): try: modes = widget.modes except: pass else: if mode in modes: widget.show() else: widget.hide() self.vbox.foreach(showhide) # Meter sensitivity. Deactivated => insensitive. sens = mode != 0 self.meter.set_sensitive(sens) if not sens: self.open.set_active(False) if mode == 3: self.partner.openaction.connect_proxy(self.open) else: self.openaction.connect_proxy(self.open) self.open.set_sensitive(self.no_front_panel_opener.get_active()) def __init__(self, approot, ui_name, commandname, index): self.approot = approot self.ui_name = ui_name self.meter = approot.mic_meters[int(ui_name) - 1] self.meter.agc = self self.commandname = commandname self.index = index self.valuesdict = {} self.activedict = {} self.textdict = {} self.fixups = [] gtk.Frame.__init__(self) hbox = gtk.HBox() hbox.set_spacing(3) label = gtk.Label('' + ui_name + "") label.set_use_markup(True) hbox.pack_start(label, False) label.show() self.alt_name = gtk.Entry() set_tip(self.alt_name, _('A label so you may describe briefly the ' 'role of this audio channel.')) self.textdict[self.commandname + "_alt_name"] = self.alt_name hbox.pack_start(self.alt_name, True, True) self.alt_name.show() hbox.show() self.set_label_widget(hbox) hbox.show() self.set_label_align(0.5, 0.5) self.set_border_width(3) self.vbox = gtk.VBox() self.vbox.set_spacing(2) self.vbox.set_border_width(3) self.add(self.vbox) self.vbox.show() mode_liststore = gtk.ListStore(str) self.mode = gtk.ComboBox(mode_liststore) self.mode_cell = gtk.CellRendererText() self.mode.pack_start(self.mode_cell) self.mode.set_attributes(self.mode_cell, text=0) self.fixups.append(lambda: self.mode.emit("changed")) self.vbox.pack_start(self.mode, False, False) for each in self.mic_modes: mode_liststore.append((each, )) self.mode.connect("changed", self.sendnewstats, "mode") self.mode.connect("changed", self.cb_mode) self.activedict[self.commandname + "_mode"] = self.mode self.mode.show() set_tip(self.mode, _('The signal processing mode.')) hbox = gtk.HBox() # TC: A frame heading. The channel opener is selected within. label = gtk.Label(_('Channel Opener')) hbox.pack_start(label, False, False, 3) label.show() ivbox = self.widget_frame(hbox, self.vbox, _('This controls the ' 'allocation of front panel open/unmute buttons. Having one button ' 'control multiple microphones can save time.'), (1, 2)) hbox.show() hbox = gtk.HBox() # TC: Spinbutton label text. self.group = gtk.RadioButton(None, _('Main Panel Button')) self.activedict[self.commandname + "_group"] = self.group hbox.pack_start(self.group, False, False, 0) self.group.show() ivbox.pack_start(hbox, False, False) hbox.show() self.groups_adj = gtk.Adjustment(1.0, 1.0, PGlobs.num_micpairs * 2, 1.0) self.valuesdict[self.commandname + "_groupnum"] = self.groups_adj groups_spin = gtk.SpinButton(self.groups_adj, 0.0, 0) hbox.pack_end(groups_spin, False) groups_spin.show() hbox = gtk.HBox() hbox.set_spacing(6) ivbox.pack_start(hbox, False) hbox.show() self.no_front_panel_opener = gtk.RadioButton(self.group, _("This:")) self.activedict[self.commandname + "_using_local_opener"] = \ self.no_front_panel_opener self.no_front_panel_opener.connect("toggled", lambda w: self.open.set_sensitive(w.get_active())) hbox.pack_start(self.no_front_panel_opener, False) self.no_front_panel_opener.show() self.openaction = gtk.ToggleAction(None, _('Closed'), None, None) self.openaction.connect("toggled", lambda w: w.set_label(_('Open') if w.get_active() else _('Closed'))) self.open = gtk.ToggleButton() self.open.connect("toggled", self.cb_open) self.open.connect("toggled", self.sendnewstats, "open") hbox.pack_start(self.open) self.open.show() self.openaction.connect_proxy(self.open) self.open.emit("toggled") self.open.set_sensitive(False) self.fixups.append(lambda: self.open.emit("toggled")) self.pan = PanWidget(_('Stereo Panning'), commandname) self.pan.pan_active.connect("toggled", self.sendnewstats, "pan_active") self.fixups.append(lambda: self.pan.pan_active.emit("toggled")) self.pan.pan.connect("value-changed", self.sendnewstats, "pan") self.pan.pan.emit("value-changed") self.fixups.append(lambda: self.pan.pan.emit("value-changed")) self.valuesdict.update(self.pan.valuesdict) self.activedict.update(self.pan.activedict) self.vbox.pack_start(self.pan, False, False) self.pan.show_all() # TC: A set of controls that perform audio signal matching. pairedframe = gtk.Frame(" %s " % _('Signal Matching')) set_tip(pairedframe, _('These controls are provided to obtain a decent ' 'match between the two microphones.')) pairedframe.modes = (3, ) self.vbox.pack_start(pairedframe, False) pairedvbox = gtk.VBox() pairedvbox.set_border_width(3) pairedframe.add(pairedvbox) pairedvbox.show() pairedmicgainadj = gtk.Adjustment(0.0, -20.0, +20.0, 0.1, 2) pairedmicgain = self.numline(_('Relative Gain (dB)'), "pairedgain", digits=1, adj=pairedmicgainadj) pairedvbox.pack_start(pairedmicgain, False) pairedmicgain.show() # TC: Mic audio phase inversion control. pairedinvert = self.check(_('Invert Signal'), "pairedinvert") pairedvbox.pack_start(pairedinvert, False) pairedinvert.show() micgainadj = gtk.Adjustment(0.0, -20.0, +30.0, 0.1, 2) invertaction = gtk.ToggleAction("invert", _('Invert Signal'), _('Useful for when microphones are cancelling one another ' 'out, producing a hollow sound.'), None) # TC: Control whether to mix microphone audio to the DJ mix. indjmixaction = gtk.ToggleAction("indjmix", _("In The DJ's Mix"), _('Make the microphone audio audible in the DJ mix. ' 'This may not always be desirable.'), None) self.simple_box = gtk.VBox() self.simple_box.set_spacing(2) self.vbox.pack_start(self.simple_box, False, False) self.simple_box.modes = (1, ) ivbox = self.frame(" " + _('Basic Controls') + " ", self.simple_box) micgain = self.numline(_('Boost/Cut (dB)'), "gain", digits=1, adj=micgainadj) ivbox.pack_start(micgain, False, False) invert_simple = self.check("", "invert") invertaction.connect_proxy(invert_simple) ivbox.pack_start(invert_simple, False, False) set_tip(invert_simple, _('Useful for when microphones are cancelling ' 'one another out, producing a hollow sound.')) indjmix = self.check("", "indjmix") indjmixaction.connect_proxy(indjmix) ivbox.pack_start(indjmix, False, False) set_tip(indjmix, _('Make the microphone audio audible in the DJ mix. ' 'This may not always be desirable.')) self.processed_box = gtk.VBox() self.processed_box.modes = (2, ) self.processed_box.set_spacing(2) self.vbox.pack_start(self.processed_box, False, False) ivbox = self.frame(" %s " % _('High Pass Filter'), self.processed_box) hpcutoff = self.numline(_('Cutoff Frequency'), "hpcutoff", 100.0, 30.0, 120.0, 1.0, 1) ivbox.pack_start(hpcutoff, False, False, 0) # TC: User can set the number of filter stages. hpstages = self.numline(_('Stages'), "hpstages", 4.0, 1.0, 4.0, 1.0, 0) ivbox.pack_start(hpstages, False, False, 0) set_tip(ivbox, _('Frequency in Hertz above which audio can pass to later stages. ' 'Use this feature to restrict low frequency sounds such as mains ' 'hum. Setting too high a level will make your voice sound thin.')) # TC: this is the treble control. HF = high frequency. ivbox = self.frame(" " + _('HF Detail') + " ", self.processed_box) hfmulti = self.numline(_('Effect'), "hfmulti", 0.0, 0.0, 9.0, 0.1, 1) ivbox.pack_start(hfmulti, False, False, 0) hfcutoff = self.numline(_('Cutoff Frequency'), "hfcutoff", 2000.0, 900.0, 4000.0, 10.0, 0) ivbox.pack_start(hfcutoff, False, False, 0) set_tip(ivbox, _('You can use this to boost the amount of treble in the audio.')) # TC: this is the bass control. LF = low frequency. ivbox = self.frame(" " + _('LF Detail') + " ", self.processed_box) lfmulti = self.numline(_('Effect'), "lfmulti", 0.0, 0.0, 9.0, 0.1, 1) ivbox.pack_start(lfmulti, False, False, 0) lfcutoff = self.numline(_('Cutoff Frequency'), "lfcutoff", 150.0, 50.0, 400.0, 1.0, 0) ivbox.pack_start(lfcutoff, False, False, 0) set_tip(ivbox, _('You can use this to boost the amount of bass in the audio.')) # TC: lookahead brick wall limiter. ivbox = self.frame(" " + _('Limiter') + " ", self.processed_box) micgain = self.numline(_('Boost/Cut (dB)'), "gain", digits=1, adj=micgainadj) ivbox.pack_start(micgain, False, False, 0) # TC: this is the peak signal limit. limit = self.numline(_('Upper Limit'), "limit", -3.0, -9.0, 0.0, 0.5, 1) ivbox.pack_start(limit, False, False, 0) set_tip(ivbox, _('A look-ahead brick-wall limiter. Audio signals are ' 'capped at the upper limit.')) ivbox = self.frame(" " + _('Noise Gate') + " ", self.processed_box) # TC: noise gate triggers at this level. ng_thresh = self.numline(_('Threshold'), "ngthresh", -30.0, -62.0, -20.0, 1.0, 0) ivbox.pack_start(ng_thresh, False, False, 0) # TC: negative gain when the noise gate is active. ng_gain = self.numline(_('Gain'), "nggain", -6.0, -12.0, 0.0, 1.0, 0) ivbox.pack_start(ng_gain, False, False, 0) set_tip(ivbox, _("Reduce the unwanted quietest sounds and background " "noise which you don't want your listeners to hear with this.")) ivbox = self.frame(" " + _('De-esser') + " ", self.processed_box) # TC: Bias has a numeric setting. ds_bias = self.numline(_('Bias'), "deessbias", 0.35, 0.1, 10.0, 0.05, 2) ivbox.pack_start(ds_bias, False, False, 0) # TC: The de-esser attenuation in ess-detected state. ds_gain = self.numline(_('Gain'), "deessgain", -4.5, -10.0, 0.0, 0.5, 1) ivbox.pack_start(ds_gain, False, False, 0) set_tip(ivbox, _('Reduce the S, T, and P sounds which microphones tend ' 'to exaggerate. Ideally the Bias control will be set low so that the ' 'de-esser is off when there is silence but is set high enough that ' 'mouse clicks are detected and suppressed.')) ivbox = self.toggle_frame(_('Ducker'), "duckenable", self.processed_box) duckrelease = self.numline(_('Release'), "duckrelease", 400.0, 100.0, 999.0, 10.0, 0) ivbox.pack_start(duckrelease, False, False, 0) duckhold = self.numline(_('Hold'), "duckhold", 350.0, 0.0, 999.0, 10.0, 0) ivbox.pack_start(duckhold, False, False, 0) set_tip(ivbox, _('The ducker automatically reduces the level of player ' 'audio when the DJ speaks. These settings allow you to adjust' ' the timings of that audio reduction.')) ivbox = self.frame(" " + _('Other options') + " ", self.processed_box) invert_complex = self.check("", NotImplemented, save=False) invertaction.connect_proxy(invert_complex) ivbox.pack_start(invert_complex, False, False) set_tip(invert_complex, _('Useful for when microphones are cancelling ' 'one another out, producing a hollow sound.')) phaserotate = self.check(_('Phase Rotator'), "phaserotate") ivbox.pack_start(phaserotate, False, False, 0) set_tip(phaserotate, _('This feature processes the microphone audio so that it sounds more ' 'even. The effect is particularly noticable on male voices.')) indjmix = self.check("", NotImplemented, save=False) indjmixaction.connect_proxy(indjmix) ivbox.pack_start(indjmix, False, False) set_tip(indjmix, _('Make the microphone audio audible in the DJ mix. ' 'This may not always be desirable.')) self.mode.set_active(0) indjmix.set_active(True) self.partner = None class mixprefs: def send_new_resampler_stats(self): self.parent.mixer_write("RSQT=%d\nACTN=resamplequality\nend\n" % self.resample_quality) def cb_resample_quality(self, widget, data): if widget.get_active(): self.resample_quality = data self.send_new_resampler_stats() def cb_dither(self, widget, data = None): if widget.get_active(): string_to_send = "ACTN=dither\nend\n" else: string_to_send = "ACTN=dontdither\nend\n" self.parent.mixer_write(string_to_send) def cb_vol_changed(self, widget): self.parent.send_new_mixer_stats() def cb_restore_session(self, widget, data=None): state = not widget.get_active() for each in (self.lpconfig, self.rpconfig, self.misc_session_frame): each.set_sensitive(state) def delete_event(self, widget, event, data=None): self.window.hide() return True def save_resource_template(self): try: with open(pm.basedir / "config", "w") as f: f.write("[resource_count]\n") for name, widget in self.rrvaluesdict.iteritems(): f.write(name + "=" + str(int(widget.get_value())) + "\n") f.write("num_effects=%d\n" % (24 if self.more_effects.get_active() else 12)) except IOError: print "Error while writing out player defaults" def save_player_prefs(self, where=None): try: with open((where or pm.basedir) / "playerdefaults", "w") as f: for name, widget in self.activedict.iteritems(): f.write(name + "=" + str(int(widget.get_active())) + "\n") for name, widget in self.valuesdict.iteritems(): f.write(name + "=" + str(widget.get_value()) + "\n") for name, widget in self.textdict.iteritems(): text = widget.get_text() if text is not None: f.write(name + "=" + text + "\n") else: f.write(name + "=\n") except IOError: print "Error while writing out player defaults" def load_player_prefs(self): songdb_active = False try: file = open(pm.basedir / "playerdefaults") while 1: line = file.readline() if line == "": break if line.count("=") != 1: continue line = line.split("=") key = line[0].strip() value = line[1][:-1].strip() if self.activedict.has_key(key): if value == "True": value = True elif value == "False": value = False else: value = int(value) if key == "songdb_active": songdb_active = value else: self.activedict[key].set_active(value) elif self.valuesdict.has_key(key): self.valuesdict[key].set_value(float(value)) elif self.textdict.has_key(key): self.textdict[key].set_text(value) file.close() except IOError: print "Failed to read playerdefaults file" if songdb_active: self.activedict["songdb_active"].set_active(songdb_active) self.parent.send_new_mixer_stats() def apply_player_prefs(self): for each in (self.lpconfig, self.rpconfig): each.apply() if self.startmini.get_active(): self.mini.clicked() if self.tracks_played.get_active(): self.parent.history_expander.set_expanded(True) self.parent.history_vbox.show() if self.stream_mon.get_active(): self.parent.listen_stream.set_active(True) def callback(self, widget, data): parent = self.parent if data == "basic streamer": if parent.feature_set.get_active(): parent.feature_set.set_active(False) if data == "fully featured": if not parent.feature_set.get_active(): parent.feature_set.set_active(True) if data == "enhanced-crossfader": if widget.get_active(): parent.listen.show() parent.passleft.show() parent.passright.show() parent.passspeed.show() parent.passbutton.show() else: parent.listen.hide() parent.passleft.hide() parent.passright.hide() parent.passspeed.hide() parent.passbutton.hide() parent.listen.set_active(False) if data == "bigger box": if widget.get_active(): self.parent.player_left.digiprogress.set_width_chars(7) self.parent.player_right.digiprogress.set_width_chars(7) else: self.parent.player_left.digiprogress.set_width_chars(6) self.parent.player_right.digiprogress.set_width_chars(6) if data == "tooltips": if widget.get_active(): MAIN_TIPS.enable() else: MAIN_TIPS.disable() def cb_mic_boost(self, widget): self.parent.send_new_mixer_stats() def cb_pbspeed(self, widget): if widget.get_active(): self.parent.player_left.pbspeedbar.set_value(64.0) self.parent.player_right.pbspeedbar.set_value(64.0) self.parent.player_left.pbspeedbox.show() self.parent.player_right.pbspeedbox.show() self.parent.jingles.interlude.pbspeedbar.set_value(64.0) self.parent.jingles.interlude.pbspeedbox.show() else: self.parent.player_left.pbspeedbox.hide() self.parent.player_right.pbspeedbox.hide() self.parent.jingles.interlude.pbspeedbox.hide() self.parent.send_new_mixer_stats() def cb_dual_volume(self, widget): if widget.get_active(): self.parent.deck2adj.set_value(self.parent.deckadj.get_value()) self.parent.deck2vol.show() set_tip(self.parent.deckvol, _('The volume control for the left music player.')) else: if self.parent.player_left.is_playing ^ \ self.parent.player_right.is_playing: if self.parent.player_left.is_playing: self.parent.deck2adj.set_value( self.parent.deckadj.get_value()) else: self.parent.deckadj.set_value( self.parent.deck2adj.get_value()) else: halfdelta = (self.parent.deck2adj.get_value() - \ self.parent.deckadj.get_value()) / 2 self.parent.deck2adj.props.value -= halfdelta self.parent.deckadj.props.value += halfdelta self.parent.deck2vol.hide() set_tip(self.parent.deckvol, _('The volume control shared by both music players.')) def cb_rg_indicate(self, widget): show = widget.get_active() for each in (self.parent.player_left, self.parent.player_right, self.parent.jingles.interlude): each.show_replaygain_markers(show) def cb_realize(self, window): self.wst.apply() def show_about(self): self.notebook.set_current_page(self.notebook.page_num(self.aboutframe)) self.window.present() def mic_controls_backend_update(self): """Send mic preferences to the backend. This needs to be called whenever the backend is restarted. """ for mic in self.mic_controls: for fixup in mic.fixups: fixup() def voip_pan_backend_update(self, widget=None): widget = self.voip_pan stringtosend = "VPAN=%d\nACTN=voippan\nend\n" % (widget.pan.get_value() if widget.pan_active.get_active() else -1) self.parent.mixer_write(stringtosend) def __init__(self, parent): self.parent = parent self.parent.prefs_window = self self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.set_size_request(-1, 480) self.window.connect("realize", self.cb_realize) self.parent.window_group.add_window(self.window) # TC: preferences window title. self.window.set_title(_('IDJC Preferences') + pm.title_extra) self.window.set_border_width(10) self.window.set_resizable(True) self.window.connect("delete_event",self.delete_event) self.window.set_destroy_with_parent(True) self.notebook = gtk.Notebook() self.window.add(self.notebook) self.wst = WindowSizeTracker(self.window) # General tab generalwindow = gtk.ScrolledWindow() generalwindow.set_border_width(8) generalwindow.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) outervbox = gtk.VBox() outervbox.set_spacing(5) generalwindow.add_with_viewport(outervbox) generalwindow.show() outervbox.set_border_width(3) aud_rs_hbox = gtk.HBox() # User can use this to set the audio level in the headphones # TC: The DJ's sound level controller. frame = gtk.Frame(" %s " % _('DJ Audio Level')) frame.set_label_align(0.5, 0.5) frame.set_border_width(3) hbox = gtk.HBox() hbox.set_border_width(5) frame.add(hbox) hbox.show() self.dj_aud_adj = gtk.Adjustment(0.0, -60.0, 0.0, 0.5, 1.0) dj_aud = gtk.SpinButton(self.dj_aud_adj, 1, 1) dj_aud.connect("value-changed", self.cb_vol_changed) hbox.pack_start(dj_aud, True, False, 0) dj_aud.show() set_tip(dj_aud, _('This adjusts the sound level of the DJ audio.')) aud_rs_hbox.pack_start(frame, False, False, 0) frame.show() # TC: The alarm sound level. frame = gtk.Frame(" %s " % _('Alarm Level')) frame.set_label_align(0.5, 0.5) frame.set_border_width(3) hbox = gtk.HBox() hbox.set_border_width(5) frame.add(hbox) hbox.show() self.alarm_aud_adj = gtk.Adjustment(0.0, -60.0, 0.0, 0.5, 1.0) alarm_aud = gtk.SpinButton(self.alarm_aud_adj, 1, 1) alarm_aud.connect("value-changed", self.cb_vol_changed) hbox.pack_start(alarm_aud, True, False, 0) alarm_aud.show() set_tip(alarm_aud, _('This adjusts the sound level of the DJ alarm. ' 'Typically this should be set close to the dj audio level when using the \'%s\'' ' feature, otherwise a bit louder.' % _('Music Loudness Compensation'))) aud_rs_hbox.pack_start(frame, False, False, 0) frame.show() # User can use this to set the resampled sound quality frame = gtk.Frame(" %s " % _('Player Resample Quality')) frame.set_label_align(0.5, 0.5) frame.set_border_width(3) hbox = gtk.HBox() hbox.set_border_width(5) set_tip(hbox, _('This adjusts the quality of the audio resampling method ' 'used whenever the sample rate of the music file currently playing does' ' not match the sample rate of the JACK sound server. Best mode ' 'offers the best sound quality but also uses the most CPU (not ' 'recommended for systems built before 2006). All these modes provide ' 'adequate sound quality.')) frame.add(hbox) hbox.show() self.best_quality_resample = gtk.RadioButton(None, _('Best')) self.best_quality_resample.connect( "toggled", self.cb_resample_quality, 0) rsbox = gtk.HBox() rsbox.pack_start(self.best_quality_resample, True, False, 0) rsbox.show() hbox.add(rsbox) self.best_quality_resample.show() self.good_quality_resample = gtk.RadioButton( self.best_quality_resample, _('Medium')) self.good_quality_resample.connect( "toggled", self.cb_resample_quality, 1) rsbox = gtk.HBox() rsbox.pack_start(self.good_quality_resample, True, False, 0) rsbox.show() hbox.add(rsbox) self.good_quality_resample.show() self.fast_resample = gtk.RadioButton( self.good_quality_resample, _('Fast')) self.fast_resample.connect("toggled", self.cb_resample_quality, 2) rsbox = gtk.HBox() rsbox.pack_start(self.fast_resample, True, False, 0) rsbox.show() hbox.add(rsbox) self.fast_resample.show() aud_rs_hbox.pack_start(frame, True, True, 0) frame.show() outervbox.pack_start(aud_rs_hbox, False, False, 0) aud_rs_hbox.show() # TC: the set of features - section heading. featuresframe = gtk.Frame(" %s " % _('Feature Set')) featuresframe.set_border_width(3) featuresvbox = gtk.VBox() hbox = gtk.HBox() hbox.set_border_width(2) featuresvbox.pack_start(hbox, False) featuresframe.add(featuresvbox) featuresvbox.show() outervbox.pack_start(featuresframe, False, False, 0) featuresframe.show() vbox = gtk.VBox() # TC: Start in the full featured user interface mode. self.startfull = gtk.RadioButton(None, _('Start Full')) self.startfull.set_border_width(2) vbox.pack_start(self.startfull, False, False, 0) self.startfull.show() set_tip(self.startfull, _('Indicates which mode IDJC will be in when launched.')) # TC: Start in a reduced user interface mode. self.startmini = gtk.RadioButton(self.startfull, _('Start Mini')) self.startmini.set_border_width(2) vbox.pack_start(self.startmini, False, False, 0) self.startmini.show() set_tip(self.startmini, _('Indicates which mode IDJC will be in when launched.')) vbox.show() hbox2 = gtk.HBox() hbox2.set_border_width(10) hbox2.set_spacing(20) hbox.pack_start(hbox2, True, False, 0) self.maxi = gtk.Button(" %s " % _('Fully Featured')) self.maxi.connect("clicked", self.callback, "fully featured") hbox2.pack_start(self.maxi, False, False, 0) self.maxi.show() set_tip(self.maxi, _('Run in full functionality mode which uses more CPU power.')) self.mini = gtk.Button(" %s " % _('Basic Streamer')) self.mini.connect("clicked", self.callback, "basic streamer") hbox2.pack_start(self.mini, False, False, 0) self.mini.show() set_tip(self.mini, _('Run in a reduced functionality mode that lowers ' 'the burden on the CPU and takes up less screen space.')) hbox2.show() hbox.pack_start(vbox, False, False, 9) hbox.show() requires_restart = gtk.Frame(" %s " % _('These settings take effect after restarting')) requires_restart.set_border_width(7) featuresvbox.pack_start(requires_restart, False) requires_restart.show() rrvbox = gtk.VBox() rrvbox.set_border_width(9) rrvbox.set_spacing(4) requires_restart.add(rrvbox) rrvbox.show() def hjoin(*widgets): hbox = gtk.HBox() hbox.set_spacing(3) for w in widgets: hbox.pack_start(w, False) w.show() hbox.show() return hbox self.more_effects = gtk.RadioButton(None, _('Reserve 24 sound effects slots')) fewer_effects = gtk.RadioButton(self.more_effects, _("Only 12")) if PGlobs.num_effects == 24: self.more_effects.clicked() else: fewer_effects.clicked() rrvbox.pack_start(hjoin(self.more_effects, fewer_effects)) self.mic_qty_adj = gtk.Adjustment( PGlobs.num_micpairs * 2, 2.0, 12.0, 2.0) spin = gtk.SpinButton(self.mic_qty_adj) rrvbox.pack_start(hjoin(spin, gtk.Label( _('Audio input channels')))) self.stream_qty_adj = gtk.Adjustment( PGlobs.num_streamers, 1.0, 9.0, 1.0) spin = gtk.SpinButton(self.stream_qty_adj) rrvbox.pack_start(hjoin(spin, gtk.Label(_('Simultaneous stream(s)')))) self.recorder_qty_adj = gtk.Adjustment( PGlobs.num_recorders, 0.0, 4.0, 1.0) spin = gtk.SpinButton(self.recorder_qty_adj) rrvbox.pack_start(hjoin(spin, gtk.Label( _('Simultaneous recording(s)')))) self.rrvaluesdict = {"num_micpairs": self.mic_qty_adj, "num_streamers": self.stream_qty_adj, "num_recorders": self.recorder_qty_adj} # Meters on/off def showhide(toggle, target): if toggle.get_active(): target.show() else: target.hide() frame = gtk.Frame(" %s " % _('View')) frame.set_border_width(3) hbox = gtk.HBox(3, True) hbox.set_border_width(10) frame.add(hbox) hbox.show() vbox = gtk.VBox() hbox.pack_start(vbox) vbox.show() self.show_stream_meters = gtk.CheckButton() self.show_stream_meters.set_active(True) self.show_stream_meters.connect( "toggled", showhide, parent.streammeterbox) vbox.pack_start(self.show_stream_meters, False) self.show_stream_meters.show() self.show_background_tracks_player = gtk.CheckButton() self.show_background_tracks_player.set_active(True) self.show_background_tracks_player.connect( "toggled", showhide, parent.jingles.interlude_frame) vbox.pack_start(self.show_background_tracks_player, False) self.show_background_tracks_player.show() self.show_button_bar = gtk.CheckButton() self.show_button_bar.set_active(True) self.show_button_bar.connect("toggled", showhide, parent.hbox10) self.show_button_bar.connect("toggled", showhide, parent.hbox10spc) vbox.pack_start(self.show_button_bar, False) self.show_button_bar.show() vbox = gtk.VBox() hbox.pack_start(vbox) vbox.show() self.show_microphones = gtk.CheckButton() self.show_microphones.set_active(True) self.show_microphones.connect("toggled", showhide, parent.micmeterbox) vbox.pack_start(self.show_microphones, False) self.show_microphones.show() self.no_mic_void_space = gtk.CheckButton( _('Fill channel meter void space')) self.no_mic_void_space.set_active(True) for meter in parent.mic_meters: self.no_mic_void_space.connect("toggled", meter.always_show) vbox.pack_start(self.no_mic_void_space, False) self.no_mic_void_space.show() outervbox.pack_start(frame, False, False, 0) frame.show() # ReplayGain controls frame = gtk.Frame(" %s " % _('Player Loudness Normalisation')) frame.set_border_width(3) outervbox.pack_start(frame, False, False, 0) vbox = gtk.VBox() frame.add(vbox) frame.show() vbox.set_border_width(10) vbox.set_spacing(1) vbox.show() self.rg_indicate = gtk.CheckButton( _('Indicate which tracks have loudness metadata')) set_tip(self.rg_indicate, _('Shows a marker in the playlists next to' ' each track. Either a green circle or a red triangle.')) self.rg_indicate.connect("toggled", self.cb_rg_indicate) vbox.pack_start(self.rg_indicate, False, False, 0) self.rg_indicate.show() self.rg_adjust = gtk.CheckButton(_('Adjust playback volume in dB')) set_tip(self.rg_adjust, _('Effective only on newly started tracks.')) vbox.pack_start(self.rg_adjust, False, False, 0) self.rg_adjust.show() table = gtk.Table(2, 6) table.set_col_spacings(3) label = gtk.Label(_('R128')) label.set_alignment(1.0, 0.5) r128_boostadj = gtk.Adjustment(4.0, -5.0, 25.5, 0.5) self.r128_boost = gtk.SpinButton(r128_boostadj, 0.0, 1) set_tip(self.r128_boost, _('It may not be desirable to use the ' 'default level since it is rather quiet. This should be' ' set 4 or 5 dB higher than the ReplayGain setting.')) table.attach(label, 0, 1, 0, 1) table.attach(self.r128_boost, 1, 2, 0, 1) label = gtk.Label(_('ReplayGain')) label.set_alignment(1.0, 0.5) rg_boostadj = gtk.Adjustment(0.0, -10.0, 20.5, 0.5) self.rg_boost = gtk.SpinButton(rg_boostadj, 0.0, 1) set_tip(self.rg_boost, _('It may not be desirable to use the default' ' level since it is rather quiet. This should be set' ' 4 or 5 dB lower than the R128 setting.')) table.attach(label, 2, 3, 0, 1) table.attach(self.rg_boost, 3, 4, 0, 1) label = gtk.Label(_('Untagged')) label.set_alignment(1.0, 0.5) rg_defaultgainadj = gtk.Adjustment(-8.0, -30.0, 10.0, 0.5) self.rg_defaultgain = gtk.SpinButton(rg_defaultgainadj, 0.0, 1) set_tip(self.rg_defaultgain, _('Set this so that any unmarked tracks' ' are playing at a roughly similar loudness level as the marked ones.')) table.attach(label, 4, 5, 0, 1) table.attach(self.rg_defaultgain, 5, 6, 0, 1) label = gtk.Label(_('All')) label.set_alignment(1.0, 0.5) all_boostadj = gtk.Adjustment(0.0, -10.0, 10.0, 0.5) self.all_boost = gtk.SpinButton(all_boostadj, 0.0, 1) set_tip(self.all_boost, _('A master level control for the media players.')) table.attach(label, 0, 1, 1, 2) table.attach(self.all_boost, 1, 2, 1, 2) vbox.pack_start(table, False) table.set_col_spacing(1, 7) table.set_col_spacing(3, 7) table.show_all() # Recorder filename format may be desirable to change for FAT32 compatibility frame = gtk.Frame(" %s " % _('Recorder Filename (excluding the file extension)')) set_tip(frame, _("The specifiers are $r for the number of the " "recorder with the rest being documented in the strftime man page.\n" "Users may wish to alter this to make filenames that are compatible with particular filesystems.")) frame.set_border_width(3) align = gtk.Alignment() align.props.xscale = 1.0 self.recorder_filename = DefaultEntry("idjc.[%Y-%m-%d][%H:%M:%S].$r") align.add(self.recorder_filename) self.recorder_filename.show() align.set_border_width(3) frame.add(align) align.show() outervbox.pack_start(frame, True) frame.show() # Miscellaneous Features frame = gtk.Frame(" " + _('Miscellaneous Features') + " ") frame.set_border_width(3) vbox = gtk.VBox() frame.add(vbox) frame.show() vbox.set_border_width(10) vbox.set_spacing(1) self.silence_killer = gtk.CheckButton( _('Trim quiet song endings and trailing silence')) self.silence_killer.set_active(True) vbox.pack_start(self.silence_killer, False, False, 0) self.silence_killer.show() self.bonus_killer = gtk.CheckButton( _('End tracks containing long passages of silence')) self.bonus_killer.set_active(True) vbox.pack_start(self.bonus_killer, False, False, 0) self.bonus_killer.show() self.speed_variance = gtk.CheckButton( _('Enable the main-player speed/pitch controls')) vbox.pack_start(self.speed_variance, False, False, 0) self.speed_variance.connect("toggled", self.cb_pbspeed) self.speed_variance.show() set_tip(self.speed_variance, _('This option causes some extra widgets ' 'to appear below the playlists which allow the playback speed to be ' 'adjusted from 25% to 400% and a normal speed button.')) self.dual_volume = gtk.CheckButton( _('Separate left/right player volume faders')) vbox.pack_start(self.dual_volume, False, False, 0) self.dual_volume.connect("toggled", self.cb_dual_volume) self.dual_volume.show() set_tip(self.dual_volume, _('Select this option to use an independent ' 'volume fader for the left and right music players.')) self.bigger_box_toggle = gtk.CheckButton( _('Enlarge the time elapsed/remaining windows')) vbox.pack_start(self.bigger_box_toggle, False, False, 0) self.bigger_box_toggle.connect("toggled", self.callback, "bigger box") self.bigger_box_toggle.show() set_tip(self.bigger_box_toggle, _("The time elapsed/remaining windows " "sometimes don't appear big enough for the text that appears in them " "due to unusual DPI settings or the use of a different rendering " "engine. This option serves to fix that.")) self.djalarm = gtk.CheckButton( _('Sound an alarm when the music is due to end')) vbox.pack_start(self.djalarm, False, False, 0) self.djalarm.show() set_tip(self.djalarm, _('An alarm tone alerting the DJ that dead-air is' ' just nine seconds away. This also works when monitoring stream audio ' 'but the alarm tone is not sent to the stream.\n\n' 'JACK freewheel mode will also be automatically disengaged.')) freewheel_show = self.parent.freewheel_button.enabler vbox.pack_start(freewheel_show, False, False, 0) freewheel_show.show() self.dither = gtk.CheckButton( _('Apply dither to 16 bit PCM playback')) vbox.pack_start(self.dither, False, False, 0) self.dither.connect("toggled", self.cb_dither) self.dither.show() set_tip(self.dither, _('This feature maybe improves the sound quality ' 'a little when listening on a 24 bit sound card.')) self.enable_tooltips = gtk.CheckButton(_('Enable tooltips')) self.enable_tooltips.connect("toggled", self.callback, "tooltips") vbox.pack_start(self.enable_tooltips, False, False, 0) self.enable_tooltips.show() set_tip(self.enable_tooltips, _('This, what you are currently reading,' ' is a tooltip. This feature turns them on or off.')) vbox.show() outervbox.pack_start(frame, False) # Song database preferences and connect button. self.songdbprefs = self.parent.topleftpane.prefs_controls self.parent.menu.songdbmenu_a.connect_proxy(self.songdbprefs.dbtoggle) outervbox.pack_start(self.songdbprefs, False) # Widget for user interface label renaming. label_subst = self.parent.label_subst outervbox.pack_start(label_subst, False) label_subst.set_border_width(3) label_subst.show_all() # Session to be saved, or initial settings preferences. frame = gtk.Frame(" %s " % _('Player Settings At Startup')) frame.set_label_align(0.5, 0.5) frame.set_border_width(3) vbox = gtk.VBox() frame.add(vbox) vbox.show() restoresessionhbox = gtk.HBox() restoresessionhbox.set_border_width(8) restoresessionhbox.show() self.restore_session_option = gtk.CheckButton( _('Restore the previous session')) vbox.pack_start(restoresessionhbox, False, False, 0) restoresessionhbox.pack_start(self.restore_session_option, False) self.restore_session_option.show() set_tip(self.restore_session_option, _('When starting IDJC most of the main window settings will be as they ' 'were left. As an alternative you may specify below how you want the ' 'various settings to be when IDJC starts.')) hbox = gtk.HBox(True) vbox.add(hbox) hbox.set_border_width(6) hbox.set_spacing(3) self.lpconfig = InitialPlayerConfig( _("Player 1"), parent.player_left, "l") self.rpconfig = InitialPlayerConfig( _("Player 2"), parent.player_right, "r") for each in self.lpconfig, self.rpconfig: hbox.pack_start(each, True, True) hbox.show() self.misc_session_frame = gtk.Frame() self.misc_session_frame.set_border_width(4) misc_startup = gtk.HBox(True, 20) self.misc_session_frame.add(misc_startup) misc_startup.show() hbox2 = gtk.HBox() hbox2.pack_start(self.misc_session_frame, True, True, 7) hbox2.show() vbox.pack_start(hbox2, False, False, 2) self.misc_session_frame.show() misc_startupl = gtk.VBox() misc_startup.pack_start(misc_startupl, True, True, 5) misc_startupl.show() misc_startupr = gtk.VBox() misc_startup.pack_start(misc_startupr, True, True, 5) misc_startupr.show() self.tracks_played = gtk.CheckButton(_('Tracks Played')) misc_startupl.add(self.tracks_played) self.tracks_played.show() # TC: DJ hears the stream mix. self.stream_mon = gtk.CheckButton(_('Monitor Stream Mix')) misc_startupr.add(self.stream_mon) self.stream_mon.show() self.restore_session_option.connect("toggled", self.cb_restore_session) self.restore_session_option.set_active(True) outervbox.pack_start(frame, False) frame.show() # TC: A heading label for miscellaneous settings. features_label = gtk.Label(_('General')) self.notebook.append_page(generalwindow, features_label) features_label.show() outervbox.show() # Channels tab scrolled_window = gtk.ScrolledWindow() scrolled_window.set_border_width(0) scrolled_window.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) panevbox = gtk.VBox() scrolled_window.add_with_viewport(panevbox) scrolled_window.show() panevbox.set_border_width(3) panevbox.set_spacing(3) panevbox.get_parent().set_shadow_type(gtk.SHADOW_NONE) panevbox.show() # Opener buttons for channels opener_settings = parent.mic_opener.opener_settings panevbox.pack_start(opener_settings, False, padding=3) # Individual channel settings self.mic_controls = mic_controls = [] vbox = gtk.VBox() for i in range(PGlobs.num_micpairs): uhbox = gtk.HBox(True) vbox.pack_start(uhbox, False, False, 0) uhbox.show() lhbox = gtk.HBox() vbox.pack_start(lhbox, False, False, 0) lhbox.show() for j in range(2): n = i * 2 + j micname = "mic_control_%d" % n c = AGCControl(self.parent, str(n + 1), micname, n) setattr(self, micname, c) uhbox.add(c) c.show() parent.mic_opener.add_mic(c) mic_controls.append(c) mic_controls[-2].set_partner(mic_controls[-1]) mic_controls[-1].set_partner(mic_controls[-2]) parent.mic_opener.finalise() panevbox.pack_start(vbox, False) vbox.show() self.voip_pan = PanWidget(_('VoIP panning + mono downmix'), "voip_pan_widget") self.voip_pan.pan_active.connect("toggled", self.voip_pan_backend_update) self.voip_pan.pan.connect("value-changed", self.voip_pan_backend_update) self.voip_pan.set_border_width(3) panevbox.pack_start(self.voip_pan, False) self.voip_pan.show_all() label = gtk.Label(_('Channels')) self.notebook.append_page(scrolled_window, label) label.show() # Controls tab tab= midicontrols.ControlsUI(self.parent.controls) # TC: Keyboard and MIDI bindings configuration. label= gtk.Label(_('Bindings')) self.notebook.append_page(tab, label) tab.show() label.show() # about tab self.aboutframe = gtk.Frame() frame.set_border_width(9) vbox = gtk.VBox() self.aboutframe.add(vbox) label = gtk.Label() label.set_markup('' + self.parent.appname + '') vbox.pack_start(label, False, False, 13) label.show() label = gtk.Label() label.set_markup('Version ' + self.parent.version + '') vbox.pack_start(label, False, False, 0) label.show() pixbuf = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "logo.png") image = gtk.Image() image.set_from_pixbuf(pixbuf) vbox.pack_start(image, False, False, 8) image.show() label = gtk.Label() label.set_markup(u'' + self.parent.copyright + u'') vbox.pack_start(label, False, False, 12) label.show() label = gtk.Label() label.set_markup( '' + PGlobs.license + '') vbox.pack_start(label, False, False, 1) label.show() nb = gtk.Notebook() nb.set_border_width(10) vbox.pack_start(nb, True, True, 0) nb.show() lw = licence_window.LicenceWindow() lw.set_border_width(1) lw.set_shadow_type(gtk.SHADOW_ETCHED_IN) label = gtk.Label(_('Licence')) nb.append_page(lw, label) lw.show() label.show() def contribs_page(title, content): sw = gtk.ScrolledWindow() sw.set_border_width(1) sw.set_shadow_type(gtk.SHADOW_NONE) sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) label = gtk.Label(title) nb.append_page(sw, label) sw.show() lw.show() ivbox = gtk.VBox() sw.add_with_viewport(ivbox) ivbox.show() for each in content: label = gtk.Label(each) label.set_use_markup(True) ivbox.add(label) label.show() contribs_page(_('Contributors'), ("Stephen Fairchild (s-fairchild@users.sourceforge.net)", "And Clover (and@doxdesk.com)", "Dario Abatianni (eisfuchs@users.sourceforge.net)", "Stefan Fendt (stefan@sfendt.de)", "Brian Millham (bmillham@users.sourceforge.net)")) contribs_page(_('Translators'), ("es Blank Frank (frank@rhizomatica.org)", "fr nvignot (nicotux@users.sf.net)", "it Raffaele Morelli (raffaele.morelli@gmail.com)")) label = gtk.Label(_('Build Info')) ivbox = gtk.VBox() ivbox.set_spacing(10) ivbox.set_border_width(10) nb.append_page(ivbox, label) ivbox.show() with open(FGlobs.pkgdatadir / "buildinfo") as f: for each in f: label = gtk.Label(each.rstrip()) label.set_use_markup(True) label.set_selectable(True) ivbox.pack_start(label, False) label.show() vbox.show() aboutlabel = gtk.Label(_('About')) self.notebook.append_page(self.aboutframe, aboutlabel) aboutlabel.show() self.aboutframe.show() self.notebook.show() # These on by default self.djalarm.set_active(True) self.dither.set_active(True) self.fast_resample.set_active(True) self.enable_tooltips.set_active(True) # Default mic/aux configuration mic_controls[0].mode.set_active(2) mic_controls[0].alt_name.set_text("DJ") t = parent.mic_opener.ix2button[1].opener_tab t.button_text.set_text("DJ") t.icb.set_filename(FGlobs.pkgdatadir / "mic4.png") t.headroom.set_value(3) t.has_reminder_flash.set_active(True) t.is_microphone.set_active(True) t.freewheel_cancel.set_active(True) for cb, state in zip(t.open_triggers.itervalues(), (1, 1, 0, 1)): cb.set_active(state) if len(mic_controls) >= 4: mic_controls[2].mode.set_active(1) mic_controls[2].alt_name.set_text("Aux L") mic_controls[2].groups_adj.set_value(2) mic_controls[2].pan.pan_active.set_active(True) mic_controls[2].pan.set_values(0) mic_controls[3].mode.set_active(3) mic_controls[3].alt_name.set_text("Aux R") mic_controls[3].pan.pan_active.set_active(True) mic_controls[3].pan.set_values(100) t = parent.mic_opener.ix2button[2].opener_tab t.button_text.set_text("Aux") t.icb.set_filename(FGlobs.pkgdatadir / "jack2.png") t.open_triggers.values()[2].set_active(True) self.parent.menu.strmetersmenu_a.connect_proxy(self.show_stream_meters) self.parent.menu.chmetersmenu_a.connect_proxy(self.show_microphones) self.parent.menu.backgroundtracksmenu_a.connect_proxy(self.show_background_tracks_player) self.parent.menu.buttonbarmenu_a.connect_proxy(self.show_button_bar) self.show_stream_meters.set_active(True) self.show_microphones.set_active(True) self.show_background_tracks_player.set_active(True) self.show_button_bar.set_active(True) self.activedict = { # Widgets to save that have the get_active method. "startmini" : self.startmini, "dsp_toggle" : self.parent.dsp_button, "djalarm" : self.djalarm, "trxpld" : self.tracks_played, "strmon" : self.stream_mon, "bigdigibox" : self.bigger_box_toggle, "dither" : self.dither, "recallsession" : self.restore_session_option, "best_rs" : self.best_quality_resample, "good_rs" : self.good_quality_resample, "fast_rs" : self.fast_resample, "speed_var" : self.speed_variance, "dual_volume" : self.dual_volume, "showtips" : self.enable_tooltips, "silencekiller" : self.silence_killer, "bonuskiller" : self.bonus_killer, "rg_indicate" : self.rg_indicate, "rg_adjust" : self.rg_adjust, "str_meters" : self.show_stream_meters, "mic_meters" : self.show_microphones, "btn_bar" : self.show_button_bar, "bg_tracks" : self.show_background_tracks_player, "mic_meters_no_void" : self.no_mic_void_space, "players_visible" : self.parent.menu.playersmenu_i } for each in itertools.chain(mic_controls, (self.parent.freewheel_button, self.songdbprefs, self.lpconfig, self.rpconfig, opener_settings, label_subst, self.voip_pan)): self.activedict.update(each.activedict) self.valuesdict = { # These widgets all have the get_value method. "effects1_vol" : self.parent.jingles.jvol_adj[0], "effects1_muting" : self.parent.jingles.jmute_adj[0], "effects2_vol" : self.parent.jingles.jvol_adj[1], "effects2_muting" : self.parent.jingles.jmute_adj[1], "voiplevel" : self.parent.voipgainadj, "voipmixback" : self.parent.mixbackadj, "interlude_vol" : self.parent.jingles.ivol_adj, "passspeed" : self.parent.passspeed_adj, "djvolume" : self.dj_aud_adj, "alarmvolume" : self.alarm_aud_adj, "rg_default" : self.rg_defaultgain, "rg_boost" : self.rg_boost, "r128_boost" : self.r128_boost, "all_boost" : self.all_boost } for each in itertools.chain(mic_controls, (opener_settings, self.voip_pan)): self.valuesdict.update(each.valuesdict) self.textdict = { # These widgets all have the get_text method. "ltfilerqdir" : self.parent.player_left.file_requester_start_dir, "rtfilerqdir" : self.parent.player_right.file_requester_start_dir, "main_full_wst" : self.parent.full_wst, "main_min_wst" : self.parent.min_wst, "prefs_wst" : self.wst, "rec_filename" : self.recorder_filename } for each in itertools.chain(mic_controls, (opener_settings, label_subst, self.songdbprefs)): self.textdict.update(each.textdict) self.rangewidgets = (self.parent.deckadj,) idjc-0.8.16/python/Makefile.in0000644000175000017500000007133212711167210013032 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = python ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_noinst_PYTHON) \ $(idjcpkgpython_PYTHON) $(python_PYTHON) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = __init__.py.in 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 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)$(idjcpkgpythondir)" \ "$(DESTDIR)$(idjcpkgpythondir)" "$(DESTDIR)$(pythondir)" py_compile = $(top_srcdir)/py-compile 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) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/__init__.py.in.in \ $(top_srcdir)/py-compile 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@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = prelims am__py_compile = $(top_srcdir)/py-compile python_PYTHON = idjcmonitor.py idjcpkgpython_PYTHON = dialogs.py gtkstuff.py irc.py jingles.py licence_window.py \ maingui.py midicontrols.py mutagentagger.py songdb.py playergui.py \ popupwindow.py preferences.py sourceclientgui.py tooltips.py utils.py \ format.py nodist_idjcpkgpython_PYTHON = __init__.py dist_noinst_PYTHON = __init__.py.in.in all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu python/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu python/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): __init__.py.in: $(top_builddir)/config.status $(srcdir)/__init__.py.in.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-idjcpkgpythonPYTHON: $(idjcpkgpython_PYTHON) @$(NORMAL_INSTALL) @list='$(idjcpkgpython_PYTHON)'; dlist=; list2=; test -n "$(idjcpkgpythondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(idjcpkgpythondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(idjcpkgpythondir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ if test -f $$b$$p; then \ $(am__strip_dir) \ dlist="$$dlist $$f"; \ list2="$$list2 $$b$$p"; \ else :; fi; \ done; \ for file in $$list2; do echo $$file; done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(idjcpkgpythondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(idjcpkgpythondir)" || exit $$?; \ done || exit $$?; \ if test -n "$$dlist"; then \ $(am__py_compile) --destdir "$(DESTDIR)" \ --basedir "$(idjcpkgpythondir)" $$dlist; \ else :; fi uninstall-idjcpkgpythonPYTHON: @$(NORMAL_UNINSTALL) @list='$(idjcpkgpython_PYTHON)'; test -n "$(idjcpkgpythondir)" || list=; \ py_files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$py_files" || exit 0; \ dir='$(DESTDIR)$(idjcpkgpythondir)'; \ pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \ pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \ py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \ echo "$$py_files_pep3147";\ pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \ pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \ st=0; \ for files in \ "$$py_files" \ "$$pyc_files" \ "$$pyo_files" \ "$$pyc_files_pep3147" \ "$$pyo_files_pep3147" \ ; do \ $(am__uninstall_files_from_dir) || st=$$?; \ done; \ exit $$st install-nodist_idjcpkgpythonPYTHON: $(nodist_idjcpkgpython_PYTHON) @$(NORMAL_INSTALL) @list='$(nodist_idjcpkgpython_PYTHON)'; dlist=; list2=; test -n "$(idjcpkgpythondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(idjcpkgpythondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(idjcpkgpythondir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ if test -f $$b$$p; then \ $(am__strip_dir) \ dlist="$$dlist $$f"; \ list2="$$list2 $$b$$p"; \ else :; fi; \ done; \ for file in $$list2; do echo $$file; done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(idjcpkgpythondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(idjcpkgpythondir)" || exit $$?; \ done || exit $$?; \ if test -n "$$dlist"; then \ $(am__py_compile) --destdir "$(DESTDIR)" \ --basedir "$(idjcpkgpythondir)" $$dlist; \ else :; fi uninstall-nodist_idjcpkgpythonPYTHON: @$(NORMAL_UNINSTALL) @list='$(nodist_idjcpkgpython_PYTHON)'; test -n "$(idjcpkgpythondir)" || list=; \ py_files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$py_files" || exit 0; \ dir='$(DESTDIR)$(idjcpkgpythondir)'; \ pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \ pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \ py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \ echo "$$py_files_pep3147";\ pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \ pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \ st=0; \ for files in \ "$$py_files" \ "$$pyc_files" \ "$$pyo_files" \ "$$pyc_files_pep3147" \ "$$pyo_files_pep3147" \ ; do \ $(am__uninstall_files_from_dir) || st=$$?; \ done; \ exit $$st install-pythonPYTHON: $(python_PYTHON) @$(NORMAL_INSTALL) @list='$(python_PYTHON)'; dlist=; list2=; test -n "$(pythondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pythondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pythondir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ if test -f $$b$$p; then \ $(am__strip_dir) \ dlist="$$dlist $$f"; \ list2="$$list2 $$b$$p"; \ else :; fi; \ done; \ for file in $$list2; do echo $$file; done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pythondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pythondir)" || exit $$?; \ done || exit $$?; \ if test -n "$$dlist"; then \ $(am__py_compile) --destdir "$(DESTDIR)" \ --basedir "$(pythondir)" $$dlist; \ else :; fi uninstall-pythonPYTHON: @$(NORMAL_UNINSTALL) @list='$(python_PYTHON)'; test -n "$(pythondir)" || list=; \ py_files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$py_files" || exit 0; \ dir='$(DESTDIR)$(pythondir)'; \ pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \ pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \ py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \ echo "$$py_files_pep3147";\ pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \ pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \ st=0; \ for files in \ "$$py_files" \ "$$pyc_files" \ "$$pyo_files" \ "$$pyc_files_pep3147" \ "$$pyo_files_pep3147" \ ; do \ $(am__uninstall_files_from_dir) || st=$$?; \ done; \ exit $$st # 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: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(idjcpkgpythondir)" "$(DESTDIR)$(idjcpkgpythondir)" "$(DESTDIR)$(pythondir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-idjcpkgpythonPYTHON \ install-nodist_idjcpkgpythonPYTHON install-pythonPYTHON 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 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: uninstall-idjcpkgpythonPYTHON \ uninstall-nodist_idjcpkgpythonPYTHON uninstall-pythonPYTHON .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool clean-local \ cscopelist-am ctags ctags-am distclean 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-idjcpkgpythonPYTHON install-info install-info-am \ install-man install-nodist_idjcpkgpythonPYTHON install-pdf \ install-pdf-am install-ps install-ps-am install-pythonPYTHON \ 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 \ uninstall-idjcpkgpythonPYTHON \ uninstall-nodist_idjcpkgpythonPYTHON uninstall-pythonPYTHON .PRECIOUS: Makefile __init__.py: __init__.py.in sed -e 's|$${pkgdatadir}|${pkgdatadir}|g' \ -e 's|$${pkglibdir}|${pkglibdir}|g' \ -e 's|$${exec_prefix}|${exec_prefix}|g' \ -e 's|$${prefix}|${prefix}|g' \ -e 's|$${datarootdir}|${datarootdir}|g' \ $? >$@ clean-local: rm -f __init__.py .PHONY: __init__.py $pkgpython_PYTHON # 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: idjc-0.8.16/python/tooltips.py0000644000175000017500000000322212630014503013201 00000000000000# tooltips.py: a replacement for the old style GTK tooltips API # Copyright (C) 2008-2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . import gtk class TooltipsGroup: """A central control point for tooltips.""" def __init__(self): self.enabled = False def set_tip(self, widget, tip_text): widget.set_tooltip_window(None) widget.connect("query-tooltip", self.cb_query_tooltip, tip_text) widget.set_has_tooltip(True) def enable(self): self.enabled = True def disable(self): self.enabled = False def cb_query_tooltip(self, widget, x, y, keyboard_mode, tooltip, tip_text): label = gtk.Label(tip_text) label.set_line_wrap(True) tooltip.set_custom(label) label.show() return self.enabled # An application wide tooltips group. MAIN_TIPS = TooltipsGroup() # Global tip setting function. def set_tip(widget, tip_text): MAIN_TIPS.set_tip(widget, tip_text) idjc-0.8.16/python/playergui.py0000644000175000017500000060043712664346646013367 00000000000000# IDJCmedia.py: GUI code for main media players in IDJC # Copyright 2005-2007 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . __all__ = [ 'IDJC_Media_Player', 'make_arrow_button', 'supported' ] import os import sys import time import urllib import subprocess import random import signal import re import xml.dom.minidom as mdom import warnings import gettext import uuid from stat import * from collections import deque, namedtuple, defaultdict from functools import partial import glib import gobject import gtk import pango import mutagen from mutagen.mp3 import MP3 from mutagen.flac import FLAC from mutagen.mp4 import MP4 from mutagen.easyid3 import EasyID3 from mutagen.apev2 import APEv2, APETextValue from mutagen.asf import ASF from mutagen.id3 import ID3 from idjc import FGlobs, PGlobs from . import popupwindow from .mutagentagger import * from .utils import SlotObject from .utils import LinkUUIDRegistry from .utils import PathStr from .gtkstuff import threadslock, FolderChooserButton from .gtkstuff import idle_add, timeout_add, source_remove, nullcm, gdklock from .prelims import * from .tooltips import set_tip _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext def N_(text): return text PM = ProfileManager() EasyID3.RegisterTXXXKey('TXXX_replaygain_track_gain', 'replaygain_track_gain') link_uuid_reg = LinkUUIDRegistry() # Suppress the warning that occurs when None is placed in a ListStore element # where some kind of GObject is expected. warnings.filterwarnings("ignore", r"g_object_set_qdata: assertion `G_IS_OBJECT \(object\)' failed") # Suppress drag & drop warning to an empty playlist window. warnings.filterwarnings("ignore", "IA__gtk_tree_view_scroll_to_cell: assertion" " `tree_view->priv->tree != NULL' failed.*") # Named tuple for a playlist row. class PlayerRow(namedtuple("PlayerRow", "rsmeta filename length meta encoding title artist replaygain cuesheet album uuid")): def __nonzero__(self): return self.rsmeta != "valid" # ReplayGain value to indicate default. RGDEF = "0 DEFAULT" # Playlist value indicating a file isn't valid. NOTVALID = PlayerRow("valid", "", 0, "", "latin1", "", "", RGDEF, None, "", "") # Delay in milliseconds between progress bar updates. PROGRESS_TIMEOUT = 200 # Pathname is an absolute file path or 'missing' or 'pregap'. CueSheetTrack = namedtuple("CueSheetTrack", "pathname play tracknum index performer title offset duration replaygain album") class FillStopper(gtk.Button): def __init__(self): gtk.Button.__init__(self, _("Click to stop adding tracks!")) self.set_border_width(4) self._reg = {} self.connect("clicked", self._on_clicked) def register(self, iterator): self._reg[iterator] = True def unregister(self, iterator): try: del self._reg[iterator] except KeyError: pass if not self._reg: self.hide() def check(self, iterator): return iterator in self._reg def _on_clicked(self, button): self._reg.clear() self.hide() class IndexingIterator(object): def __init__(self, iteree): self.index = 0 self.iteree = iteree def __iter__(self): return self def next(self): try: val = self.iteree[self.index] except IndexError: raise StopIteration self.index += 1 return val class CueSheetListStore(gtk.ListStore): _columns = (str, int, int, int, str, str, int, int, str, str) assert len(_columns) == len(CueSheetTrack._fields) def __init__(self): gtk.ListStore.__init__(self, *self._columns) self.playing_index = None def element(self, offset): """The element given an offset in seconds.""" ret = None offset *= 75 playing_index = self.playing_index for i, each in enumerate(self): if each.play: if ret is None and offset < each.offset + each.duration: ret = each if self.playing_index != i: self.playing_index = i if playing_index != self.playing_index: self.invalidate() return ret def next_element(self, element): iterator = iter(self) try: item = iterator.next() while item != element: item = iterator.next() next_item = iterator.next() return next_item except StopIteration: return None def non_playing(self): self.playing_index = None self.invalidate() def time_remaining(self, offset): """Play time remaining given a whole file time offset in seconds.""" sectors = 0.0 offset *= 75 for each in self: if offset >= each.offset + each.duration: continue if each.play: if offset > each.offset: sectors += each.offset + each.duration - offset else: sectors += each.duration return sectors / 75.0 def invalidate(self): for i in xrange(len(self)): # There should be an invalidate row signal (oh well). row = gtk.ListStore.__getitem__(self, i) title = row[5] row[5] = title def __nonzero__(self): return len(self) != 0 def __getitem__(self, i): return CueSheetTrack(*gtk.ListStore.__getitem__(self, i)) def __iter__(self): return IndexingIterator(self) class NumberedLabel(gtk.Label): attrs = pango.AttrList() attrs.insert(pango.AttrFamily("Monospace" , 0, 3)) #attrs.insert(pango.AttrWeight(pango.WEIGHT_BOLD, 0, 3)) def set_value(self, value): self.set_text("--" if value is None else "%02d" % value) def get_value(self): text = self.get_text() return None if text == "--" else int(self.text) def __init__(self, value=None): gtk.Label.__init__(self) self.set_attributes(self.attrs) self.set_value(value) class CellRendererDuration(gtk.CellRendererText): """Render a value in frames as a time mm:ss:hs right justified.""" __gproperties__ = { "duration" : (gobject.TYPE_UINT64, "duration", "playback time expressed in CD audio frames", 0, long(3e9), 0, gobject.PARAM_WRITABLE) } def __init__(self): gtk.CellRendererText.__init__(self) self.set_property("xalign", 1.0) def do_set_property(self, property, value): if property.name == "duration": s, f = divmod(value, 75) m, s = divmod(s, 60) self.props.text = "%d:%02d.%02d" % (m, s, f // 0.75) class CuesheetPlaylist(gtk.Frame): __gsignals__ = { "playitem" : ( gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_PYOBJECT, gobject.TYPE_PYOBJECT, ))} def __init__(self): gtk.Frame.__init__(self, " %s " % _('Cuesheet Playlist')) self.set_border_width(3) vbox = gtk.VBox() vbox.set_border_width(4) vbox.set_spacing(2) self.add(vbox) vbox.show() hbox = gtk.HBox() hbox.set_spacing(6) vbox.pack_start(hbox, False) def nextprev_unit(label_text): def icon_button(stock_item): button = gtk.Button() image = gtk.image_new_from_stock(stock_item, gtk.ICON_SIZE_MENU) button.set_image(image) image.show() return button box = gtk.HBox() box.set_spacing(6) prev = icon_button(gtk.STOCK_MEDIA_PREVIOUS) box.pack_start(prev) prev.show() lhbox = gtk.HBox() box.pack_start(lhbox, False) lhbox.show() label = gtk.Label(label_text + " ") lhbox.pack_start(label, False) label.show() numbered = NumberedLabel() lhbox.pack_start(numbered, False) numbered.show() next = icon_button(gtk.STOCK_MEDIA_NEXT) box.pack_start(next) next.show() box.show() return box, prev, next, numbered scrolled = gtk.ScrolledWindow() scrolled.set_size_request(-1, 117) scrolled.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) scrolled.set_shadow_type(gtk.SHADOW_ETCHED_IN) vbox.pack_start(scrolled) scrolled.show() self.treeview = gtk.TreeView() self.treeview.connect("row-activated", self._cb_doubleclick) scrolled.add(self.treeview) self.treeview.show() renderer_toggle = gtk.CellRendererToggle() renderer_toggle.connect("toggled", self._play_clicked) renderer_text_desc = gtk.CellRendererText() renderer_text_desc.set_property("ellipsize", pango.ELLIPSIZE_END) renderer_text_rjust = gtk.CellRendererText() renderer_text_rjust.set_property("xalign", 0.9) renderer_duration = CellRendererDuration() # TC: Column heading, whether to play. play = gtk.TreeViewColumn(_('Play'), renderer_toggle, active=1) self.treeview.append_column(play) # TC: Column heading, the track number. track = gtk.TreeViewColumn(_('Trk'), renderer_text_rjust, text=2) self.treeview.append_column(track) # TC: Column heading, the index number. index = gtk.TreeViewColumn(_('Ind'), renderer_text_rjust, text=3) self.treeview.append_column(index) description = gtk.TreeViewColumn(_('Description'), renderer_text_desc) description.set_expand(True) description.set_cell_data_func(renderer_text_desc, self._description_col_func) self.treeview.append_column(description) # TC: Playback time. duration = gtk.TreeViewColumn(_('Duration'), renderer_duration) duration.add_attribute(renderer_duration, "duration", 7) self.treeview.append_column(duration) def _cb_doubleclick(self, widget, path, column): self.emit("playitem", self.treeview.get_model(), path) def set(self, track, index): self.track.set_value(track) self.index.set_value(index) def _description_col_func(self, column, cell, model, iter): index = model.get_path(iter)[0] line = model[index] desc = " - ".join(x for x in (line.performer, line.title) if x) if desc and line.album: desc += " - (%s)" % line.album desc = desc or os.path.splitext(os.path.split(line.pathname)[1])[0] cell.props.text = desc if index == model.playing_index: cell.props.weight = pango.WEIGHT_BOLD else: cell.props.weight = pango.WEIGHT_NORMAL def _play_clicked(self, cellrenderer, path): model = self.treeview.get_model() iter = model.get_iter(path) col = CueSheetTrack._fields.index("play") val = model.get_value(iter, col) model.set_value(iter, col, not val) class ButtonFrame(gtk.Frame): def __init__(self, title): gtk.Frame.__init__(self) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, len(title))) label = gtk.Label(title) label.set_attributes(attrlist) self.set_label_widget(label) label.show() self.hbox = gtk.HBox() self.add(self.hbox) self.hbox.show() self.set_shadow_type(gtk.SHADOW_NONE) self.set_label_align(0.5, 0.5) class ExternalPL(gtk.Frame): def get_next(self): next = self._get_next() if next is None: return self._get_next() return next def _get_next(self): if self.active.get_active(): try: line = self.gen.next() except StopIteration: self.gen = self.player.get_elements_from([self.pathname]) line = None return line return None def cb_active(self, widget): if widget.get_active(): self.pathname = (self.filechooser, self.directorychooser )[self.radio_directory.get_active()].get_filename() if self.pathname is not None: self.gen = self.player.get_elements_from([self.pathname]) try: line = self.gen.next() except StopIteration: widget.set_active(False) else: self.player.stop.clicked() self.player.liststore.clear() self.player.liststore.append(line) self.player.treeview.get_selection().select_path(0) self.vbox.set_sensitive(False) else: widget.set_active(False) else: self.vbox.set_sensitive(True) def cb_newselection(self, widget, radio): radio.set_active(True) def make_line(self, radio, dialog, widget): button = widget(dialog) button.set_current_folder(os.path.expanduser("~")) hbox = gtk.HBox() hbox.pack_start(radio, False, False, 0) hbox.pack_start(button, True, True, 0) radio.show() button.show() return hbox def __init__(self, player): self.player = player gtk.Frame.__init__(self, " %s " % _('External Playlist')) self.set_border_width(4) hbox = gtk.HBox() self.add(hbox) hbox.set_border_width(8) hbox.set_spacing(10) hbox.show() self.vbox = gtk.VBox() hbox.pack_start(self.vbox, True, True, 0) self.vbox.show() # TC: Button text to activate an external playlist. self.active = gtk.ToggleButton(" %s " % _('Active')) self.active.connect("toggled", self.cb_active) hbox.pack_end(self.active, False, False, 0) self.active.show() filefilter = gtk.FileFilter() for each in supported.playlists: filefilter.add_pattern(each) self.filechooser = gtk.FileChooserDialog(title = _('Choose a playlist file') + PM.title_extra, buttons = \ (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OPEN, gtk.RESPONSE_ACCEPT)) self.filechooser.set_filter(filefilter) self.directorychooser = gtk.FileChooserDialog(title = _('Choose a media directory') + PM.title_extra, action = \ gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER, buttons = (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OPEN, gtk.RESPONSE_ACCEPT)) self.radio_file = gtk.RadioButton() self.radio_directory = gtk.RadioButton(self.radio_file) self.filechooser.connect("selection-changed", self.cb_newselection, self.radio_file) self.directorychooser.connect("selection-changed", self.cb_newselection, self.radio_directory) fbox = self.make_line(self.radio_file, self.filechooser, gtk.FileChooserButton) set_tip(fbox, _('Choose a playlist file.')) dbox = self.make_line(self.radio_directory, self.directorychooser, FolderChooserButton) set_tip(dbox, _('Choose a folder/directory of music.')) self.vbox.pack_start(fbox, True, True, 0) self.vbox.pack_start(dbox, True, True, 0) fbox.show() dbox.show() class AnnouncementDialog(gtk.Dialog): def write_changes(self, widget): m = "%02d" % int(self.minutes.get_value()) s = "%02d" % int(self.seconds.get_value()) self.model.set_value(self.iter, 3, "00" + m + s) b = self.tv.get_buffer() text = b.get_text(b.get_start_iter(), b.get_end_iter()) self.model.set_value(self.iter, 4, urllib.quote(text)) self.player.reselect_please = True def restore_mic_playnext(self, widget): self.player.parent.mic_opener.close_all() if self.model.iter_next(self.iter) is not None: self.player.play.clicked() def delete_announcement(self, widget, event=None): self.model.remove(self.iter) self.player.reselect_please = True gtk.Dialog.destroy(self) def timeout_remove(self, widget): source_remove(self.timeout) def timer_update(self, lock=True): with (gdklock if lock else nullcm)(): if not gtk.main_level(): return False inttime = int(self.cdt - time.time()) if inttime != self.oldinttime: if inttime > 0: stime = "%2d:%02d" % divmod(inttime, 60) self.countdownlabel.set_text(stime) if inttime == 5: self.attrlist.change(self.fontcolour_red) if lock: gtk.gdk.threads_leave() return True else: self.countdownlabel.set_text("--:--") self.attrlist.change(self.fontcolour_black) if lock: gtk.gdk.threads_leave() return False return True def cb_keypress(self, widget, event): if event.keyval == 65307: return True if event.keyval == 65288 and self.mode == "active": self.cancel_button.clicked() def __init__(self, player, model, iter, mode): self.player = player self.model = model self.iter = iter self.mode = mode if mode == "initial": model.set_value(iter, 3, "110000") gtk.Dialog.__init__(self, _('Create a new announcement'), player.parent.window, gtk.DIALOG_MODAL) elif mode == "delete_modify": gtk.Dialog.__init__(self, _('Modify or Delete this announcement'), player.parent.window, gtk.DIALOG_MODAL) elif mode == "active": gtk.Dialog.__init__(self, _('Announcement'), player.parent.window, gtk.DIALOG_MODAL) self.connect("key-press-event", self.cb_keypress) ivbox = gtk.VBox() ivbox.set_border_width(10) ivbox.set_spacing(8) self.vbox.add(ivbox) ivbox.show() sw = gtk.ScrolledWindow() sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) sw.set_shadow_type(gtk.SHADOW_IN) sw.set_size_request(500, 200) ivbox.pack_start(sw, True, True, 0) sw.show() self.tv = gtk.TextView() self.tv.set_wrap_mode(gtk.WRAP_WORD_CHAR) if mode == "active": self.tv.unset_flags(gtk.CAN_FOCUS) sw.add(self.tv) self.tv.show() ihbox = gtk.HBox() ivbox.pack_start(ihbox, False, False, 0) ihbox.show() chbox = gtk.HBox() if mode == "initial" or mode == "delete_modify": # TC: The time format as minutes and seconds. countdown_label = gtk.Label('(%s) ' % _("mm:ss")) chbox.pack_start(countdown_label, False, False, 0) countdown_label.show() minutes_adj = gtk.Adjustment(0.0, 0.0, 59.0, 1.0) seconds_adj = gtk.Adjustment(0.0, 0.0, 59.0, 1.0) self.minutes = gtk.SpinButton(minutes_adj) self.seconds = gtk.SpinButton(seconds_adj) sep = gtk.Label(":") chbox.pack_start(self.minutes, False, False, 0) self.minutes.show() chbox.pack_start(sep, False, False, 0) sep.show() chbox.pack_start(self.seconds, False, False, 0) self.seconds.show() if mode == "active": cdtime = model.get_value(iter, 3)[2:6] if cdtime != "0000": cd = int(cdtime[:2]) * 60 + int(cdtime[2:]) self.cdt = time.time() + cd + 1 self.countdownlabel = gtk.Label() self.attrlist = pango.AttrList() fontdesc = pango.FontDescription("monospace bold condensed 15") self.attrlist.insert(pango.AttrFontDesc(fontdesc, 0, 5)) self.fontcolour_black = pango.AttrForeground(0, 0, 0, 0, 5) self.fontcolour_red = pango.AttrForeground(65535, 0, 0, 0, 5) self.attrlist.insert(self.fontcolour_black) self.countdownlabel.set_attributes(self.attrlist) self.oldinttime = -2 self.timer_update(False) self.timeout = timeout_add(100, self.timer_update) self.connect("destroy", self.timeout_remove) chbox.pack_start(self.countdownlabel, True, False, 0) self.countdownlabel.show() ihbox.pack_start(chbox, True, False, 0) chbox.show() if mode == "delete_modify" or mode == "active": lr = model.get_value(iter, 3) text = model.get_value(iter, 4) self.tv.get_buffer().set_text(urllib.unquote(text)) if mode == "delete_modify": self.minutes.set_value((int(lr[2:4]))) self.seconds.set_value((int(lr[4:6]))) if mode == "active": self.player.parent.mic_opener.open_auto("announcement") thbox = gtk.HBox() thbox.set_spacing(4) ivbox.pack_start(thbox, False, False, 0) thbox.show() # TC: Alongside the name of the next track. label = gtk.Label(_('Next track')) thbox.pack_start(label, False, False, 0) label.show() entry = gtk.Entry() entry.set_editable(False) entry.unset_flags(gtk.CAN_FOCUS) ni = model.iter_next(iter) if ni and model.get_value(ni, 0)[0] != ">" : entry.set_text(model.get_value(ni, 3)) thbox.pack_start(entry, True, True, 0) entry.show() self.ok_button = gtk.Button(gtk.STOCK_OK) if mode == "initial" or mode == "delete_modify": self.ok_button.connect("clicked", self.write_changes) if mode == "active": self.ok_button.connect("clicked", self.restore_mic_playnext) self.ok_button.connect_object("clicked", gtk.Dialog.destroy, self) self.ok_button.set_use_stock(True) self.action_area.add(self.ok_button) self.ok_button.show() if mode == "delete_modify": self.delete_button = gtk.Button(gtk.STOCK_DELETE) self.delete_button.connect("clicked", self.delete_announcement) self.delete_button.set_use_stock(True) self.action_area.add(self.delete_button) self.delete_button.show() self.cancel_button = gtk.Button(gtk.STOCK_CANCEL) if mode == "initial": self.connect("delete-event", self.delete_announcement) self.cancel_button.connect("clicked", self.delete_announcement) else: self.cancel_button.connect_object("clicked", gtk.Dialog.destroy, self) self.cancel_button.set_use_stock(True) self.action_area.add(self.cancel_button) self.cancel_button.show() if mode == "active": self.ok_button.grab_focus() class Supported(object): def _check(self, pathname, which): ext = os.path.splitext(pathname)[1].lower() return ext in which and ext or False def playlists_as_text(self): return "(*" + ", *".join(self.playlists) + ")" def media_as_text(self): return "(*" + ", *".join(self.media) + ")" def check_media(self, pathname): return self._check(pathname, self.media) def check_playlists(self, pathname): return self._check(pathname, self.playlists) def __init__(self): self.media = [".ogg", ".oga", ".wav", ".aiff", ".au", ".txt", ".cue"] self.playlists = [".m3u", ".m3u8", ".xspf", ".pls"] if FGlobs.have_libmpg123: self.media.insert(0, ".mp3") self.media.insert(1, ".mp2") if FGlobs.avenabled: self.media.append(".avi") self.media.append(".wma") self.media.append(".ape") self.media.append(".mpc") self.media.append(".aac") self.media.append(".mp4") self.media.append(".m4a") self.media.append(".m4b") self.media.append(".m4p") if FGlobs.flacenabled: self.media.append(".flac") if FGlobs.speexenabled: self.media.append(".spx") if FGlobs.opusenabled: self.media.append(".opus") supported = Supported() # Arrow button creation helper function def make_arrow_button(self, arrow_type, shadow_type, data): button = gtk.Button(); arrow = gtk.Arrow(arrow_type, shadow_type); button.add(arrow) button.connect("clicked", self.callback, data) button.show() arrow.show() return button def get_number_for(token, string): try: end = string.rindex(token) start = end - 1 while start >= 0 and (string[start].isdigit() or string[start] == "."): start = start - 1 return int(float(string[start+1:end])) except ValueError: return 0 class nice_listen_togglebutton(gtk.ToggleButton): def __init__(self, label = None, use_underline = True): try: gtk.ToggleButton.__init__(self, label, use_underline) except RuntimeError: gtk.ToggleButton.__init__(self, label) def __str__(self): return gtk.ToggleButton.__str__(self) + \ " auto inconsistent when insensitive" def set_sensitive(self, bool): if bool is False: gtk.ToggleButton.set_sensitive(self, False) gtk.ToggleButton.set_inconsistent(self, True) else: gtk.ToggleButton.set_sensitive(self, True) gtk.ToggleButton.set_inconsistent(self, False) class CueSheet(object): """A class for parsing cue sheets.""" _operands = (("PERFORMER", "SONGWRITER", "TITLE", "PREGAP", "POSTGAP"), ("FILE", "TRACK", "INDEX", "REM")) _operands = dict((k, v + 1) for v, o in enumerate(_operands) for k in o) # Try to split a string into three parts with a large quoted section # and parts fore and aft. _quoted = re.compile(r'(.*?)[ \t]"(.*)"[ \t](.*)').match _remquoted = re.compile(r'(.*?)[ \t](.*?)[ \t]"(.*)"').match def _time_handler(self, time_str): """Returns the number of frames of audio (75ths of seconds) Minutes can exceed 99 going beyond the cue sheet standard. """ try: mm, ss, ff = [int(x) for x in time_str.split(":")] except ValueError: raise ValueError("time must be in (m*)mm:ss:ff format %s" % self.line) if ff < 0 or ff > 74 or ss < 0 or ss > 59 or mm < 0: raise ValueError("a time value is out of range %s" % self.line) return ff + 75 * ss + 75 * 60 * mm def _int_handler(self, int_str): """Attempt to convert to an integer.""" try: ret = int(int_str) except: raise ValueError("expected integer value for %s %s", ( int_str, self.line)) return ret @classmethod def _tokenize(cls, iterable): """Scanner/tokenizer for cue sheets. This routine will iteratively take one line at a time and return the line number, command, and any operands related to the command. Quoted text will have spaces and tabs intact and counts as one, otherwise all consecutive non-whitespace is a token. The first token is the command, the rest are it's operands. """ for i, line in enumerate(iterable): try: line.decode("utf-8") except UnicodeDecodeError: try: line = line.decode("iso8859-15") except UnicodeDecodeError: pass line = line.strip() + " " match = cls._quoted(line) if match: left, quoted, right = match.groups() left = left.replace("\t", " ").split() right = right.replace("\t", " ").split() else: match = cls._remquoted(line) if match: left, right, quoted = match.groups() right = [right] else: left = line.replace("\t", " ").split() right = [""] quoted = "" tokens = filter(lambda x: x, left + [quoted] + right) yield i + 1, tokens[0].upper(), tokens[1:] def _parse_REM(self): if self.operand[0] == "ALBUM": print "Cue sheet track album:", self.operand[1] self.segment[self.tracknum]["ALBUM"].append(self.operand[1]) else: print "Unhandled REM type:", self.operand[0] def _parse_PERFORMER(self): self.segment[self.tracknum][self.command].append(self.operand[0]) _parse_SONGWRITER = _parse_TITLE = _parse_PERFORMER def _parse_FILE(self): if not self.operand[1] in ("WAVE", "MP3", "AIFF"): raise ValueError("unsupported file type %s" % self.line) self.filename = self.operand[0] self.prevframes = 0 def _parse_TRACK(self): if self.filename is None: raise ValueError("no filename yet specified %s" % self.line) if self.tracknum and self.index < 1: raise ValueError("track %02d lacks a 01 index" % self.tracknum) if self.operand[1] != "AUDIO": raise ValueError("only AUDIO track datatype supported %s" % self.line) num = self._int_handler(self.operand[0]) self.tracknum += 1 self.index = -1 if num != self.tracknum: raise ValueError("unexpected track number %s" % self.line) def _parse_PREGAP(self): if self.tracknum == 0 or self.index != -1 or "PREGAP" in self.segment[ self.tracknum]: raise ValueError("unexpected PREGAP command %s" % self.line) self.segment[self.tracknum]["PREGAP"] = self._time_handler( self.operand[0]) def _parse_INDEX(self): if self.tracknum == 0: raise ValueError("no track yet specified %s" % self.line) if "POSTGAP" in self.segment[self.tracknum]: raise ValueError("INDEX command following POSTGAP %s" % self.line) num = self._int_handler(self.operand[0]) frames = self._time_handler(self.operand[1]) if self.tracknum == 1 and self.index == -1 and frames != 0: raise ValueError("first index must be zero for a file %s" % self.line) if self.index == -1 and num == 1: self.index += 1 self.index += 1 if num != self.index: raise ValueError("unexpected index number %s" % self.line) if frames < self.prevframes: raise ValueError("index time before the previous index %s" % self.line) if self.prevframes and frames == self.prevframes: raise ValueError("index time no different than previously %s" % self.line) self.segment[self.tracknum][self.index] = (self.filename, frames) self.prevframes = frames def _parse_POSTGAP(self): if self.tracknum == 0 or self.index < 1 or "POSTGAP" in self.segment[ self.tracknum]: raise ValueError("unexpected POSTGAP command %s" % self.line) self.segment[self.tracknum]["POSTGAP"] = self._time_handler( self.operand[0]) def parse(self, iterable): """Return a parsed cuesheet object.""" self.filename = None self.tracknum = 0 self.segment = defaultdict(partial(defaultdict, list)) for self.i, self.command, self.operand in self._tokenize(iterable): if self.command not in self._operands: continue self.line = "on line %d" % self.i if len(self.operand) != self._operands[self.command]: raise ValueError( "wrong number of operands got %d required %d %s" % (len(self.operand), self._operands[self.command], self.line)) else: getattr(self, "_parse_" + self.command)() if self.tracknum == 0: raise ValueError("no tracks") if self.index < 1: raise ValueError("track %02d lacks a 01 index" % self.tracknum) for each in self.segment.itervalues(): del each.default_factory del self.segment.default_factory return self.segment class IDJC_Media_Player: playlisttype_extension = tuple(zip( # File format selection items from a list (user can pick only one). (_('By Extension'), _('M3U playlist'), _('M3U8 playlist'), _('XSPF playlist'), _('PLS playlist')), ('', 'm3u', 'm3u8', 'xspf', 'pls'),)) def make_cuesheet_playlist_entry(self, cue_pathname): cuesheet_liststore = CueSheetListStore() try: with open(cue_pathname) as f: segment_data = CueSheet().parse(f) except (IOError, ValueError), e: print "failed reading cue sheet", cue_pathname print e return NOTVALID basepath = os.path.split(cue_pathname)[0] oldfilename = None totalframes = trackframes = cumulativeframes = 0 global_cue_performer = global_cue_title = "" for key, val in sorted(segment_data.iteritems()): track = key cue_performer = ", ".join(val.get("PERFORMER", [])) cue_title = ", ".join(val.get("TITLE", [])) cue_album = ", ".join(val.get("ALBUM", [])) or global_cue_title if key == 0: global_cue_performer = cue_performer global_cue_title = cue_title else: for key2, val2 in sorted(val.iteritems()): if isinstance(key2, int): index = key2 filename, frames = val2 if filename != oldfilename: oldfilename = filename pathname = os.path.join(basepath, filename) track_data = self.get_media_metadata(pathname) if track_data: trackframes = 75 * track_data.length totalframes += trackframes replaygain = track_data.replaygain else: pathname = "" trackframes = 0 replaygain = RGDEF if not cue_performer: cue_performer = track_data.artist or \ global_cue_performer if not cue_title: cue_title = track_data.title or global_cue_title try: nextoffset = val[index + 1][1] except LookupError: try: nextoffset = segment_data[track + 1][0][1] except LookupError: try: nextoffset = segment_data[track + 1][1][1] except LookupError: nextoffset = trackframes if nextoffset == 0: nextoffset = trackframes duration = nextoffset - frames if not trackframes: duration = frames = 0 element = CueSheetTrack(pathname, bool(pathname), track, index, cue_performer, cue_title, frames, duration, replaygain, cue_album) cuesheet_liststore.append(element) summary = _('%d Audio Tracks') % track if global_cue_performer and global_cue_title: if "(" in global_cue_title or ")" in global_cue_title: fmt = "%s - %s - [%s]" else: fmt = "%s - %s - (%s)" metadata = fmt % (global_cue_performer, summary, global_cue_title) else: metadata = "%s - %s" % (global_cue_performer or global_cue_title, summary) # TC: Missing metadata text. metadata = metadata or _('Unknown') # TC: Cuesheet data element as shown in the playlist. element = PlayerRow( '%s' % _("(Cue sheet)") + glib.markup_escape_text(metadata), cue_pathname, totalframes // 75 + 1, metadata, "utf-8", global_cue_title, global_cue_performer, RGDEF, cuesheet_liststore, "", "") return element def get_media_metadata(self, filename, get_length=False): artist = u"" title = u"" album = u"" length = 0.0 artist_retval = u"" title_retval = u"" album_retval = u"" cuesheet = None # Strip away any file:// prefix if filename.count("file://", 0, 7): host, filename = filename[7:].split("/", 1) filename = "/" + urllib.unquote(filename) if host not in ("", "localhost", "127.0.0.1", "::1"): return NOTVALID._replace(filename=filename) elif filename.count("file:", 0, 5): filename = filename[5:] filext = supported.check_media(filename) if filext == False or os.path.isfile(filename) == False: return NOTVALID._replace(filename=filename) # Use this name for metadata when we can't get anything from tags. # The name will also appear grey to indicate a tagless state. meta_name = os.path.splitext(glib.filename_display_basename(filename) )[0].lstrip("0123456789 -") encoding = None # Obsolete # TC: Playlist text meaning the metadata tag is missing or incomplete. rsmeta_name = '(%s) %s' % ( _('Bad Tag'), glib.markup_escape_text(meta_name)) title_retval = meta_name def gain(handle=None, prefix="", gain=None, ref=None): try: if ref is None: ref = str(handle[prefix + "REPLAYGAIN_REFERENCE_LOUDNESS"][0]) except Exception: ref = None else: try: ref = float(ref.rstrip("dbDBLUlu")) except Exception: ref = None else: ref = "R128" if -23.1 < ref < -22.9 else "RG" if gain is None: gain = str(handle[prefix + "REPLAYGAIN_TRACK_GAIN"][0]).rstrip().upper() else: gain = gain.upper() if gain.endswith("DB"): if ref is None or ref == "RG": gain = gain[:-2] + "RG" else: gain = gain[:-2] + "R128" elif gain.endswith("LU"): if ref is None or ref == "R128": gain = gain[:-2] + "R128" else: gain = gain[:-2] + "RG" else: if ref is None or ref == "RG": gain += " RG" else: gain += " R128" try: v1, v2 = gain.split() if v2 not in ("RG", "R128"): raise Exception float(v1) except Exception: return RGDEF return gain # Obtain as much metadata from ubiquitous tags as possible. # Files can have ape and id3 tags. ID3 has priority in this case. try: audio = APEv2(filename) except: rg = RGDEF artist = title = "" else: try: rg = gain(audio) except: rg = RGDEF artist = audio.get("ARTIST", [u""]) title = audio.get("TITLE", [u""]) album = audio.get("ALBUM", [u""]) # ID3 is tried second so it can supercede APE tag data. try: audio = EasyID3(filename) except: pass else: try: rg = gain(audio, "TXXX_") except: try: rg = gain(audio) except: pass try: artist = audio["artist"] except: pass try: title = audio["title"] except: pass try: album = audio["album"] except: pass # Trying for metadata from native tagging formats. if (filext == ".wav" or filext == ".aiff" or filext == ".au"): self.parent.mixer_write("SNDP=%s\nACTN=sndfileinforequest\nend\n" % filename) while 1: line = self.parent.mixer_read() if line == "idjcmixer: sndfileinfo Not Valid\n" or line == "": return NOTVALID._replace(filename=filename) if line.startswith("idjcmixer: sndfileinfo length="): length = float(line[30:-1]) if line.startswith("idjcmixer: sndfileinfo artist="): artist = line[30:-1] if line.startswith("idjcmixer: sndfileinfo title="): title = line[29:-1] if line.startswith("idjcmixer: sndfileinfo album="): album = line[29:-1] if line == "idjcmixer: sndfileinfo end\n": break if length == None: return NOTVALID._replace(filename=filename) # This handles chained ogg files as generated by IDJC. elif filext == ".ogg" or filext == ".oga" or filext == ".spx": self.parent.mixer_write("OGGP=%s\nACTN=ogginforequest\nend\n" % filename) gval = None ref = None while 1: line = self.parent.mixer_read() if line == "OIR:NOT VALID\n" or line == "": return NOTVALID._replace(filename=filename) if line.startswith("OIR:ARTIST="): artist = line[11:].strip() if line.startswith("OIR:TITLE="): title = line[10:].strip() if line.startswith("OIR:ALBUM="): album = line[10:].strip() if line.startswith("OIR:LENGTH="): length = float(line[11:].strip()) if line.startswith("OIR:REPLAYGAIN_TRACK_GAIN="): gval = line[26:].rstrip() if line.startswith("OIR:REPLAYGAIN_REFERENCE_LOUDNESS="): ref = line[34:].rstrip() if line == "OIR:end\n": break if gval is None: rg = RGDEF else: rg = gain(gain=gval, ref=ref) elif filext == ".aac": try: id3 = ID3(filename) try: length = float(id3["TLEN"].text[0]) / 1000.0 except (KeyError, ValueError, IndexError): print "unknown track length -- add a TLEN tag if you know it" raise Exception except Exception: length = 0.0 else: # Mutagen used for all remaining formats. try: audio = mutagen.File(filename) if audio is None: raise Exception except Exception: return NOTVALID._replace(filename=filename) else: length = float(audio.info.length) if isinstance(audio, MP4): try: artist = audio["\xa9ART"][0] except: pass try: title = audio["\xa9nam"][0] except: pass try: album = audio["\xa9alb"][0] except: pass elif isinstance(audio, MP3): # The LAME tag is the last port of call for ReplayGain info # due to it frequently being based on the source audio. if rg == RGDEF: try: rg = audio.info.track_gain except AttributeError: pass else: if rg is None: rg = RGDEF else: rg = str(rg) + " RG" else: x = list(audio.get("Artist", [])) x += list(audio.get("Author", [])) if x: artist = "/".join((unicode(y) for y in x)) try: x = list(audio["Title"]) except: pass else: title = "/".join((unicode(y) for y in x)) try: x = list(audio["Album"]) except: pass else: album = "/".join((unicode(y) for y in x)) try: rg = gain(audio) except: pass try: rg = str(float(unicode(audio["r128_track_gain"][-1])) / 256.0) + " R128" except: pass if isinstance(artist, list): artist = u"/".join(artist) if isinstance(title, list): title = u"/".join(title) if isinstance(album, list): album = u"/".join(album) if isinstance(artist, (str, APETextValue)): try: artist = str(artist).decode("utf-8", "strict") except: artist = str(artist).decode("latin1", "replace") if isinstance(title, (str, APETextValue)): try: title = str(title).decode("utf-8", "strict") except: title = str(title).decode("latin1", "replace") if isinstance(album, (str, APETextValue)): try: album = str(album).decode("utf-8", "strict") except: album = str(album).decode("latin1", "replace") assert(isinstance(artist, unicode)) assert(isinstance(title, unicode)) assert(isinstance(album, unicode)) if get_length: # Used if only requesting the length of the track return length length = 1 if length < 1.0 else float(length) uuid_ = str(uuid.uuid4()) def player_row(meta_name): return PlayerRow(glib.markup_escape_text(meta_name), filename, length, meta_name, encoding, title, artist, rg, cuesheet, album, uuid_) if artist and title and album: if "(" in album: return player_row(artist + u" - " + title + u" - [%s]" % album) else: return player_row(artist + u" - " + title + u" - (%s)" % album) elif artist and title: return player_row(artist + u" - " + title) else: return PlayerRow(rsmeta_name, filename, length, meta_name, encoding, title_retval, artist, rg, cuesheet, album, uuid_) # Update playlist entries for a given filename e.g. when tag has been edited def update_playlist(self, newdata): active = None for item in self.liststore: if item[1] == newdata[1]: if item[0].startswith(""): item[0] = u"" + newdata[0] + u"" active = item else: item[0] = newdata[0] for i in range(2, len(item)): item[i] = newdata[i] if active is not None: self.songname = active[3] # update metadata on server self.title = self.cuesheet_track_title or active[5].encode("utf-8") self.artist = self.cuesheet_track_performer or active[6].encode("utf-8") self.album = self.cuesheet_track_album or active[9].encode("utf-8") self.player_restart() self.parent.send_new_mixer_stats() def expire_metadata(self): if not self.is_playing: self.songname = self.title = self.artist = self.album = "" self.element = None self.cuesheet_track_title = self.cuesheet_track_performer = self.cuesheet_track_album = None # Shut down our media players when we exit. def cleanup(self): self.exiting = True if self.player_is_playing: self.stop.clicked() def save_session(self, where=None): if where is None: where = PM.basedir fh = open(where / self.session_filename, "w") extlist = self.external_pl.filechooser.get_filename() if extlist is not None: fh.write("extlist=" + extlist + "\n") extdir = self.external_pl.directorychooser.get_filename() if extdir is not None: fh.write("extdir=" + extdir + "\n") fh.write("digiprogress_type=" + str(int(self.digiprogress_type)) + "\n") fh.write("stream_button=" + str(int(self.stream.get_active())) + "\n") fh.write("listen_button=" + str(int(self.listen.get_active())) + "\n") fh.write("force_button=" + str(int(self.force.get_active())) + "\n") fh.write("playlist_mode=" + str(self.pl_mode.get_active()) + "\n") fh.write("plsave_filetype=" + str(self.plsave_filetype) + "\n") fh.write("plsave_open=" + str(int(self.plsave_open)) + "\n") fh.write("fade_mode=" + str(self.pl_delay.get_active()) + "\n") if self.plsave_folder is not None: fh.write("plsave_folder=" + self.plsave_folder + "\n") for row in self.liststore: # Allow modification without affecting the playlist. entry = list(row) link = link_uuid_reg.get_link_filename(row[10]) if link is not None: # Replace orig file abspath with alternate path to a hard link # except when link is None as happens when a hard link fails. entry[1] = PathStr("links") / link fh.write("pe=") if entry[0].startswith(""): # Clean off bold tags. entry[0] = entry[0][3:-4] for item in entry: if isinstance(item, int): item = str(item) fh.write("i") elif isinstance(item, float): item = str(item) fh.write("f") elif isinstance(item, str): fh.write("s") elif isinstance(item, CueSheetListStore): fh.write("c") if item: item = "(%s, )" % ", ".join(repr(x) for x in item) else: item = "()" elif item is None: fh.write("n") item = "None" fh.write(str(len(item)) + ":" + item) fh.write("\n") model, iter = self.treeview.get_selection().get_selected() if iter is not None: fh.write("select=" + str(model.get_path(iter)[0]) + "\n") fh.close() def restore_session(self): try: fh = open(PM.basedir / self.session_filename, "r") except: return while 1: try: line = fh.readline() if line == "": break except: break try: if line.startswith("extlist="): self.external_pl.filechooser.set_filename(line[8:-1]) if line.startswith("extdir="): self.external_pl.directorychooser.set_current_folder( line[7:-1]) if line.startswith("digiprogress_type="): if int(line[18]) != self.digiprogress_type: self.digiprogress_click() if line.startswith("stream_button="): self.stream.set_active(int(line[14])) if line.startswith("listen_button="): self.listen.set_active(int(line[14])) if line.startswith("force_button="): self.listen.set_active(int(line[14])) if line.startswith("playlist_mode="): self.pl_mode.set_active(int(line[14])) if line.startswith("plsave_filetype="): self.plsave_filetype=int(line[16]) if line.startswith("plsave_open="): self.plsave_open=bool(int(line[12])) if line.startswith("plsave_folder="): self.plsave_folder=line[14:-1] if line.startswith("fade_mode="): self.pl_delay.set_active(int(line[10])) if line.startswith("pe="): playlist_entry = self.pl_unpack(line[3:]) # Links directory entries conversion to absolute path. if playlist_entry[1] and playlist_entry[1][0] != \ os.path.sep: playlist_entry = playlist_entry._replace( filename=PM.basedir / playlist_entry[1]) if not playlist_entry or self.playlist_todo: self.playlist_todo.append(playlist_entry.filename) else: try: self.liststore.append(playlist_entry) except TypeError: self.playlist_todo.append(playlist_entry.filename) if line.startswith("select="): path = line[7:-1] try: self.treeview.get_selection().select_path(path) self.treeview.scroll_to_cell(path, None, False) except: pass except ValueError: pass if self.playlist_todo: print self.playername + (" player: the stored playlist data is not " "compatible with this version\nfiles placed" " in a queue for rescanning") idle_add(self.cb_playlist_todo) @threadslock def cb_playlist_todo(self): if self.no_more_files: return False try: pathname = self.playlist_todo.popleft() except: return False line = self.get_media_metadata(pathname) if line: self.liststore.append(line) else: print "file missing or type unsupported %s" % pathname return True def pl_unpack(self, text): """Unmarshall a string to a list.""" start = 0 item = 0 reply = [] while text[start] != "\n": end = start while text[end] != ":": end = end + 1 nextstart = int(text[start + 1 : end]) + end + 1 value = text[end + 1 : nextstart] try: t = text[start] if t == "i": value = int(value) elif t == "f": value = float(value) elif t == "s": pass elif t == "c": csts = eval(value, {"__builtins__":None},{ "CueSheetTrack":CueSheetTrack}) value = CueSheetListStore() for cst in csts: value.append(cst) elif t == "n": value = None except Exception, e: print "pl_unpack: playlist line not valid", e try: return NOTVALID._replace(filename=reply[1]) except IndexError: return NOTVALID reply.append(value) start = nextstart try: return PlayerRow._make(reply) except: return NOTVALID._replace(filename=reply[1]) def handle_stop_button(self, widget): self.restart_cancel = True if self.is_playing == True: self.is_playing = False if self.timeout_source_id: source_remove(self.timeout_source_id) # This will enable the play button to be toggled off. self.is_stopping = True self.play.set_active(False) # Must do pause as well if it is pressed. if self.pause.get_active() == True: self.pause.set_active(False) self.parent.send_new_mixer_stats() def handle_pause_button(self, widget, selected): if self.is_playing == True: if self.is_paused == False: # Player pause code goes here print "Player paused" self.is_paused = True self.parent.send_new_mixer_stats() else: # Player unpause code goes here print "Player unpaused" self.is_paused = False self.parent.send_new_mixer_stats() else: # Prevent the pause button going into its on state when not playing. if selected: # We must unselect it. widget.set_active(False) else: self.is_paused = False def handle_play_button(self, widget, selected): if selected == False: # Prevent stopping except when the is_stopping flag is true. if self.is_stopping == False: widget.set_active(True) else: self.is_stopping = False if self.player_is_playing == True: self.player_shutdown() else: if self.is_playing == True: if self.new_title == True: self.new_title = False self.player_shutdown() self.parent.send_new_mixer_stats() self.player_is_playing = self.player_startup() if self.player_is_playing == False: self.player_is_playing = True if self.is_paused: self.pause.set_active(False) else: print "scrolling the playlist window to the current track" path = self.model_playing.get_path(self.iter_playing) self.treeview.scroll_to_cell(path) else: self.is_playing = True self.new_title = False if self.player_startup(): self.player_is_playing = True print "Player has started" else: self.stop.clicked() def player_startup(self): # remember which player started last so we can decide on metadata print "player_startup %s" % self.playername self.parent.last_player = self.playername if self.player_is_playing == True: # Use the current song if one is playing. model = self.model_playing iter = self.iter_playing else: # Get our next playlist item. treeselection = self.treeview.get_selection() (model, iter) = treeselection.get_selected() if iter == None: print "Nothing selected in the playlist - trying the first entry." try: iter = model.get_iter(0) except: print "Playlist is empty" return False print "We start at the beginning" treeselection.select_iter(iter) self.treeview.scroll_to_cell(model.get_path(iter)[0], None, False) self.music_filename = model.get_value(iter, 1) if self.music_filename != "": # Songname is used for metadata for mp3 self.songname = unicode(model.get_value(iter, 3)) # These two are used for ogg metadata self.title = unicode(model.get_value(iter, 5)).encode( "utf-8", "replace") self.artist = unicode(model.get_value(iter, 6)).encode( "utf-8", "replace") self.album = unicode(model.get_value(iter, 9)).encode( "utf-8", "replace") # rt is the run time in seconds of our song rt = model.get_value(iter, 2) if rt < 0: rt = 0 # playlist controls have negative numbers # Calculate our seek time scaling from old slider settings. # Used for when seek is moved before play is pressed. if os.path.isfile(self.music_filename): try: self.start_time = int(self.progressadj.get_value() / self.max_seek * float(rt)) except ZeroDivisionError: self.start_time = 0 else: self.start_time = rt # Seek to the end when file is missing. print "Seek time is %d seconds" % self.start_time # Now we recalibrate the progress bar to the current song length self.digiprogress_f = True self.progressadj.set_all(float (self.start_time) , 0.0, rt, rt/1000.0, rt/100.0, 0.0) self.progressadj.emit("changed") # Set the stop figure used by the progress bar's timeout function self.progress_stop_figure = model.get_value(iter, 2) self.progress_current_figure = self.start_time self.player_is_playing = True # Bold highlight the file we are playing text = model.get_value(iter, 0) if not text.startswith(""): text = "" + text + "" model.set_value(iter, 0, text) self.iter_playing = iter self.model_playing = model self.max_seek = rt self.silence_count = 0 cuesheet = self.cuesheet = model.get_value(iter, 8) if cuesheet: print "There is a cuesheet" # Skip to first element that can be played. element = self.element = cuesheet.element(self.start_time) if element: self.start_time = max(element.offset, self.start_time * 75) // 75 self.progressadj.set_value(self.start_time) self.music_filename = element.pathname self.cuesheet_track_title = element.title self.cuesheet_track_performer = element.performer self.cuesheet_track_album = element.album else: self.element = None self.cuesheet_track_title = self.cuesheet_track_performer = self.cuesheet_track_album = None try: sgain, self.gaintype = model.get_value(iter, 7).split() except (AttributeError, ValueError): # This column type changed to str from int. Handle the change. row = self.get_media_metadata(model.get_value(iter, 1)) if row: model.set_value(iter, 7, row[7]) sgain, self.gaintype = row[7].split() else: sgain, self.gaintype = RGDEF.split() self.gain = float(sgain) if self.parent.prefs_window.rg_adjust.get_active(): if self.gaintype == "DEFAULT": self.gain += self.parent.prefs_window.rg_defaultgain.get_value() if self.gaintype == "RG": self.gain += self.parent.prefs_window.rg_boost.get_value() if self.gaintype == "R128": self.gain += self.parent.prefs_window.r128_boost.get_value() self.gain += self.parent.prefs_window.all_boost.get_value() print "final gain value of %f dB" % self.gain else: self.gain = 0.0 print "not using replay gain" if self.music_filename != "": self.parent.mixer_write( "PLRP=%s\nSEEK=%d\nSIZE=%d\nRGDB=%f\nACTN=playnoflush%s\nend\n" % (self.music_filename, self.start_time, self.max_seek, self.gain, self.playername)) while 1: line = self.parent.mixer_read() if line.startswith("context_id="): self.player_cid = int(line[11:-1]) break if line == "": self.player_cid = -1 break else: print "skipping play for empty filename" self.player_cid = -1 if self.player_cid == -1: print "player startup was unsuccessful for file", \ self.music_filename # The regular code path can handle this. self.timeout_source_id = idle_add( self.cb_play_progress_timeout, self.player_cid) else: print "player context id is %d\n" % self.player_cid if self.player_cid & 1: self.timeout_source_id = timeout_add(PROGRESS_TIMEOUT, self.cb_play_progress_timeout, self.player_cid) else: self.invoke_end_of_track_policy() self.parent.send_new_mixer_stats() return True def player_shutdown(self): print "player shutdown code was called" if self.cuesheet is not None: self.cuesheet.non_playing() if self.iter_playing: # Unhighlight this track text = self.model_playing.get_value(self.iter_playing, 0) if text[:3] == "": text = text[3:-4] self.model_playing.set_value(self.iter_playing, 0, text) self.file_iter_playing = 0 self.player_is_playing = False if self.timeout_source_id: source_remove(self.timeout_source_id) self.progress_current_figure = 0 self.playtime_elapsed.set_value(0) self.progressadj.set_value(0.0) self.progressadj.value_changed() if self.gapless == False: self.parent.mixer_write("ACTN=stop%s\nend\n" % self.playername) self.digiprogress_f = False self.other_player_initiated = False self.crossfader_initiated = False def set_fade_mode(self, mode): if self.parent.simplemixer: mode = 0 self.parent.mixer_write("FADE=%d\nACTN=fademode_%s\nend\n" % (mode, self.playername)) def player_restart(self): # remember which player started last so we can decide on metadata print "player_restart %s" % self.playername self.parent.last_player = self.playername source_remove(self.timeout_source_id) self.start_time = int (self.progressadj.get_value()) self.silence_count = 0 model = self.model_playing iter = self.iter_playing cuesheet = self.cuesheet = model.get_value(iter, 8) if cuesheet: print "There is a cuesheet" # Skip to first element that can be played. cuesheet.non_playing() element = self.element = cuesheet.element(self.start_time) if element: self.start_time = max(element.offset, self.start_time * 75) // 75 self.cuesheet_track_title = element.title self.cuesheet_track_performer = element.performer self.cuesheet_track_album = element.album self.music_filename = element.pathname self.gain = element.replaygain else: # Skip to end. self.element = cuesheet[-1] self.start_time = self.progressadj.props.upper self.progressadj.set_value(self.start_time) if self.parent.prefs_window.rg_adjust.get_active(): if self.gain == RGDEF: self.gain = self.parent.prefs_window.rg_defaultgain.get_value() self.gain += self.parent.prefs_window.rg_boost.get_value() print "final gain value of %f dB" % self.gain else: self.gain = 0.0 print "not using replay gain" else: self.element = None self.cuesheet_track_title = self.cuesheet_track_performer = self.cuesheet_track_album = None self.parent.mixer_write("PLRP=%s\nSEEK=%d\nACTN=play%s\nend\n" % ( self.music_filename, self.start_time, self.playername)) while 1: line = self.parent.mixer_read() if line.startswith("context_id="): self.player_cid = int(line[11:-1]) break if line == "": self.player_cid = -1 break if self.player_cid == -1: print "player startup was unsuccessful for", self.music_filename return False print "player context id is %d\n" % self.player_cid # Restart a callback to update the progressbar. self.timeout_source_id = timeout_add( PROGRESS_TIMEOUT, self.cb_play_progress_timeout, self.player_cid) self.parent.send_new_mixer_stats() return True def next_real_track(self, i): if i == None: return None m = self.model_playing while 1: i = m.iter_next(i) if i is None: return None if m.get_value(i, 0)[0] != ">": return i def first_real_track(self): m = self.model_playing i = m.get_iter_first() while 1: if i == None: return None if m.get_value(i, 0)[0] != ">": return i i = m.get_iter_next(i) def invoke_end_of_track_policy(self, mode_text=None): # This is where we implement the playlist modes for the most part. if mode_text is None: model = self.pl_mode.get_model() iter = self.pl_mode.get_active_iter() mode_text = model.get_value(iter, 0) if self.is_playing == False: print "Assertion failed in: invoke_end_of_track_policy" return if mode_text == N_('Manual'): # For Manual mode just stop the player at the end of the track. print "Stopping in accordance with manual mode" self.stop.clicked() elif mode_text == N_('Play All'): if self.music_filename == "": self.handle_playlist_control() else: self.next.clicked() treeselection = self.treeview.get_selection() if self.is_playing == False: treeselection.select_path(0) # park on the first menu item elif mode_text == N_('Loop All') or mode_text == N_('Cue Up') or \ mode_text == N_('Fade Over'): iter = self.next_real_track(self.iter_playing) if iter is None: iter = self.first_real_track() self.stop.clicked() if iter is not None: treeselection = self.treeview.get_selection() treeselection.select_iter(iter) if mode_text == N_('Loop All'): self.play.clicked() else: treeselection.select_path(0) elif mode_text == N_('Random'): # Not truly random. Effort is made to break the appearance of # having a set play order to a long term listener without # re-playing the same track too soon. self.stop.clicked() poolsize = len(self.liststore) // 10 if poolsize > 50: poolsize = 50 elif poolsize < 10: poolsize = 10 if poolsize > len(self.liststore): poolsize = len(self.liststore) if self.parent.server_window.is_streaming or \ self.parent.server_window.is_recording: fp = self.parent.files_played else: fp = self.parent.files_played_offline timestamped_pathnames = [] while not timestamped_pathnames: random_pathnames = [PlayerRow(*x).filename for x in random.sample(self.liststore, poolsize)] timestamped_pathnames = [(fp.get(pn, 0), pn) for pn in random_pathnames if pn] timestamped_pathnames.sort() try: least_recent_ts = timestamped_pathnames[0][0] except IndexError: print "cannot select from an empty playlist" return timestamped_pathnames = [x for x in timestamped_pathnames if x[0] == least_recent_ts] least_recent = random.choice(timestamped_pathnames)[1] for path, entry in enumerate(self.liststore): entry_filename = PlayerRow(*entry).filename if least_recent == entry_filename: break treeselection = self.treeview.get_selection() treeselection.select_path(path) self.play.clicked() elif mode_text == N_('External'): path = self.model_playing.get_path(self.iter_playing)[0] self.stop.clicked() next_track = self.external_pl.get_next() if next_track is None: print "playlist or directory has no more audio files - stopping" else: self.model_playing.insert_after(self.iter_playing, next_track) self.model_playing.remove(self.iter_playing) treeselection = self.treeview.get_selection() treeselection.select_path(path) self.play.clicked() elif mode_text == N_('Alternate') or mode_text == N_('Random Hop'): iter = self.next_real_track(self.iter_playing) if iter is None: iter = self.first_real_track() self.stop.clicked() treeselection = self.treeview.get_selection() if iter is not None: treeselection.select_iter(iter) else: treeselection.select_path(0) if self.playername == "left": self.parent.passright.clicked() other_player = self.parent.player_right elif self.playername == "right": self.parent.passleft.clicked() other_player = self.parent.player_left if mode_text == N_('Alternate'): other_player.play.clicked() elif mode_text == N_('Random Hop'): other_player.invoke_end_of_track_policy(N_('Random')) else: print 'handler missing for playlist mode: %s' % mode_text self.stop.clicked() def handle_playlist_control(self): treeselection = self.treeview.get_selection() model = self.model_playing iter = self.iter_playing control = model.get_value(iter, 0) print "control is", control if control == ">normalspeed": self.pbspeedzerobutton.clicked() self.next.clicked() if self.is_playing == False: treeselection.select_path(0) def x(control_type, open_auto_type): if control == ">%s" % control_type: print "player", self.playername, "stopping by playlist control" if (self.playername == "left" and \ self.parent.crossfade.get_value() < 50) or \ (self.playername == "right" and \ self.parent.crossfade.get_value() >= 50): self.parent.mic_opener.open_auto(open_auto_type) self.stop.clicked() if model.iter_next(iter): treeselection.select_iter(model.iter_next(iter)) else: treeselection.select_iter(model.get_iter_first()) x("stopplayer", "stop_control") x("stopplayer2", "stop_control2") if control == ">jumptotop": self.stop.clicked() treeselection.select_path(0) self.play.clicked() if control == ">announcement": dia = AnnouncementDialog(self, model, iter, "active") dia.present() self.stop.clicked() if model.iter_next(iter): treeselection.select_iter(model.iter_next(iter)) else: treeselection.select_iter(model.get_iter_first()) if control == ">crossfade": print "player", self.playername, "stopping, crossfade complete" self.stop.clicked() if model.iter_next(iter): treeselection.select_iter(model.iter_next(iter)) else: treeselection.select_path(0) if control == ">stopstreaming": self.next.clicked() self.parent.server_window.stop_streaming_all() if self.is_playing == False: treeselection.select_path(0) if control == ">stoprecording": self.next.clicked() self.parent.server_window.stop_recording_all() if self.is_playing == False: treeselection.select_path(0) if control == ">transfer": if self.playername == "left": otherplayer = self.parent.player_right self.parent.passright.clicked() elif self.playername == "right": otherplayer = self.parent.player_left self.parent.passleft.clicked() print "transferring to player", otherplayer.playername otherplayer.play.clicked() self.stop.clicked() if model.iter_next(iter): treeselection.select_iter(model.iter_next(iter)) else: treeselection.select_path(0) if control.startswith(">fade"): if control.endswith("e5"): self.set_fade_mode(1) elif control.endswith("e10"): self.set_fade_mode(2) self.next.clicked() self.set_fade_mode(0) if self.is_playing == False: treeselection.select_path(0) def get_pl_block_size(self, iter): use_controls = self.pl_mode.get_active() == 0 size = 0 speedfactor = self.pbspeedfactor while iter is not None: length = self.liststore.get_value(iter, 2) if length == -11 and use_controls: text = self.liststore.get_value(iter, 0) if text.startswith(""): text = text[3:-4] if text in (">stopplayer", ">stopplayer2", ">transfer", ">crossfade", ">announcement", ">jumptotop"): break if text == ">normalspeed": speedfactor = 1.0 if length >= 0: cuesheet = self.liststore.get_value(iter, 8) if cuesheet is not None: length = cuesheet.time_remaining(0.0) size += int(length / speedfactor) iter = self.liststore.iter_next(iter) return size def update_time_stats(self): """In playlist mode 0 the block times are calculated and displayed. Block times give the DJ an idea when the playlist will finish. """ if self.pl_mode.get_active() not in (0, 3, 4): return if self.player_is_playing: if self.cuesheet: tr = self.cuesheet.time_remaining(self.progressadj.value) \ / self.pbspeedfactor else: tr = int((self.max_seek - self.progressadj.value) / self.pbspeedfactor) model = self.model_playing iter = model.iter_next(self.iter_playing) tr += self.get_pl_block_size(iter) else: tr = 0 selection = self.treeview.get_selection() model, iter = selection.get_selected() if iter is None: if self.is_playing: bs = 0 else: iter = model.get_iter_first() bs = self.get_pl_block_size(iter) else: try: if model.get_value(iter, 0)[0:3] == "": bs = 0 else: bs = self.get_pl_block_size(iter) except Exception as e: print "Playlist data is fucked up", e bs = 0 bsm, bss = divmod(bs, 60) if self.is_playing: trm, trs = divmod(tr, 60) tm_end = time.localtime(int(time.time()) + tr) tm_end_h = tm_end[3] tm_end_m = tm_end[4] tm_end_s = tm_end[5] if bs == 0: self.statusbar_update("%s -%2d:%02d | %s %02d:%02d:%02d" % ( # TC: The remaining playlist time. _('Remaining'), trm, trs, # TC: The estimated finish time of the playlist. _('Finish'), tm_end_h, tm_end_m, tm_end_s)) else: self.statusbar_update( "%s -%2d:%02d | %s %02d:%02d:%02d | %s %2d:%02d" % ( _('Remaining'), trm, trs, _('Finish'), tm_end_h, tm_end_m, tm_end_s, _('Block size'), bsm, bss)) else: if bs == 0: self.statusbar_update("") else: bft = time.localtime(time.time() + bs) bf_h = bft[3] bf_m = bft[4] bf_s = bft[5] self.statusbar_update("%s %2d:%02d | %s %02d:%02d:%02d" % ( # TC: The play duration of the block of audio tracks. _('Block size'), bsm, bss, # TC: The estimated finish time of the playlist (ETA). _('Finish'), bf_h, bf_m, bf_s)) def statusbar_update(self, newtext): if newtext != self.oldstatusbartext: self.pl_statusbar.push(1, newtext) self.oldstatusbartext = newtext def check_mixer_signal(self): """The silence killer implementation for quiet endings.""" if self.parent.feature_set.get_active() and not self.progress_press \ and self.progressadj.upper - self.progress_current_figure \ < float(self.silence) and self.progressadj.upper > 10.0: if not self.mixer_signal_f.value and int(self.mixer_cid) == \ self.player_cid + 1 and \ self.parent.prefs_window.silence_killer.get_active() and \ self.eos_inspect() == False: print "termination by check mixer signal" pl_mode = self.pl_mode.get_active() if pl_mode == 7 or (pl_mode == 0 and self.fade_inspect()): if not self.other_player_initiated: if self.playername == "left": self.parent.player_right.play.clicked() else: self.parent.player_left.play.clicked() self.other_player_initiated = True # Now do the crossfade if not self.crossfader_initiated: self.parent.passbutton.clicked() self.crossfader_initiated = True desired_direction = (self.playername == "left") if desired_direction != self.parent.crossdirection: self.parent.passbutton.clicked() self.invoke_end_of_track_policy() @threadslock def cb_play_progress_timeout(self, cid): """The mover of the play progress bar among other things.""" if cid % 2 == 0: # player started at end of track self.invoke_end_of_track_policy() return False if self.reselect_cursor_please: treeselection = self.treeview.get_selection() (model, iter) = treeselection.get_selected() if iter is not None: self.treeview.scroll_to_cell(model.get_path(iter)[0], None, False) else: self.reselect_please = True self.reselect_cursor_please = False if self.reselect_please: print "Set cursor on track playing" # This code reselects the playing track after a drag operation. treeselection = self.treeview.get_selection() try: treeselection.select_iter(self.iter_playing) except: print "Iter was cancelled probably due to song dragging" self.reselect_please = False pl_mode = self.pl_mode.get_active() if self.progress_press == False: if self.runout.value and self.is_paused == False and \ self.mixer_cid.value > self.player_cid: self.gapless = True print "termination due to end of track" self.invoke_end_of_track_policy() self.gapless = False return False # Mid-track silence killer. if self.mixer_signal_f.value == False: self.silence_count += 1 if self.parent.feature_set.get_active() and \ self.silence_count >= 120 and \ self.playtime_elapsed.value > 15 and \ self.parent.prefs_window.bonus_killer.get_active(): print "termination due to excessive silence" if pl_mode == 7 or (pl_mode == 0 and self.fade_inspect()): if not self.other_player_initiated: if self.playername == "left": self.parent.player_right.play.clicked() else: self.parent.player_left.play.clicked() self.other_player_initiated = True # Now do the crossfade if not self.crossfader_initiated: self.parent.passbutton.clicked() self.crossfader_initiated = True desired_direction = (self.playername == "left") if desired_direction != self.parent.crossdirection: self.parent.passbutton.clicked() self.invoke_end_of_track_policy() return False else: self.silence_count = 0 if self.progress_current_figure != self.playtime_elapsed.value: # Code runs once a second. # Check whether a track is hitting a stream or being recorded. if self.stream.get_active() and ( self.parent.server_window.is_streaming or self.parent.server_window.is_recording) and ( (self.playername == "left" and self.parent.crossadj.value < 90) or (self.playername == "right" and self.parent.crossadj.value > 10)): # Log the time the file was last played. self.parent.files_played[self.music_filename] = time.time() else: self.parent.files_played_offline[self.music_filename ] = time.time() self.progress_current_figure = self.playtime_elapsed.value self.progressadj.set_value(self.playtime_elapsed.value) if self.max_seek == 0: self.progressadj.emit("value_changed") self.update_time_stats() else: # Cease running the timeout. It will not resume. return False if self.cuesheet: cuesheet = self.cuesheet rem = int(cuesheet.time_remaining(self.progress_current_figure)) current_element = cuesheet.element(self.progress_current_figure + 1) if self.element != current_element: print "Cuesheet bump" if cuesheet.next_element(self.element) != current_element or \ current_element is None: print "Cuesheet discontinuous" self.set_fade_mode(4) if current_element is not None: self.progressadj.set_value((current_element.offset + 38) // 75) self.player_restart() else: self.invoke_end_of_track_policy() self.set_fade_mode(0) return True else: print "cuesheet continuous" element = self.element = current_element self.cuesheet_track_title = element.title self.cuesheet_track_performer = element.performer self.cuesheet_track_album = element.album self.parent.send_new_mixer_stats() else: rem = self.progress_stop_figure - self.progress_current_figure if (rem == 5 or rem == 10) and not self.crossfader_initiated and not \ self.parent.simplemixer: next = self.model_playing.iter_next(self.iter_playing) if next is not None: nextval = self.model_playing.get_value(next, 0) else: nextval = "" if pl_mode == 0 and nextval.startswith(">"): if rem == 5 and nextval == ">fade5": fade = 1 elif rem == 10 and nextval == ">fade10": fade = 2 else: fade = 0 if (fade): self.set_fade_mode(fade) self.stop.clicked() treeselection = self.treeview.get_selection() next = self.model_playing.iter_next(next) if next is not None: path = self.model_playing.get_path(next) treeselection.select_path(path) self.play.clicked() else: treeselection.select_path(0) self.set_fade_mode(0) else: fade = self.pl_delay.get_active() if (fade == 1 and rem == 10) or (fade == 2 and rem == 5) or \ pl_mode in (3, 4, 6, 7, 8) or \ (pl_mode == 0 and self.islastinplaylist()): fade = 0 if fade: self.set_fade_mode(fade) self.invoke_end_of_track_policy() self.set_fade_mode(0) # Calclulate whether to sound the DJ alarm (end of music notification) if self.playername in ("left", "right"): if rem == 10 and self.progressadj.upper > 11 and \ self.alarm_cid != cid: # DJ Alarm is on and we are at the correct play position. # The alarm has not sounded yet. fader = "left" if self.parent.crossadj.value < 50.0 else "right" if self.playername == fader and (pl_mode in (3, 4) or (pl_mode == 0 and self.stop_inspect())): self.parent.freewheel_button.set_active(False) timeout_add(1000, self.deferred_alarm, self.parent.prefs_window.djalarm.get_active()) self.alarm_cid = cid # Check if the crossfade needs scheduling. if pl_mode == 7 or (pl_mode == 0 and self.fade_inspect()): eot_crosstime = int(self.progress_stop_figure) - \ self.parent.passspeed_adj.props.value - \ int(self.progress_current_figure) # Start other player. if not self.other_player_initiated and eot_crosstime <= 1: if self.playername == "left": self.parent.player_right.play.clicked() else: self.parent.player_left.play.clicked() self.other_player_initiated = True # Now do the crossfade if not self.crossfader_initiated and eot_crosstime <= 0: self.parent.passbutton.clicked() self.crossfader_initiated = True desired_direction = (self.playername == "left") if desired_direction != self.parent.crossdirection: self.parent.passbutton.clicked() return True @threadslock def deferred_alarm(self, make_sound): if make_sound: self.parent.alarm = True self.parent.send_new_mixer_stats() self.parent.tracks_finishing() return False def stop_inspect(self): stoppers = (">stopplayer", ">stopplayer2", ">announcement") horizon = (">transfer", ">crossfade", ">jumptotop") i = self.iter_playing m = self.model_playing while 1: i = m.iter_next(i) if i is None: return True v = m.get_value(i, 0) if v and v[0] != ">": return False if v in stoppers: return True if v in horizon: return False def fade_inspect(self): stoppers = (">crossfade") horizon = (">transfer", ">stopplayer", ">stopplayer2", ">announcement", ">jumptotop") i = self.iter_playing m = self.model_playing while 1: i = m.iter_next(i) if i is None: return False v = m.get_value(i, 0) if v and v[0] != ">": return False if v in stoppers: return True if v in horizon: return False def eos_inspect(self): # Returns true when playlist ended or stream disconnect is imminent. if self.pl_mode.get_active(): return False if self.islastinplaylist(): return True stoppers = (">stopstreaming", ) horizon = (">transfer", ">crossfade") i = self.iter_playing m = self.model_playing while 1: i = m.iter_next(i) if i is None: return True v = m.get_value(i, 0) if v and v[0] != ">": return False if v in stoppers: return True if v in horizon: return False def islastinplaylist(self): iter = self.model_playing.iter_next(self.iter_playing) if iter is None: return True else: return False def arrow_up(self): treeselection = self.treeview.get_selection() (model, iter) = treeselection.get_selected() if iter == None: print "Nothing is selected" else: path = model.get_path(iter) if path[0]: other_iter = model.get_iter(path[0]-1) self.liststore.swap(iter, other_iter) self.treeview.scroll_to_cell(path[0]-1, None, False) def arrow_down(self): treeselection = self.treeview.get_selection() (model, iter) = treeselection.get_selected() if iter == None: print "Nothing is selected" else: path = model.get_path(iter) try: other_iter = model.get_iter(path[0]+1) self.liststore.swap(iter, other_iter) self.treeview.scroll_to_cell(path[0]+1, None, False) except ValueError: pass def advance(self): #self.set_fade_mode(self.pl_delay.get_active()) if self.is_playing: self.parent.mic_opener.open_auto("advance") path = self.model_playing.get_path(self.iter_playing)[0]+1 self.stop.clicked() treeselection = self.treeview.get_selection() treeselection.select_path(path) self.treeview.scroll_to_cell(path, None, False) else: self.parent.mic_opener.close_all() self.play.clicked() #self.set_fade_mode(0) def callback(self, widget, data): if data == "pbspeedzero": self.pbspeedbar.set_value(64.0) if data == "Arrow Up": self.arrow_up() if data == "Arrow Dn": self.arrow_down() if data == "Stop": self.handle_stop_button(widget) if data == "Next": if self.is_playing: path = self.model_playing.get_path(self.iter_playing)[0]+1 if self.is_paused: self.stop.clicked() try: self.model_playing.get_iter(path) except: self.stop.clicked() return treeselection = self.treeview.get_selection() treeselection.select_path(path) self.new_title = True self.play.clicked() if data == "Prev": if self.is_playing: treeselection = self.treeview.get_selection() path = self.model_playing.get_path(self.iter_playing) if self.is_paused: self.stop.clicked() treeselection.select_path(path[0]-1) self.new_title = True self.play.clicked() # This is for adding files to the playlist using the file requester. if data == "Add Files": if self.showing_file_requester == False: if self.playername == "left": # TC: File dialog title text. filerqtext = _('Add music to left playlist') elif self.playername == "right": # TC: File dialog title text. filerqtext = _('Add music to right playlist') else: filerqtext = _('Add background music') self.filerq = gtk.FileChooserDialog(filerqtext + PM.title_extra, None, gtk.FILE_CHOOSER_ACTION_OPEN, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) self.filerq.set_select_multiple(True) self.filerq.set_current_folder( str(self.file_requester_start_dir)) self.filerq.add_filter(self.plfilefilter_all) self.filerq.add_filter(self.plfilefilter_playlists) self.filerq.add_filter(self.plfilefilter_media) self.filerq.set_filter(self.plsave_filtertype) # TC: File filter text. frame = gtk.Frame(" %s " % _('Supported Media Formats')) box = gtk.HBox() box.set_border_width(3) frame.add(box) entry = gtk.Entry() entry.unset_flags(gtk.CAN_FOCUS) entry.set_has_frame(False) text = "*" + ", *".join(supported.media) entry.set_text(text) entry.show() box.add(entry) box.show() self.filerq.set_extra_widget(frame) self.filerq.connect("response", self.file_response) self.filerq.connect("destroy", self.file_destroy) self.filerq.show() self.showing_file_requester = True else: self.filerq.present() def file_response(self, dialog, response_id): chosenfiles = self.filerq.get_filenames() if chosenfiles: self.file_requester_start_dir.set_text( os.path.split(chosenfiles[0])[0]) self.plsave_filtertype = self.filerq.get_filter() self.filerq.destroy() if response_id != gtk.RESPONSE_ACCEPT: return gen = self.filter_allowed_controls(self.get_elements_from(chosenfiles)) idle_add(self.drag_data_received_data_idle, self.liststore, None, gen) def filter_allowed_controls(self, items): """Interlude playlist must not contain certain playlist controls.""" if self.playername != "interlude": for each in items: yield each return for each in items: if each[0] not in (">transfer", ">crossfade"): yield each def file_destroy(self, widget): self.showing_file_requester = False def plfile_new_savetype(self, widget): self.plsave_filetype = self.pltreeview.get_selection( ).get_selected_rows()[1][0][0] # TC: Expander text "Select File Type (.pls)" for the pls file type. self.expander.set_label(_('Select File Type') + " (" + self.playlisttype_extension[self.plsave_filetype][0] + ")") def plfile_response(self, dialog, response_id): self.plsave_filtertype = dialog.get_filter() self.plsave_open = self.expander.get_expanded() self.plsave_folder = dialog.get_current_folder() if response_id == gtk.RESPONSE_ACCEPT: chosenfile = self.plfilerq.get_filename() self.plfilerq.destroy() if response_id != gtk.RESPONSE_ACCEPT: return main, ext = os.path.splitext(chosenfile) ext = ext.lower() if self.plsave_filetype == 0: if not ext in supported.playlists: main += ext ext = ".m3u" # default to m3u playlist format else: t = self.plsave_filetype - 1 useext = supported.playlists[t] others = list(supported.playlists) del others[t] if ext != useext: if not ext in others: main += ext ext = useext chosenfile = main + ext if ext != ".xspf": # Filter out playlist controls. data = [x for x in self.liststore if x[0][0] != ">" and x[2] >= 0] else: data = self.liststore print "Chosenfile is", chosenfile try: with open(chosenfile, "w") as h: if ext in (".m3u", ".m3u8"): if ext == ".m3u": proc = lambda x: x.decode("UTF-8").encode("ISO8859-1", "replace") else: proc = lambda x: x self.write_m3u_playlist(h, data, proc) elif ext == ".pls": self.write_pls_playlist(h, data) elif ext == ".xspf": self.write_xspf_playlist(h, data) except IOError: print "problem writing out playlist file" def write_m3u_playlist(self, h, data, proc): h.write("#EXTM3U\r\n") for each in data: h.write("#EXTINF:%d,%s\r\n" % (each[2], proc(each[3]))) h.write("file://" + urllib.quote(each[1]) + "\r\n") def write_pls_playlist(self, h, data): h.write("[playlist]\r\nNumberOfEntries=%d\r\n\r\n" % len(data)) for i in range(1, len(data) + 1): each = data[i - 1] h.write("File%d=%s\r\n" % (i, each[1])) h.write("Title%d=%s\r\n" % (i, each[3])) h.write("Length%d=%d\r\n\r\n" % (i, each[2])) h.write("Version=2\r\n") def write_xspf_playlist(self, h, data): doc = mdom.getDOMImplementation().createDocument( 'http://xspf.org/ns/0/', 'playlist', None) playlist = doc.documentElement playlist.setAttribute('version', '1') playlist.setAttribute('xmlns', 'http://xspf.org/ns/0/') playlist.setAttribute('xmlns:idjc', 'http://idjc.sourceforge.net/ns/') trackList = doc.createElement('trackList') playlist.appendChild(trackList) for each in data: row = PlayerRow(*each) track = doc.createElement('track') trackList.appendChild(track) if row.rsmeta.startswith(">"): extension = doc.createElement('extension') track.appendChild(extension) extension.setAttribute( 'application', 'http://idjc.sourceforge.net/ns/') pld = doc.createElementNS( 'http://idjc.sourceforge.net/ns/', 'idjc:pld') extension.appendChild(pld) for field, value in zip(row._fields, row): if isinstance(value, (str, int, float)): pld.setAttribute(field, str(value)) else: location = doc.createElement('location') track.appendChild(location) locationText = doc.createTextNode( "file://" + urllib.quote(each[1])) location.appendChild(locationText) if each[6]: creator = doc.createElement('creator') track.appendChild(creator) creatorText = doc.createTextNode(each[6]) creator.appendChild(creatorText) if each[5]: title = doc.createElement('title') track.appendChild(title) titleText = doc.createTextNode(each[5]) title.appendChild(titleText) if each[9]: album = doc.createElement('album') track.appendChild(album) albumText = doc.createTextNode(each[9]) album.appendChild(albumText) duration = doc.createElement('duration') track.appendChild(duration) durationText = doc.createTextNode(str(each[2] * 1000)) duration.appendChild(durationText) xmltext = doc.toxml("UTF-8").replace("><", ">\n<").splitlines() spc = "" for i in range(len(xmltext)): if xmltext[i][1] == "/": spc = spc[2:] if len(xmltext[i]) < 3 or xmltext[i].startswith(" 0: if self.digiprogress_type == 0 or self.player_is_playing == \ False: count = int(progress.value) else: count = self.max_seek - int(progress.value) else: count = self.progress_current_figure hours = int(count / 3600) count = count - (hours * 3600) minutes = count / 60 seconds = count - (minutes * 60) if self.digiprogress_type == 0: self.digiprogress.set_text("%d:%02d:%02d" % ( hours, minutes, seconds)) else: if self.max_seek != 0: self.digiprogress.set_text(" -%02d:%02d " % ( minutes, seconds)) else: self.digiprogress.set_text(" -00:00 ") if self.handle_motion_as_drop: self.handle_motion_as_drop = False if self.player_restart() == False: self.next.clicked() else: if self.pause.get_active(): self.pause.set_active(False) def digiprogress_click(self): self.digiprogress_type = not self.digiprogress_type if not self.digiprogress_f: if self.digiprogress_type == 0: self.digiprogress.set_text("0:00:00") else: self.digiprogress.set_text(" -00:00 ") else: self.cb_progress(self.progressadj) def show_replaygain_markers(self, show): if show: self.treeview.insert_column(self.rgtvcolumn, 0) else: self.treeview.remove_column(self.rgtvcolumn) def cb_event(self, widget, event, callback_data): # Handle click to the play progress indicator if callback_data == "DigitalProgressPress": if event.button == 1: self.digiprogress_click() if event.button == 3: self.parent.app_menu.popup( None, None, None, event.button, event.time) return True if event.button == 1: # Handle click to the play progress bar if callback_data == "ProgressPress": self.progress_press = True if self.timeout_source_id: source_remove(self.timeout_source_id) elif callback_data == "ProgressRelease": self.progress_press = False if self.player_is_playing: self.progress_current_figure = self.progressadj.get_value() self.handle_motion_as_drop = True idle_add(self.player_progress_value_changed_emitter) return False @threadslock def player_progress_value_changed_emitter(self): self.progressadj.emit("value_changed") return False def cb_menu_select(self, widget, data): print "The %s was chosen from the %s menu" % (data, self.playername) def delete_event(self, widget, event, data=None): return False def get_elements_from(self, pathnames): self.no_more_files = False l = len(pathnames) if l == 1: ext = os.path.splitext(pathnames[0])[1] if ext in (".cue", ".txt"): return self.get_elements_from_cue(pathnames[0]) elif ext in (".m3u", ".m3u8"): return self.get_elements_from_m3u(pathnames[0]) elif ext == ".pls": return self.get_elements_from_pls(pathnames[0]) elif ext == ".xspf": return self.get_elements_from_xspf(pathnames[0]) elif os.path.isdir(pathnames[0]): return self.get_elements_from_directory(pathnames[0], 2) for each in pathnames: if not os.path.isdir(each): break else: return self.get_elements_from_directories(pathnames) return self.get_elements_from_chosen(pathnames) def get_elements_from_chosen(self, chosenfiles): for each in chosenfiles: meta = self.get_media_metadata(each) if meta: yield meta def get_elements_from_cue(self, filename): cuesheet_entry = self.make_cuesheet_playlist_entry(filename) pathnames = list(x.pathname for x in cuesheet_entry.cuesheet if x.index == 1) # Multi file cue sheet adds as content files. if len(set(pathnames)) > 1: for each in pathnames: meta = self.get_media_metadata(each) if meta: yield meta else: if any(pathnames): yield cuesheet_entry def get_elements_from_directories(self, dirpaths): for chosendir in dirpaths: for element in self.get_elements_from_directory(chosendir, 2): yield element def get_elements_from_directory(self, chosendir, depth=1, visited=None): depth -= 1 if visited is None: visited = set() chosendir = os.path.realpath(chosendir) if chosendir in visited or not os.path.isdir(chosendir): return else: visited.add(chosendir) directories = set() print chosendir files = os.listdir(chosendir) files.sort() for filename in files: pathname = "/".join((chosendir, filename)) if os.path.isdir(pathname): #if os.path.realpath(pathname) == pathname: if not filename.startswith("."): directories.add(filename) else: meta = self.get_media_metadata(pathname) if meta: yield meta if depth: for subdir in directories: print "examining", "/".join((chosendir, subdir)) gen = self.get_elements_from_directory("/".join( (chosendir, subdir)), depth, visited) for meta in gen: yield meta def get_elements_from_m3u(self, filename): try: file = open(filename, "r") data = file.read().strip() file.close() except IOError: print "Problem reading file", filename return basepath = os.path.split(filename)[0] + "/" data = data.splitlines() for line, each in enumerate(data): if each[0] == "#": continue if each[0] != "/": if each.startswith("file://"): host, abspathname = each[7:].split("/", 1) if host not in ("", "localhost", "127.0.0.1", "::1"): continue each = "/" + urllib.unquote(abspathname) else: each = basepath + each # handle special case of a single element referring to a directory if line == 0 and len(data) == 1 and os.path.isdir(each): gen = self.get_elements_from_directory(each) for meta in gen: yield meta return meta = self.get_media_metadata(each) if meta: yield meta line += 1 def get_elements_from_pls(self, filename): import ConfigParser cfg = ConfigParser.RawConfigParser() try: cfg.readfp(open(filename)) except IOError: print "Problem reading file" return if cfg.sections() != ['playlist']: print "wrong number of sections in pls file" return if cfg.getint('playlist', 'Version') != 2: print "can handle version 2 pls playlists only" return try: n = cfg.getint('playlist', 'NumberOfEntries') except ConfigParser.NoOptionError: print "NumberOfEntries is missing from playlist" return except ValueError: print "NumberOfEntries is not an int" for i in range(1, n + 1): try: path = cfg.get('playlist', 'File%d' % i) except: print "Problem getting file path from playlist" else: if os.path.isfile(path): meta = self.get_media_metadata(path) if meta: yield meta def get_elements_from_xspf(self, filename): class BadXspf(ValueError): pass class GotLocation(Exception): pass try: baseurl = [] try: dom = mdom.parse(filename) except: raise BadXspf if dom.hasChildNodes() and len(dom.childNodes) == 1 and \ dom.documentElement.nodeName == u'playlist': playlist = dom.documentElement else: raise BadXspf if playlist.namespaceURI != u"http://xspf.org/ns/0/": raise BadXspf try: v = int(playlist.getAttribute('version')) except: raise BadXspf if v < 0 or v > 1: print "only xspf playlist versions 0 and 1 supported" raise BadXspf del v # obtain base URLs for relative URLs encountered in trackList # only one location tag is allowed locations = [x for x in playlist.childNodes if x.nodeName == u"location"] if len(locations) == 1: url = locations[0].childNodes[0].wholeText if url.startswith(u"file:///"): baseurl.append(url) elif locations: raise BadXspf def append_baseurl(fname): baseurl.append(u"file://" + urllib.quote(os.path.split( fname)[0].decode("ASCII") + u"/")) for each in (os.path.realpath(filename), filename): append_baseurl(each) if baseurl[-1] == baseurl[-2]: del baseurl[-1] trackLists = playlist.getElementsByTagName('trackList') if len(trackLists) != 1: raise BadXspf trackList = trackLists[0] if trackList.parentNode != playlist: raise BadXspf tracks = trackList.getElementsByTagName('track') for track in tracks: if track.parentNode != trackList: raise BadXspf locations = track.getElementsByTagName('location') try: for location in locations: for base in baseurl: url = urllib.unquote(urllib.basejoin(base, location.firstChild.wholeText).encode("ASCII")) meta = self.get_media_metadata(url) if meta: yield meta raise GotLocation # Support namespaced pld tag for literal playlist data. # This is only used for data such as playlist controls. extensions = track.getElementsByTagName('extension') for extension in extensions: if extension.getAttribute("application") == \ "http://idjc.sourceforge.net/ns/": customtags = extension.getElementsByTagNameNS( "http://idjc.sourceforge.net/ns/", "pld") for tag in customtags: try: literal_entry = NOTVALID._replace(**dict(( k, type(getattr(NOTVALID, k))( tag.attributes.get(k).nodeValue)) for k in tag.attributes.keys())) except Exception, e: print e pass else: yield literal_entry raise GotLocation except GotLocation: pass return except BadXspf: print "could not parse playlist", filename return def drag_data_delete(self, treeview, context): if context.action == gtk.gdk.ACTION_MOVE: treeselection = treeview.get_selection() model, iter = treeselection.get_selected() data = model.get_value(iter, 0) if data[:3] == "": self.iter_playing = 0 self.stop.clicked() def drag_data_get_data(self, treeview, context, selection, target_id, etime): treeselection = treeview.get_selection() model, iter = treeselection.get_selected() if model.get_value(iter, 1) != "": data = "file://" + model.get_value(iter, 1) else: data = "idjcplayercontrol://" + "+".join( str(model.get_value(iter, x)) for x in (0, 2, 3, 4)) print "data for drag_get =", data selection.set(selection.target, 8, data) self.reselect_please = True return True def drag_data_received_data(self, treeview, context, x, y, dragged, info, etime): if info != 0: text = str(dragged.data) if text[:20] == "idjcplayercontrol://": newrow = NOTVALID._replace(**dict(zip( "rsmeta length meta encoding".split(), (x[0](x[1]) for x in zip((str, int, str, str), text[20:].split("+")))))) drop_info = treeview.get_dest_row_at_pos(x, y) model = treeview.get_model() if drop_info == None: model.append(newrow) else: path, position = drop_info iter_ = model.get_iter(path) if(position == gtk.TREE_VIEW_DROP_BEFORE or position == \ gtk.TREE_VIEW_DROP_INTO_OR_BEFORE): model.insert_before(iter_, newrow) else: model.insert_after(iter_, newrow) if context.action == gtk.gdk.ACTION_MOVE: context.finish(True, True, etime) else: if context.action == gtk.gdk.ACTION_MOVE: context.finish(True, True, etime) elements = self.get_elements_from([urllib.unquote(t[7:]) for t in dragged.data.strip().splitlines() if t.startswith("file://")]) model = treeview.get_model() try: path, pos = treeview.get_dest_row_at_pos(x, y) except (ValueError, TypeError): idle_add(self.drag_data_received_data_idle, model, None, elements) else: for element in elements: iter_ = model.get_iter(path) if pos in (gtk.TREE_VIEW_DROP_BEFORE, gtk.TREE_VIEW_DROP_INTO_OR_BEFORE): iter_ = model.insert_before(iter_, element) else: iter_ = model.insert_after(iter_, element) idle_add(self.drag_data_received_data_idle, model, iter_, elements) break else: treeselection = treeview.get_selection() model, iter_ = treeselection.get_selected() drop_info = treeview.get_dest_row_at_pos(x, y) if drop_info == None: self.liststore.move_before(iter_, None) else: path, position = drop_info dest_iter = model.get_iter(path) if(position == gtk.TREE_VIEW_DROP_BEFORE or position == \ gtk.TREE_VIEW_DROP_INTO_OR_BEFORE): self.liststore.move_before(iter_, dest_iter) else: self.liststore.move_after(iter_, dest_iter) if context.action == gtk.gdk.ACTION_MOVE: context.finish(False, False, etime) return True @threadslock def drag_data_received_data_idle(self, model, iter_, elements, timestamp=None, reselect=True): if timestamp is not False: if timestamp is not None: if time.time() > timestamp + 4: self.fill_stopper.show() timestamp = False else: timestamp = time.time() self.fill_stopper.register(elements) if self.no_more_files: self.no_more_files = False else: for element in elements: if iter_ is None: iter_ = model.append(element) reselect = False else: iter_ = model.insert_after(iter_, element) if not self.fill_stopper.check(elements): elements = [] idle_add(self.drag_data_received_data_idle, model, iter_, elements, timestamp, reselect) break else: self.fill_stopper.unregister(elements) self.reselect_please = reselect return False sourcetargets = [ ('MY_TREE_MODEL_ROW', gtk.TARGET_SAME_WIDGET, 0), ('text/plain', 0, 1), ('TEXT', 0, 2), ('STRING', 0, 3), ] droptargets = [ ('MY_TREE_MODEL_ROW', gtk.TARGET_SAME_WIDGET, 0), ('text/plain', 0, 1), ('TEXT', 0, 2), ('STRING', 0, 3), ('text/uri-list', 0, 4) ] def _cb_cuesheet_item(self, widget, cue_model, cue_path): treeselection = self.treeview.get_selection() (model, iter) = treeselection.get_selected() if self.is_playing: self.stop.clicked() self.max_seek = model.get_value(iter, 2) self.progressadj.set_upper(self.max_seek) self.progressadj.set_value(cue_model[cue_path].offset // 75 + 1) self.play.clicked() def cb_doubleclick(self, treeview, path, tvcolumn, user_data): if self.is_playing: self.new_title = True self.play.clicked() else: self.play.clicked() def cb_selection_changed(self, treeselection): self.cuesheet_playlist.hide() self.cuesheet_playlist.treeview.set_model(None) model, iter = treeselection.get_selected() if iter: row = PlayerRow._make(self.liststore[model.get_path(iter)[0]]) if row.cuesheet: self.cuesheet_playlist.treeview.set_model(row.cuesheet) self.cuesheet_playlist.show() self.update_time_stats() def cb_playlist_changed(self, treemodel, path, iter = None): self.playlist_changed = True # used by the request system def menu_activate(self, widget, event): if event.type == gtk.gdk.BUTTON_PRESS and event.button == 3: self.menu_model = self.treeview.get_model() row_info = self.treeview.get_dest_row_at_pos(int(event.x + 0.5), int(event.y + 0.5)) if row_info: sens = True path, position = row_info selection = self.treeview.get_selection() selection.select_path(path) self.menu_iter = self.menu_model.get_iter(path) pathname = self.menu_model.get_value(self.menu_iter, 1) self.item_tag.set_sensitive( MutagenGUI.is_supported(pathname) != False) else: pathname = "" self.menu_iter = None sens = False self.item_duplicate.set_sensitive(sens) self.remove_this.set_sensitive(sens) self.remove_from_here.set_sensitive(sens) self.remove_to_here.set_sensitive(sens) model = self.treeview.get_model() if model.get_iter_first() == None: sens2 = False else: sens2 = True self.pl_menu_item.set_sensitive(sens2) self.playlist_save.set_sensitive(sens2) self.playlist_empty.set_sensitive(sens2) if self.pl_mode.get_active() != 0: self.pl_menu_control.set_sensitive(False) else: self.pl_menu_control.set_sensitive(True) if self.playername == "interlude": sens3 = False sens4 = False else: sens4 = True if self.playername == "left": tv = self.parent.player_right.treeview.get_selection() elif self.playername == "right": tv = self.parent.player_left.treeview.get_selection() model, iter = tv.get_selected() sens3 = True if iter else False self.copy_append_cursor.set_sensitive(sens3) self.copy_prepend_cursor.set_sensitive(sens3) self.transfer_append_cursor.set_sensitive(sens3) self.transfer_prepend_cursor.set_sensitive(sens3) self.playlist_copy.set_visible(sens2 and sens4) self.playlist_transfer.set_visible(sens2 and sens4) widget.popup(None, None, None, event.button, event.time) return True return False def cb_plexpander(self, widget, param_spec): if widget.get_expanded(): self.plframe.show() else: self.plframe.hide() def menuitem_response(self, widget, text): print "The %s menu option was chosen" % text model = self.menu_model iter = self.menu_iter if text == "Announcement Control" and iter is not None and \ model.get_value(iter, 0) == ">announcement": # modify existing announcement dialog dia = AnnouncementDialog(self, model, iter, "delete_modify") dia.show() return dict = { "Stop Control" : ">stopplayer", "Stop Control 2" : ">stopplayer2", "Transfer Control" : ">transfer", "Crossfade Control" : ">crossfade", "Stream Disconnect Control" : ">stopstreaming", "Stop Recording Control" : ">stoprecording", "Normal Speed Control" : ">normalspeed", "Announcement Control" : ">announcement", "Fade 10" : ">fade10", "Fade 5" : ">fade5", "Fade none" : ">fadenone", "Jump To Top Control" : ">jumptotop", } if dict.has_key(text) and self.pl_mode.get_active() == 0: for ctl in self.filter_allowed_controls(((dict[text], ), )): if iter is not None: iter = model.insert_after(iter) else: iter = model.append() model.set_value(iter, 0, ctl[0]) model.set_value(iter, 1, "") model.set_value(iter, 2, -11) model.set_value(iter, 3, "") model.set_value(iter, 4, "") model.set_value(iter, 5, "") model.set_value(iter, 6, "") self.treeview.get_selection().select_iter(iter) if text == "Announcement Control": # brand new announcement dialog dia = AnnouncementDialog(self, model, iter, "initial") dia.show() return if text == "MetaTag": try: pathname = model.get_value(iter, 1) except TypeError: pass else: MutagenGUI(pathname, model.get_value(iter, 4) , self.parent) if text == "Add File": self.add.clicked() if text == "Playlist Save": if self.showing_pl_save_requester == False: if self.playername == "left": filerqtext = _('Save left playlist') elif self.playername == "right": filerqtext = _('Save right playlist') else: filerqtext = _('Save background playlist') vbox = gtk.VBox() self.expander = gtk.Expander() self.expander.connect("notify::expanded", self.cb_plexpander) vbox.add(self.expander) self.expander.show() self.plframe = gtk.Frame() self.plliststore = gtk.ListStore(str, str) for row in self.playlisttype_extension: self.plliststore.append(row) self.pltreeview = gtk.TreeView(self.plliststore) self.plframe.add(self.pltreeview) self.pltreeview.show() self.pltreeview.set_rules_hint(True) cellrenderer1 = gtk.CellRendererText() self.pltreeviewcol1 = gtk.TreeViewColumn( _('File Type'), cellrenderer1, text = 0) self.pltreeviewcol1.set_expand(True) cellrenderer2 = gtk.CellRendererText() # TC: File extension. self.pltreeviewcol2 = gtk.TreeViewColumn( _('Extension'), cellrenderer2, text = 1) self.pltreeview.append_column(self.pltreeviewcol1) self.pltreeview.append_column(self.pltreeviewcol2) self.pltreeview.connect( "cursor-changed", self.plfile_new_savetype) self.pltreeview.set_cursor(self.plsave_filetype) if (self.plsave_open): self.expander.set_expanded(True) vbox.add(self.plframe) self.plfilerq = gtk.FileChooserDialog(filerqtext + PM.title_extra, None, gtk.FILE_CHOOSER_ACTION_SAVE, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) self.plfilerq.set_current_folder(self.home) self.plfilerq.add_filter(self.plfilefilter_all) self.plfilerq.add_filter(self.plfilefilter_playlists) self.plfilerq.set_filter(self.plsave_filtertype) self.plfilerq.set_extra_widget(vbox) if self.plsave_folder is not None: self.plfilerq.set_current_folder(self.plsave_folder) if self.plsave_filetype == 0: self.plfilerq.set_current_name("idjcplaylist.m3u") else: self.plfilerq.set_current_name("idjcplaylist") self.plfilerq.connect("response", self.plfile_response) self.plfilerq.connect("destroy", self.plfile_destroy) self.plfilerq.show() self.showing_pl_save_requester = True else: self.plfilerq.present() if text == "Remove All": if self.is_playing: self.stop.clicked() self.no_more_files = True self.liststore.clear() if text == "Remove This" and iter != None: name = model.get_value(iter, 0) if name[:3] == "": self.stop.clicked() self.liststore.remove(iter) if text == "Remove From Here" and iter != None: path = model.get_path(iter) try: while 1: iter = model.get_iter(path) if model.get_value(iter, 0)[:3] == "": self.stop.clicked() self.no_more_files = True self.liststore.remove(iter) except: print "Nothing more to delete" if text == "Remove To Here" and iter != None: self.no_more_files = True path = model.get_path(iter)[0] -1 while path >= 0: iter = model.get_iter(path) if model.get_value(iter, 0)[:3] == "": self.stop.clicked() self.liststore.remove(iter) path = path -1 if text == "Duplicate" and iter != None: pathname, cuesheet = model.get(iter, 1, 8) if cuesheet is not None: row = self.make_cuesheet_playlist_entry(pathname) else: row = list(model[model.get_path(iter)]) if row[0][:3] == "": # strip off any bold tags row[0] = row[0][3:-4] model.insert_after(iter, row) if text == "Playlist Exchange": assert(self.playername != "interlude") self.no_more_files = True if self.playername == "left": opposite = self.parent.player_right elif self.playername == "right": opposite = self.parent.player_left self.stop.clicked() opposite.stop.clicked() i = 0 try: while 1: self.templist.append(self.liststore[i]) i = i + 1 except IndexError: pass self.liststore.clear() i = 0 try: while 1: self.liststore.append(opposite.liststore[i]) i = i + 1 except IndexError: pass opposite.liststore.clear() i = 0 try: while 1: opposite.liststore.append(self.templist[i]) i = i + 1 except IndexError: pass self.templist.clear() if text == "Copy Append": self.copy_playlist("end") if text == "Transfer Append": self.copy_playlist("end") self.stop.clicked() self.liststore.clear() if text == "Copy Prepend": self.copy_playlist("start") if text == "Transfer Prepend": self.copy_playlist("start") self.stop.clicked() self.liststore.clear() if text == "Copy Append Cursor": self.copy_playlist("after") if text == "Transfer Append Cursor": self.copy_playlist("after") self.stop.clicked() self.liststore.clear() if text == "Copy Prepend Cursor": self.copy_playlist("before") if text == "Transfer Prepend Cursor": self.copy_playlist("before") self.stop.clicked() self.liststore.clear() if self.player_is_playing: self.reselect_please = True # Cursor placement on current track. def stripbold(self, playlist_item): copy = list(playlist_item) if copy[0][:3] == "": copy[0] = copy[0][3:-4] return copy def copy_playlist(self, dest): assert(self.playername != "interlude") if self.playername == "left": other = self.parent.player_right elif self.playername == "right": other = self.parent.player_left i = 0 try: if dest == "start": while 1: other.liststore.insert(i, self.stripbold(self.liststore[i])) i = i + 1 if dest == "end": while 1: other.liststore.append(self.stripbold(self.liststore[i])) i = i + 1 (model, iter) = other.treeview.get_selection().get_selected() if dest == "after": while 1: iter = other.liststore.insert_after( iter, self.stripbold(self.liststore[i])) i = i + 1 if dest == "before": while 1: other.liststore.insert_before( iter, self.stripbold(self.liststore[i])) i = i + 1 except IndexError: pass def cb_keypress(self, widget, event): # Handle shifted arrow keys for rearranging stuff in the playlist. if event.state & gtk.gdk.SHIFT_MASK: if event.keyval == 65362: self.arrow_up() return True if event.keyval == 65364: self.arrow_down() return True if event.keyval == 65361 and self.playername == "right": treeselection = widget.get_selection() s_model, s_iter = treeselection.get_selected() if s_iter is not None: name = s_model.get_value(s_iter, 0) if name[:3] == "": self.stop.clicked() otherselection = \ self.parent.player_left.treeview.get_selection() d_model, d_iter = otherselection.get_selected() row = list(s_model[s_model.get_path(s_iter)]) path = s_model.get_path(s_iter) s_model.remove(s_iter) treeselection.select_path(path) if d_iter is None: d_iter = d_model.append(row) else: d_iter = d_model.insert_after(d_iter, row) otherselection.select_iter(d_iter) self.parent.player_left.treeview.set_cursor( d_model.get_path(d_iter)) self.parent.player_left.treeview.scroll_to_cell( d_model.get_path(d_iter), None, False) return True if event.keyval == 65363 and self.playername == "left": treeselection = widget.get_selection() s_model, s_iter = treeselection.get_selected() if s_iter is not None: name = s_model.get_value(s_iter, 0) if name[:3] == "": self.stop.clicked() otherselection = \ self.parent.player_right.treeview.get_selection() d_model, d_iter = otherselection.get_selected() row = list(s_model[s_model.get_path(s_iter)]) path = s_model.get_path(s_iter) s_model.remove(s_iter) treeselection.select_path(path) if d_iter is None: d_iter = d_model.append(row) else: d_iter = d_model.insert_after(d_iter, row) otherselection.select_iter(d_iter) self.parent.player_right.treeview.set_cursor( d_model.get_path(d_iter)) self.parent.player_right.treeview.scroll_to_cell( d_model.get_path(d_iter), None, False) return True if event.keyval == 65361 and self.playername == "right": treeselection = self.parent.player_left.treeview.get_selection() model, iter = treeselection.get_selected() if iter is not None: self.parent.player_left.treeview.set_cursor( model.get_path(iter)) else: treeselection.select_path(0) self.parent.player_left.treeview.grab_focus() return True if event.keyval == 65363 and self.playername == "left": treeselection = self.parent.player_right.treeview.get_selection() model, iter = treeselection.get_selected() if iter is not None: self.parent.player_right.treeview.set_cursor( model.get_path(iter)) else: treeselection.select_path(0) self.parent.player_right.treeview.grab_focus() return True # Handle delete key press. if event.keyval == 65535 or event.keyval == 65439: # Remove entry on the playlist under the cursor. treeselection = widget.get_selection() model, iter = treeselection.get_selected() if iter is not None: path = model.get_path(iter) if path[0] > 0: prev = model.get_iter(path[0]-1) else: prev = None try: next = model.get_iter(path[0]+1) except: next = None name = model.get_value(iter, 0) if name[:3] == "": self.stop.clicked() self.liststore.remove(iter) if next is not None: treeselection.select_iter(next) widget.set_cursor(model.get_path(next)) self.treeview.scroll_to_cell( model.get_path(next), None, False) elif prev is not None: treeselection.select_iter(prev) widget.set_cursor(model.get_path(prev)) self.treeview.scroll_to_cell( model.get_path(prev), None, False) else: print "Playlist is empty!" return True if event.string =="\r": self.stop.clicked() self.play.clicked() return True if event.string == "": return False return True def rgrowconfig(self, tv_column, cell_renderer, model, iter): if self.exiting: return self.rowconfig(tv_column, cell_renderer, model, iter) cell_renderer.set_property("markup", " ") if model.get_value(iter, 0)[0] != ">": rg = model.get_value(iter, 7) if rg is not None: if rg == RGDEF: # Red triangle. cell_renderer.set_property("markup", '') elif rg.endswith(" RG"): # Small green bullet point. cell_renderer.set_property("markup", '') elif rg.endswith(" R128"): # Small blue bullet point. cell_renderer.set_property("markup", '') def playtimerowconfig(self, tv_column, cell_renderer, model, iter): if self.exiting: return playtime = model.get_value(iter, 2) self.rowconfig(tv_column, cell_renderer, model, iter) cell_renderer.set_property("xalign", 1.0) if playtime == -11: if model.get_value(iter, 0) == ">announcement": length = model.get_value(iter, 3)[2:6] if not length: length = "0000" if length == "0000": cell_renderer.set_property("text", "") else: if length[0] == "0": length = " " + length[1] + ":" + length[2:] else: length = length[:2] + ":" + length[2:] cell_renderer.set_property("text", length) else: cell_renderer.set_property("text", "") elif playtime == 0: cell_renderer.set_property("text", "? : ??") else: secs = playtime % 60 playtime -= secs mins = playtime / 60 text = "%d:%02d" % (mins, secs) cell_renderer.set_property("text", text) gray = gtk.gdk.color_parse("#BBB") # Class variable for use by rowconfig. control_cell_properties = { ">fade10": (("cell-background", "dark red"), ("background-gdk", gray), ("foreground", "dark red"), # TC: Playlist control. ("text", _('Fade 10s'))), ">fade5": (("cell-background", "dark red"), ("background-gdk", gray), ("foreground", "dark red"), # TC: Playlist control. ("text", _('Fade 5s'))), ">fadenone": (("cell-background", "dark red"), ("background-gdk", gray), ("foreground", "dark red"), # TC: Playlist control. ("text", _('No Fade'))), ">announcement": (("cell-background", "dark blue"), ("background-gdk", gray), ("foreground", "dark blue"),), ">normalspeed": (("cell-background", "dark green"), ("background-gdk", gray), ("foreground", "dark green"), # TC: Playlist control. ("text", _('>> Normal Speed <<'))), ">stopplayer": (("cell-background", "red"), ("background-gdk", gray), ("foreground", "red"), # TC: Playlist control. ("text", _('Player stop'))), ">stopplayer2": (("cell-background", "red"), ("background-gdk", gray), ("foreground", "red"), # TC: Playlist control. ("text", _('Player stop 2'))), ">jumptotop": (("cell-background", "dark magenta"), ("background-gdk", gray), ("foreground", "dark magenta"), # TC: Playlist control. ("text", _('Jump To Top'))), ">stopstreaming": (("cell-background", "black"), ("background-gdk", gray), ("foreground", "black"), # TC: Playlist control. ("text", _('Stop streaming'))), ">stoprecording": (("cell-background", "black"), ("background-gdk", gray), ("foreground", "black"), # TC: Playlist control. ("text", _('Stop recording'))), ">transfer": (("cell-background", "magenta"), ("background-gdk", gray), ("foreground", "magenta")), ">crossfade": (("cell-background", "blue"), ("background-gdk", gray), ("foreground", "blue")) } def rowconfig(self, tv_column, cell_renderer, model, iter): if self.exiting: return crprop = cell_renderer.set_property celltext = model.get_value(iter, 0) if celltext[:4] == ">": celltext = celltext[3:-4] if celltext[0] == ">": crprop("xalign", 0.45) crprop("ypad", 0) crprop("scale", 0.75) crprop("cell-background-set", True) crprop("background-set", True) crprop("foreground-set", True) if self.pl_mode.get_active() == 0: try: properties = self.control_cell_properties[celltext] except KeyError: pass else: for name, value in properties: crprop(name, value) if celltext == ">announcement": crprop("text", _('Announcement:') + " " + urllib.unquote( model.get_value(iter, 4))) if celltext == ">transfer": if self.playername == "left": # TC: Playlist control. crprop("text", _('>>> Transfer across >>>')) elif self.playername == "right": # TC: Playlist control. crprop("text", _('<<< Transfer across <<<')) if celltext == ">crossfade": if self.playername == "left": # TC: Playlist control. crprop("text", _('>>> Fade across >>>')) elif self.playername == "right": # TC: Playlist control. crprop("text", _('<<< Fade across <<<')) else: crprop("cell-background", "darkgray") crprop("background", "darkgray") crprop("foreground", "white") # TC: Playlist control. crprop("markup", "%s" % _("Ignored playlist control")) else: crprop("foreground-set", False) crprop("cell-background-set", False) crprop("background-set", False) crprop("scale", 1.0) crprop("xalign", 0.0) crprop("ypad", 2) def cb_playlist_delay(self, widget): print "inter track fade was changed" def cb_playlist_mode(self, widget): self.pl_delay.set_sensitive(self.pl_mode.get_active() in (0, 1, 2, 5)) if widget.get_active() in (0, 3, 4): self.update_time_stats() self.pl_statusbar.show() else: self.pl_statusbar.hide() if widget.get_active() == 5: self.external_pl.show() else: self.external_pl.hide() def popupwindow_populate(self, window, parentwidget, parent_x, parent_y): frame = gtk.Frame() frame.set_shadow_type(gtk.SHADOW_OUT) window.add(frame) frame.show() hbox = gtk.HBox() hbox.set_border_width(10) hbox.set_spacing(5) frame.add(hbox) image = gtk.Image() image.set_from_file(FGlobs.pkgdatadir / "icon.png") hbox.add(image) image.show() separator = gtk.VSeparator() hbox.add(separator) separator.show() vbox = gtk.VBox() vbox.set_spacing(3) hbox.add(vbox) vbox.show() hbox.show() trackscount = 0 tracknum = 0 if self.artist and self.title and self.album: tracktitle = "%s - %s" % (self.cuesheet_track_performer or self.artist, self.cuesheet_track_title or self.title) else: tracktitle = self.songname duration = 0 for each in self.liststore: if each[2] > 0: trackscount += 1 duration += each[2] if each[0][:3] == "": tracknum = trackscount if each[0] == ">announcement": duration += int(each[3][2:4]) * 60 + int(each[3][4:6]) if trackscount: duration, seconds = divmod(duration, 60) hours, minutes = divmod(duration, 60) hms = hours and "%d:%02d:%02d" % (hours, minutes, seconds ) or "%d:%02d" % (minutes, seconds) if tracknum: label1 = gtk.Label(_('Playing track {0} of {1}').format( tracknum, trackscount)) vbox.add(label1) label1.show() if self.album: blank = gtk.Label("") vbox.add(blank) blank.show() label2 = gtk.Label(tracktitle) vbox.add(label2) label2.show() if self.album: # TC: Previous line: Playing track {0} of {1} label3 = gtk.Label(_('From the album, %s') % self.album) vbox.add(label3) label3.show() blank = gtk.Label("") vbox.add(blank) blank.show() else: label3 = gtk.Label(_('Total number of tracks %d') % trackscount) vbox.add(label3) label3.show() try: label4 = gtk.Label(_('Total play duration %s') % hms) except: label4 = gtk.Label(_('Total play duration %s')) vbox.add(label4) label4.show() else: return -1 def popupwindow_inhibit(self): """Block popup window if the menu is displayed.""" return self.pl_menu.flags() & gtk.MAPPED def pbspeedbar_format(self, scale, value): return "%.1f%%" % (2.0 ** ((value - 64.0) / 32.0) * 100.0) def cb_pbspeed(self, widget, data=None): self.pbspeedfactor = 2.0 ** ((widget.get_value() - 64.0) / 32.0) self.parent.send_new_mixer_stats() def __init__(self, pbox, name, parent): self.parent = parent if pbox == None and name == None: return self.playername = name self.exiting = False # A box for the Stop/Start/Pause widgets self.hbox1 = gtk.HBox(True, 0) self.hbox1.set_border_width(2) self.hbox1.set_spacing(3) frame = gtk.Frame() frame.set_border_width(3) frame.set_shadow_type(gtk.SHADOW_IN) frame.add(self.hbox1) frame.show() pbox.pack_start(frame, False, False, 0) # A box for the progress bar and elapsed timer. self.progressbox = gtk.HBox(False, 0) self.progressbox.set_border_width(3) self.progressbox.set_spacing(4) pbox.pack_start(self.progressbox, False, False, 0) # The numerical play progress box self.digiprogress = gtk.Entry() self.digiprogress.set_text("0:00:00") self.digiprogress.set_width_chars(6) self.digiprogress.set_editable(False) self.digiprogress.connect("button_press_event", self.cb_event, "DigitalProgressPress") self.progressbox.pack_start(self.digiprogress, False, False, 1) self.digiprogress.show() set_tip(self.digiprogress, _('Left click toggles between showing the ' 'amount of time elapsed or remaining on ' 'the current track being played.')) # The play progress and seek bar self.progressadj = gtk.Adjustment(0.0, 0.0, 100.0, 0.1, 1.0, 0.0) self.progressadj.connect("value_changed", self.cb_progress) self.progressbar = gtk.HScale(self.progressadj) self.progressbar.set_update_policy(gtk.UPDATE_CONTINUOUS) self.progressbar.set_digits(1) self.progressbar.set_value_pos(gtk.POS_TOP) self.progressbar.set_draw_value(False) self.progressbar.connect("button_press_event", self.cb_event, "ProgressPress") self.progressbar.connect("button_release_event", self.cb_event, "ProgressRelease") self.progressbox.pack_start(self.progressbar, True, True, 0) self.progressbar.show() set_tip(self.progressbar, _('This slider acts as both a play progress ' 'indicator and as a means for seeking' ' within the currently playing track.')) # Finished filling the progress box so lets show it. self.progressbox.show() # A frame for our playlist plframe = gtk.Frame(" %s " % dict(left=_('Playlist 1'), right=_('Playlist 2'), interlude=_('Playlist 3'))[name]) plframe.set_border_width(4) plframe.set_shadow_type(gtk.SHADOW_ETCHED_IN) plframe.show() plvbox = gtk.VBox() plframe.add(plvbox) plvbox.show() # The scrollable window box that will contain our playlist. self.scrolllist = gtk.ScrolledWindow() self.scrolllist.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_ALWAYS) self.scrolllist.set_size_request(-1, 117) self.scrolllist.set_border_width(4) self.scrolllist.set_shadow_type(gtk.SHADOW_IN) # A liststore object for our playlist self.liststore = gtk.ListStore(str, str, int, str, str, str, str, str, CueSheetListStore, str, str) self.templist = gtk.ListStore(str, str, int, str, str, str, str, str, CueSheetListStore, str, str) self.treeview = gtk.TreeView(self.liststore) self.rgcellrender = gtk.CellRendererText() self.playtimecellrender = gtk.CellRendererText() self.cellrender = gtk.CellRendererText() self.cellrender.set_property("ellipsize", pango.ELLIPSIZE_END) self.rgtvcolumn = gtk.TreeViewColumn("", self.rgcellrender) self.playtimetvcolumn = gtk.TreeViewColumn( "Time", self.playtimecellrender) self.tvcolumn = gtk.TreeViewColumn( "Playlist", self.cellrender, markup=0) self.rgtvcolumn.set_cell_data_func(self.rgcellrender, self.rgrowconfig) self.playtimetvcolumn.set_cell_data_func( self.playtimecellrender, self.playtimerowconfig) self.tvcolumn.set_cell_data_func(self.cellrender, self.rowconfig) self.playtimetvcolumn.set_sizing(gtk.TREE_VIEW_COLUMN_AUTOSIZE) self.tvcolumn.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED) self.tvcolumn.set_expand(True) self.treeview.append_column(self.tvcolumn) self.treeview.append_column(self.playtimetvcolumn) self.treeview.set_search_column(0) self.treeview.set_headers_visible(False) self.treeview.set_enable_search(False) self.treeview.enable_model_drag_source( gtk.gdk.BUTTON1_MASK, self.sourcetargets, gtk.gdk.ACTION_DEFAULT | gtk.gdk.ACTION_MOVE) self.treeview.enable_model_drag_dest( self.droptargets, gtk.gdk.ACTION_DEFAULT) self.treeview.connect("drag_data_get", self.drag_data_get_data) self.treeview.connect("drag_data_received", self.drag_data_received_data) self.treeview.connect("drag_data_delete", self.drag_data_delete) self.treeview.connect("row_activated", self.cb_doubleclick, "Double click") self.treeview.get_selection().connect( "changed", self.cb_selection_changed) self.treeview.connect("key_press_event", self.cb_keypress) self.liststore.connect("row-inserted", self.cb_playlist_changed) self.liststore.connect("row-deleted", self.cb_playlist_changed) self.scrolllist.add(self.treeview) self.treeview.show() plvbox.pack_start(self.scrolllist, True, True, 0) self.scrolllist.show() # Cue sheet playlist controls. self.cuesheet_playlist = CuesheetPlaylist() self.cuesheet_playlist.connect("playitem", self._cb_cuesheet_item) plvbox.pack_start(self.cuesheet_playlist) # External playlist control unit self.external_pl = ExternalPL(self) plvbox.pack_start(self.external_pl, False, False, 0) # File filters for file dialogs self.plfilefilter_all = gtk.FileFilter() # TC: File filter text. self.plfilefilter_all.set_name(_('All file types')) self.plfilefilter_all.add_pattern("*") self.plfilefilter_playlists = gtk.FileFilter() # TC: File filter text. self.plfilefilter_playlists.set_name( _('Playlist types') + " " + supported.playlists_as_text()) self.plfilefilter_playlists.add_mime_type("audio/x-mpegurl") self.plfilefilter_playlists.add_mime_type("application/xspf+xml") self.plfilefilter_playlists.add_mime_type("audio/x-scpls") self.plfilefilter_media = gtk.FileFilter() self.plfilefilter_media.set_name(_('Supported media')) for each in supported.media: self.plfilefilter_media.add_pattern("*" + each) self.plfilefilter_media.add_pattern("*" + each.upper()) # An information display for playlist stats self.pl_statusbar = gtk.Statusbar() self.pl_statusbar.set_has_resize_grip(False) plvbox.pack_start(self.pl_statusbar, False, False, 0) self.pl_statusbar.show() set_tip(self.pl_statusbar, _("'Block size' indicates the amount of time" " that it will take to play from the currently selected track to the " "next stop.\n'Remaining' is the amount of time until the next stop." "\n'Finish' Is the computed time when the tracks will have finished" " playing.")) pbox.pack_start(plframe, True, True, 0) self.fill_stopper = FillStopper() pbox.pack_start(self.fill_stopper, False) # A box for the playback speed controls self.pbspeedbox = gtk.HBox(False, 0) self.pbspeedbox.set_border_width(3) self.pbspeedbox.set_spacing(3) pbox.pack_start(self.pbspeedbox, False, False, 0) # The playback speed control self.pbspeedadj = gtk.Adjustment(64.0, 0.0, 127.0, 0.1, 0.0, 0.0) self.pbspeedadj.connect("value_changed", self.cb_pbspeed) self.pbspeedbar = gtk.HScale(self.pbspeedadj) self.pbspeedbar.set_update_policy(gtk.UPDATE_CONTINUOUS) self.pbspeedbar.connect("format-value", self.pbspeedbar_format) self.pbspeedbox.pack_start(self.pbspeedbar, True, True, 0) self.pbspeedbar.show() set_tip(self.pbspeedbar, _('This adjusts the playback speed anywhere from 25% to 400%.')) self.pbspeedzerobutton = gtk.Button() self.pbspeedzerobutton.connect("clicked", self.callback, "pbspeedzero") pixbuf = gtk.gdk.pixbuf_new_from_file( FGlobs.pkgdatadir / "speedicon.png") pixbuf = pixbuf.scale_simple(55, 14, gtk.gdk.INTERP_BILINEAR) image = gtk.Image() image.set_from_pixbuf(pixbuf) image.show() self.pbspeedzerobutton.add(image) self.pbspeedbox.pack_start(self.pbspeedzerobutton, False, False, 1) self.pbspeedzerobutton.show() set_tip(self.pbspeedzerobutton, _('This sets the playback speed back to normal.')) # The box for the mute widgets. self.hbox2 = gtk.HBox() self.hbox2.set_border_width(2) self.hbox2.set_spacing(2) pbox.pack_start(self.hbox2, False) frame.show() image = gtk.Image() image.set_from_file(FGlobs.pkgdatadir / "prev.png") image.show() self.prev = gtk.Button() self.prev.add(image) self.prev.connect("clicked", self.callback, "Prev") self.hbox1.add(self.prev) self.prev.show() set_tip(self.prev, _('Previous track.')) pixbuf = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "play2.png") pixbuf = pixbuf.scale_simple(14, 14, gtk.gdk.INTERP_BILINEAR) image=gtk.Image() image.set_from_pixbuf(pixbuf) image.show() self.play = gtk.ToggleButton() self.play.add(image) self.play.connect("toggled", self.cb_toggle, "Play") self.hbox1.add(self.play) self.play.show() set_tip(self.play, _('Play.')) image=gtk.Image() image.set_from_file(FGlobs.pkgdatadir / "pause.png") image.show() self.pause = gtk.ToggleButton() self.pause.add(image) self.pause.connect("toggled", self.cb_toggle, "Pause") self.hbox1.add(self.pause) self.pause.show() set_tip(self.pause, _('Pause.')) image=gtk.Image() image.set_from_file(FGlobs.pkgdatadir / "stop.png") image.show() self.stop = gtk.Button() self.stop.add(image) self.stop.connect("clicked", self.callback, "Stop") self.hbox1.add(self.stop) self.stop.show() set_tip(self.stop, _('Stop.')) image=gtk.Image() image.set_from_file(FGlobs.pkgdatadir / "next.png") image.show() self.next = gtk.Button() self.next.add(image) self.next.connect("clicked", self.callback, "Next") self.hbox1.add(self.next) self.next.show() set_tip(self.next, _('Next track.')) pixbuf = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "add3.png") pixbuf = pixbuf.scale_simple(14, 14, gtk.gdk.INTERP_HYPER) image = gtk.Image() image.set_from_pixbuf(pixbuf) image.show() self.add = gtk.Button() self.add.add(image) self.add.connect("clicked", self.callback, "Add Files") self.hbox1.add(self.add) self.add.show() set_tip(self.add, _('Add tracks to the playlist.')) # hbox1 is done so it is time to show it self.hbox1.show() # The playlist mode dropdown menu. frame = ButtonFrame(_('Playlist Mode')) self.hbox2.pack_start(frame) frame.show() store = gtk.ListStore(str, str) self.pl_mode = gtk.ComboBox(store) rend = gtk.CellRendererText() self.pl_mode.pack_start(rend) self.pl_mode.add_attribute(rend, "text", 1) # TC: playlist modes for each in (N_('Play All'), N_('Loop All'), N_('Random'), N_('Manual'), N_('Cue Up'), N_('External')): store.append((each, _(each))) if self.playername != "interlude": # TC: yet more playlist modes these ones for the main players only for each in (N_('Alternate'), N_('Fade Over'), N_('Random Hop')): store.append((each, _(each))) self.pl_mode.set_active(1) else: self.pl_mode.set_active(0) self.pl_mode.connect("changed", self.cb_playlist_mode) set_tip(self.pl_mode, _("This sets the playlist mode which defines " "player behaviour after a track has finished playing.\n\n'Play All' is" " the most versatile mode since it allows the use of embeddable " "playlist control elements which are accessible using the right click " "context menu in the playlist. When no playlist controls are present " "the tracks are played sequentially until the end of the playlist is " "reached at which point the player will stop.\n\n'Loop All' causes the" " tracks to be played in sequence, restarting with the first track " "once the end of the playlist is reached.\n\n'Random' causes the " "tracks to be played indefinitely with the tracks selected at random." "\n\n'Manual' causes the player to stop at the end of each track.\n\n" "'Cue Up' is similar to manual except that the next track in the " "playlist will also be highlighted.\n\n'External' draws it's tracks " "from an external playlist or directory one at a time. Useful for when" " you want to stream massive playlists.\n\n'Alternate' causes the next" " track to be cued up before starting the opposite player. The " "crossfader is moved over.\n\n'Fade Over' will crossfade to the other" " player at the end of every track.\n\n'Random Hop' will pick a track" " at random from the other playlist.")) frame.hbox.pack_start(self.pl_mode) self.pl_mode.show() # TC: Fade time heading. frame = ButtonFrame(_('Fade')) self.hbox2.pack_start(frame) frame.show() self.pl_delay = gtk.combo_box_new_text() # TC: Fade time is zero. No fade, none. self.pl_delay.append_text(_('None')) self.pl_delay.append_text("5") self.pl_delay.append_text("10") self.pl_delay.set_active(0) self.pl_delay.connect("changed", self.cb_playlist_delay) set_tip(self.pl_delay, _('This controls the amount of fade between tracks.')) frame.hbox.pack_start(self.pl_delay, True, True, 0) self.pl_delay.show() # Mute buttons frame = ButtonFrame(" %s " % _('Audio Feed')) self.hbox2.pack_start(frame, True, True, 0) frame.show() self.stream = gtk.ToggleButton(" %s " % _('Stream')) self.stream.set_active(True) self.stream.connect("toggled", self.cb_toggle, "Stream") frame.hbox.pack_start(self.stream, True, True, 0) self.stream.show() set_tip(self.stream, _('Make output from this player available for streaming.')) self.listen = nice_listen_togglebutton(" %s " % _('DJ')) self.listen.set_active(True) self.listen.connect("toggled", self.cb_toggle, "Listen") frame.hbox.pack_start(self.listen, True, True, 0) self.listen.show() set_tip(self.listen, _('Make output from this player audible to the DJ.')) self.force = gtk.ToggleButton(" %s " % _('Force')) self.force.connect("toggled", self.cb_toggle, "Force") frame.hbox.pack_start(self.force, True, True, 0) if name == "interlude": self.force.show() set_tip(self.force, _("When selected this player will be treated like a main player.\n" "It will be affected by microphone ducking and won't mute when" " a main player is operating.")) # hbox2 is now filled so lets show it self.hbox2.show() # Popup menu code here # Main popup menu self.pl_menu = gtk.Menu() # TC: Insert playlist control. self.pl_menu_control = gtk.MenuItem(_('Insert control')) self.pl_menu.append(self.pl_menu_control) self.pl_menu_control.show() separator = gtk.SeparatorMenuItem() self.pl_menu.append(separator) separator.show() # TC: The Item submenu. self.pl_menu_item = gtk.MenuItem(_('Item')) self.pl_menu.append(self.pl_menu_item) self.pl_menu_item.show() # TC: The Playlist submenu. self.pl_menu_playlist = gtk.MenuItem(_('Playlist')) self.pl_menu.append(self.pl_menu_playlist) self.pl_menu_playlist.show() self.pl_menu.show() # Control element submenu of main popup menu self.control_menu = gtk.Menu() # TC: Insert playlist control to set playback speed to normal. self.control_normal_speed_control = gtk.MenuItem(_('Normal Speed')) self.control_normal_speed_control.connect("activate", self.menuitem_response, "Normal Speed Control") self.control_menu.append(self.control_normal_speed_control) self.control_normal_speed_control.show() # TC: Insert playlist control to stop the player. self.control_menu_stop_control = gtk.MenuItem(_('Player Stop')) self.control_menu_stop_control.connect("activate", self.menuitem_response, "Stop Control") self.control_menu.append(self.control_menu_stop_control) self.control_menu_stop_control.show() # TC: Insert playlist control to stop the player. self.control_menu_stop_control = gtk.MenuItem(_('Player Stop 2')) self.control_menu_stop_control.connect("activate", self.menuitem_response, "Stop Control 2") self.control_menu.append(self.control_menu_stop_control) self.control_menu_stop_control.show() # TC: Insert playlist control to jump to the top of the playlist. self.control_menu_jumptop_control = gtk.MenuItem(_('Jump To Top')) self.control_menu_jumptop_control.connect("activate", self.menuitem_response, "Jump To Top Control") self.control_menu.append(self.control_menu_jumptop_control) self.control_menu_jumptop_control.show() # TC: Insert playlist control to transfer to the opposite player. if name in ("left", "right"): self.control_menu_transfer_control = gtk.MenuItem(_('Transfer')) self.control_menu_transfer_control.connect("activate", self.menuitem_response, "Transfer Control") self.control_menu.append(self.control_menu_transfer_control) self.control_menu_transfer_control.show() # TC: Insert playlist control to crossfade to the opposite player. if name in ("left", "right"): self.control_menu_crossfade_control = gtk.MenuItem(_('Crossfade')) self.control_menu_crossfade_control.connect("activate", self.menuitem_response, "Crossfade Control") self.control_menu.append(self.control_menu_crossfade_control) self.control_menu_crossfade_control.show() # TC: Embed a DJ announcement text into the playlist. self.control_menu_announcement_control = gtk.MenuItem(_('Announcement')) self.control_menu_announcement_control.connect("activate", self.menuitem_response, "Announcement Control") self.control_menu.append(self.control_menu_announcement_control) self.control_menu_announcement_control.show() separator = gtk.SeparatorMenuItem() self.control_menu.append(separator) separator.show() # TC: Insert playlist control to do a ten second fade to the next track. self.control_menu_fade_10_control = gtk.MenuItem(_('Fade 10s')) self.control_menu_fade_10_control.connect("activate", self.menuitem_response, "Fade 10") self.control_menu.append(self.control_menu_fade_10_control) self.control_menu_fade_10_control.show() # TC: Insert playlist control to do a five second fade to the next track. self.control_menu_fade_5_control = gtk.MenuItem(_('Fade 5s')) self.control_menu_fade_5_control.connect("activate", self.menuitem_response, "Fade 5") self.control_menu.append(self.control_menu_fade_5_control) self.control_menu_fade_5_control.show() # TC: Insert playlist control to not do a fade to the next track. self.control_menu_fade_none_control = gtk.MenuItem(_('No Fade')) self.control_menu_fade_none_control.connect("activate", self.menuitem_response, "Fade none") self.control_menu.append(self.control_menu_fade_none_control) self.control_menu_fade_none_control.show() separator = gtk.SeparatorMenuItem() self.control_menu.append(separator) separator.show() # TC: Insert playlist control to stop all the streams. self.control_menu_stream_disconnect_control = gtk.MenuItem( _('Stop streaming')) self.control_menu_stream_disconnect_control.connect("activate", self.menuitem_response, "Stream Disconnect Control") self.control_menu.append(self.control_menu_stream_disconnect_control) self.control_menu_stream_disconnect_control.show() # TC: Insert playlist control to stop all recording. self.control_menu_stop_recording_control = gtk.MenuItem( _('Stop recording')) self.control_menu_stop_recording_control.connect("activate", self.menuitem_response, "Stop Recording Control") self.control_menu.append(self.control_menu_stop_recording_control) self.control_menu_stop_recording_control.show() self.pl_menu_control.set_submenu(self.control_menu) self.control_menu.show() # Item submenu of main popup menu self.item_menu = gtk.Menu() # TC: Menu item. Opens the metadata tagger on the selected track. self.item_tag = gtk.MenuItem(_('Meta Tag')) self.item_tag.connect("activate", self.menuitem_response, "MetaTag") self.item_menu.append(self.item_tag) self.item_tag.show() # TC: Menu Item. Duplicates the selected track in the playlist. self.item_duplicate = gtk.MenuItem(_('Duplicate')) self.item_duplicate.connect("activate", self.menuitem_response, "Duplicate") self.item_menu.append(self.item_duplicate) self.item_duplicate.show() # TC: Menu Item. Remove the selected track. self.item_remove = gtk.MenuItem(_('Remove')) self.item_menu.append(self.item_remove) self.item_remove.show() self.pl_menu_item.set_submenu(self.item_menu) self.item_menu.show() # Remove submenu of Item submenu self.remove_menu = gtk.Menu() # TC: Submenu Item. Parent menu item is Remove. self.remove_this = gtk.MenuItem(_('This')) self.remove_this.connect("activate", self.menuitem_response, "Remove This") self.remove_menu.append(self.remove_this) self.remove_this.show() # TC: Submenu Item. Parent menu item is Remove. self.remove_all = gtk.MenuItem(_('All')) self.remove_all.connect("activate", self.menuitem_response, "Remove All") self.remove_menu.append(self.remove_all) self.remove_all.show() # TC: Submenu Item. Parent menu item is Remove. self.remove_from_here = gtk.MenuItem(_('From Here')) self.remove_from_here.connect("activate", self.menuitem_response, "Remove From Here") self.remove_menu.append(self.remove_from_here) self.remove_from_here.show() # TC: Submenu Item. Parent menu item is Remove. self.remove_to_here = gtk.MenuItem(_('To Here')) self.remove_to_here.connect("activate", self.menuitem_response, "Remove To Here") self.remove_menu.append(self.remove_to_here) self.remove_to_here.show() self.item_remove.set_submenu(self.remove_menu) self.remove_menu.show() # Playlist submenu of main popup menu. self.playlist_menu = gtk.Menu() # TC: Open the file dialog for adding music to the chosen playlist. self.playlist_add_file = gtk.MenuItem(_('Add Music')) self.playlist_add_file.connect("activate", self.menuitem_response, "Add File") self.playlist_menu.append(self.playlist_add_file) self.playlist_add_file.show() # TC: Submenu Item. Parent menu is Playlist. self.playlist_save = gtk.MenuItem(_('Save')) self.playlist_save.connect("activate", self.menuitem_response, "Playlist Save") self.playlist_menu.append(self.playlist_save) self.playlist_save.show() separator = gtk.SeparatorMenuItem() self.playlist_menu.append(separator) separator.show() # TC: Submenu Item. Parent menu is Playlist. self.playlist_copy = gtk.MenuItem(_('Copy')) self.playlist_menu.append(self.playlist_copy) self.playlist_copy.show() # TC: Submenu Item. Parent menu is Playlist. self.playlist_transfer = gtk.MenuItem(_('Transfer')) self.playlist_menu.append(self.playlist_transfer) self.playlist_transfer.show() # TC: Submenu Item. Parent menu is Playlist. if name in ("left", "right"): self.playlist_exchange = gtk.MenuItem(_('Exchange')) self.playlist_exchange.connect("activate", self.menuitem_response, "Playlist Exchange") self.playlist_menu.append(self.playlist_exchange) self.playlist_exchange.show() # TC: Submenu Item. Parent menu is Playlist. self.playlist_empty = gtk.MenuItem(_('Empty')) self.playlist_empty.connect("activate", self.menuitem_response, "Remove All") self.playlist_menu.append(self.playlist_empty) self.playlist_empty.show() self.pl_menu_playlist.set_submenu(self.playlist_menu) self.playlist_menu.show() # Position Submenu of Playlist-Copy menu item self.copy_menu = gtk.Menu() # TC: Submenu Item. Parent menus are Playlist->Copy. self.copy_append = gtk.MenuItem(_('Append')) self.copy_append.connect("activate", self.menuitem_response, "Copy Append") self.copy_menu.append(self.copy_append) self.copy_append.show() # TC: Submenu Item. Parent menus are Playlist->Copy. self.copy_prepend = gtk.MenuItem(_('Prepend')) self.copy_prepend.connect("activate", self.menuitem_response, "Copy Prepend") self.copy_menu.append(self.copy_prepend) self.copy_prepend.show() separator = gtk.SeparatorMenuItem() self.copy_menu.append(separator) separator.show() # TC: Submenu Item. Parent menus are Playlist->Copy. self.copy_append_cursor = gtk.MenuItem(_('Append Cursor')) self.copy_append_cursor.connect("activate", self.menuitem_response, "Copy Append Cursor") self.copy_menu.append(self.copy_append_cursor) self.copy_append_cursor.show() # TC: Submenu Item. Parent menus are Playlist->Copy. self.copy_prepend_cursor = gtk.MenuItem(_('Prepend Cursor')) self.copy_prepend_cursor.connect("activate", self.menuitem_response, "Copy Prepend Cursor") self.copy_menu.append(self.copy_prepend_cursor) self.copy_prepend_cursor.show() self.playlist_copy.set_submenu(self.copy_menu) self.copy_menu.show() # Position Submenu of Playlist-Transfer menu item self.transfer_menu = gtk.Menu() # TC: Submenu Item. Parent menus are Playlist->Transfer. self.transfer_append = gtk.MenuItem(_('Append')) self.transfer_append.connect("activate", self.menuitem_response, "Transfer Append") self.transfer_menu.append(self.transfer_append) self.transfer_append.show() # TC: Submenu Item. Parent menus are Playlist->Transfer. self.transfer_prepend = gtk.MenuItem(_('Prepend')) self.transfer_prepend.connect("activate", self.menuitem_response, "Transfer Prepend") self.transfer_menu.append(self.transfer_prepend) self.transfer_prepend.show() separator = gtk.SeparatorMenuItem() self.transfer_menu.append(separator) separator.show() # TC: Submenu Item. Parent menus are Playlist->Transfer. self.transfer_append_cursor = gtk.MenuItem(_('Append at Cursor')) self.transfer_append_cursor.connect("activate", self.menuitem_response, "Transfer Append Cursor") self.transfer_menu.append(self.transfer_append_cursor) self.transfer_append_cursor.show() # TC: Submenu Item. Parent menus are Playlist->Transfer. self.transfer_prepend_cursor = gtk.MenuItem(_('Prepend at Cursor')) self.transfer_prepend_cursor.connect("activate", self.menuitem_response, "Transfer Prepend Cursor") self.transfer_menu.append(self.transfer_prepend_cursor) self.transfer_prepend_cursor.show() self.playlist_transfer.set_submenu(self.transfer_menu) self.transfer_menu.show() self.treeview.connect_object("event", self.menu_activate, self.pl_menu) popupwindow.PopupWindow(self.treeview, 12, 120, 10, self.popupwindow_populate, self.popupwindow_inhibit) # Initialisations self.showing_file_requester = False self.showing_pl_save_requester = False self.home = os.path.expanduser("~") self.file_requester_start_dir = SlotObject(self.home) self.plsave_filetype = 0 self.plsave_open = False self.plsave_filtertype = self.plfilefilter_all self.plsave_folder = None # This flag symbolises if we are playing music or not. self.is_playing = False self.is_paused = False self.is_stopping = False self.player_is_playing = False self.new_title = False self.timeout_source_id = 0 self.progress_press = False random.seed() # The maximum value from the progress bar at startup self.max_seek = 100.0 self.reselect_please = False self.reselect_cursor_please = False self.songname = u"" self.flush = False self.title = "" self.artist = "" self.album = "" self.cueshet = self.element = None self.cuesheet_track_title = None self.cuesheet_track_performer = None self.cuesheet_track_album = None self.gapless = False self.seek_file_valid = False self.digiprogress_type = 0 self.digiprogress_f = 0 self.handle_motion_as_drop = False self.other_player_initiated = False self.crossfader_initiated = False self.music_filename = "" self.session_filename = self.playername + "_session" self.oldstatusbartext = "" self.pbspeedfactor = 1.0 self.playlist_changed = True self.alarm_cid = 0 self.playlist_todo = deque() self.no_more_files = False self.model_playing = None self.player_cid = -1 idjc-0.8.16/python/sourceclientgui.py0000644000175000017500000037010612635762165014563 00000000000000# sourceclientgui.py: new for version 0.7 this provides the graphical # user interface for the new improved streaming module # Copyright (C) 2007-2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . __all__ = ['SourceClientGui'] import os import time import fcntl import subprocess import urllib import urllib2 import base64 import gettext import traceback import datetime import xml.dom.minidom as mdom import xml.etree.ElementTree import ctypes from collections import namedtuple from threading import Thread from contextlib import closing import dbus import pango import gtk import gobject from idjc import FGlobs, PGlobs from .utils import string_multireplace from .gtkstuff import DefaultEntry, threadslock, HistoryEntry from .gtkstuff import WindowSizeTracker, FolderChooserButton from .gtkstuff import timeout_add, source_remove from .dialogs import * from .irc import IRCPane from .format import FormatControl, FormatCodecMPEG from .tooltips import set_tip from .prelims import ProfileManager _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext N_ = lambda n: n pm = ProfileManager() ENCODER_START = 1; ENCODER_STOP = 0 LISTFORMAT = (("check_stats", bool), ("server_type", int), ("host", str), ("port", int), ("mount", str), ("listeners", int), ("login", str), ("password", str), ("tls", int), ("ca_file", str), ("ca_directory", str), ("client_cert", str)) ListLine = namedtuple("ListLine", " ".join([x[0] for x in LISTFORMAT])) BLANK_LISTLINE = ListLine(1, 0, "", 8000, "", -1, "", "", 1, "", "", "") tls_options = (N_('Disabled'), N_('Auto'), N_('Auto, no plaintext'), N_('RFC2818'), N_('RFC2817')) lame_enabled = False class SmallLabel(gtk.Label): """A gtk.Label with small text size.""" def __init__(self, text=None): gtk.Label.__init__(self, text) attrlist = pango.AttrList() attrlist.insert(pango.AttrSize(8000, 0, 1000000)) self.set_attributes(attrlist) class HistoryEntryWithMenu(HistoryEntry): def __init__(self): HistoryEntry.__init__(self, initial_text=("", "%s", "%r - %t")) self.child.connect("populate-popup", self._on_populate_popup) def _on_populate_popup(self, entry, menu): attr_menu_item = gtk.MenuItem(_('Insert Attribute')) submenu = gtk.Menu() attr_menu_item.set_submenu(submenu) for label, subst in zip((_('Artist'), _('Title'), _('Album'), _('Song name')), (u"%r", u"%t", u"%l", u"%s")): mi = gtk.MenuItem(label) mi.connect("activate", self._on_menu_activate, entry, subst) submenu.append(mi) menu.append(attr_menu_item) attr_menu_item.show_all() def _on_menu_activate(self, mi, entry, subst): p = entry.get_position() entry.insert_text(subst, p) entry.set_position(p + len(subst)) class ModuleFrame(gtk.Frame): def __init__(self, frametext = None): gtk.Frame.__init__(self, frametext) gtk.Frame.set_shadow_type(self, gtk.SHADOW_ETCHED_OUT) self.vbox = gtk.VBox() self.add(self.vbox) self.vbox.show() class CategoryFrame(gtk.Frame): def __init__(self, frametext = None): gtk.Frame.__init__(self, frametext) gtk.Frame.set_shadow_type(self, gtk.SHADOW_IN) class SubcategoryFrame(gtk.Frame): def __init__(self, frametext = None): gtk.Frame.__init__(self, frametext) gtk.Frame.set_shadow_type(self, gtk.SHADOW_ETCHED_IN) class ConnectionDialog(gtk.Dialog): """Create new data for or edit an item in the connection table. When an item is selected in the TreeView, will edit, else add. """ server_types = (_('Icecast 2 Master'), _('Shoutcast Master'), _('Icecast 2 Stats/Relay'), _('Shoutcast Stats/Relay')) def __init__(self, parent_window, tree_selection): gtk.Dialog.__init__(self, _('Enter new server connection details'), parent_window, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) model, iter = tree_selection.get_selected() # Configuration from existing server data. # cap_master = True preselect = 0 tls = 0 data = BLANK_LISTLINE try: first = ListLine._make(model[0]) except IndexError: pass # Defaults are fine. Server table currently empty. else: if iter: # In editing mode. self.set_title(_('Edit existing server connection details') + pm.title_extra) index = model.get_path(iter)[0] data = ListLine._make(model[index]) preselect = data.server_type tls = data.tls if index and first.server_type < 2: # Editing non first line where a master server is configured. cap_master = False else: # In adding additional server mode. if first.server_type < 2: cap_master = False preselect = first.server_type + 2 # Widgets # liststore = gtk.ListStore(int, str, int) for i, (l, t) in enumerate(zip(self.server_types, ( cap_master, cap_master, True, True))): liststore.append((i, l, t)) self.servertype = gtk.ComboBox(liststore) icon_renderer = CellRendererXCast() text_renderer = gtk.CellRendererText() self.servertype.pack_start(icon_renderer, False) self.servertype.pack_start(text_renderer, True) self.servertype.set_attributes(icon_renderer, servertype=0, sensitive=2) self.servertype.set_attributes(text_renderer, text=1, sensitive=2) self.servertype.set_model(liststore) self.hostname = DefaultEntry("localhost") adj = gtk.Adjustment(8000.0, 0.0, 65535.0, 1.0, 10.0) self.portnumber = gtk.SpinButton(adj, 1.0, 0) self.mountpoint = DefaultEntry("/listen") self.loginname = DefaultEntry("source") self.password = DefaultEntry("changeme") self.password.set_visibility(False) tls_liststore = gtk.ListStore(str, str) for each in tls_options: tls_liststore.append((each, _(each))) self.tls_security = gtk.ComboBox(tls_liststore) tls_renderer = gtk.CellRendererText() self.tls_security.pack_start(tls_renderer, True) self.tls_security.set_attributes(tls_renderer, text=1) file_dialog = gtk.FileChooserDialog("", None, gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER, ( gtk.STOCK_CLEAR, gtk.RESPONSE_NONE, gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) file_dialog.set_modal(True) file_dialog.set_transient_for(self) # TC: Dialog title bar text. file_dialog.set_title(_('Certificate Authority Directory' ) + pm.title_extra) file_dialog.set_do_overwrite_confirmation(True) self.ca_directory = FolderChooserButton(file_dialog) file_dialog.connect("response", self._on_file_response, self.ca_directory) file_dialog = gtk.FileChooserDialog("", None, gtk.FILE_CHOOSER_ACTION_OPEN, ( gtk.STOCK_CLEAR, gtk.RESPONSE_NONE, gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) file_dialog.set_modal(True) file_dialog.set_transient_for(self) # TC: Dialog title bar text. file_dialog.set_title(_('Certificate Authority File' ) + pm.title_extra) file_dialog.set_do_overwrite_confirmation(True) self.ca_file = gtk.FileChooserButton(file_dialog) file_dialog.connect("response", self._on_file_response, self.ca_file) file_dialog = gtk.FileChooserDialog("", None, gtk.FILE_CHOOSER_ACTION_OPEN, ( gtk.STOCK_CLEAR, gtk.RESPONSE_NONE, gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) file_dialog.set_modal(True) file_dialog.set_transient_for(self) # TC: Dialog title bar text. file_dialog.set_title(_('TLS Client Certificate' ) + pm.title_extra) file_dialog.set_do_overwrite_confirmation(True) self.client_cert = gtk.FileChooserButton(file_dialog) file_dialog.connect("response", self._on_file_response, self.client_cert) if not FGlobs.shouttlsenabled: for each in (self.tls_security, self.ca_directory, self.ca_file, self.client_cert): each.set_sensitive(False) self.stats = gtk.CheckButton( _('This server is to be scanned for audience figures')) # Layout # self.set_border_width(5) hbox = gtk.HBox(spacing = 20) hbox.set_border_width(15) icon = gtk.image_new_from_stock(gtk.STOCK_NETWORK, gtk.ICON_SIZE_DIALOG) hbox.pack_start(icon) col = gtk.VBox(homogeneous = True, spacing = 4) hbox.pack_start(col) sg = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) for text, widget in zip( (_('Server type'), _('Hostname'), _('Port number'), _('Mount point'), _('Login name'), _('Password'), _('TLS'), _('CA directory'), _('CA file'), _('Client cert')), (self.servertype, self.hostname, self.portnumber, self.mountpoint, self.loginname, self.password, self.tls_security, self.ca_directory, self.ca_file, self.client_cert)): row = gtk.HBox() row.set_spacing(3) label = gtk.Label(text) label.set_alignment(1.0, 0.5) row.pack_start(label, False) row.pack_start(widget) sg.add_widget(label) col.pack_start(row) col.pack_start(self.stats, False) self.get_content_area().pack_start(hbox) self.hostname.set_width_chars(30) hbox.show_all() # Signals # self.connect("response", self._on_response, tree_selection, model, iter) self.servertype.connect("changed", self._on_servertype_changed) # Data fill # self.servertype.set_active(preselect) self.hostname.set_text(data.host) self.portnumber.set_value(data.port) self.mountpoint.set_text(data.mount) self.loginname.set_text(data.login) self.password.set_text(data.password) self.tls_security.set_active(tls) self.ca_directory.set_current_folder(data.ca_directory) if data.ca_file: self.ca_file.set_filename(data.ca_file) else: self.ca_file.unselect_all() if data.client_cert: self.client_cert.set_filename(data.client_cert) else: self.client_cert.unselect_all() self.stats.set_active(data.check_stats) @staticmethod def _on_response(self, response_id, tree_selection, model, iter): if response_id == gtk.RESPONSE_ACCEPT: for entry in (self.hostname, self.mountpoint, self.loginname, self.password): entry.set_text(entry.get_text().strip()) self.hostname.set_text(self.hostname.get_text().split("://")[ -1].strip()) self.mountpoint.set_text("/" + self.mountpoint.get_text().lstrip( "/")) data = ListLine(check_stats=self.stats.get_active(), server_type=self.servertype.get_active(), host=self.hostname.get_text(), port=int(self.portnumber.get_value()), mount=self.mountpoint.get_text(), listeners=-1, login=self.loginname.get_text(), password=self.password.get_text(), tls=self.tls_security.get_active(), ca_file=self.ca_file.get_filename() or "", ca_directory=self.ca_directory.get_current_folder(), client_cert=self.client_cert.get_filename() or "" ) if self.servertype.get_active() < 2: if iter: model.remove(iter) new_iter = model.insert(0, data) else: if iter: new_iter = model.insert_after(iter, data) model.remove(iter) else: new_iter = model.append(data) tree_selection.select_path(model.get_path(new_iter)) tree_selection.get_tree_view().scroll_to_cell( model.get_path(new_iter)) tree_selection.get_tree_view().get_model().row_changed( model.get_path(new_iter), new_iter) self.destroy() def _on_servertype_changed(self, servertype): sens = not (servertype.get_active() & 1) self.mountpoint.set_sensitive(sens) self.loginname.set_sensitive(sens) def _on_file_response(self, dialog, response_id, chooser): if response_id == gtk.RESPONSE_NONE: chooser.unselect_all() class StatsThread(Thread): def __init__(self, d): Thread.__init__(self) self.is_shoutcast = d["server_type"] % 2 self.host = d["host"] self.port = d["port"] self.mount = d["mount"] if self.is_shoutcast: self.login = "admin" else: self.login = d["login"] self.passwd = d["password"] self.listeners = -2 # preset error code for failed/timeout self.url = "http://%s:%d%s" % (self.host, self.port, self.mount) def run(self): class BadXML(ValueError): pass class GoodXML(Exception): pass hostport = "%s:%d" % (self.host, self.port) if self.is_shoutcast: stats_url = "http://%s/admin.cgi?mode=viewxml" % hostport realm = "Shoutcast Server" else: stats_url = "http://%s/admin/listclients?mount=%s" % ( hostport, self.mount) realm = "Icecast2 Server" auth_handler = urllib2.HTTPBasicAuthHandler() auth_handler.add_password(realm, hostport, self.login, self.passwd) opener = urllib2.build_opener(auth_handler) opener.addheaders = [('User-agent', 'Mozilla/5.0')] try: # Logged in method works with Shoutcast 1 and Icecast 2. try: with closing(opener.open(stats_url)) as h: data = h.read() except IOError: if self.is_shoutcast: # Shoutcast 2 servers don't require a login. with closing(urllib2.urlopen("http://%s/statistics" % hostport)) as h: data = h.read() else: raise except IOError: print "failed to obtain server stats data for", self.url return try: dom = mdom.parseString(data) except Exception as e: print "server stats data is not valid xml: %s" % e return try: if self.is_shoutcast: if dom.documentElement.tagName == u'SHOUTCASTSERVER': shoutcastserver = dom.documentElement else: raise BadXML currentlisteners = shoutcastserver.getElementsByTagName( 'CURRENTLISTENERS') try: self.listeners = int(currentlisteners[ 0].firstChild.wholeText.strip()) except: raise BadXML else: raise GoodXML else: if dom.documentElement.tagName == u'icestats': icestats = dom.documentElement else: raise BadXML for child in icestats.childNodes: if child.nodeName == u'source': if child.getAttribute('mount') == self.mount: for child in child.childNodes: if child.nodeName.lower() == u'listeners': self.listeners = int( child.firstChild.wholeText.strip()) raise GoodXML else: raise BadXML except GoodXML: print "server", self.url, "has", self.listeners, "listeners" except BadXML: print "unexpected to parse server stats XML file" finally: dom.unlink() class ActionTimer(object): def run(self): if self.n == 0: self.first() self.n += 1 if self.n == self.ticks: self.n = 0 self.last() def __init__(self, ticks, first, last): assert(ticks) self.ticks = ticks self.n = 0 self.first = first self.last = last class CellRendererXCast(gtk.CellRendererText): icons = ("", "", "", "") ins_icons = ("", "", "", "") __gproperties__ = { 'servertype' : (gobject.TYPE_INT, 'kind of server', 'indication by number of the server in use', 0, 3, 0, gobject.PARAM_READWRITE), 'sensitive' : (gobject.TYPE_BOOLEAN, 'sensitivity flag', 'indication of selectability', 1, gobject.PARAM_READWRITE) } def __init__(self): gtk.CellRendererText.__init__(self) self._servertype = 0 self._sensitive = 1 self.props.xalign = 0.5 self.props.family = "monospace" def do_get_property(self, property): if property.name == 'servertype': return self._servertype elif property.name == 'sensitive': return self._sensitive else: raise AttributeError def do_set_property(self, property, value): if property.name == 'servertype': self._servertype = value elif property.name == 'sensitive': self._sensitive = value else: raise AttributeError if self._sensitive: self.props.markup = self.icons[self._servertype] else: self.props.markup = self.ins_icons[self._servertype] class ConnectionPane(gtk.VBox): def get_master_server_type(self): try: s_type = ListLine(*self.liststore[0]).server_type except IndexError: return 0 return 0 if s_type >= 2 else s_type + 1 def get_source_uri(self): try: config = ListLine(*self.liststore[0]) except IndexError: return "No Master Server Configured" return "{0.host}:{0.port}{0.mount}".format(config) def set_button(self, tab): st = self.get_master_server_type() if st: config = ListLine(*self.liststore[0]) p = tab.format_control.props sens = (p.cap_icecast, p.cap_shoutcast)[st - 1] if sens: text = "{0.host}:{0.port}{0.mount}".format(config) else: text = _("Encoder Format Not Set/Compatible") else: # TC: Connection button text when no details have been entered. text = _('No Master Server Configured') sens = False tab.server_connect_label.set_text(text) tab.server_connect.set_sensitive(sens) def individual_listeners_toggle_cb(self, cell, path): self.liststore[path][0] = not self.liststore[path][0] def listeners_renderer_cb(self, column, cell, model, iter): listeners = model.get_value(iter, 5) if listeners == -1: cell.set_property("text", "") cell.set_property("xalign", 0.5) elif listeners == -2: cell.set_property("text", u"\u2049") cell.set_property("xalign", 0.5) else: cell.set_property("text", listeners) cell.set_property("xalign", 1.0) def master_is_set(self): return bool(self.get_master_server_type()) def streaming_set(self, val): self._streaming_set = val self.treeview.get_selection().emit("changed") def streaming_is_set(self): return self._streaming_set def row_to_dict(self, rownum): """ obtain a dictionary of server data for a specified row """ return ListLine._make(self.liststore[rownum])._asdict() def dict_to_row(self, _dict): """ append a row of server data from a dictionary """ _dict["listeners"] = -1 row = ListLine(**_dict) t = row.server_type if t < 2: # Check if first line contains master server info. self.liststore.insert(0, row) else: self.liststore.append(row) return def saver(self): server = [] template = ("<%s dtype=\"int\">%d", "<%s dtype=\"str\">%s") for i in range(len(self.liststore)): s = self.row_to_dict(i) del s["listeners"] s["password"] = base64.encodestring(s["password"]) d = [] for key, value in s.iteritems(): if type(value) == str: t = template[1] value = urllib.quote(value) else: t = template[0] d.append(t % (key, value, key)) server.append("".join(("", "".join(d), ""))) return "%s" % "".join(server) def loader(self, xmldata): def get_child_text(nodelist): t = [] for node in nodelist: if node.nodeType == node.TEXT_NODE: t.append(node.data) return "".join(t) if not xmldata: return try: try: dom = mdom.parseString(xmldata) except: print "ConnectionPane.loader: failed to parse xml data...\n", \ xmldata raise assert(dom.documentElement.tagName == "connections") for server in dom.getElementsByTagName("server"): d = {} for node in server.childNodes: key = str(node.tagName) dtype = node.getAttribute("dtype") raw = get_child_text(node.childNodes) if dtype == "str": value = urllib.unquote(raw) elif dtype == "int": value = int(raw) else: raise ValueError( "ConnectionPane.loader: dtype (%s) is unhandled" % \ dtype) d[key] = value try: d["password"] = base64.decodestring(d["password"]) except KeyError: pass self.dict_to_row(d) except Exception, e: print e self.treeview.get_selection().select_path(0) def stats_commence(self): self.stats_rows = [] getstats = self.stats_always.get_active() or ( self.stats_ifconnected.get_active() and self.streaming_is_set()) for i, row in enumerate(self.liststore): if row[0] and getstats: d = self.row_to_dict(i) if d["server_type"] == 1: ap = self.tab.admin_password_entry.get_text().strip() if ap: d["password"] = ap stats_thread = StatsThread(d) stats_thread.start() ref = gtk.TreeRowReference(self.liststore, i) self.stats_rows.append((ref, stats_thread)) else: row[5] = -1 # sets listeners text to 'unknown' def stats_collate(self): count = 0 for ref, thread in self.stats_rows: if ref.valid() == False: print "stats_collate:", thread.url, \ "invalidated by its removal from the stats list" continue row = ref.get_model()[ref.get_path()[0]] row[5] = thread.listeners if thread.listeners > 0: count += thread.listeners self.listeners_display.set_text(str(count)) self.listeners = count def on_dialog_destroy(self, dialog, tree_selection, old_iter): model, iter = tree_selection.get_selected() if iter is None and old_iter is not None: tree_selection.select_iter(old_iter) def on_new_clicked(self, button, tree_selection): old_iter = tree_selection.get_selected()[1] tree_selection.unselect_all() self.connection_dialog = ConnectionDialog(self.tab.scg.window, tree_selection) self.connection_dialog.connect("destroy", self.on_dialog_destroy, tree_selection, old_iter) self.connection_dialog.show() def on_edit_clicked(self, button, tree_selection): model, iter = tree_selection.get_selected() if iter: self.connection_dialog = ConnectionDialog(self.tab.scg.window, tree_selection) self.connection_dialog.show() else: print "nothing selected for edit" def on_remove_clicked(self, button, tree_selection): model, iter = tree_selection.get_selected() if iter: if model.remove(iter): tree_selection.select_iter(iter) else: print "nothing selected for removal" def on_keypress(self, widget, event): if gtk.gdk.keyval_name(event.keyval) == "Delete": if self.remove.get_sensitive(): self.remove.clicked() def on_selection_changed(self, tree_selection): sens = tree_selection.get_selected()[1] is not None if self._streaming_set and tree_selection.path_is_selected((0,)): sens = False for button in self.require_selection: button.set_sensitive(sens) def __init__(self, set_tip, tab): self.tab = tab gtk.VBox.__init__(self) self._streaming_set = False vbox = gtk.VBox() vbox.set_border_width(6) vbox.set_spacing(6) self.add(vbox) vbox.show() scrolled = gtk.ScrolledWindow() scrolled.set_shadow_type(gtk.SHADOW_ETCHED_IN) scrolled.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_ALWAYS) vbox.pack_start(scrolled, True) scrolled.show() self.liststore = gtk.ListStore(*[x[1] for x in LISTFORMAT]) self.liststore.connect("row-deleted", lambda x, y: self.set_button(tab)) self.liststore.connect("row-changed", lambda x, y, z: self.set_button(tab)) self.set_button(tab) self.treeview = gtk.TreeView(self.liststore) set_tip(self.treeview, _('A table of servers with which to connect. ' 'Only one master server can be added for the purpose of streaming. All' ' other servers will appear below the master server in the list for the' ' purpose of stats collection which can be toggled on a per server ' 'basis.')) self.treeview.set_enable_search(False) self.treeview.connect("key-press-event", self.on_keypress) rend_type = CellRendererXCast() rend_type.set_property("xalign", 0.5) col_type = gtk.TreeViewColumn("", rend_type, servertype = 1) col_type.set_sizing = gtk.TREE_VIEW_COLUMN_AUTOSIZE col_type.set_alignment(0.5) self.treeview.append_column(col_type) text_cell_rend = gtk.CellRendererText() text_cell_rend.set_property("ellipsize", pango.ELLIPSIZE_END) col_host = gtk.TreeViewColumn(_('Hostname/IP address'), text_cell_rend, text=2) col_host.set_sizing = gtk.TREE_VIEW_COLUMN_FIXED col_host.set_expand(True) self.treeview.append_column(col_host) rend_port = gtk.CellRendererText() rend_port.set_property("xalign", 1.0) # TC: TCP port number. col_port = gtk.TreeViewColumn(_('Port'), rend_port, text = 3) col_port.set_sizing = gtk.TREE_VIEW_COLUMN_AUTOSIZE col_port.set_alignment(0.5) self.treeview.append_column(col_port) # TC: Mount point is a technical term in relation to icecast servers. col_mount = gtk.TreeViewColumn(_('Mount point '), text_cell_rend, text=4) col_mount.set_sizing = gtk.TREE_VIEW_COLUMN_AUTOSIZE self.treeview.append_column(col_mount) rend_enabled = gtk.CellRendererToggle() rend_enabled.connect("toggled", self.individual_listeners_toggle_cb) rend_listeners = gtk.CellRendererText() # TC: This is the listener count heading. col_listeners = gtk.TreeViewColumn(_('Listeners')) col_listeners.set_sizing = gtk.TREE_VIEW_COLUMN_AUTOSIZE col_listeners.pack_start(rend_enabled, False) col_listeners.pack_start(rend_listeners) col_listeners.add_attribute(rend_enabled, "active", 0) col_listeners.set_cell_data_func(rend_listeners, self.listeners_renderer_cb) self.treeview.append_column(col_listeners) scrolled.add(self.treeview) self.treeview.show() hbox = gtk.HBox() self.listener_count_button = gtk.Button() ihbox = gtk.HBox() set_tip(ihbox, _('The sum total of listeners in this server tab.')) pixbuf = gtk.gdk.pixbuf_new_from_file_at_size( FGlobs.pkgdatadir / "listenerphones.png", 20, 16) image = gtk.image_new_from_pixbuf(pixbuf) ihbox.pack_start(image, False, False, 0) image.show() frame = gtk.Frame() frame.set_border_width(0) ihbox.pack_start(frame, True, True, 0) frame.show() ihbox.show() self.listeners_display = gtk.Label("0") self.listeners_display.set_alignment(1.0, 0.5) self.listeners_display.set_width_chars(6) self.listeners_display.set_padding(3, 0) frame.add(self.listeners_display) self.listeners_display.show() self.listener_count_button.add(ihbox) hbox.pack_start(self.listener_count_button, False) lcmenu = gtk.Menu() self.listener_count_button.connect("button-press-event", lambda w, e: lcmenu.popup(None, None, None, e.button, e.time)) lc_stats = gtk.MenuItem("Update") lcmenu.append(lc_stats) lcsubmenu = gtk.Menu() lc_stats.set_submenu(lcsubmenu) self.stats_never = gtk.RadioMenuItem(None, _('Never')) self.stats_never.connect("toggled", lambda w: ihbox.set_sensitive(not w.get_active())) self.stats_always = gtk.RadioMenuItem(self.stats_never, _('Always')) self.stats_ifconnected = gtk.RadioMenuItem( self.stats_never, _('If connected')) self.stats_ifconnected.set_active(True) lcsubmenu.append(self.stats_never) lcsubmenu.append(self.stats_always) lcsubmenu.append(self.stats_ifconnected) lcmenu.show_all() bbox = gtk.HButtonBox() bbox.set_spacing(6) bbox.set_layout(gtk.BUTTONBOX_END) new = gtk.Button(stock=gtk.STOCK_NEW) self.remove = gtk.Button(stock=gtk.STOCK_DELETE) edit = gtk.Button(stock=gtk.STOCK_EDIT) bbox.add(edit) bbox.add(self.remove) bbox.add(new) self.require_selection = (edit, self.remove) selection = self.treeview.get_selection() selection.connect("changed", self.on_selection_changed) selection.emit("changed") new.connect("clicked", self.on_new_clicked, selection) edit.connect("clicked", self.on_edit_clicked, selection) self.remove.connect("clicked", self.on_remove_clicked, selection) self.require_selection = (self.remove, edit) hbox.pack_start(bbox) vbox.pack_start(hbox, False) hbox.show_all() self.timer = ActionTimer(40, self.stats_commence, self.stats_collate) class TimeEntry(gtk.HBox): """A 24-hour-time entry widget with a checkbutton.""" def time_valid(self): return self.seconds_past_midnight >= 0 def get_seconds_past_midnight(self): return self.seconds_past_midnight def set_active(self, boolean): self.check.set_active(boolean and True or False) def get_active(self): return self.check.get_active() and self.time_valid def __entry_activate(self, widget): boolean = widget.get_active() self.entry.set_sensitive(boolean) if boolean: self.entry.grab_focus() def __key_validator(self, widget, event): if event.keyval < 128: if event.string == ":": return False if event.string < "0" or event.string > "9": return True def __time_updater(self, widget): text = widget.get_text() if len(text) in (5, 8) and text[2] == ":": try: hh = int(text[:2]) mm = int(text[3:5]) try: ss = int(text[6:8]) except ValueError: ss = 0 else: if text[5] not in ":'": raise ValueError("bad separator") except ValueError: self.seconds_past_midnight = -1 else: if 0 <= hh < 24 and 0 <= mm < 60 and 0 <= ss < 60: self.seconds_past_midnight = hh * 3600 + mm * 60 + ss else: self.seconds_past_midnight = -1 else: self.seconds_past_midnight = -1 def __init__(self, labeltext): gtk.HBox.__init__(self) self.set_spacing(3) self.check = gtk.CheckButton(labeltext) self.check.connect("toggled", self.__entry_activate) self.pack_start(self.check, False) self.check.show() self.entry = gtk.Entry(8) self.entry.set_sensitive(False) self.entry.set_width_chars(7) self.entry.set_text("00:00:00") self.entry.connect("key-press-event", self.__key_validator) self.entry.connect("changed", self.__time_updater) self.pack_start(self.entry, False) self.entry.show() self.seconds_past_midnight = -1 class AutoAction(gtk.HBox): def activate(self): if self.get_active(): for radio, action in self.action_lookup: if radio.get_active(): action() def get_active(self): return self.check_button.get_active() def set_active(self, boolean): self.check_button.set_active(boolean) def get_radio_index(self): return self.radio_active def set_radio_index(self, value): try: self.action_lookup[value][0].clicked() except: try: self.action_lookup[0][0].clicked() except: pass def __set_sensitive(self, widget): boolean = widget.get_active() for radio, action in self.action_lookup: radio.set_sensitive(boolean) def __handle_radioclick(self, widget, which): if widget.get_active(): self.radio_active = which def __init__(self, labeltext, names_actions): gtk.HBox.__init__(self) self.radio_active = 0 self.check_button = gtk.CheckButton(labeltext) self.set_spacing(4) self.pack_start(self.check_button, False, False, 0) self.check_button.show() lastradio = None self.action_lookup = [] for index, (name, action) in enumerate(names_actions): radio = gtk.RadioButton(lastradio, name) radio.connect("clicked", self.__handle_radioclick, index) lastradio = radio radio.set_sensitive(False) self.check_button.connect("toggled", self.__set_sensitive) self.pack_start(radio, False, False, 0) radio.show() self.action_lookup.append((radio, action)) class FramedSpin(gtk.Frame): """A framed spin button that can be disabled""" def get_value(self): if self.check.get_active(): return self.spin.get_value() else: return -1 def get_cooked_value(self): if self.check.get_active(): return self.spin.get_value() * self.adj_basis.get_value() / 100 else: return -1 def set_value(self, new_value): self.spin.set_value(new_value) def cb_toggled(self, widget): self.spin.set_sensitive(widget.get_active()) def __init__(self, text, adj, adj_basis): self.adj_basis = adj_basis gtk.Frame.__init__(self) self.check = gtk.CheckButton(text) hbox = gtk.HBox() hbox.pack_start(self.check, False, False, 2) self.check.show() self.set_label_widget(hbox) hbox.show() vbox = gtk.VBox() vbox.set_border_width(2) self.spin = gtk.SpinButton(adj) vbox.add(self.spin) self.spin.show() self.spin.set_sensitive(False) self.add(vbox) vbox.show() self.check.connect("toggled", self.cb_toggled) class SimpleFramedSpin(gtk.Frame): """A framed spin button""" def get_value(self): return self.spin.get_value() def set_value(self, new_value): self.spin.set_value(new_value) def __init__(self, text, adj): gtk.Frame.__init__(self) label = gtk.Label(text) hbox = gtk.HBox() hbox.pack_start(label, False, False, 3) label.show() self.set_label_widget(hbox) hbox.show() vbox = gtk.VBox() vbox.set_border_width(2) self.spin = gtk.SpinButton(adj) vbox.add(self.spin) self.spin.show() self.add(vbox) vbox.show() class Tab(gtk.VBox): """Base class for the widget in which each streamer and recorder appears.""" def show_indicator(self, colour): thematch = self.indicator_lookup[colour] thematch.show() for colour, indicator in self.indicator_lookup.iteritems(): if indicator is not thematch: indicator.hide() def send(self, stringtosend): self.source_client_gui.send("tab_id=%d\n%s" % ( self.numeric_id, stringtosend)) def receive(self): return self.source_client_gui.receive() def __init__(self, scg, numeric_id, indicator_lookup): self.indicator_lookup = indicator_lookup self.numeric_id = numeric_id self.source_client_gui = scg gtk.VBox.__init__(self) gtk.VBox.set_border_width(self, 8) gtk.VBox.show(self) class Troubleshooting(gtk.VBox): """Server connection management control widget.""" def __init__(self): gtk.VBox.__init__(self) self.set_border_width(6) self.set_spacing(8) hbox = gtk.HBox() hbox.set_spacing(4) self.custom_user_agent = gtk.CheckButton(_("Custom user agent string")) self.custom_user_agent.connect("toggled", self._on_custom_user_agent) hbox.pack_start(self.custom_user_agent, False) self.user_agent_entry = HistoryEntry() self.user_agent_entry.set_sensitive(False) hbox.pack_start(self.user_agent_entry) self.pack_start(hbox, False) set_tip(hbox, _("Set this on the occasion that the server or its " "firewall specifically refuses to allow libshout based clients.")) frame = gtk.Frame() self.automatic_reconnection = gtk.CheckButton( _("If the connection breaks reconnect to the server")) self.automatic_reconnection.set_active(True) frame.set_label_widget(self.automatic_reconnection) self.pack_start(frame, False) reconbox = gtk.HBox() reconbox.set_border_width(6) reconbox.set_spacing(4) frame.add(reconbox) # TC: Label for a comma separated list of delay times. reconlabel = gtk.Label(_("Delay times")) reconbox.pack_start(reconlabel, False) self.reconnection_times = HistoryEntry(initial_text=("10,10,60", "5"), store_blank=False) set_tip(self.reconnection_times, _("A comma separated list of delays" " in seconds between reconnection attempts. Note that bad values" " or values less than 5 will be interpreted as 5.")) reconbox.pack_start(self.reconnection_times, True) self.reconnection_repeat = gtk.CheckButton(_("Repeat")) set_tip(self.reconnection_repeat, _("Repeat the sequence of delays indefinitely.")) reconbox.pack_start(self.reconnection_repeat, False) # TC: User specifies no dialog box to be shown. self.reconnection_quiet = gtk.CheckButton(_("Quiet")) set_tip(self.reconnection_quiet, _("Keep the reconnection dialogue box hidden at all times.")) reconbox.pack_start(self.reconnection_quiet, False) self.automatic_reconnection.connect("toggled", self._on_automatic_reconnection, reconbox) frame = gtk.Frame(" %s " % _("The contingency plan upon the stream " "buffer becoming full is...")) sbfbox = gtk.VBox() sbfbox.set_border_width(6) sbfbox.set_spacing(1) frame.add(sbfbox) self.pack_start(frame, False) self.sbf_discard_audio = gtk.RadioButton(None, _("Discard audio data for as long as needed.")) self.sbf_reconnect = gtk.RadioButton(self.sbf_discard_audio, _("Assume the connection is beyond saving and reconnect.")) for each in (self.sbf_discard_audio, self.sbf_reconnect): sbfbox.pack_start(each, True, False) self.show_all() self.objects = {"custom_user_agent": (self.custom_user_agent, "active"), "user_agent_entry": (self.user_agent_entry, "history"), "automatic_reconnection": (self.automatic_reconnection, "active"), "reconnection_times": (self.reconnection_times, "history"), "reconnection_repeat": (self.reconnection_repeat, "active"), "reconnection_quiet": (self.reconnection_quiet, "active"), "sbf_reconnect": (self.sbf_reconnect, "active"), } def _on_custom_user_agent(self, widget): self.user_agent_entry.set_sensitive(widget.get_active()) def _on_automatic_reconnection(self, widget, reconbox): reconbox.set_sensitive(widget.get_active()) class StreamTab(Tab): def make_combo_box(self, items): combobox = gtk.combo_box_new_text() for each in items: combobox.append_text(each) return combobox def make_radio(self, qty): listofradiobuttons = [] for iteration in range(qty): listofradiobuttons.append(gtk.RadioButton()) if iteration > 0: listofradiobuttons[iteration].set_group(listofradiobuttons[0]) return listofradiobuttons def make_radio_with_text(self, labels): listofradiobuttons = [] for count, label in enumerate(labels): listofradiobuttons.append(gtk.RadioButton(None, label)) if count > 0: listofradiobuttons[count].set_group(listofradiobuttons[0]) return listofradiobuttons def make_notebook_tab(self, notebook, labeltext, tooltip = None): label = gtk.Label(labeltext) if tooltip is not None: set_tip(label, tooltip) vbox = gtk.VBox() notebook.append_page(vbox, label) label.show() vbox.show() return vbox def item_item_layout(self, item_item_pairs, sizegroup): """Widget packing method.""" vbox = gtk.VBox() vbox.set_spacing(2) for left, right in item_item_pairs: hbox = gtk.HBox() sizegroup.add_widget(hbox) hbox.set_spacing(5) if left is not None: hbox.pack_start(left, False, False, 0) left.show() if right is not None: hbox.pack_start(right, True, True, 0) right.show() vbox.pack_start(hbox, False, False, 0) hbox.show() return vbox def item_item_layout2(self, item_item_pairs, sizegroup): """Widget packing method.""" rhs_size = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) vbox = gtk.VBox() vbox.set_spacing(2) for left, right in item_item_pairs: hbox = gtk.HBox() rhs_size.add_widget(left) sizegroup.add_widget(hbox) hbox.set_spacing(5) hbox.pack_start(left, False, False, 0) left.show() if right is not None: rhs_size.add_widget(right) hbox.pack_end(right, False, False, 0) right.show() vbox.pack_start(hbox, False, False, 0) hbox.show() return vbox def item_item_layout3(self, leftitems, rightitems): outer = gtk.HBox() wedge = gtk.HBox() outer.pack_start(wedge, False, False, 2) wedge = gtk.HBox() outer.pack_end(wedge, False, False, 2) lh = gtk.HBox() rh = gtk.HBox() outer.pack_start(lh, True, False, 0) outer.pack_start(rh, True, False, 0) lv = gtk.VBox() rv = gtk.VBox() lh.pack_start(lv, False, False, 0) rh.pack_start(rv, False, False, 0) lframe = gtk.Frame() lframe.set_shadow_type(gtk.SHADOW_OUT) rframe = gtk.Frame() rframe.set_shadow_type(gtk.SHADOW_OUT) lv.pack_start(lframe, True, False, 0) rv.pack_start(rframe, True, False, 0) lvi = gtk.VBox() lvi.set_border_width(5) lvi.set_spacing(7) rvi = gtk.VBox() rvi.set_border_width(5) rvi.set_spacing(7) lframe.add(lvi) rframe.add(rvi) for item in leftitems: lvi.pack_start(item, True, False, 0) for item in rightitems: rvi.pack_start(item, True, False, 0) return outer def label_item_layout(self, label_item_pairs, sizegroup): """Widget packing method.""" hbox = gtk.HBox() vbox_left = gtk.VBox() vbox_left.set_spacing(1) vbox_right = gtk.VBox() vbox_right.set_spacing(1) hbox.pack_start(vbox_left, False, False, 0) hbox.pack_start(vbox_right, True, True, 0) hbox.set_spacing(3) for text, item in label_item_pairs: if text is not None: labelbox = gtk.HBox() if type(text) == str: label = gtk.Label(text) else: label = text sizegroup.add_widget(label) labelbox.pack_end(label, False, False) label.show() vbox_left.pack_start(labelbox, False, False, 0) labelbox.show() itembox = gtk.HBox() sizegroup.add_widget(itembox) itembox.add(item) item.show() vbox_right.pack_start(itembox, False, False, 0) itembox.show() vbox_left.show() vbox_right.show() return hbox def send(self, string_to_send): Tab.send(self, "dev_type=streamer\n" + string_to_send) def receive(self): return Tab.receive(self) def cb_servertype(self, widget): sens = bool(widget.get_active()) for each in (self.mount_entry, self.login_entry): each.set_sensitive(sens) def server_reconnect(self): if self.connection_string: self.send("command=server_disconnect\n") self.receive() time.sleep(0.25) self.send(self.connection_string) self.receive() @classmethod def get_latin1_text(cls, widget): text = cls.get_utf8_text(widget) return text.decode("utf-8").encode("latin1", "replace") @staticmethod def get_utf8_text(widget): return widget.get_text().strip() def cb_server_connect(self, widget): if widget.get_active(): self.start_stop_encoder(ENCODER_START) d = self.connection_pane.row_to_dict(0) # Determine the value to user for the user agent. if self.troubleshooting.custom_user_agent.get_active(): entry = self.troubleshooting.user_agent_entry user_agent = entry.get_text().strip() del entry else: user_agent = "" # Determine the correct character encoding for fixed metadata. if d["server_type"] == 1: if self.shoutcast_latin1.get_active(): proc = self.get_latin1_text else: proc = self.get_utf8_text else: if self.format_control.get_settings()["family"] == "mpeg": proc = self.get_latin1_text else: proc = self.get_utf8_text self.connection_string = "\n".join(( "stream_source=" + str(self.numeric_id), "server_type=" + ( "Icecast 2", "Shoutcast")[d["server_type"]], "host=" + d["host"], "port=%d" % d["port"], "mount=" + d["mount"], "login=" + d["login"], "password=" + d["password"], "useragent=" + user_agent, "dj_name=" + proc(self.dj_name_entry), "listen_url=" + proc(self.listen_url_entry), "description=" + proc(self.description_entry), "genre=" + proc(self.genre_entry), "irc=" + proc(self.irc_entry), "aim=" + proc(self.aim_entry), "icq=" + proc(self.icq_entry), "tls=" + tls_options[d["tls"]], "ca_directory=" + d["ca_directory"], "ca_file=" + d["ca_file"], "client_cert=" + d["client_cert"], "make_public=" + str(bool(self.make_public.get_active())), "command=server_connect\n")) self.send(self.connection_string) self.is_shoutcast = d["server_type"] == 1 if self.receive() == "failed": self.server_connect.set_active(False) self.connection_string = None else: ircmetadata = {"djname": self.dj_name_entry.get_text().strip(), "description": self.description_entry.get_text().strip(), "url": self.listen_url_entry.get_text().strip(), "source": self.connection_pane.get_source_uri() } self.ircpane.connections_controller.new_metadata(ircmetadata) self.connection_pane.streaming_set(True) else: self.send("command=server_disconnect\n") self.receive() self.start_stop_encoder(ENCODER_STOP) self.connection_string = None self.connection_pane.streaming_set(False) def issue_fade_command(self): self.send("command=initiate_fade\n") self.receive() def cb_test_monitor(self, widget): if widget.get_active(): self.start_stop_encoder(ENCODER_START) self.send("command=monitor_start\n") else: self.send("command=monitor_stop\n") self.start_stop_encoder(ENCODER_STOP) def start_stop_encoder(self, command): """Reference counting starter and stopper for the encoder.""" if command == ENCODER_START: if not self.format_control.running: # Custom metadata encoding may have been changed. self.metadata_update.clicked() # Must run this to bump reference counter regardless of if running. self.format_control.start_encoder_rc() elif command == ENCODER_STOP: self.format_control.stop_encoder_rc() def server_type_cell_data_func(self, celllayout, cell, model, iter): text = model.get_value(iter, 0) if text == _('Shoutcast') and lame_enabled == 0: cell.set_property("sensitive", False) else: cell.set_property("sensitive", True) def cb_metadata(self, widget): if self.format_control.finalised: fallback = self.metadata_fallback.get_text() songname = self.scg.songname.encode("utf-8") or fallback table = [("%%", "%")] + zip(("%r", "%t", "%l"), (( getattr(self.scg, x) or fallback) for x in ( "artist", "title", "album"))) table.append(("%s", songname)) raw_cm = self.metadata.get_text().encode("utf-8", "replace").strip() cm = string_multireplace(raw_cm, table) fdata = self.format_control.get_settings() encoding = "utf-8" if fdata["family"] == "mpeg" and fdata["codec"] in ("mp2", "mp3", "aac", "aacpv2"): if fdata["metadata_mode"] == "utf-8": disp = songname else: encoding = "latin1" disp = songname.decode("utf-8").encode(encoding, "replace").decode(encoding) if not cm: cm = songname elif fdata["family"] == "ogg": disp = "[{0[%r]}], [{0[%t]}], [{0[%l]}]".format(dict(table)) elif fdata["family"] == "webm": disp = songname if not cm: cm = songname else: disp = "no metadata string defined for this stream format: %s %s" % (fdata["family"], fdata["codec"]) if cm: cm = cm.decode("utf-8").encode(encoding, "replace") disp = cm.decode(encoding) if fdata["metadata_mode"] == "suppressed": disp = _('[Metadata suppressed]') self.metadata_display.push(0, disp) self.metadata_update.set_relief(gtk.RELIEF_HALF) self.scg.send("tab_id=%d\ndev_type=encoder\ncustom_meta=%s\n" "command=new_custom_metadata\n" % ( self.numeric_id, cm)) self.scg.receive() def cb_new_metadata_format(self, widget): self.metadata_update.set_relief(gtk.RELIEF_NORMAL) @threadslock def deferred_connect(self): """Intended to be called from a thread.""" self.server_connect.set_active(True) def cb_kick_incumbent(self, widget, post_action=lambda : None): """Try to remove whoever is using the server so that we can connect.""" mode = self.connection_pane.get_master_server_type() if mode == 0: return srv = ListLine(*self.connection_pane.liststore[0]) auth_handler = urllib2.HTTPBasicAuthHandler() if mode == 1: url = "http://" + urllib.quote(srv.host) + ":" + str(srv.port) + \ "/admin/killsource?mount=" + urllib.quote(srv.mount) auth_handler.add_password("Icecast2 Server", srv.host + ":" + \ str(srv.port), srv.login, srv.password) def check_reply(reply): try: elem = xml.etree.ElementTree.fromstring(reply) except xml.etree.ElementTree.ParseError: return False else: rslt = "succeeded" if elem.findtext("return") == "1" else \ "failed" print "kick %s: %s" % (rslt, elem.findtext("message")) return rslt == "succeeded" elif mode == 2: password = self.admin_password_entry.get_text().strip() or \ srv.password url = "http://" + urllib.quote(srv.host) + ":" + str(srv.port) + \ "/admin.cgi?mode=kicksrc" auth_handler.add_password("Shoutcast Server", srv.host + ":" + \ str(srv.port), "admin", password) def check_reply(reply): # Could go to lengths to check the XML stats here. # Thats one whole extra HTTP request. print "kick succeeded" return True opener = urllib2.build_opener(auth_handler) opener.addheaders = [('User-agent', 'Mozilla/5.0')] def threaded(): try: print url reply = opener.open(url).read() except urllib2.URLError, e: print "kick failed:", e else: check_reply(reply) post_action() Thread(target=threaded).start() def __init__(self, scg, numeric_id, indicator_lookup): Tab.__init__(self, scg, numeric_id, indicator_lookup) self.scg = scg self.show_indicator("clear") self.tab_type = "streamer" self.set_spacing(10) self.ic_expander = gtk.Expander(_('Individual Controls')) self.pack_start(self.ic_expander, False) self.ic_expander.show() self.ic_frame = gtk.Frame() ic_vbox = gtk.VBox() ic_vbox.set_border_width(10) ic_vbox.set_spacing(10) self.ic_frame.add(ic_vbox) ic_vbox.show() hbox = gtk.HBox() hbox.set_spacing(6) self.server_connect = gtk.ToggleButton() set_tip(self.server_connect, _('Connect to or disconnect from the radio' ' server. If the button does not stay in, the connection failed ' 'for some reason.\n\nIf the button is greyed out it means your ' 'settings within the \'Connections\' and \'Format\' sections are ' 'either incompatible with one another or are incomplete.\n\n' 'In order to stream a master server needs to be specified in the ' 'configuration section below and must be capable of handling the ' 'chosen streaming format.')) self.server_connect.connect("toggled", self.cb_server_connect) hbox.pack_start(self.server_connect, True, True, 0) self.server_connect_label = gtk.Label() self.server_connect_label.set_ellipsize(pango.ELLIPSIZE_MIDDLE) self.server_connect.add(self.server_connect_label) self.server_connect_label.show() self.server_connect.show() # TC: Kick whoever is on the server. self.kick_incumbent = gtk.Button(_('Kick Source')) self.kick_incumbent.connect("clicked", self.cb_kick_incumbent) set_tip(self.kick_incumbent, _('This will disconnect whoever is ' 'currently using the server, freeing it up for personal use.')) hbox.pack_start(self.kick_incumbent, False) self.kick_incumbent.show() ic_vbox.pack_start(hbox, False) hbox.show() hbox = gtk.HBox() hbox.set_spacing(6) label = gtk.Label(_('Timer:')) hbox.pack_start(label, False) label.show() self.start_timer = TimeEntry(_('From')) set_tip(self.start_timer, _('Automatically connect to the server at ' 'a specific time in 24 hour format, midnight being 00:00')) hbox.pack_start(self.start_timer, False) self.start_timer.show() self.kick_before_start = gtk.CheckButton(_('Kick')) self.kick_before_start.set_sensitive(False) set_tip(self.kick_before_start, _('Disconnect whoever is using the ' 'server just before start time.')) hbox.pack_start(self.kick_before_start, False) self.kick_before_start.show() self.start_timer.check.connect("toggled", lambda w: self.kick_before_start.set_sensitive(w.props.active)) self.stop_timer = TimeEntry(_('To')) set_tip(self.stop_timer, _('Automatically disconnect from the server ' 'at a specific time in 24 hour format.')) self.fade = gtk.CheckButton(_('Fade out')) self.fade.set_sensitive(False) set_tip(self.fade, _('Fade audio before disconnecting.')) hbox.pack_end(self.fade, False) self.stop_timer.check.connect("toggled", lambda w: self.fade.set_sensitive(w.props.active)) self.fade.show() hbox.pack_end(self.stop_timer, False) self.stop_timer.show() ic_vbox.pack_start(hbox, False, False, 0) hbox.show() hbox = gtk.HBox() hbox.set_spacing(10) label = gtk.Label(_('At connect:')) hbox.pack_start(label, False, False, 0) label.show() # TC: [x] Start player (*) 1 ( ) 2 self.start_player_action = AutoAction(_('Start player'), ( ("1", self.source_client_gui.parent.player_left.play.clicked), ("2", self.source_client_gui.parent.player_right.play.clicked))) hbox.pack_start(self.start_player_action, False, False, 0) self.start_player_action.show() set_tip(self.start_player_action, _('Have one of the players start ' 'automatically when a radio server connection is successfully made.')) if PGlobs.num_recorders: vseparator = gtk.VSeparator() hbox.pack_start(vseparator, True, False, 0) vseparator.show() # TC: [x] Start recorder (*) 1 ( ) 2 self.start_recorder_action = AutoAction(_('Start recorder'), [ (chr(ord("1") + i), t.record_buttons.record_button.activate) for i, t in enumerate(self.source_client_gui.recordtabframe.tabs)]) hbox.pack_end(self.start_recorder_action, False, False, 0) if PGlobs.num_recorders: self.start_recorder_action.show() set_tip(self.start_recorder_action, _('Have a recorder start ' 'automatically when a radio server connection is successfully made.')) ic_vbox.pack_start(hbox, False, False, 0) hbox.show() frame = gtk.Frame(" %s " % _('Metadata')) table = gtk.Table(3, 3) table.set_border_width(6) table.set_row_spacings(1) table.set_col_spacings(4) frame.add(table) table.show() ic_vbox.pack_start(frame, False) frame.show() format_label = SmallLabel(_('Format String')) # TC: Label for the metadata fallback value. fallback_label = SmallLabel(_('Fallback')) self.metadata = HistoryEntryWithMenu() self.metadata.child.connect("changed", self.cb_new_metadata_format) self.metadata_fallback = gtk.Entry() self.metadata_fallback.set_width_chars(10) self.metadata_fallback.set_text("") self.metadata_update = gtk.Button() image = gtk.image_new_from_stock(gtk.STOCK_EXECUTE, gtk.ICON_SIZE_MENU) self.metadata_update.set_image(image) image.show() self.metadata_update.connect("clicked", self.cb_metadata) self.metadata_display = gtk.Statusbar() self.metadata_display.set_has_resize_grip(False) set_tip(self.metadata, _('You can enter text to accompany the stream ' 'here and can specify placemarkers %r %t %l %s for the artist, ' 'title, album, and songname respectively, or leave this text ' 'field blank to use the default metadata.\n\nSongname (%s) is ' 'derived from the filename in the absence of sufficient metadata,' ' while the other placemarkers will use the fallback text to the' ' right.\n\nWhen blank, Ogg streams will use the standard Vorbis' ' tags and mp3 will use %s.')) set_tip(self.metadata_fallback, _('The fallback text to use when %r %t' ' %l metadata is unavailable. See the format string to the left.')) set_tip(self.metadata_update, _('Metadata normally updates only on song' ' title changes but you can force an immediate update here.')) x = gtk.EXPAND f = gtk.FILL s = gtk.SHRINK arrangement = (((format_label, x|f), (fallback_label, s|f)), ((self.metadata, x|f), (self.metadata_fallback, s), (self.metadata_update, s))) for r, row in enumerate(arrangement): for c, (child, xopt) in enumerate(row): table.attach(child, c, c + 1, r, r + 1, xopt, s|f) child.show() table.attach(self.metadata_display, 0, 3, 2, 3, x|f, s|f) self.metadata_display.show() self.pack_start(self.ic_frame, False) self.details = gtk.Expander(_('Configuration')) set_tip(self.details, _('The controls for configuring a stream.')) self.pack_start(self.details, False) self.details.show() self.details_nb = gtk.Notebook() self.pack_start(self.details_nb, False) self.connection_pane = ConnectionPane(set_tip, self) label = gtk.Label(_('Connection')) self.details_nb.append_page(self.connection_pane, label) label.show() self.connection_pane.show() label = gtk.Label(_('Format')) # Format box self.format_control = FormatControl(self.send, self.receive) self.details_nb.append_page(self.format_control, label) self.format_control.connect("notify::cap-icecast", lambda a, b: self.connection_pane.set_button(self)) self.format_control.connect("notify::cap-shoutcast", lambda a, b: self.connection_pane.set_button(self)) label.show() vbox = gtk.VBox() # TC: Tab heading. User can enter information about the stream here. label = gtk.Label(_('Stream Info')) self.details_nb.append_page(vbox, label) label.show() vbox.show() self.dj_name_entry = DefaultEntry("eyedeejaycee") set_tip(self.dj_name_entry, _('Enter your DJ name or station name here.' ' Typically this information will be displayed by listener clients.')) self.listen_url_entry = DefaultEntry("http://www.example.com") set_tip(self.listen_url_entry, _('The URL of your radio station. This' ' and the rest of the information below is intended for display' ' on a radio station listings website.')) self.description_entry = gtk.Entry() set_tip(self.description_entry, _('A description of your radio station.')) genre_entry_box = gtk.HBox() genre_entry_box.set_spacing(12) self.genre_entry = DefaultEntry("Misc") set_tip(self.genre_entry, _('The musical genres you are likely to play.')) genre_entry_box.pack_start(self.genre_entry, True, True, 0) self.genre_entry.show() self.make_public = gtk.CheckButton(_('Make Public')) set_tip(self.make_public, _('Publish your radio station on a listings' ' website. The website in question will depend on how the server' ' to which you connect is configured.')) genre_entry_box.pack_start(self.make_public, False, False, 0) self.make_public.show() info_sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_VERTICAL) stream_details_pane = self.label_item_layout(( # TC: The DJ or Stream name. (_('DJ name'), self.dj_name_entry), (_('Listen URL'), self.listen_url_entry), # TC: Station description. (_('Description'), self.description_entry), (_('Genre(s)'), genre_entry_box) ), info_sizegroup) stream_details_pane.set_border_width(10) vbox.add(stream_details_pane) stream_details_pane.show() vbox = gtk.VBox() vbox.set_border_width(10) vbox.set_spacing(10) alhbox = gtk.HBox() alhbox.set_spacing(3) label = gtk.Label(_('Master server admin password')) alhbox.pack_start(label, False) label.show() self.admin_password_entry = gtk.Entry() self.admin_password_entry.set_visibility(False) set_tip(self.admin_password_entry, _("This is for kick and stats on " "Shoutcast master servers that have an administrator password. For" " those that don't leave this blank (the source password is" " sufficient for those).")) alhbox.pack_start(self.admin_password_entry) self.admin_password_entry.show() vbox.pack_start(alhbox, False) alhbox.show() frame = CategoryFrame(" %s " % _('Contact Details')) frame.set_border_width(0) self.irc_entry = gtk.Entry() set_tip(self.irc_entry, _('Internet Relay Chat connection info goes here.')) self.aim_entry = gtk.Entry() set_tip(self.aim_entry, _('Connection info for AOL instant messenger goes here.')) self.icq_entry = gtk.Entry() set_tip(self.icq_entry, _('ICQ instant messenger connection info goes here.')) contact_sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_VERTICAL) contact_details_pane = self.label_item_layout(( (_('IRC'), self.irc_entry), (_('AIM'), self.aim_entry), (_('ICQ'), self.icq_entry) ), contact_sizegroup) contact_details_pane.set_border_width(10) frame.add(contact_details_pane) contact_details_pane.show() vbox.pack_start(frame, False) frame.show_all() self.shoutcast_latin1 = gtk.CheckButton( _('Use ISO-8859-1 encoding for fixed metadata')) set_tip(self.shoutcast_latin1, _('Enable this if sending to a Shoutcast V1 server.')) vbox.pack_start(self.shoutcast_latin1, False) self.shoutcast_latin1.show() label = gtk.Label(_('Extra Shoutcast')) self.details_nb.append_page(vbox, label) label.show() vbox.show() label = gtk.Label(_("Troubleshooting")) self.troubleshooting = Troubleshooting() self.details_nb.append_page(self.troubleshooting, label) label.show() label = gtk.Label("IRC") self.ircpane = IRCPane() self.details_nb.append_page(self.ircpane, label) label.show() self.details_nb.set_current_page(0) self.objects = { "metadata" : (self.metadata, "history"), "metadata_fb" : (self.metadata_fallback, "text"), "prekick" : (self.kick_before_start, "active"), "connections" : (self.connection_pane, ("loader", "saver")), "stats_never" : (self.connection_pane.stats_never, "active"), "stats_always": (self.connection_pane.stats_always, "active"), "dj_name" : (self.dj_name_entry, "text"), "listen_url" : (self.listen_url_entry, "text"), "description" : (self.description_entry, "text"), "genre" : (self.genre_entry, "text"), "make_public" : (self.make_public, "active"), "contact_aim" : (self.aim_entry, "text"), "contact_irc" : (self.irc_entry, "text"), "contact_icq" : (self.icq_entry, "text"), "timer_start_active" : (self.start_timer.check, "active"), "timer_start_time" : (self.start_timer.entry, "text"), "timer_stop_active" : (self.stop_timer.check, "active"), "timer_stop_time" : (self.stop_timer.entry, "text"), "timer_stop_fade" : (self.fade, "active"), "sc_admin_pass" : (self.admin_password_entry, "text"), "ic_expander" : (self.ic_expander, "expanded"), "conf_expander" : (self.details, "expanded"), "action_play_active" : (self.start_player_action, "active"), "action_play_which" : (self.start_player_action, "radioindex"), "action_record_active" : (self.start_recorder_action, "active"), "action_record_which" : (self.start_recorder_action, "radioindex"), "irc_data" : (self.ircpane, "marshall"), "format_data" : (self.format_control, "marshall"), "details_nb" : (self.details_nb, "current_page"), "shoutcast_latin1" : (self.shoutcast_latin1, "active"), } self.objects.update(self.troubleshooting.objects) self.reconnection_dialog = ReconnectionDialog(self) class RecordTab(Tab): class RecordButtons(CategoryFrame): def cb_recbuttons(self, widget, userdata): changed_state = False if userdata == "rec": if widget.get_active(): if not self.recording: sd = self.parentobject.source_dest if sd.streamtab is not None: sd.streamtab.start_stop_encoder(ENCODER_START) num_id = sd.streamtab.numeric_id else: num_id = -1 filename = datetime.datetime.today().strftime(self.parentobject.scg.parent.prefs_window.recorder_filename.get_text().strip()) table = (("$$", "$"), ("$r", "%02d" % (self.parentobject.numeric_id + 1))) filename = string_multireplace(filename, table) folder = sd.file_chooser_button.get_current_folder() self.parentobject.send("record_source=%d\n" "record_filename=%s\n" "record_folder=%s\ncommand=recorder_start\n" % ( num_id, filename, folder)) sd.set_sensitive(False) self.parentobject.time_indicator.set_sensitive(True) self.path = folder self.recording = True self.parentobject.recordstate(True, self.path) if self.parentobject.receive() == "failed": self.stop_button.clicked() else: if self.stop_pressed: self.stop_pressed = False if self.recording == True: self.recording = False self.parentobject.send("command=recorder_stop\n") self.parentobject.receive() if self.parentobject.source_dest.streamtab is not None: control = self.parentobject.source_dest.streamtab control.start_stop_encoder(ENCODER_STOP) del control self.parentobject.source_dest.set_sensitive(True) self.parentobject.time_indicator.set_sensitive(False) if self.pause_button.get_active(): self.pause_button.set_active(False) self.parentobject.recordstate(False, self.path) else: widget.set_active(True) elif userdata == "stop": if self.recording: self.stop_pressed = True self.record_button.set_active(False) else: self.pause_button.set_active(False) elif userdata == "pause": if self.pause_button.get_active(): self.parentobject.send("command=recorder_pause\n") else: self.parentobject.send("command=recorder_unpause\n") self.parentobject.receive() def path2image(self, pathname): pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(pathname, 14, 14) image = gtk.Image() image.set_from_pixbuf(pixbuf) image.show() return image def __init__(self, parent): CategoryFrame.__init__(self) self.parentobject = parent self.stop_pressed = False self.path = None self.recording = False hbox = gtk.HBox() hbox.set_border_width(3) hbox.set_spacing(6) self.stop_button = gtk.Button() self.record_button = gtk.ToggleButton() self.pause_button = gtk.ToggleButton() for button, gname, signal, tip_text in ( (self.stop_button, "stop", "clicked", _('Stop recording.')), (self.record_button, "rec", "toggled", _('Start recording.\n\nIf this button is greyed out it ' 'could mean either the encoder settings are not valid or ' 'write permission is not granted on the selected folder.' )), (self.pause_button, "pause", "toggled", _('Pause recording.'))): button.set_size_request(30, -1) button.add(self.path2image(FGlobs.pkgdatadir / ( gname + ".png"))) button.connect(signal, self.cb_recbuttons, gname) hbox.pack_start(button, False, False, 0) button.show() set_tip(button, tip_text) self.add(hbox) hbox.show() class TimeIndicator(gtk.Entry): def set_value(self, seconds): if self.oldvalue != seconds: self.oldvalue = seconds minutes, seconds = divmod(seconds, 60) hours, minutes = divmod(minutes, 60) days, hours = divmod(hours, 24) if days > 10: # Shut off the recorder after 10 days recording. self.parentobject.record_buttons.stop_button.clicked() elif days >= 1: self.set_text("%dd:%02d:%02d" % (days, hours, minutes)) else: self.set_text("%02d:%02d:%02d" % (hours, minutes, seconds)) def button_press_cancel(self, widget, event): return True def __init__(self, parent): self.parentobject = parent gtk.Entry.__init__(self) self.set_width_chars(7) self.set_sensitive(False) self.set_editable(False) self.oldvalue = -1 self.set_value(0) self.connect("button-press-event", self.button_press_cancel) set_tip(self, _('Recording time elapsed.')) class SourceDest(CategoryFrame): cansave = False def set_sensitive(self, boolean): self.source_combo.set_sensitive(boolean) self.file_chooser_button.set_sensitive(boolean) def cb_source_combo(self, widget): sens = self.parentobject.record_buttons.record_button.set_sensitive if widget.get_active() > 0: self.streamtab = self.streamtabs[widget.get_active() - 1] sens(self.cansave and self.streamtab.format_control.props.cap_recordable) else: self.streamtab = None sens(self.cansave and self.source_store[self.source_combo.get_active()][1]) def populate_stream_selector(self, text, tabs): self.streamtabs = tabs for index in range(len(tabs)): self.source_store.append((" ".join((text, str(index + 1))), 1)) self.source_combo.connect("changed", self.cb_source_combo) self.source_combo.set_active(0) for tab in tabs: tab.format_control.connect("notify::cap-recordable", lambda w, v: self.source_combo.emit("changed")) def cb_new_folder(self, folder_chooser_button, path): self.cansave = os.access(path, os.W_OK) self.source_combo.emit("changed") def __init__(self, parent): self.parentobject = parent CategoryFrame.__init__(self) hbox = gtk.HBox() hbox.set_spacing(6) self.source_store = gtk.ListStore(str, int) self.source_combo = gtk.ComboBox(self.source_store) rend = gtk.CellRendererText() self.source_combo.pack_start(rend) self.source_combo.set_attributes(rend, text=0, sensitive=1) self.source_store.append((" FLAC+CUE", FGlobs.flacenabled)) hbox.pack_start(self.source_combo, False, False, 0) self.source_combo.show() arrow = gtk.Arrow(gtk.ARROW_RIGHT, gtk.SHADOW_IN) hbox.pack_start(arrow, False, False, 0) arrow.show() file_dialog = gtk.FileChooserDialog("", None, gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) # TC: Dialog title bar text. file_dialog.set_title(_('Select the folder to record to' ) + pm.title_extra) file_dialog.set_do_overwrite_confirmation(True) self.file_chooser_button = FolderChooserButton(file_dialog) self.file_chooser_button.connect("current-folder-changed", self.cb_new_folder) self.file_chooser_button.set_current_folder(os.environ["HOME"]) hbox.pack_start(self.file_chooser_button, True, True, 0) self.file_chooser_button.show() self.add(hbox) hbox.show() set_tip(self.source_combo, _("Choose which stream to record or the" " 24 bit FLAC option. If the stream isn't already running the" " encoder will be started automatically using whatever settings" " are currently configured.")) set_tip(self.file_chooser_button, _('Choose which directory you ' 'want to save to. All file names will be in a timestamp format ' 'and have either an oga, mp3, or flac file extension. Important:' ' you need to select a directory to which you have adequate ' 'write permission.')) def send(self, string_to_send): Tab.send(self, "dev_type=recorder\n" + string_to_send) def receive(self): return Tab.receive(self) def show_indicator(self, colour): Tab.show_indicator(self, colour) self.scg.parent.recording_panel.indicator[self.numeric_id ].set_indicator(colour) def recordstate(self, state, path): self.scg._handle_recordstate(self.numeric_id, state, path) def __init__(self, scg, numeric_id, indicator_lookup): Tab.__init__(self, scg, numeric_id, indicator_lookup) self.scg = scg self.numeric_id = numeric_id self.show_indicator("clear") self.tab_type = "recorder" hbox = gtk.HBox() hbox.set_spacing(10) self.pack_start(hbox, False, False, 0) hbox.show() self.source_dest = self.SourceDest(self) hbox.pack_start(self.source_dest, True, True, 0) self.source_dest.show() self.time_indicator = self.TimeIndicator(self) hbox.pack_start(self.time_indicator, False, False, 0) self.time_indicator.show() self.record_buttons = self.RecordButtons(self) hbox.pack_start(self.record_buttons, False, False, 0) self.record_buttons.show() self.objects = { "recording_source": (self.source_dest.source_combo, "active"), "recording_directory": (self.source_dest.file_chooser_button, "directory") } class TabFrame(ModuleFrame): def __init__(self, scg, frametext, q_tabs, tabtype, indicatorlist, tab_tip_text): ModuleFrame.__init__(self, " %s " % frametext) self.notebook = gtk.Notebook() self.notebook.set_border_width(8) self.vbox.add(self.notebook) self.notebook.show() self.tabs = [] self.indicator_image_qty = len(indicatorlist) for index in range(q_tabs): labelbox = gtk.HBox() labelbox.set_spacing(3) numlabel = gtk.Label(str(index + 1)) labelbox.add(numlabel) numlabel.show() indicator_lookup = {} for colour, indicator in indicatorlist: image = gtk.Image() pixbuf = gtk.gdk.pixbuf_new_from_file_at_size( FGlobs.pkgdatadir / (indicator + ".png"), 16, 16) image.set_from_pixbuf(pixbuf) labelbox.add(image) indicator_lookup[colour] = image self.tabs.append(tabtype(scg, index, indicator_lookup)) self.notebook.append_page(self.tabs[-1], labelbox) labelbox.show() set_tip(labelbox, tab_tip_text) class StreamTabFrame(TabFrame): def forall(self, widget, f, *args): for cb, tab in zip(self.togglelist, self.tabs): if cb.get_active(): f(tab, *args) def cb_metadata_group_set(self, tab): tab.metadata.set_text(self.metadata_group.get_text()) def cb_metadata_group_update(self, tab): self.cb_metadata_group_set(tab) tab.metadata_update.clicked() def cb_connect_toggle(self, tab, val): if tab.server_connect.flags() & gtk.SENSITIVE: tab.server_connect.set_active(val) def cb_kick_group(self, tab): tab.kick_incumbent.clicked() def cb_group_safety(self, widget): sens = widget.get_active() for each in (self.disconnect_group, self.kick_group): each.set_sensitive(sens) def __init__(self, scg, frametext, q_tabs, tabtype, indicatorlist, tab_tip_text): TabFrame.__init__(self, scg, frametext, q_tabs, tabtype, indicatorlist, tab_tip_text) outerframe = gtk.Frame() set_tip(outerframe, _('Perform operations on multiple servers in unison.')) outerframe.set_border_width(8) outerframe.set_shadow_type(gtk.SHADOW_OUT) gvbox = gtk.VBox() gvbox.set_border_width(8) gvbox.set_spacing(8) outerframe.add(gvbox) gvbox.show() hbox = gtk.HBox() hbox.set_spacing(5) gvbox.pack_start(hbox, False) hbox.show() self.connect_group = gtk.Button(_("Connect")) self.connect_group.connect("clicked", self.forall, self.cb_connect_toggle, True) hbox.add(self.connect_group) self.connect_group.show() frame = gtk.Frame() hbox.add(frame) frame.show() ihbox = gtk.HBox() ihbox.set_border_width(3) ihbox.set_spacing(6) frame.add(ihbox) ihbox.show() self.group_safety = gtk.CheckButton() self.group_safety.connect("toggled", self.cb_group_safety) ihbox.pack_start(self.group_safety, False) self.group_safety.show() self.disconnect_group = gtk.Button(_("Disconnect")) self.disconnect_group.connect("clicked", self.forall, self.cb_connect_toggle, False) self.disconnect_group.connect("clicked", lambda x: self.group_safety.set_active(False)) self.disconnect_group.set_sensitive(False) ihbox.add(self.disconnect_group) self.disconnect_group.show() self.kick_group = gtk.Button(_("Kick Sources")) self.kick_group.connect("clicked", self.forall, self.cb_kick_group) self.kick_group.connect("clicked", lambda x: self.group_safety.set_active(False)) self.kick_group.set_sensitive(False) ihbox.add(self.kick_group) self.kick_group.show() hbox = gtk.HBox() hbox.set_spacing(6) label = gtk.Label("%s " % _('Metadata:')) hbox.pack_start(label, False) label.show() self.metadata_group = HistoryEntryWithMenu() hbox.pack_start(self.metadata_group) self.metadata_group.show() self.metadata_group_set = gtk.Button() image = gtk.image_new_from_stock(gtk.STOCK_ADD, gtk.ICON_SIZE_MENU) self.metadata_group_set.set_image(image) image.show() self.metadata_group_set.connect("clicked", self.forall, self.cb_metadata_group_set) hbox.pack_start(self.metadata_group_set, False) self.metadata_group_set.show() self.metadata_group_update = gtk.Button() image = gtk.image_new_from_stock(gtk.STOCK_EXECUTE, gtk.ICON_SIZE_MENU) self.metadata_group_update.set_image(image) image.show() self.metadata_group_update.connect("clicked", self.forall, self.cb_metadata_group_update) hbox.pack_start(self.metadata_group_update, False) self.metadata_group_update.show() gvbox.pack_start(hbox, False) hbox.show() self.vbox.pack_start(outerframe, False) outerframe.show() self.vbox.reorder_child(outerframe, 0) self.objects = { "group_metadata": (self.metadata_group, "history") } self.togglelist = [gtk.CheckButton(str(x + 1)) for x in range(q_tabs)] hbox = gtk.HBox() label = gtk.Label(" %s " % _('Group Controls')) hbox.pack_start(label, False) label.show() for i, cb in enumerate(self.togglelist): hbox.pack_start(cb, False) cb.show() self.objects["group_toggle_" + str(i + 1)] = (cb, "active") spc = gtk.HBox() hbox.pack_end(spc, False, False, 2) spc.show() outerframe.set_label_widget(hbox) hbox.show() class SourceClientGui(dbus.service.Object): unexpected_reply = "unexpected reply from idjcsourceclient" @dbus.service.method(dbus_interface=PGlobs.dbus_bus_basename) def new_plugin_started(self): print "streamstate_cache purge" self._streamstate_cache = {} self._recordstate_cache = {} def monitor(self): self.led_alternate = not self.led_alternate streaming = recording = False # update the recorder LED indicators for rectab in self.recordtabframe.tabs: self.send("dev_type=recorder\ntab_id=%d\ncommand=get_report\n" % rectab.numeric_id) while 1: reply = self.receive() if reply == "succeeded" or reply == "failed": break if reply.startswith("recorder%dreport=" % rectab.numeric_id): recorder_state, recorded_seconds = reply.split("=")[ 1].split(":") rectab.show_indicator(("clear", "red", "amber", "clear")[ int(recorder_state)]) rectab.time_indicator.set_value(int(recorded_seconds)) rec_state = recorder_state != "0" if rec_state: recording = True self._handle_recordstate(rectab.numeric_id, rec_state, rectab.record_buttons.path) update_listeners = False l_count = 0 for streamtab in self.streamtabframe.tabs: cp = streamtab.connection_pane cp.timer.run() # obtain connection stats if cp.timer.n == 0: update_listeners = True l_count += cp.listeners self.send("dev_type=streamer\ntab_id=%d\ncommand=get_report\n" % \ streamtab.numeric_id) reply = self.receive() if reply != "failed": self.receive() if reply.startswith("streamer%dreport=" % streamtab.numeric_id): streamer_state, stream_sendbuffer_pc, brand_new = \ reply.split("=")[1].split(":") state = int(streamer_state) self._handle_streamstate(streamtab.numeric_id, int(state > 1), streamtab) streamtab.show_indicator( ("clear", "amber", "green", "clear")[state]) streamtab.ircpane.connections_controller.set_stream_active( state > 1) mi = self.parent.stream_indicator[streamtab.numeric_id] if (streamer_state == "2"): mi.set_active(True) mi.set_value(int(stream_sendbuffer_pc)) if int(stream_sendbuffer_pc ) >= 100 and self.led_alternate: tshoot = streamtab.troubleshooting if tshoot.sbf_discard_audio.get_active(): streamtab.show_indicator("amber") mi.set_flash(True) else: streamtab.server_connect.set_active(False) streamtab.server_connect.set_active(True) print "remade the connection because stream " \ "buffer was full" del tshoot else: mi.set_flash(False) else: mi.set_active(False) mi.set_flash(False) if brand_new == "1": # Streamer connected triggers. streamtab.start_recorder_action.activate() streamtab.start_player_action.activate() streamtab.reconnection_dialog.deactivate() if streamer_state != "0": streaming = True elif streamtab.server_connect.get_active(): streamtab.server_connect.set_active(False) streamtab.reconnection_dialog.activate() else: print "sourceclientgui.monitor: bad reply for" \ " streamer data:", reply else: print "sourceclientgui.monitor:" \ " failed to get a report from the streamer" # the connection start/stop timers are processed here if streamtab.start_timer.get_active(): diff = time.localtime(time.time() - \ streamtab.start_timer.get_seconds_past_midnight()) # check hours, minutes, seconds for midnightness if not (diff[3] or diff[4] or diff[5]): streamtab.start_timer.check.set_active(False) if streamtab.kick_before_start.get_active(): streamtab.cb_kick_incumbent(None, streamtab.deferred_connect) else: streamtab.server_connect.set_active(True) if streamtab.stop_timer.get_active() and \ streamtab.server_connect.get_active(): if streamtab.fade.get_active(): diff = time.localtime(int(time.time()) + 5 - \ streamtab.stop_timer.get_seconds_past_midnight()) if not (diff[3] or diff[4] or diff[5]): streamtab.issue_fade_command() diff = time.localtime(int(time.time()) - \ streamtab.stop_timer.get_seconds_past_midnight()) if not (diff[3] or diff[4] or diff[5]): streamtab.server_connect.set_active(False) streamtab.stop_timer.check.set_active(False) self.autoshutdown_dialog.present() self.is_streaming = streaming self.is_recording = recording streamtab.reconnection_dialog.run() if update_listeners: self.parent.listener_indicator.set_text(str(l_count)) return True def _handle_streamstate(self, numeric_id, connected, streamtab): cache = self._streamstate_cache if cache is not None and (numeric_id not in cache or cache[numeric_id] != connected): cache[numeric_id] = connected self.streamstate_changed(numeric_id, connected, streamtab.server_connect_label.get_text()) def _handle_recordstate(self, numeric_id, state, pathname): cache = self._recordstate_cache if cache is not None and (numeric_id not in cache or cache[numeric_id] != state): cache[numeric_id] = state self.recordstate_changed(numeric_id, state, pathname or "") @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="uus") def streamstate_changed(self, numeric_id, state, where): pass @dbus.service.signal(dbus_interface=PGlobs.dbus_bus_basename, signature="uus") def recordstate_changed(self, numeric_id, state, where): pass def stop_streaming_all(self): for streamtab in self.streamtabframe.tabs: streamtab.server_connect.set_active(False) def stop_irc_all(self): for streamtab in self.streamtabframe.tabs: streamtab.ircpane.connections_controller.cleanup() def stop_recording_all(self): for rectab in self.recordtabframe.tabs: rectab.record_buttons.stop_button.clicked() def cleanup(self): self.stop_recording_all() self.stop_streaming_all() self.stop_irc_all() source_remove(self.monitor_source_id) self.monitor() def app_exit(self): if self.parent.session_loaded: self.parent.destroy() else: self.parent.destroy_hard() def receive(self): if not self.comms_reply_pending: raise RuntimeError("sc receive: nothing to receive") while 1: try: reply = self.parent.mixer_read() except: return "failed" if reply.startswith("idjcsc: "): reply = reply[8:-1] if reply == "succeeded" or reply == "failed": self.comms_reply_pending = False return reply else: print self.unexpected_reply, reply if reply == "" or reply == "Segmentation Fault\n": self.comms_reply_pending = False return "failed" def send(self, string_to_send): if self.comms_reply_pending: # Dump unused replies from previous send. raise RuntimeError("uncollected reply from previous command: " \ "\n%s+++" % self.comms_reply_pending) if not "tab_id=" in string_to_send: string_to_send = "tab_id=-1\n" + string_to_send self.parent.mixer_write(string_to_send + "end\n", "sc") self.comms_reply_pending = string_to_send def restart_streams_and_recorders(self): whichstreams = [] whichrecorders = [] s = self.streamtabframe.tabs for each in s: whichstreams.append(each.server_connect.get_active()) each.server_connect.set_active(False) r = self.recordtabframe.tabs for each in r: whichrecorders.append( each.record_buttons.record_button.get_active()) each.record_buttons.stop_button.clicked() for each in s: each.server_connect.set_active(whichstreams.pop(0)) for each in r: each.record_buttons.record_button.set_active(whichrecorders.pop(0)) def new_metadata(self, artist, title, album, songname): self.artist = artist self.title = title self.album = album self.songname = songname self.send("artist=%s\ntitle=%s\nalbum=%s\n" "command=new_song_metadata\n" % ( artist.strip(), title.strip(), album.strip())) if self.receive() == "succeeded": print "updated song metadata successfully" ircmetadata = {"artist": artist, "title": title, "album": album, "songname": songname} # Update the song metadata on all stream tabs. for tab in self.streamtabframe.tabs: tab.metadata_update.clicked() tab.ircpane.connections_controller.new_metadata(ircmetadata) def source_client_open(self): global lame_enabled self.comms_reply_pending = False self.send("command=jack_samplerate_request\n") reply = self.receive() if reply != "failed" and self.receive() == "succeeded": sample_rate_string = reply else: print self.unexpected_reply print "failed to obtain the sample rate" self.app_exit() if not sample_rate_string.startswith("sample_rate="): print self.unexpected_reply print "sample rate reply contains the following:", \ sample_rate_string self.app_exit() self.send("command=encoder_lame_availability\n") reply = self.receive() if reply != "failed" and self.receive() == "succeeded" and \ reply.startswith("lame_available="): if reply[15] == "1": lame_enabled = 1 else: lame_enabled = 0 else: print self.unexpected_reply self.app_exit() print "threads initialised" self.jack_sample_rate = int(sample_rate_string[12:]) print "jack sample rate is", self.jack_sample_rate try: for streamtab in self.streamtabframe.tabs: streamtab.stream_resample_frame.jack_sample_rate = \ self.jack_sample_rate streamtab.stream_resample_frame.resample_dummy_object.clicked() # update the stream tabs with the current jack sample rate except (NameError, AttributeError): # If this is the initial call the stream tabs will not exist yet. pass if FGlobs.avenabled: self.send("command=encoder_aac_availability\n") reply = self.receive() assert reply != "failed" and self.receive() == "succeeded" and \ reply.startswith("aac_functionality=") FormatCodecMPEG.aac_enabled = int(reply[-3]) FormatCodecMPEG.aacpv2_enabled = int(reply[-1]) else: FormatCodecMPEG.aac_enabled = 0 FormatCodecMPEG.aacpv2_enabled = 0 self.uptime = time.time() def cb_delete_event(self, widget, event, data = None): self.window.hide() return True def save_session_settings(self, where): try: # Check the following are initilised before proceeding. tabframes = (self, self.streamtabframe, self.recordtabframe) except AttributeError: return # Cancelled save. try: with open((where or pm.basedir) / "s_data", "w") as f: for tabframe in tabframes: for tab in tabframe.tabs: f.write("".join(("[", tab.tab_type, " ", str(tab.numeric_id), "]\n"))) for lvalue, (widget, method) in tab.objects.iteritems(): if type(method) == tuple: rvalue = widget.__getattribute__(method[1])() elif method == "active": rvalue = str(int(widget.get_active())) elif method == "text": rvalue = widget.get_text() elif method == "value": rvalue = str(widget.get_value()) elif method == "expanded": rvalue = str(int(widget.get_expanded())) elif method == "notebookpage": rvalue = str(widget.get_current_page()) elif method == "password": rvalue = widget.get_text() elif method == "history": rvalue = widget.get_history() elif method == "radioindex": rvalue = str(widget.get_radio_index()) elif method == "current_page": rvalue = str(widget.get_current_page()) elif method == "directory": rvalue = widget.get_current_folder() or "" elif method == "filename": rvalue = widget.get_filename() or "" elif method == "marshall": rvalue = widget.marshall() else: print "unsupported", lvalue, widget, method continue if method != "password" or \ self.parent.prefs_window.keeppass.get_active(): f.write("".join((lvalue, "=", rvalue, "\n"))) f.write("\n") except Exception as e: print "error attempting to write file: serverdata", e raise def load_previous_session(self): try: with open(pm.basedir / "s_data") as f: tabframe = None while 1: line = f.readline() if line == "": break else: line = line[:-1] # strip off the newline character if line == "": continue if line.startswith("[") and line.endswith("]"): try: name, numeric_id = line[1:-1].split(" ") except: print "malformed line:", line, "in serverdata file" tabframe = None else: if name == "server_window": tabframe = self elif name == "streamer": tabframe = self.streamtabframe elif name == "recorder": tabframe = self.recordtabframe else: print "unsupported element:", line, "in serverdata file" tabframe = None if tabframe is not None: try: tab = tabframe.tabs[int(numeric_id)] except: print "unsupported tab number:", line, "in serverdata file" tabframe = None else: if tabframe is not None: try: lvalue, rvalue = line.split("=", 1) except: print "not a valid key, value pair:", line, "in serverdata file" else: if not lvalue: print "key value is missing:", line, "in serverdata file" else: try: (widget, method) = tab.objects[lvalue] except KeyError: print "key value not recognised:", line, "in serverdata file" else: try: int_rvalue = int(rvalue) except: int_rvalue = None try: float_rvalue = float(rvalue) except: float_rvalue = None if type(method) == tuple: widget.__getattribute__(method[0])(rvalue) elif method == "active": if int_rvalue is not None: widget.set_active(int_rvalue) elif method == "expanded": if int_rvalue is not None: widget.set_expanded(int_rvalue) elif method == "value": if float_rvalue is not None: widget.set_value(float_rvalue) elif method == "notebookpage": if int_rvalue is not None: widget.set_current_page(int_rvalue) elif method == "radioindex": if int_rvalue is not None: widget.set_radio_index(int_rvalue) elif method == "current_page": widget.set_current_page(int_rvalue) elif method == "text": widget.set_text(rvalue) elif method == "password": widget.set_text(rvalue) elif method == "history": widget.set_history(rvalue) elif method == "directory": if rvalue: widget.set_current_folder(rvalue) elif method == "filename": if rvalue: rvalue = widget.set_filename(rvalue) elif method == "marshall": widget.unmarshall(rvalue) else: print "method", method, "is unsupported at this time hence widget pertaining to", lvalue, "will not be set" except Exception as e: if isinstance(e, IOError): print e else: traceback.print_exc() def cb_after_realize(self, widget): self.wst.apply() #widget.resize(int(self.win_x), 1) self.streamtabframe.connect_group.grab_focus() def cb_stream_details_expand(self, expander, param_spec, next_expander, sw): if expander.get_expanded(): sw.show() else: sw.hide() if expander.get_expanded() == next_expander.get_expanded(): if not expander.get_expanded(): self.window.resize((self.wst.get_x()), 1) else: pass else: next_expander.set_expanded(expander.get_expanded()) def cb_stream_controls_expand(self, expander, param_spec, next_expander, frame, details_shown): if expander.get_expanded(): frame.show() else: frame.hide() if expander.get_expanded() == next_expander.get_expanded(): self.window.resize((self.wst.get_x()), 1) else: next_expander.set_expanded(expander.get_expanded()) def update_metadata(self, text=None, filter=None): for tab in self.streamtabframe.tabs: if filter is None or str(tab.numeric_id) in filter: if text is not None: tab.metadata.set_text(text) tab.metadata_update.clicked() def cb_populate_recorder_menu(self, mi, tabs): menu = mi.get_submenu() def none(text): mi = gtk.MenuItem(text) mi.set_sensitive(False) menu.append(mi) mi.show() if not tabs: none(_('Recording Facility Unavailable')) elif not any(tab.record_buttons.record_button.get_sensitive() \ for tab in tabs): none(_('No Recorders Are Correctly Configured')) else: for tab in tabs: rec = tab.record_buttons.record_button stop = tab.record_buttons.stop_button sens = rec.get_sensitive() src = tab.source_dest.source_combo.get_active_text().strip() dest = tab.source_dest.file_chooser_button.get_current_folder() mi = gtk.CheckMenuItem() label = gtk.Label() label.set_alignment(0.0, 0.5) label.set_markup( # TC: Recorder menu format string. (_("{numericid} [{source}] > [{directory}]").format( numericid=tab.numeric_id + 1, source=src, directory=dest) if sens else " " + _('Misconfigured'))) mi.add(label) label.show() mi.set_active(rec.get_active()) mi.set_sensitive(sens) menu.append(mi) mi.show() mi.connect("activate", lambda w, r, s: r.set_active(r.get_sensitive()) if w.get_active() else s.clicked(), rec, stop) def cb_populate_streams_menu(self, mi, tabs): menu = mi.get_submenu() def none(text): mi = gtk.MenuItem(text) mi.set_sensitive(False) menu.append(mi) mi.show() if not tabs: none(_('Streaming Facility Unavailable')) elif not any(tab.server_connect.get_sensitive() for tab in tabs): none(_('No Streams Are Currently Configured')) else: sens = any(x.get_active() for x in self.streamtabframe.togglelist) mi = gtk.MenuItem(_('Group Connect')) mi.set_sensitive(sens) menu.append(mi) mi.show() mi.connect("activate", lambda w: self.streamtabframe.connect_group.clicked()) mi = gtk.MenuItem(_('Group Disconnect')) mi.set_sensitive(sens) menu.append(mi) mi.show() mi.connect("activate", lambda w: self.streamtabframe.disconnect_group.clicked()) spc = gtk.SeparatorMenuItem() menu.append(spc) spc.show() for tab in tabs: sc = tab.server_connect if sc.get_sensitive(): mi = gtk.CheckMenuItem(str(tab.numeric_id + 1) + " %s" % sc.get_children()[0].get_label()) mi.set_active(sc.get_active()) menu.append(mi) mi.show() mi.connect("activate", lambda w, b: b.set_active(w.get_active()), sc) def __init__(self, parent): self.parent = parent parent.server_window = self self.source_client_crash_count = 0 self.source_client_open() self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.parent.window_group.add_window(self.window) # TC: Window title bar text. self.window.set_title(_('IDJC Output') + pm.title_extra) self.window.set_destroy_with_parent(True) self.window.set_border_width(11) self.window.set_resizable(True) self.window.connect_after("realize", self.cb_after_realize) self.window.connect("delete_event", self.cb_delete_event) self.wst = WindowSizeTracker(self.window) vbox = gtk.VBox() vbox.set_spacing(10) self.window.add(vbox) self.recordtabframe = TabFrame(self, _('Record'), PGlobs.num_recorders, RecordTab, ( ("clear", "led_unlit_clear_border_64x64"), ("amber", "led_lit_amber_black_border_64x64"), ("red", "led_lit_red_black_border_64x64")), _('Each one of these tabs represents a separate stream recorder.' ' The LED indicator colours represent the following: Clear=Stopped' ' Yellow=Paused Red=Recording.')) self.streamtabframe = StreamTabFrame(self, _('Stream'), PGlobs.num_streamers, StreamTab, ( ("clear", "led_unlit_clear_border_64x64"), ("amber", "led_lit_amber_black_border_64x64"), ("green", "led_lit_green_black_border_64x64")), _('Each one of these tabs represents a separate radio streamer. ' 'The LED indicator colours represent the following: Clear=No ' 'connection Yellow=Awaiting authentication. Green=Connected. ' 'Flashing=Packet loss due to a bad connection.')) tab = self.streamtabframe.tabs[-1] for next_tab in self.streamtabframe.tabs: tab.details.connect("notify::expanded", self.cb_stream_details_expand, next_tab.details, tab.details_nb) tab.ic_expander.connect("notify::expanded", self.cb_stream_controls_expand, next_tab.ic_expander, tab.ic_frame, self.streamtabframe.tabs[0].details.get_expanded) tab = next_tab self.streamtabframe.set_sensitive(True) vbox.pack_start(self.streamtabframe, True, True, 0) self.streamtabframe.show() for rectab in self.recordtabframe.tabs: rectab.source_dest.populate_stream_selector(_(' Stream '), self.streamtabframe.tabs) self.parent.menu.recordersmenu_i.connect("activate", self.cb_populate_recorder_menu, self.recordtabframe.tabs) self.parent.menu.streamsmenu_i.connect("activate", self.cb_populate_streams_menu, self.streamtabframe.tabs) vbox.pack_start(self.recordtabframe, False, False, 0) if PGlobs.num_recorders: self.recordtabframe.show() vbox.show() self.tabs = (self, ) self.numeric_id = 0 self.tab_type = "server_window" self.objects = {"wst" : (self.wst, "text"), "streamer_page": (self.streamtabframe.notebook, "notebookpage"), "recorder_page": (self.recordtabframe.notebook, "notebookpage"), "controls_shown": (self.streamtabframe.tabs[0].ic_expander, "expanded")} self.objects.update(self.streamtabframe.objects) self.load_previous_session() self.is_streaming = False self.is_recording = False self.led_alternate = False self.last_message_time = 0 self.connection_string = None self.is_shoutcast = False self._streamstate_cache = self._recordstate_cache = None self.artist = self.title = self.album = self.songname = "" self.dialog_group = dialog_group() self.disconnected_dialog = disconnection_notification_dialog( self.dialog_group, self.parent.window_group, "", _('A connection to a radio server' ' has failed.\n\nReconnection will not be attempted.')) self.autoshutdown_dialog = disconnection_notification_dialog( self.dialog_group, self.parent.window_group, "", _('A scheduled stream' ' disconnection has occurred.')) self.monitor_source_id = timeout_add(250, threadslock(self.monitor)) self.window.realize() # Prevent a rendering bug. dbus.service.Object.__init__(self, pm.dbus_bus_name, PGlobs.dbus_objects_basename + "/output") idjc-0.8.16/python/licence_window.py0000644000175000017500000004713212630014503014325 00000000000000# licence_window.py: Window for displaying the licence under which this # program is released. # # Copyright (C) 2008 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . __all__ = ['LicenceWindow'] import gtk from idjc import FGlobs class LicenceWindow(gtk.ScrolledWindow): gpl_text = """ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, 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 Lesser 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 Street, 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 Lesser General Public License instead of this License. """ def cb_delete_window_event(self, widget, event): self.hide() return True def __init__(self): gtk.ScrolledWindow.__init__(self) self.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) self.set_shadow_type(gtk.SHADOW_ETCHED_IN) text_view = gtk.TextView() text_view.set_wrap_mode(gtk.WRAP_WORD) text_view.set_editable(False) text_view.unset_flags(gtk.CAN_FOCUS) text_view.set_left_margin(8) text_view.set_right_margin(8) self.add(text_view) text_buffer = gtk.TextBuffer() tag = text_buffer.create_tag() tag.set_property("font", "sans 8") text_buffer.insert_with_tags(text_buffer.get_start_iter(), self.gpl_text, tag) text_view.set_buffer(text_buffer) text_view.show() idjc-0.8.16/python/format.py0000644000175000017500000017114512635762165012651 00000000000000# format.py: format selection user interface widgets # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . import json import gettext import ctypes from abc import ABCMeta, abstractmethod, abstractproperty import gtk import gobject from idjc import FGlobs from .gtkstuff import LEDDict from .tooltips import set_tip _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext class TestEncoder(object): __metaclass__ = ABCMeta @abstractproperty def default_bitrate_stereo(self): """A guaranteed good bitrate when encoding 2 channels.""" return int() @abstractproperty def default_bitrate_mono(self): """A guaranteed good bitrate when encoding 1 channel. Ideally the same value as for stereo if possible.""" return int() @abstractproperty def default_samplerate(self): """Typically 44100Hz unless the encoder won't support this.""" return int() @abstractproperty def suggested_samplerates(self): """Useful samplerates for user interface dropdown selection. These values are for EncoderRange to verify. """ return tuple() @abstractproperty def suggested_bitrates(self): """Useful bitrates for user interface dropdown selection. These values are for EncoderRange to verify. """ return tuple() @abstractmethod def test(self, channels, samplerate, bitrate): return bool() class VorbisTestEncoder(TestEncoder): class _VORBIS_INFO(ctypes.Structure): _fields_ = [("version", ctypes.c_int), ("channels", ctypes.c_int), ("rate", ctypes.c_long), ("bitrate_upper", ctypes.c_long), ("bitrate_nominal", ctypes.c_long), ("bitrate_lower", ctypes.c_long), ("bitrate_window", ctypes.c_long), ("codec_setup", ctypes.c_void_p)] _lv = ctypes.CDLL("libvorbis.so.0") _lve = ctypes.CDLL("libvorbisenc.so.2") def __init__(self): self._vi = self._VORBIS_INFO() @property def default_bitrate_stereo(self): return 128000 @property def default_bitrate_mono(self): return 128000 @property def default_samplerate(self): return 44100 @property def suggested_samplerates(self): return (48000, 44100, 32000, 22050, 11025) @property def suggested_bitrates(self): return (192000, 160000, 128000, 112000, 96000, 80000, 64000, 48000, 45000, 32000) def test(self, channels, samplerate, bitrate): """Test run these encoder settings with a vorbis encoder. A return value of True indicates that encoding would work for the provided settings. """ vi = self._vi self._lv.vorbis_info_init(ctypes.byref(vi)) error_code = self._lve.vorbis_encode_init(ctypes.byref(vi), ctypes.c_long(channels), ctypes.c_long(samplerate), ctypes.c_long(-1), ctypes.c_long(bitrate), ctypes.c_long(-1)) self._lv.vorbis_info_clear(ctypes.byref(vi)) return error_code == 0 class EncoderRange(object): """Test out the limits of an encoder's settings.""" def __init__(self, encoder): """An instance of EncoderRange can probe one type of encoder. @encoder: an instance of TestEncoder """ self._encoder = encoder self._test = encoder.test self._working_bitrate = {1: encoder.default_bitrate_mono, 2: encoder.default_bitrate_stereo} def _boundary_search(self, variable_span, test): """Encoder working boundary value finder. @variable_span is a list of two integers that form the search range. The algorithm will find the lowest limit value if the first value is smaller and the highest limit value if the first value is bigger. @test is a function that takes one value, the variable under test and returns boolean true indicating success. """ span_1 = variable_span found = None while 1: val1 = None span_2 = [] for val2 in span_1: if val1 is None: if abs(span_1[0] - span_1[-1]) + 1 == len(span_1): return found val1 = val2 continue span_2.append(val1) mid = abs(val1 - val2) // 2 + min(val1, val2) if min(val1, val2) < mid < max(val1, val2): span_2.append(mid) if test(mid): found = mid span_1 = [val1, mid] val1 = None break val1 = val2 else: span_1 = [span_2[-1], val1] if found is not None \ else span_2 + [val1] def lowest_bitrate(self, channels, samplerate): """Calculate the lowest working bitrate.""" return self._boundary_search([8000, 1000000], lambda bitrate: self._test(channels, samplerate, bitrate)) def highest_bitrate(self, channels, samplerate): """Calculate the highest working bitrate.""" return self._boundary_search([1000000, 8000], lambda bitrate: self._test(channels, samplerate, bitrate)) def lowest_samplerate(self, channels, bitrate): """Calculate the lowest working samplerate.""" return self._boundary_search([4000, 200000], lambda samplerate: self._test(channels, samplerate, bitrate)) def highest_samplerate(self, channels, bitrate): """Calculate the highest working samplerate.""" return self._boundary_search([200000, 4000], lambda samplerate: self._test(channels, samplerate, bitrate)) def bitrate_bounds(self, channels, samplerate): """Lowest and highest working bitrate as a 2 tuple.""" return self.lowest_bitrate(channels, samplerate), \ self.highest_bitrate(channels, samplerate) def samplerate_bounds(self, channels, bitrate): """Lowest and highest working samplerate as a 2 tuple.""" return self.lowest_samplerate(channels, bitrate), \ self.highest_samplerate(channels, bitrate) def bounds(self, channels): """Find the absolute lowest and highest encoder supported settings. Return value: dictionary containing 2 tuples for samplerate and bitrate Inputs: @channels: 1 for mono, 2 for stereo. """ srb = self.samplerate_bounds(channels, self._working_bitrate[channels]) oldbrb = brb = oldsrb = None, None while brb != oldbrb or oldsrb != srb: oldbrb = brb oldsrb = srb brb = (self.bitrate_bounds(channels, srb[0])[0], self.bitrate_bounds(channels, srb[1])[1]) srb = (self.samplerate_bounds(channels, brb[0])[0], self.samplerate_bounds(channels, brb[1])[1]) return {"samplerate_bounds": srb, "bitrate_bounds": brb} def good_samplerates(self, channels, bitrate=None): """Returns a tuple of standard suggestion values.""" if bitrate is None: lower, upper = self.bounds(channels)["samplerate_bounds"] else: lower, upper = self.samplerate_bounds(channels, bitrate) return tuple(x for x in self._encoder.suggested_samplerates if lower <= x <= upper) def good_bitrates(self, channels, samplerate=None): """Returns a tuple of standard suggestion values.""" if samplerate is None: lower, upper = self.bounds(channels)["bitrate_bounds"] else: lower, upper = self.bitrate_bounds(channels, samplerate) return tuple(x for x in self._encoder.suggested_bitrates if lower <= x <= upper) def format_collate(specifier): """Takes a FormatDropdown or FormatSpin object, obtains the settings.""" d = {} if specifier.prev_object is not None: d.update(format_collate(specifier.prev_object)) d[specifier.ident] = specifier.value if not specifier.applied: d["__unapplied__"] = specifier.ident return d class FormatDropdown(gtk.VBox): def __init__(self, prev_object, title, ident, elements, row, tooltip=None): """Parameter 'elements' is a tuple of dictionaries. @title: appears above the widget @name: is the official name of the control element @elements: is tuple of dictionary objects mandatory keys of which are 'display_text' and 'value'. """ self.prev_object = prev_object self._ident = ident self._row = row gtk.VBox.__init__(self) frame = gtk.Frame(" %s " % title) frame.set_label_align(0.5, 0.5) if tooltip is not None: set_tip(frame, tooltip) self.pack_start(frame, fill=False) size_group = gtk.SizeGroup(gtk.SIZE_GROUP_VERTICAL) vbox = gtk.VBox() vbox.set_border_width(3) frame.add(vbox) model = gtk.ListStore(gobject.TYPE_PYOBJECT) default = 0 for index, each in enumerate(elements): if "default" in each and each["default"]: default = index model.append(((each),)) cell_text = gtk.CellRendererText() self._combo_box = gtk.ComboBox(model) size_group.add_widget(self._combo_box) self._combo_box.pack_start(cell_text) self._combo_box.set_cell_data_func(cell_text, self._cell_data_func) vbox.pack_start(self._combo_box, False) self._fixed = gtk.Label() size_group.add_widget(self._fixed) vbox.pack_start(self._fixed, False) self._fixed.set_no_show_all(True) self._combo_box.connect("changed", self._on_changed) self._combo_box.set_active(default) self.show_all() def _cell_data_func(self, cell_layout, cell, model, iter): dict_ = model.get_value(iter, 0) cell.props.text = dict_["display_text"] cell.props.sensitive = dict_.get("sensitive", True) def _on_changed(self, combo_box): text = combo_box.props.model[combo_box.props.active][0]["display_text"] self._fixed.set_text(text) @property def next_element_name(self): cbp = self._combo_box.props try: return cbp.model[cbp.active][0]["chain"] except KeyError: return None @property def applied(self): return self._fixed.props.visible @property def row(self): return self._row @property def ident(self): return self._ident def apply(self): cbp = self._combo_box.props if cbp.model[cbp.active][0].get("sensitive", True): self._combo_box.hide() self._fixed.show() return True else: return False def unapply(self): self._combo_box.show() self._fixed.hide() @property def value(self): cbp = self._combo_box.props return cbp.model[cbp.active][0]["value"] @value.setter def value(self, data): if not self.applied: cbp = self._combo_box.props for i, each in enumerate(cbp.model): if each[0]["value"] == data: self._combo_box.set_active(i) break class FormatSpin(gtk.VBox): def __init__(self, prev_object, title, ident, elements, row, unit, next_element_name, suggested_values, tooltip=None): """Parameter 'elements' is a tuple of dictionaries. @title: appears above the widget @name: is the official name of the control element @elements: the values of the gtk.Adjustment as integers @unit: e.g. " Hz" @suggested_values: sequence of standard values """ self.prev_object = prev_object self._ident = ident self._row = row self._unit = unit self._next_element_name = next_element_name gtk.VBox.__init__(self) frame = gtk.Frame(" %s " % title) frame.set_label_align(0.5, 0.5) if tooltip is not None: set_tip(frame, tooltip) self.pack_start(frame, fill=False) vbox = gtk.VBox() vbox.set_border_width(3) frame.add(vbox) adjustment = gtk.Adjustment(*(float(x) for x in elements)) self._spin_button = gtk.SpinButton(adjustment) if suggested_values is not None: self._spin_button.connect("populate_popup", self._on_populate_popup, suggested_values) if tooltip is None: set_tip(self._spin_button, _('Right click for suggested values.')) vbox.pack_start(self._spin_button, False) self._fixed = gtk.Label() self._fixed.set_alignment(0.5, 0.5) vbox.pack_start(self._fixed) self._fixed.set_no_show_all(True) self._spin_button.connect("value-changed", self._on_changed) self._spin_button.emit("value-changed") self.show_all() size_group = gtk.SizeGroup(gtk.SIZE_GROUP_VERTICAL) size_group.add_widget(prev_object.get_children()[0]) size_group.add_widget(frame) self.scale = 1 def _on_changed(self, spin_button): self._fixed.set_text(str(int(spin_button.props.value)) + self._unit) def _on_populate_popup(self, spin, menu, values): mi = gtk.MenuItem(_('Suggested Values')) menu.append(mi) mi.show() submenu = gtk.Menu() mi.set_submenu(submenu) submenu.show() for each in values: mi = gtk.MenuItem(str(each)) mi.connect("activate", self._on_popup_activate, spin, each) submenu.append(mi) mi.show() def _on_popup_activate(self, menuitem, spin, value): spin.set_value(value) @property def next_element_name(self): return self._next_element_name @property def applied(self): return self._fixed.props.visible @property def row(self): return self._row @property def ident(self): return self._ident def apply(self): self._spin_button.hide() self._fixed.show() return True def unapply(self): self._spin_button.show() self._fixed.hide() @property def value(self): return str(int(self._spin_button.props.value * self.scale)) @value.setter def value(self, value): if not self.applied: self._spin_button.props.value = int(value) // self.scale @property def scale(self): return self._scale @scale.setter def scale(self, value): self._scale = value class FormatPregain(FormatDropdown): """Level adjustment for audio before hitting the codec.""" def __init__(self, prev_object): codec = format_collate(prev_object)["codec"] FormatDropdown.__init__(self, prev_object, _('Pregain'), "pregain", ( dict(display_text=_('0 dB'), value="1.0"), dict(display_text=_('-0.5 dB'), value="0.944"), dict(display_text=_('-1.0 dB'), value="0.891", default=(codec in ("aac", "aacpv2"))), dict(display_text=_('-1.5 dB'), value="0.841"), dict(display_text=_('-2.0 dB'), value="0.794", default=(codec in ("mp2", "mp3"))), dict(display_text=_('-2.5 dB'), value="0.750"), dict(display_text=_('-3.0 dB'), value="0.708", default=(codec == "speex"))), 1, _("A blanket gain reduction to promote audio quality when using long established lossy audio codecs like mp3 with loud audio material.\n\n" "ReplayGain makes this feature generally unnecessary and the correct setting in that case is 0 dB.")) class FormatResampleQuality(FormatDropdown): """Resample quality.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Resample Quality'), "resample_quality", ( dict(display_text=_('Highest'), value="highest", chain="FormatPregain"), dict(display_text=_('Medium'), value="medium", chain="FormatPregain", default=True), dict(display_text=_('Lowest'), value="lowest", chain="FormatPregain")), 1, _("All of these settings will provide adequate audio quality. The highest setting will preserve more of the original audio bandwidth at the expense of many CPU cycles.")) class FormatMetadataChoice(FormatDropdown): """User can select the metadata encoding format.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Metadata'), "metadata_mode", ( dict(display_text=_('Suppressed'), value="suppressed", chain="FormatResampleQuality"), dict(display_text=_('UTF-8'), value="utf-8", chain="FormatResampleQuality"), dict(display_text=_('Latin1 *'), value="latin1", chain="FormatResampleQuality", default=True)), 1, _("This affects the stream metadata only. Recordings will use UTF-8 for their metadata.")) class FormatMetadataNone(FormatDropdown): """User can not select any metadata.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Metadata'), "metadata_mode", ( dict(display_text=_('Unsupported'), value="suppressed", chain="FormatResampleQuality"),), 1, _("Choose whether the stream will carry dynamic metadata. In the case of Ogg streams this is important as a great many players can't handle chained Ogg streams which result from the metadata updates.")) class FormatMetadataUTF8(FormatDropdown): """User can select whether to have metadata.""" def __init__(self, prev_object): discourage = format_collate(prev_object)["family"] == "webm" FormatDropdown.__init__(self, prev_object, _('Metadata'), "metadata_mode", ( dict(display_text=_('Suppressed'), value="suppressed", chain="FormatResampleQuality", default=discourage), dict(display_text=_('UTF-8'), value="utf-8", chain="FormatResampleQuality", default=not discourage)), 1, _("Choose whether the stream will carry dynamic metadata. In the case of Ogg streams this is important as a great many players can't handle chained Ogg streams which result from the metadata updates.")) class FormatMetadataLatin1(FormatDropdown): """User can select whether to have metadata.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Metadata'), "metadata_mode", ( dict(display_text=_('Suppressed'), value="suppressed", chain="FormatResampleQuality"), dict(display_text=_('Latin1'), value="latin1", chain="FormatResampleQuality", default=True)), 1, _("Choose whether to send metadata. Recordings will use UTF-8 metadata.")) class FormatCodecMPEGMP2Mode(FormatDropdown): """MP2 modes.""" def __init__(self, prev_object): bitrate = int(format_collate(prev_object)["bitrate"]) if bitrate < 80: defmode = "mono" elif bitrate < 192: defmode = "jointstereo" else: defmode = "stereo" FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", default=(defmode == "mono"), chain="FormatMetadataChoice"), dict(display_text=_("Stereo"), value="stereo", default=(defmode == "stereo"), chain="FormatMetadataChoice"), dict(display_text=_("Joint Stereo"), value="jointstereo", default=(defmode=="jointstereo"), chain="FormatMetadataChoice")), 0, _('Joint Stereo is a good choice on streams with low bitrates.')) class FormatCodecMPEGMP2ModeStereo(FormatDropdown): """MP2 modes. No mono option due to previous bitrate choice.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", sensitive=False, chain="FormatMetadataLatin1"), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatMetadataLatin1"), dict(display_text=_("Joint Stereo"), value="jointstereo", chain="FormatMetadataLatin1")), 0, _('Due to the high bitrate selected, this codec will only support stereo.')) class FormatCodecMPEGMP2ModeSingle(FormatDropdown): """MP2 modes. Only mono available due to previous bitrate choice.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatMetadataLatin1"), dict(display_text=_("Stereo"), value="stereo", sensitive=False, chain="FormatMetadataLatin1"), dict(display_text=_("Joint Stereo"), value="jointstereo", sensitive=False, chain="FormatMetadataLatin1")), 0, _('Due to the low bitrate selected, this codec will only support mono.')) class FormatCodecMPEGMP2V1BitRates(FormatDropdown): """MP2 MPEG1 bit rates. Some channel modes are restricted by bitrate.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Bitrate'), "bitrate", ( dict(display_text="384 kHz", value="384", chain="FormatCodecMPEGMP2ModeStereo"), dict(display_text="320 kHz", value="320", chain="FormatCodecMPEGMP2ModeStereo"), dict(display_text="256 kHz", value="256", chain="FormatCodecMPEGMP2ModeStereo"), dict(display_text="224 kHz", value="224", chain="FormatCodecMPEGMP2ModeStereo"), dict(display_text="192 kHz", value="192", chain="FormatCodecMPEGMP2Mode"), dict(display_text="160 kHz", value="160", chain="FormatCodecMPEGMP2Mode", default=True), dict(display_text="128 kHz", value="128", chain="FormatCodecMPEGMP2Mode"), dict(display_text="112 kHz", value="112", chain="FormatCodecMPEGMP2Mode"), dict(display_text="96 kHz", value="96", chain="FormatCodecMPEGMP2Mode"), dict(display_text="80 kHz", value="80", chain="FormatCodecMPEGMP2ModeSingle"), dict(display_text="64 kHz", value="64", chain="FormatCodecMPEGMP2Mode"), dict(display_text="56 kHz", value="56", chain="FormatCodecMPEGMP2ModeSingle"), dict(display_text="48 kHz", value="48", chain="FormatCodecMPEGMP2ModeSingle"), dict(display_text="32 kHz", value="32", chain="FormatCodecMPEGMP2ModeSingle")), 0) class FormatCodecMPEGMP2V2BitRates(FormatDropdown): """MP2 MPEG2 bit rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Bitrate'), "bitrate", ( dict(display_text="160 kHz", value="160", chain="FormatCodecMPEGMP2Mode"), dict(display_text="144 kHz", value="144", chain="FormatCodecMPEGMP2Mode"), dict(display_text="128 kHz", value="128", chain="FormatCodecMPEGMP2Mode"), dict(display_text="112 kHz", value="112", chain="FormatCodecMPEGMP2Mode"), dict(display_text="96 kHz", value="96", chain="FormatCodecMPEGMP2Mode"), dict(display_text="80 kHz", value="80", chain="FormatCodecMPEGMP2Mode", default=True), dict(display_text="64 kHz", value="64", chain="FormatCodecMPEGMP2Mode"), dict(display_text="56 kHz", value="56", chain="FormatCodecMPEGMP2Mode"), dict(display_text="48 kHz", value="48", chain="FormatCodecMPEGMP2Mode"), dict(display_text="40 kHz", value="40", chain="FormatCodecMPEGMP2Mode"), dict(display_text="32 kHz", value="32", chain="FormatCodecMPEGMP2Mode"), dict(display_text="24 kHz", value="24", chain="FormatCodecMPEGMP2Mode"), dict(display_text="16 kHz", value="16", chain="FormatCodecMPEGMP2Mode"), dict(display_text="8 kHz", value="8", chain="FormatCodecMPEGMP2Mode")), 0) class FormatCodecMPEGMP2V1SampleRates(FormatDropdown): """MP2 MPEG1 sample rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Samplerate'), "samplerate", ( dict(display_text="48000 Hz", value="48000", chain="FormatCodecMPEGMP2V1BitRates"), dict(display_text="44100 Hz", value="44100", chain="FormatCodecMPEGMP2V1BitRates", default=True), dict(display_text="32000 Hz", value="32000", chain="FormatCodecMPEGMP2V1BitRates")), 0) class FormatCodecMPEGMP2V2SampleRates(FormatDropdown): """MP2 MPEG2 sample rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Samplerate'), "samplerate", ( dict(display_text="24000 Hz", value="24000", chain="FormatCodecMPEGMP2V2BitRates"), dict(display_text="22050 Hz", value="22050", chain="FormatCodecMPEGMP2V2BitRates", default=True), dict(display_text="16000 Hz", value="16000", chain="FormatCodecMPEGMP2V2BitRates")), 0) class FormatCodecMPEGMP2(FormatDropdown): """MP2 standard selection.""" def __init__(self, prev_object): # TC: Abbreviation of the word, standard. FormatDropdown.__init__(self, prev_object, _('Std.'), "standard", ( # TC: v stands for version. dict(display_text=_("V 1"), value="1", chain="FormatCodecMPEGMP2V1SampleRates"), # TC: v stands for version. dict(display_text=_("V 2"), value="2", chain="FormatCodecMPEGMP2V2SampleRates")), 0, _('MPEG2 introduced lower samplerate options and corresponding lower bitrates. Choose 2 if those are required.')) class FormatCodecMPEGMP3Quality(FormatDropdown): """MP3 quality.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Quality'), "quality", ( dict(display_text=_('0 most'), value="0", chain="FormatMetadataChoice"), dict(display_text="1", value="1", chain="FormatMetadataChoice"), # TC: * means is the recommended setting. dict(display_text=_("2 *"), value="2", chain="FormatMetadataChoice", default=True)) + tuple( dict(display_text=str(x), value=str(x), chain="FormatMetadataChoice") for x in range(3, 10)), 0, _('Higher quality costs more in terms of CPU cycles.')) class FormatCodecMPEGMP3Mode(FormatDropdown): """MP3 modes.""" def __init__(self, prev_object): bitrate = int(format_collate(prev_object)["bitrate"]) if bitrate < 64: defmode = "mono" elif bitrate < 160: defmode = "jointstereo" else: defmode = "stereo" FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", default=(defmode == "mono"), chain="FormatCodecMPEGMP3Quality"), dict(display_text=_("Stereo"), value="stereo", default=(defmode == "stereo"), chain="FormatCodecMPEGMP3Quality"), dict(display_text=_("Joint Stereo"), value="jointstereo", default=(defmode == "jointstereo"), chain="FormatCodecMPEGMP3Quality")), 0, _('Joint Stereo is a good choice on streams with low bitrates')) class FormatCodecMPEGMP3V1BitRates(FormatDropdown): """MP3 MPEG1 bit rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Bitrate'), "bitrate", ( dict(display_text="320 kHz", value="320", chain="FormatCodecMPEGMP3Mode"), dict(display_text="256 kHz", value="256", chain="FormatCodecMPEGMP3Mode"), dict(display_text="224 kHz", value="224", chain="FormatCodecMPEGMP3Mode"), dict(display_text="192 kHz", value="192", chain="FormatCodecMPEGMP3Mode"), dict(display_text="160 kHz", value="160", chain="FormatCodecMPEGMP3Mode"), dict(display_text="128 kHz", value="128", chain="FormatCodecMPEGMP3Mode", default=True), dict(display_text="112 kHz", value="112", chain="FormatCodecMPEGMP3Mode"), dict(display_text="96 kHz", value="96", chain="FormatCodecMPEGMP3Mode"), dict(display_text="80 kHz", value="80", chain="FormatCodecMPEGMP3Mode"), dict(display_text="64 kHz", value="64", chain="FormatCodecMPEGMP3Mode"), dict(display_text="56 kHz", value="56", chain="FormatCodecMPEGMP3Mode"), dict(display_text="48 kHz", value="48", chain="FormatCodecMPEGMP3Mode"), dict(display_text="40 kHz", value="40", chain="FormatCodecMPEGMP3Mode"), dict(display_text="32 kHz", value="32", chain="FormatCodecMPEGMP3Mode")), 0) class FormatCodecMPEGMP3V2BitRates(FormatDropdown): """MP3 MPEG2 and 2.5 bit rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Bitrate'), "bitrate", ( dict(display_text="160 kHz", value="160", chain="FormatCodecMPEGMP3Mode"), dict(display_text="144 kHz", value="144", chain="FormatCodecMPEGMP3Mode"), dict(display_text="128 kHz", value="128", chain="FormatCodecMPEGMP3Mode"), dict(display_text="112 kHz", value="112", chain="FormatCodecMPEGMP3Mode"), dict(display_text="96 kHz", value="96", chain="FormatCodecMPEGMP3Mode"), dict(display_text="80 kHz", value="80", chain="FormatCodecMPEGMP3Mode"), dict(display_text="64 kHz", value="64", chain="FormatCodecMPEGMP3Mode", default=True), dict(display_text="56 kHz", value="56", chain="FormatCodecMPEGMP3Mode"), dict(display_text="48 kHz", value="48", chain="FormatCodecMPEGMP3Mode"), dict(display_text="40 kHz", value="40", chain="FormatCodecMPEGMP3Mode"), dict(display_text="32 kHz", value="32", chain="FormatCodecMPEGMP3Mode"), dict(display_text="24 kHz", value="24", chain="FormatCodecMPEGMP3Mode"), dict(display_text="16 kHz", value="16", chain="FormatCodecMPEGMP3Mode"), dict(display_text="8 kHz", value="8", chain="FormatCodecMPEGMP3Mode")), 0) class FormatCodecMPEGMP3V1SampleRates(FormatDropdown): """MP3 MPEG1 sample rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Samplerate'), "samplerate", ( dict(display_text="48000 Hz", value="48000", chain="FormatCodecMPEGMP3V1BitRates"), dict(display_text="44100 Hz", value="44100", chain="FormatCodecMPEGMP3V1BitRates", default=True), dict(display_text="32000 Hz", value="32000", chain="FormatCodecMPEGMP3V1BitRates")), 0) class FormatCodecMPEGMP3V2SampleRates(FormatDropdown): """MP3 MPEG2 sample rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Samplerate'), "samplerate", ( dict(display_text="24000 Hz", value="24000", chain="FormatCodecMPEGMP3V2BitRates"), dict(display_text="22050 Hz", value="22050", chain="FormatCodecMPEGMP3V2BitRates", default=True), dict(display_text="16000 Hz", value="16000", chain="FormatCodecMPEGMP3V2BitRates")), 0) class FormatCodecMPEGMP3V2_5SampleRates(FormatDropdown): """MP3 MPEG2.5 non standard sample rates.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Samplerate'), "samplerate", ( dict(display_text="12000 Hz", value="12000", chain="FormatCodecMPEGMP3V2BitRates"), dict(display_text="11025 Hz", value="11025", chain="FormatCodecMPEGMP3V2BitRates", default=True), dict(display_text="8000 Hz", value="8000", chain="FormatCodecMPEGMP3V2BitRates")), 0) class FormatCodecMPEGMP3(FormatDropdown): """MP3 standard selection.""" def __init__(self, prev_object): # TC: Abbreviation of the word, standard. FormatDropdown.__init__(self, prev_object, _('Std.'), "standard", ( # TC: v stands for version. dict(display_text=_("V 1"), value="1", chain="FormatCodecMPEGMP3V1SampleRates"), # TC: v stands for version. dict(display_text=_("V 2"), value="2", chain="FormatCodecMPEGMP3V2SampleRates"), # TC: v stands for version. dict(display_text=_("V 2.5"), value="2.5", chain="FormatCodecMPEGMP3V2_5SampleRates")), 0) class FormatCodecSpeexComplexity(FormatDropdown): """Speex cpu usage selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Complexity'), "complexity", tuple(dict(display_text=str(x), value=str(x), chain="FormatMetadataUTF8", default=(x==5)) for x in range(9, -1, -1)), 0, _('A quality setting that affects how heavily the CPU is used.')) class FormatCodecSpeexQuality(FormatDropdown): """Speex quality selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Quality'), "quality", tuple(dict(display_text=str(x), value=str(x), default=(x==8), chain="FormatCodecSpeexComplexity") for x in range(9, -1, -1)), 0, _('The higher this setting, the higher the bitrate.')) class FormatCodecSpeexBandwidth(FormatDropdown): """Speex bandwidth selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Bandwidth'), "samplerate", ( dict(display_text=_("Ultrawide"), value="32000", chain="FormatCodecSpeexQuality"), dict(display_text=_("Wide"), value="16000", chain="FormatCodecSpeexQuality"), dict(display_text=_("Narrow"), value="8000", chain="FormatCodecSpeexQuality")), 0, _('Essentially a samplerate setting.')) class FormatCodecSpeexMode(FormatDropdown): """Speex mode selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatCodecSpeexBandwidth"), dict(display_text=_("Stereo"), value="stereo", chain="FormatCodecSpeexBandwidth")), 0) class FormatCodecFLACBits(FormatDropdown): """FLAC bit width selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Width'), "bitwidth", ( dict(display_text=_("24 bit"), value="24", chain="FormatMetadataUTF8"), dict(display_text=_("20 bit"), value="20", chain="FormatMetadataUTF8"), dict(display_text=_("16 bit"), value="16", chain="FormatMetadataUTF8")), 0, _('24 bit records with the highest level of detail. If file size is a concern maybe FLAC is not the right codec.')) class FormatCodecVorbisVariability(FormatDropdown): """Vorbis bit rate variability.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Variability'), "variability", ( dict(display_text=_("Constant"), value="0", chain="FormatMetadataUTF8"), dict(display_text=_(u"\u00B110%"), value="10", chain="FormatMetadataUTF8"), dict(display_text=_(u"\u00B120%"), value="20", chain="FormatMetadataUTF8"), dict(display_text=_(u"\u00B130%"), value="30", chain="FormatMetadataUTF8"), dict(display_text=_(u"\u00B140%"), value="40", chain="FormatMetadataUTF8"), dict(display_text=_(u"\u00B150%"), value="50", chain="FormatMetadataUTF8")), 0, _('This control is for enabling variable bitrate on Vorbis streams.')) class FormatCodecVorbisBitRate(FormatSpin): """Vorbis bit rate selection.""" def __init__(self, prev_object): dict_ = format_collate(prev_object) channels = 1 if dict_["mode"] == "mono" else 2 er = EncoderRange(VorbisTestEncoder()) sr = int(dict_["samplerate"]) bounds = er.bitrate_bounds(channels, sr) FormatSpin.__init__(self, prev_object, _('Bitrate'), "bitrate", (128000,) + bounds + (1, 10), 0, " bps", "FormatCodecVorbisVariability", er.good_bitrates(channels, sr)) class FormatCodecVorbisSampleRate(FormatSpin): """Vorbis sample rate selection.""" def __init__(self, prev_object): channels = 1 if format_collate(prev_object)["mode"] == "mono" else 2 er = EncoderRange(VorbisTestEncoder()) bounds = er.bounds(channels)["samplerate_bounds"] FormatSpin.__init__(self, prev_object, _('Samplerate'), "samplerate", (44100,) + bounds + (1, 10), 0, " Hz", "FormatCodecVorbisBitRate", er.good_samplerates(channels)) class FormatCodecFLACSampleRate(FormatSpin): """FLAC sample rate selection.""" def __init__(self, prev_object): FormatSpin.__init__(self, prev_object, _('Samplerate'), "samplerate", (44100, 1, 655350, 1, 10), 0, " Hz", "FormatCodecFLACBits", (96000, 88200, 48000, 44100)) class FormatCodecFLACMode(FormatDropdown): """Speex mode selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatCodecFLACSampleRate"), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatCodecFLACSampleRate")), 0) class FormatCodecVorbisMode(FormatDropdown): """Vorbis mode selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatCodecVorbisSampleRate"), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatCodecVorbisSampleRate")), 0) class FormatCodecOpusPostGain(FormatDropdown): """Level adjustment for audio before hitting the codec.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Postgain'), "postgain", ( dict(display_text=_('3.0 dB'), value="768", chain="FormatMetadataUTF8"), dict(display_text=_('2.5 dB'), value="640", chain="FormatMetadataUTF8"), dict(display_text=_('2.0 dB'), value="512", chain="FormatMetadataUTF8"), dict(display_text=_('1.5 dB'), value="384", chain="FormatMetadataUTF8"), dict(display_text=_('1.0 dB'), value="256", chain="FormatMetadataUTF8"), dict(display_text=_('0.5 dB'), value="128", chain="FormatMetadataUTF8"), dict(display_text=_('0 dB'), value="0", default=True, chain="FormatMetadataUTF8"), dict(display_text=_('-0.5 dB'), value="-128", chain="FormatMetadataUTF8"), dict(display_text=_('-1.0 dB'), value="-256", chain="FormatMetadataUTF8"), dict(display_text=_('-1.5 dB'), value="-384", chain="FormatMetadataUTF8"), dict(display_text=_('-2.0 dB'), value="-512", chain="FormatMetadataUTF8"), dict(display_text=_('-2.5 dB'), value="-640", chain="FormatMetadataUTF8"), dict(display_text=_('-3.0 dB'), value="-768", chain="FormatMetadataUTF8")), 1, _("A gain adjustment for the player to apply.")) class FormatCodecOpusVariability(FormatDropdown): """Set VBR, CBR, etc.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Variability'), "variability", ( dict(display_text=_('CBR *'), value="cbr", default=True, chain="FormatCodecOpusPostGain"), dict(display_text=_('CVBR'), value="cvbr", chain="FormatCodecOpusPostGain"), dict(display_text=_('VBR'), value="vbr", chain="FormatCodecOpusPostGain")), 0, _("Bitrate variability. Actual VBR operation may require a higher frame size.")) class FormatCodecOpusFrameSize(FormatDropdown): """Size of Opus frames in milliseconds.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Frame Size'), "framesize", ( dict(display_text=_('60 ms'), value="60", chain="FormatCodecOpusVariability"), dict(display_text=_('40 ms'), value="40", chain="FormatCodecOpusVariability"), dict(display_text=_('20 ms'), value="20", default=True, chain="FormatCodecOpusVariability")), 0, _("A higher frame size may sound better on very low bitrates.")) class FormatCodecOpusComplexity(FormatDropdown): """Opus cpu usage selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('CPU'), "complexity", tuple(dict(display_text=str(x), value=str(x), chain="FormatCodecOpusFrameSize", default=(x==10)) for x in range(10, -1, -1)), 0, _('The encoder complexity setting which affects CPU load.')) class FormatCodecOpusBitRate(FormatSpin): """Opus bit rate selection.""" def __init__(self, prev_object): dict_ = format_collate(prev_object) channels = 1 if dict_["mode"] == "mono" else 2 bounds = (6 * channels, 256 * channels) FormatSpin.__init__(self, prev_object, _('Bitrate'), "bitrate", ((64, 96)[channels - 1],) + bounds + (1, 10), 0, " kbps", "FormatCodecOpusComplexity", (256 * channels, 128 * channels, 64 * channels, 48 * channels, 32 * channels, 16 * channels)) class FormatCodecOpusMode(FormatDropdown): """Opus mode selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatCodecOpusBitRate"), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatCodecOpusBitRate")), 0) class FormatCodecXiphOgg(FormatDropdown): """Ogg codec selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Codec'), "codec", ( dict(display_text=_('Vorbis'), value="vorbis", chain="FormatCodecVorbisMode"), dict(display_text=_('FLAC'), value="flac", chain="FormatCodecFLACMode", sensitive=FGlobs.oggflacenabled), dict(display_text=_('Speex'), value="speex", chain="FormatCodecSpeexMode", sensitive=FGlobs.speexenabled), dict(display_text=_('Opus'), value="opus", chain="FormatCodecOpusMode", sensitive=FGlobs.opusenabled), ), 0, _('Codecs of the Ogg container.')) class FormatCodecMPEGAACMode(FormatDropdown): """AAC mode selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatMetadataUTF8"), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatMetadataUTF8")), 0) class FormatCodecMPEGAACModeStereo(FormatDropdown): """AAC+ v2 mode selection which is always stereo.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", sensitive=False), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatMetadataUTF8")), 0) class FormatCodecMPEGAACBitrate(FormatSpin): """AAC bit rate selection.""" def __init__(self, prev_object): FormatSpin.__init__(self, prev_object, _('Bitrate'), "bitrate", (128000, 32000, 320000, 1, 10), 0, " Hz", "FormatCodecMPEGAACMode", (192000, 160000, 128000, 112000, 96000, 80000, 64000, 48000, 45000, 32000)) class FormatCodecMPEGAACPlusV2Bitrate(FormatSpin): """AAC bit rate selection.""" def __init__(self, prev_object): FormatSpin.__init__(self, prev_object, _('Bitrate'), "bitrate", (64000, 16000, 72000, 1, 10), 0, " Hz", "FormatCodecMPEGAACModeStereo", (72000, 64000, 48000, 45000, 32000, 24000, 16000)) class FormatCodecMPEGAACSamplerate(FormatDropdown): """Sample rates as allowed when using the ADTS header.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Samplerate'), "samplerate", ( dict(display_text=_('96000 Hz'), value="96000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('88200 Hz'), value="88200", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('64000 Hz'), value="64000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('48000 Hz'), value="48000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('44100 Hz'), value="44100", chain="FormatCodecMPEGAACBitrate", default=True), dict(display_text=_('32000 Hz'), value="32000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('24000 Hz'), value="24000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('22050 Hz'), value="22050", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('16000 Hz'), value="16000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('12000 Hz'), value="12000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('11025 Hz'), value="11025", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('8000 Hz'), value="8000", chain="FormatCodecMPEGAACBitrate"), dict(display_text=_('7350 Hz'), value="7350", chain="FormatCodecMPEGAACBitrate")), 0) class FormatCodecMPEGAACPlusV2Samplerate(FormatDropdown): """Sample rates as allowed when using the ADTS header.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Samplerate'), "samplerate", ( dict(display_text=_('48000 Hz'), value="48000", chain="FormatCodecMPEGAACPlusV2Bitrate"), dict(display_text=_('44100 Hz'), value="44100", chain="FormatCodecMPEGAACPlusV2Bitrate", default=True)), 0) class FormatCodecMPEG(FormatDropdown): """MPEG codec selection.""" def __init__(self, prev_object): have_mp2 = FGlobs.twolameenabled have_mp3 = FGlobs.have_libmp3lame have_aac = FGlobs.avenabled extra = [] if not have_mp2: extra.append(_('The MP2 option requires IDJC be rebuilt against libtwolame.')) if not have_mp3: extra.append(_('Enable the MP3 option by installing libmp3lame.')) if not have_aac: extra.append(_('The AAC options require IDJC be rebuilt against libav libraries.')) else: if not FormatCodecMPEG.aac_enabled: extra.append(_('Specific AAC support not present in libavcodec. More info: idjc.sourceforge.net.')) if not FormatCodecMPEG.aacpv2_enabled: extra.append(_('Specific AAC+ support not present in libavcodec. More info: idjc.sourceforge.net.')) spc = "\n\n\n" if extra else "" tooltip = _('Codecs of the MPEG family.') + spc + "\n\n".join(extra) FormatDropdown.__init__(self, prev_object, _('Codec'), "codec", ( dict(display_text=_('MP2'), value="mp2", chain="FormatCodecMPEGMP2", sensitive=have_mp2), dict(display_text=_('MP3'), value="mp3", chain="FormatCodecMPEGMP3", sensitive=have_mp3, default=have_mp3), dict(display_text=_('AAC'), value="aac", chain="FormatCodecMPEGAACSamplerate", sensitive=have_aac and FormatCodecMPEG.aac_enabled), dict(display_text=_('AAC+ v2'), value="aacpv2", chain="FormatCodecMPEGAACPlusV2Samplerate", sensitive=have_aac and FormatCodecMPEG.aacpv2_enabled)), 0, tooltip) class FormatCodecWebMVorbisBitRate(FormatSpin): """Vorbis bit rate selection.""" def __init__(self, prev_object): dict_ = format_collate(prev_object) channels = 1 if dict_["mode"] == "mono" else 2 er = EncoderRange(VorbisTestEncoder()) sr = int(dict_["samplerate"]) bounds = er.bitrate_bounds(channels, sr) FormatSpin.__init__(self, prev_object, _('Bitrate'), "bitrate", (128000,) + bounds + (1, 10), 0, " bps", "FormatMetadataUTF8", er.good_bitrates(channels, sr)) class FormatCodecWebMVorbisSampleRate(FormatSpin): """Vorbis sample rate selection.""" def __init__(self, prev_object): channels = 1 if format_collate(prev_object)["mode"] == "mono" else 2 er = EncoderRange(VorbisTestEncoder()) bounds = er.bounds(channels)["samplerate_bounds"] FormatSpin.__init__(self, prev_object, _('Samplerate'), "samplerate", (44100,) + bounds + (1, 10), 0, " Hz", "FormatCodecWebMVorbisBitRate", er.good_samplerates(channels)) class FormatCodecWebMVorbisMode(FormatDropdown): """Vorbis mode selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatCodecWebMVorbisSampleRate"), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatCodecWebMVorbisSampleRate")), 0) class FormatCodecWebMOpusBitRate(FormatSpin): """Opus bit rate selection.""" def __init__(self, prev_object): dict_ = format_collate(prev_object) channels = 1 if dict_["mode"] == "mono" else 2 bounds = (6 * channels, 256 * channels) FormatSpin.__init__(self, prev_object, _('Bitrate'), "bitrate", ((64, 96)[channels - 1],) + bounds + (1, 10), 0, " kbps", "FormatMetadataUTF8", (256 * channels, 128 * channels, 64 * channels, 48 * channels, 32 * channels, 16 * channels)) self.scale = 1000 class FormatCodecWebMOpusMode(FormatDropdown): """Opus mode selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Mode'), "mode", ( dict(display_text=_("Mono"), value="mono", chain="FormatCodecWebMOpusBitRate"), dict(display_text=_("Stereo"), value="stereo", default=True, chain="FormatCodecWebMOpusBitRate")), 0) class FormatCodecWebM(FormatDropdown): """Audio only WebM codec selection.""" def __init__(self, prev_object): FormatDropdown.__init__(self, prev_object, _('Codec'), "codec", ( dict(display_text=_('Opus'), value="opus", chain="FormatCodecWebMOpusMode", default=True), dict(display_text=_('Vorbis'), value="vorbis", chain="FormatCodecWebMVorbisMode")), 0) class FormatFamily(FormatDropdown): """Gives choice of codec family/container format e.g. Xiph/Ogg or MPEG. The format is modified by means of a dropdown box. """ def __init__(self, prev_object): # TC: Codec family e.g. Xiph/Ogg, MPEG etc. FormatDropdown.__init__(self, prev_object, _('Family'), "family", ( dict(display_text=_('WebM'), value="webm", chain="FormatCodecWebM", shoutcast=False, sensitive=FGlobs.avenabled), # TC: Xiph.org Ogg container format. dict(display_text=_('Xiph/Ogg'), value="ogg", chain="FormatCodecXiphOgg", shoutcast=False), dict(display_text=_('MPEG'), value="mpeg", chain="FormatCodecMPEG", default=True)), 0, _('Codecs have been grouped by standards body and or container format.')) class FormatControl(gtk.VBox): __gproperties__ = { 'cap-icecast': (gobject.TYPE_BOOLEAN, 'icecast capable', 'if true this format can stream to icecast', 0, gobject.PARAM_READABLE), 'cap-shoutcast': (gobject.TYPE_BOOLEAN, 'shoutcast capable', 'if true this format can stream to shoutcast', 0, gobject.PARAM_READABLE), 'cap-recordable': (gobject.TYPE_BOOLEAN, 'can be recorded', 'if true this format is compatible with the recording facility', 0, gobject.PARAM_READABLE) } def __init__(self, send, receive): gtk.VBox.__init__(self) self.set_border_width(6) self.set_spacing(4) elem_box = [gtk.HBox()] self.pack_start(elem_box[0]) self.caps_frame = gtk.Frame(" %s " % _('Capabilities')) self.caps_frame.set_sensitive(False) caps_box = gtk.HBox() caps_box.set_border_width(6) self.caps_frame.add(caps_box) self.pack_start(self.caps_frame, fill=False) led = LEDDict(8) self.green = led["green"] self.clear = led["clear"] for name, label_text in zip("icecast shoutcast recordable".split(), (_('Icecast'), _('Shoutcast'), _('Recordable'))): hbox = gtk.HBox() hbox.set_spacing(3) label = gtk.Label(label_text) hbox.pack_start(label, False) image = gtk.Image() image.set_from_pixbuf(self.clear) hbox.pack_start(image, False) caps_box.pack_start(hbox, fill=False) setattr(self, "_" + name + "_indicator", image) elem_box.append(gtk.HBox()) self.pack_start(elem_box[-1]) button_frame = gtk.Alignment(xalign=1.0, yscale=0.85) button_frame.props.top_padding = 6 button_box = gtk.HBox() button_box.set_spacing(3) button_frame.add(button_box) image = gtk.image_new_from_stock(gtk.STOCK_GO_BACK, gtk.ICON_SIZE_MENU) back_button = self._back_button = gtk.Button() back_button.set_sensitive(False) back_button.add(image) button_box.add(back_button) image = gtk.image_new_from_stock(gtk.STOCK_GO_FORWARD, gtk.ICON_SIZE_MENU) apply_button = self.apply_button = gtk.Button() apply_button.add(image) button_box.add(apply_button) #test_button = gtk.ToggleButton("Test") #button_box.add(test_button) #test_button.connect("toggled", self._on_test) elem_box[-1].pack_end(button_frame, True) self.show_all() self._current = self._first = FormatFamily(prev_object=None) elem_box[self._first.row].pack_start(self._first, False) apply_button.connect("clicked", self._on_apply, back_button, elem_box) back_button.connect("clicked", self._on_back, apply_button) sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_VERTICAL) for each in elem_box: sizegroup.add_widget(each) self._send = send self._receive = receive self._reference_counter = 0 self._cap_icecast = self._cap_shoutcast = self._cap_recordable = False # GTK closures seem to be weak references. self.__refs = (elem_box,) def _on_apply(self, apply_button, back_button, elem_box): if self._current.apply(): next_element_name = self._current.next_element_name if next_element_name is None: apply_button.set_sensitive(False) self._update_capabilities() else: self._current = globals()[next_element_name](self._current) elem_box[self._current.row].pack_start(self._current, False) back_button.set_sensitive(True) def _on_back(self, back_button, apply_button): apply_button.set_sensitive(True) if self._current.applied: self._current.unapply() self._update_capabilities() else: current = self._current self._current = current.prev_object current.destroy() self._current.unapply() back_button.set_sensitive(self._current.prev_object is not None) def _on_test(self, widget): if widget.get_active(): self.start_encoder_rc() else: self.stop_encoder_rc() _cap_table = { "webm": { "opus": {"shoutcast": False, "icecast": True, "recordable": True}, "vorbis": {"shoutcast": False, "icecast": True, "recordable": True}, }, "ogg": { "vorbis": {"shoutcast": False, "icecast": True, "recordable": True}, "flac": {"shoutcast": False, "icecast": True, "recordable": True}, "speex": {"shoutcast": False, "icecast": True, "recordable": True}, "opus": {"shoutcast": False, "icecast": True, "recordable": True}, }, "mpeg": { "mp2": {"shoutcast": True, "icecast": True, "recordable": True}, "mp3": {"shoutcast": True, "icecast": True, "recordable": True}, "aac": {"shoutcast": True, "icecast": True, "recordable": True}, "aacpv2": {"shoutcast": True, "icecast": True, "recordable": True} } } def _update_capabilities(self): settings = format_collate(self._current) dict_ = self._cap_table[settings["family"]][settings["codec"]] for each in "shoutcast icecast recordable".split(): can = dict_[each] and self._current.applied indicator = getattr(self, "_" + each + "_indicator") indicator.set_from_pixbuf(self.green if can else self.clear) name = "_cap_" + each if getattr(self, name) != can: setattr(self, name, can) self.notify("cap-" + each) self.caps_frame.set_sensitive(self._current.applied) def do_get_property(self, property): if property.name not in ( "cap-icecast", "cap-shoutcast", "cap-recordable"): raise AttributeError('unknown property %s' % property.name) return getattr(self, "_" + property.name.replace("-", "_")) def marshall(self): return json.dumps(format_collate(self._current)) def unmarshall(self, data): dict_ = json.loads(data) unapplied = dict_.get("__unapplied__", None) oldcurr = None while 1: try: self._current.value = dict_[self._current.ident] except KeyError: print "key error", self._current.ident break else: if self._current.applied or self._current.ident == unapplied or oldcurr == self._current: break oldcurr = self._current self.apply_button.clicked() if oldcurr.next_element_name is None: break def get_settings(self): return format_collate(self._current) def start_encoder_rc(self): """Start the encoder (with reference counter).""" if self._reference_counter: self._reference_counter += 1 else: self._reference_counter = int(self._start_encoder()) return self._reference_counter > 0 def stop_encoder_rc(self): """Stop the encoder (with reference counter).""" if self._reference_counter: if self._reference_counter == 1: self._stop_encoder() self._reference_counter -= 1 @property def running(self): """True if the encoder is currently running.""" return self._reference_counter > 0 @property def finalised(self): """Return whether the encoder settings list is complete.""" return self._current.applied def _start_encoder(self): if self._current.applied: kvps = [] for pairs in format_collate(self._current).iteritems(): kvps.append("=".join(pairs)) kvps.append("encode_source=jack\ncommand=encoder_start\n") kvps = "\n".join(kvps) self._send(kvps) ret = self._receive() != "failed" if ret: self._back_button.set_sensitive(False) return ret else: print "encoder settings are not finalised" return False def _stop_encoder(self): self._back_button.set_sensitive(True) self._send("command=encoder_stop\n") return self._receive() != "failed" idjc-0.8.16/python/jingles.py0000644000175000017500000006053312630014503012767 00000000000000# jingles.py: Jingles window and players -- part of IDJC. # Copyright 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . import os import time import gettext import json import uuid import gtk import gobject import itertools import urllib from idjc import * from .playergui import * from .prelims import * from .gtkstuff import LEDDict from .gtkstuff import WindowSizeTracker from .gtkstuff import DefaultEntry from .gtkstuff import threadslock from .gtkstuff import timeout_add, source_remove from .tooltips import set_tip from .utils import LinkUUIDRegistry _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext PM = ProfileManager() link_uuid_reg = LinkUUIDRegistry() # Pixbufs for LED's of the specified size. LED = LEDDict(9) class Effect(gtk.HBox): """A trigger button for an audio effect or jingle. Takes a numeric parameter for identification. Also includes numeric I.D., L.E.D., stop, and config button. """ dndsources = (("IDJC_EFFECT_BUTTON", gtk.TARGET_SAME_APP, 6),) dndtargets = ( # Drag and drop source target specs. ('text/plain', 0, 1), ('TEXT', 0, 2), ('STRING', 0, 3), ('text/uri-list', 0, 4), ("IDJC_EFFECT_BUTTON", gtk.TARGET_SAME_APP, 6)) def __init__(self, num, others, parent): self.num = num self.others = others self.approot = parent self.pathname = None self.uuid = str(uuid.uuid4()) self._repeat_works = False gtk.HBox.__init__(self) self.set_border_width(2) self.set_spacing(3) label = gtk.Label("%02d" % (num + 1)) self.pack_start(label, False) self.clear = LED["clear"].copy() self.green = LED["green"].copy() self.led = gtk.Image() self.led.set_from_pixbuf(self.clear) self.pack_start(self.led, False) self.old_ledval = 0 image = gtk.image_new_from_file(FGlobs.pkgdatadir / "stop.png") image.set_padding(4, 4) self.stop = gtk.Button() self.stop.set_image(image) self.pack_start(self.stop, False) self.stop.connect("clicked", self._on_stop) set_tip(self.stop, _('Stop')) self.trigger = gtk.Button() self.trigger.set_size_request(80, -1) self.pack_start(self.trigger) self.trigger_label = gtk.Label() self.trigger.add(self.trigger_label) pvbox = gtk.VBox() self.progress = gtk.ProgressBar() pvbox.pack_start(self.progress, padding=1) self.progress.set_orientation(gtk.PROGRESS_BOTTOM_TO_TOP) self.progress.set_size_request(5, 0) self.pack_start(pvbox, False) self.trigger.connect("clicked", self._on_trigger) self.trigger.drag_dest_set(gtk.DEST_DEFAULT_ALL, self.dndtargets, gtk.gdk.ACTION_DEFAULT | gtk.gdk.ACTION_COPY) self.trigger.connect("drag-data-received", self._drag_data_received) set_tip(self.trigger, _('Play')) self.repeat = gtk.ToggleButton() image = gtk.Image() pb = gtk.gdk.pixbuf_new_from_file_at_size(FGlobs.pkgdatadir / "repeat.png", 23, 19) image.set_from_pixbuf(pb) self.repeat.add(image) image.show() self.pack_start(self.repeat, False) set_tip(self.repeat, _('Repeat')) image = gtk.image_new_from_stock(gtk.STOCK_PROPERTIES, gtk.ICON_SIZE_MENU) self.config = gtk.Button() self.config.set_image(image) self.pack_start(self.config, False) self.config.connect("clicked", self._on_config) self.config.drag_source_set(gtk.gdk.BUTTON1_MASK, self.dndsources, gtk.gdk.ACTION_DEFAULT | gtk.gdk.ACTION_COPY) self.config.connect("drag-begin", self._drag_begin) self.config.connect("drag-data-get", self._drag_get_data) self.config.connect("drag-end", self._drag_end) set_tip(self.config, _('Configure')) self.dialog = EffectConfigDialog(self, parent.window) self.dialog.connect("response", self._on_dialog_response) self.dialog.emit("response", gtk.RESPONSE_NO) self.timeout_source_id = None self.interlude = IDJC_Media_Player(None, None, parent) self.effect_length = 0.0 # Create the widget that will be used in the tab self.tabwidget = gtk.HBox() self.tabwidget.set_spacing(3) sep = gtk.VSeparator() self.tabwidget.pack_start(sep) vb = gtk.VBox() self.tabwidget.pack_start(vb) hb = gtk.HBox() hb.set_spacing(3) self.tabeffectname = gtk.Label() self.tabeffecttime = gtk.Label() hb.pack_start(self.tabeffectname) hb.pack_start(self.tabeffecttime) vb.pack_start(hb) self.tabeffectprog = gtk.ProgressBar() self.tabeffectprog.set_size_request(-0, 3) vb.pack_start(self.tabeffectprog) self.tabwidget.show_all() def _drag_begin(self, widget, context): widget.drag_highlight() context.set_icon_stock(gtk.STOCK_PROPERTIES, -5, -5) def _drag_end(self, widget, context): widget.drag_unhighlight() def _drag_get_data(self, widget, context, selection, target_id, etime): selection.set(selection.target, 8, str(self.num)) return True def _drag_data_received(self, widget, context, x, y, dragged, info, etime): if context.targets == ["IDJC_EFFECT_BUTTON"]: other = self.others[int(dragged.data)] if other != self: self.stop.clicked() other.stop.clicked() self._swap(other) return True else: data = dragged.data.splitlines() if len(data) == 1 and data[0].startswith("file://"): pathname = urllib.unquote(data[0][7:]) title = self.interlude.get_media_metadata(pathname).title if title: self.stop.clicked() self._set(pathname, title, 0.0) return True return False def _swap(self, other): new_pathname = other.pathname new_text = other.trigger_label.get_text() or "" new_level = other.level other._set(self.pathname, self.trigger_label.get_text() or "", self.level) self._set(new_pathname, new_text, new_level) def _set(self, pathname, button_text, level): try: self.dialog.set_filename(pathname) except: self.dialog.set_current_folder(os.path.expanduser("~")) self.dialog.button_entry.set_text(button_text) self.dialog.gain_adj.set_value(level) self._on_dialog_response(self.dialog, gtk.RESPONSE_ACCEPT, pathname) def _on_config(self, widget): self.stop.clicked() if self.pathname and os.path.isfile(self.pathname): self.dialog.select_filename(self.pathname) self.dialog.button_entry.set_text(self.trigger_label.get_text() or "") self.dialog.gain_adj.set_value(self.level) self.dialog.show() def _on_trigger(self, widget): self._repeat_works = True if self.pathname: if not self.timeout_source_id: if self.effect_length == 0.0: self.effect_length = self.interlude.get_media_metadata(self.pathname, True) self.effect_start = time.time() self.timeout_source_id = timeout_add(playergui.PROGRESS_TIMEOUT, self._progress_timeout) self.tabeffectname.set_text(self.trigger_label.get_text()) self.tabeffecttime.set_text('0.0') self.tabeffectprog.set_fraction(0.0) self.approot.jingles.nb_effects_box.pack_start(self.tabwidget) self.approot.effect_started(self.trigger_label.get_text(), self.pathname, self.num) else: # Restarted the effect self.effect_start = time.time() self.approot.mixer_write( "EFCT=%d\nPLRP=%s\nRGDB=%f\nACTN=playeffect\nend\n" % ( self.num, self.pathname, self.level)) self.trigger_label.set_use_markup(True) self.trigger_label.set_label("" + self.trigger_label.get_text() + "") def _on_stop(self, widget): self._repeat_works = False self.approot.mixer_write("EFCT=%d\nACTN=stopeffect\nend\n" % self.num) @threadslock def _progress_timeout(self): now = time.time() played = now - self.effect_start try: ratio = min(played / self.effect_length, 1.0) except ZeroDivisionError: pass else: self.progress.set_fraction(ratio) self.tabeffectprog.set_fraction(ratio) self.tabeffecttime.set_text("%4.1f" % (self.effect_length - played)) return True def _stop_progress(self): if self.timeout_source_id: source_remove(self.timeout_source_id) self.timeout_source_id = None self.progress.set_fraction(0.0) self.approot.jingles.nb_effects_box.remove(self.tabwidget) self.approot.effect_stopped(self.num) def _on_dialog_response(self, dialog, response_id, pathname=None): if response_id in (gtk.RESPONSE_ACCEPT, gtk.RESPONSE_NO): self.pathname = pathname or dialog.get_filename() text = dialog.button_entry.get_text() if self.pathname and \ os.path.isfile(self.pathname) else "" self.trigger_label.set_text(text.strip()) self.level = dialog.gain_adj.get_value() sens = self.pathname is not None and os.path.isfile(self.pathname) if response_id == gtk.RESPONSE_ACCEPT and pathname is not None: self.uuid = str(uuid.uuid4()) self.effect_length = 0.0 # Force effect length to be read again. def marshall(self): link = link_uuid_reg.get_link_filename(self.uuid) if link is not None: # Replace orig file abspath with alternate path to a hard link # except when link is None as happens when a hard link fails. link = PathStr("links") / link self.pathname = PM.basedir / link if not self.dialog.get_visible(): self.dialog.set_filename(self.pathname) return json.dumps([self.trigger_label.get_text(), (link or self.pathname), self.level, self.uuid]) def unmarshall(self, data): try: label, pathname, level, self.uuid = json.loads(data) except ValueError: label = "" pathname = None level = 0.0 if pathname is not None and not pathname.startswith(os.path.sep): pathname = PM.basedir / pathname if pathname is None or not os.path.isfile(pathname): self.dialog.unselect_all() label = "" else: self.dialog.set_filename(pathname) self.dialog.button_entry.set_text(label) self.dialog.gain_adj.set_value(level) self._on_dialog_response(self.dialog, gtk.RESPONSE_ACCEPT, pathname) self.pathname = pathname def update_led(self, val): if val != self.old_ledval: self.led.set_from_pixbuf(self.green if val else self.clear) self.old_ledval = val if not val and self._repeat_works and self.repeat.get_active(): self.trigger.clicked() elif not val: self._stop_progress() class EffectConfigDialog(gtk.FileChooserDialog): """Configuration dialog for an Effect.""" file_filter = gtk.FileFilter() file_filter.set_name(_('Supported media')) for each in supported.media: if each not in (".cue", ".txt"): file_filter.add_pattern("*" + each) file_filter.add_pattern("*" + each.upper()) def __init__(self, effect, window): gtk.FileChooserDialog.__init__(self, _('Effect %d Config') % (effect.num + 1), window, buttons=(gtk.STOCK_CLEAR, gtk.RESPONSE_NO, gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) self.set_modal(True) ca = self.get_content_area() ca.set_spacing(5) vbox = gtk.VBox() ca.pack_start(vbox, False) vbox.set_border_width(5) hbox = gtk.HBox() hbox.set_spacing(3) label = gtk.Label(_('Trigger text')) self.button_entry = DefaultEntry(_('No Name')) hbox.pack_start(label, False) hbox.pack_start(self.button_entry, False) spc = gtk.HBox() hbox.pack_start(spc, False, padding=3) label = gtk.Label(_('Level adjustment (dB)')) self.gain_adj = gtk.Adjustment(0.0, -10.0, 10.0, 0.5) gain = gtk.SpinButton(self.gain_adj, 1.0, 1) hbox.pack_start(label, False) hbox.pack_start(gain, False) vbox.pack_start(hbox, False) ca.show_all() self.connect("notify::visible", self._cb_notify_visible) self.connect("delete-event", lambda w, e: w.hide() or True) self.connect("response", self._cb_response) self.add_filter(self.file_filter) def set_filename(self, filename): self._stored_filename = filename gtk.FileChooserDialog.set_filename(self, filename) def _cb_notify_visible(self, *args): # Make sure filename is shown in the location box. if self.get_visible(): filename = self.get_filename() if filename is None: try: if self._stored_filename is not None: self.set_filename(self._stored_filename) except AttributeError: pass else: self._stored_filename = self.get_filename() def _cb_response(self, dialog, response_id): dialog.hide() if response_id == gtk.RESPONSE_NO: dialog.unselect_all() dialog.set_current_folder(os.path.expanduser("~")) self.button_entry.set_text("") self.gain_adj.set_value(0.0) class EffectBank(gtk.Frame): """A vertical stack of effects with level controls.""" def __init__(self, qty, base, filename, parent, all_effects, vol_adj, mute_adj): gtk.Frame.__init__(self) self.base = base self.session_filename = filename hbox = gtk.HBox() hbox.set_spacing(1) self.add(hbox) vbox = gtk.VBox() hbox.pack_start(vbox) self.effects = [] self.all_effects = all_effects count = 0 for row in range(qty): effect = Effect(base + row, self.all_effects, parent) self.effects.append(effect) self.all_effects.append(effect) vbox.pack_start(effect) count += 1 level_vbox = gtk.VBox() hbox.pack_start(level_vbox, False, padding=3) vol_image = gtk.image_new_from_file(FGlobs.pkgdatadir / "volume2.png") vol = gtk.VScale(vol_adj) vol.set_inverted(True) vol.set_draw_value(False) set_tip(vol, _('Effects volume.')) pb = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "headroom.png") mute_image = gtk.image_new_from_pixbuf(pb) mute = gtk.VScale(mute_adj) mute.set_inverted(True) mute.set_draw_value(False) set_tip(mute, _('Player headroom that is applied when an effect is playing.')) spc = gtk.VBox() for widget, expand in zip((vol_image, vol, spc, mute_image, mute), (False, True, False, False, True)): level_vbox.pack_start(widget, expand, padding=2) def marshall(self): return json.dumps([x.marshall() for x in self.effects]) def unmarshall(self, data): for per_widget_data, widget in zip(json.loads(data), self.effects): widget.unmarshall(per_widget_data) def restore_session(self): try: with open(PM.basedir / self.session_filename, "r") as f: self.unmarshall(f.read()) except IOError: print "failed to read effects session file" def save_session(self, where): try: with open((where or PM.basedir) / self.session_filename, "w") as f: f.write(self.marshall()) except IOError: print "failed to write effects session file" def update_leds(self, bits): for bit, each in enumerate(self.effects): each.update_led((1 << bit + self.base) & bits) def stop(self): for each in self.effects: each.stop.clicked() def uuids(self): return (x.uuid for x in self.widgets) def pathnames(self): return (x.pathname for x in self.widgets) class LabelSubst(gtk.Frame): def __init__(self, heading): gtk.Frame.__init__(self, " %s " % heading) self.vbox = gtk.VBox() self.vbox.set_border_width(2) self.vbox.set_spacing(2) self.add(self.vbox) self.textdict = {} self.activedict = {} def add_widget(self, widget, ui_name, default_text): frame = gtk.Frame(" %s " % default_text) frame.set_label_align(0.5, 0.5) frame.set_border_width(3) self.vbox.pack_start(frame) hbox = gtk.HBox() hbox.set_spacing(3) frame.add(hbox) hbox.set_border_width(2) use_supplied = gtk.RadioButton(None, _("Alternative")) use_default = gtk.RadioButton(use_supplied, _('Default')) self.activedict[ui_name + "_use_supplied"] = use_supplied hbox.pack_start(use_default, False) hbox.pack_start(use_supplied, False) entry = gtk.Entry() self.textdict[ui_name + "_text"] = entry hbox.pack_start(entry) if isinstance(widget, gtk.Frame): def set_text(new_text): new_text = new_text.strip() if new_text: new_text = " %s " % new_text widget.set_label(new_text or None) widget.set_text = set_text entry.connect("changed", self.cb_entry_changed, widget, use_supplied) args = default_text, entry, widget use_default.connect("toggled", self.cb_radio_default, *args) use_supplied.connect_object("toggled", self.cb_radio_default, use_default, *args) use_default.set_active(True) def cb_entry_changed(self, entry, widget, use_supplied): if use_supplied.get_active(): widget.set_text(entry.get_text()) elif entry.has_focus(): use_supplied.set_active(True) def cb_radio_default(self, use_default, default_text, entry, widget): if use_default.get_active(): widget.set_text(default_text) else: widget.set_text(entry.get_text()) entry.grab_focus() class ExtraPlayers(gtk.HBox): """For effects, and background tracks.""" def __init__(self, parent): self.approot = parent self.nb_label = gtk.HBox(False, 0) vb = gtk.VBox() lbl = gtk.Label(_('Effects')) lbl.set_padding(0, 2) vb.pack_start(lbl) vb.show() self.nb_label.pack_start(vb) self.nb_effects_box = gtk.HBox(False, 5) self.nb_label.pack_start(self.nb_effects_box) self.nb_label.show_all() self.nb_effects_box.hide() gtk.HBox.__init__(self) self.set_border_width(4) self.set_spacing(10) self.viewlevels = (5,) esbox = gtk.VBox() self.pack_start(esbox) estable = gtk.Table(columns=2, homogeneous=True) estable.set_col_spacing(1, 8) esbox.pack_start(estable) self.jvol_adj = (gtk.Adjustment(127.0, 0.0, 127.0, 1.0, 10.0), gtk.Adjustment(127.0, 0.0, 127.0, 1.0, 10.0)) self.jmute_adj = (gtk.Adjustment(100.0, 0.0, 127.0, 1.0, 10.0), gtk.Adjustment(100.0, 0.0, 127.0, 1.0, 10.0)) self.ivol_adj = gtk.Adjustment(64.0, 0.0, 127.0, 1.0, 10.0) for each in (self.jvol_adj[0], self.jvol_adj[1], self.ivol_adj, self.jmute_adj[0], self.jmute_adj[1]): each.connect("value-changed", lambda w: parent.send_new_mixer_stats()) effects_hbox = gtk.HBox(homogeneous=True) effects_hbox.set_spacing(6) effects = PGlobs.num_effects base = 0 max_rows = 12 effect_cols = (effects + max_rows - 1) // max_rows self.all_effects = [] self.effect_banks = [] for col in range(effect_cols): bank = EffectBank(min(effects - base, max_rows), base, "effects%d_session" % (col + 1), parent, self.all_effects, self.jvol_adj[col], self.jmute_adj[col]) parent.label_subst.add_widget(bank, "effectbank%d" % col, _('Effects %d') % (col + 1)) self.effect_banks.append(bank) effects_hbox.pack_start(bank) base += max_rows estable.attach(effects_hbox, 0, 2, 0, 1) self.interlude_frame = interlude_frame = gtk.Frame() parent.label_subst.add_widget(interlude_frame, "bgplayername", _('Background Tracks')) self.pack_start(interlude_frame) hbox = gtk.HBox() hbox.set_spacing(1) interlude_frame.add(hbox) interlude_box = gtk.VBox() hbox.pack_start(interlude_box) self.interlude = IDJC_Media_Player(interlude_box, "interlude", parent) interlude_box.set_no_show_all(True) ilevel_vbox = gtk.VBox() hbox.pack_start(ilevel_vbox, False, padding=3) volpb = gtk.gdk.pixbuf_new_from_file(FGlobs.pkgdatadir / "volume2.png") ivol_image = gtk.image_new_from_pixbuf(volpb) ilevel_vbox.pack_start(ivol_image, False, padding=2) ivol = gtk.VScale(self.ivol_adj) ivol.set_inverted(True) ivol.set_draw_value(False) ilevel_vbox.pack_start(ivol, padding=2) set_tip(ivol, _('Background Tracks volume.')) self.show_all() interlude_box.show() self.approot.player_nb.connect('switch-page', self._on_nb_switch_page, self.nb_effects_box) def _on_nb_switch_page(self, notebook, page, page_num, box): page_widget = notebook.get_nth_page(page_num) if isinstance(page_widget, ExtraPlayers): box.hide() else: box.show() def restore_session(self): for each in self.effect_banks: each.restore_session() self.interlude.restore_session() def save_session(self, where): for each in self.effect_banks: each.save_session(where) self.interlude.save_session(where) def update_effect_leds(self, ep): for each in self.effect_banks: each.update_leds(ep) def clear_indicators(self): """Set all LED indicators to off.""" pass def cleanup(self): pass @property def playing(self): return False @property def flush(self): return 0 @flush.setter def flush(self, value): pass @property def interludeflush(self): return 0 @interludeflush.setter def interludeflush(self, value): pass idjc-0.8.16/python/midicontrols.py0000644000175000017500000024535612630014503014052 00000000000000# midicontrols.py: MIDI and hotkey controls for IDJC # Copyright (C) 2010 Andrew Clover (and@doxdesk.com) # # 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 in the file entitled COPYING. # If not, see . import sys import re import os.path import time import collections import gettext import functools import gobject import gtk import pango import dbus import dbus.service from idjc import FGlobs, PGlobs from .gtkstuff import threadslock from .gtkstuff import timeout_add, source_remove from .prelims import ProfileManager from .tooltips import set_tip _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext PM = ProfileManager() control_methods= { # TC: Control method. Please keep it as Target:Action. 'c_tips': _('Tooltips enable'), # TC: Control method. Please keep it as Target:Action. 'c_sdjmix': _('DJ-mix monitor'), # TC: Control method. Please keep it as Target:Action. 'l_panpre': _('Panning load from presets'), # TC: Control method. Please keep it as Target:Action. 'p_pp': _('Player play/pause'), # TC: Control method. Please keep it as Target:Action. 'p_stop': _('Player stop'), # TC: Control method. Please keep it as Target:Action. 'p_advance': _('Player advance'), # TC: Control method. Please keep it as Target:Action. 'p_prev': _('Player play previous'), # TC: Control method. Please keep it as Target:Action. 'p_next': _('Player play next'), # TC: Control method. Please keep it as Target:Action. 'p_sfire': _('Player play selected from start'), # TC: Control method. Please keep it as Target:Action. 'p_sprev': _('Player select previous'), # TC: Control method. Please keep it as Target:Action. 'p_snext': _('Player select next'), # TC: Control method. Please keep it as Target:Action. 'p_stream': _('Player stream output enable'), # TC: Control method. Please keep it as Target:Action. 'p_listen': _('Player DJ output enable'), # TC: Control method. Please keep it as Target:Action. 'p_prep': _('Player DJ-only switch'), # TC: Control method. Please keep it as Target:Action. 'p_vol': _('Player set volume'), # TC: Control method. Please keep it as Target:Action. 'p_gain': _('Player set gain'), # TC: Control method. Please keep it as Target:Action. 'p_pan': _('Player set balance'), # TC: Control method. Please keep it as Target:Action. 'p_pitch': _('Player set pitchbend'), # TC: Control method. Please keep it as Target:Action. 'p_tag': _('Playlist edit tags'), # TC: Control method. Please keep it as Target:Action. 'p_istop': _('Playlist insert stop'), # TC: Control method. Please keep it as Target:Action. 'p_istop2': _('Playlist insert stop 2'), # TC: Control method. Please keep it as Target:Action. 'p_ianno': _('Playlist insert announce'), # TC: Control method. Please keep it as Target:Action. 'p_itrans': _('Playlist insert transfer'), # TC: Control method. Please keep it as Target:Action. 'p_ifade': _('Playlist insert crossfade'), # TC: Control method. Please keep it as Target:Action. 'p_ipitch': _('Playlist insert pitchunbend'), # TC: Control method. Please keep it as Target:Action. 'p_igotop': _('Playlist insert jump to top'), # TC: Control method. Please keep it as Target:Action. 'x_fade': _('Players set crossfade'), # TC: Control method. Please keep it as Target:Action. 'x_pass': _('Players pass crossfade'), # TC: Control method. Please keep it as Target:Action. 'x_focus': _('Players set focus'), # TC: Control method. Please keep it as Target:Action. 'x_pitch': _('Players show pitchbend'), # TC: Control method. Please keep it as Target:Action. 'x_advance': _('Players advance'), # TC: Control method. Please keep it as Target:Action. 'm_on': _('Channel output enable'), # TC: Control method. Please keep it as Target:Action. 'm_vol': _('Channel set volume'), # TC: Control method. Please keep it as Target:Action. 'm_gain': _('Channel set gain'), # TC: Control method. Please keep it as Target:Action. 'm_pan': _('Channel set balance'), # TC: Control method. Please keep it as Target:Action. 'v_on': _('VoIP output enable'), # TC: Control method. Please keep it as Target:Action. 'v_prep': _('VoIP DJ-only switch'), # TC: Control method. Please keep it as Target:Action. 'v_vol': _('VoIP set volume'), # TC: Control method. Please keep it as Target:Action. 'v_mixback': _('VoIP set mixback'), # TC: Control method. Please keep it as Target:Action. 'v_gain': _('VoIP set gain'), # TC: Control method. Please keep it as Target:Action. 'v_pan': _('VoIP set balance'), # TC: Control method. Please keep it as Target:Action. 'k_fire': _('Effect play from start'), # TC: Control method. Please keep it as Target:Action. 'b_stop': _('Effects stop many'), # TC: Control method. Please keep it as Target:Action. 'b_vol1': _('Effects set volume'), # TC: Control method. Please keep it as Target:Action. 'b_vol2': _('Effects set headroom'), # TC: Control method. Please keep it as Target:Action. 's_on': _('Stream set connected'), # TC: Control method. Please keep it as Target:Action. 'r_on': _('Recorder set recording'), } control_targets= { 'p': _('Player'), 'm': _('Channel'), 'k': _('Effect'), 's': _('Stream'), 'r': _('Recorder'), 'l': _('Setting') } control_targets_players= ( _('Left player'), _('Right player'), _('Background player'), _('Focused player'), _('Fadered player') ) control_targets_effects_bank= ( _('Effects bank 1'), _('Effects bank 2'), _('All effects') ) class Binding(tuple): """Immutable value type representing an input bound to an action. An input is a MIDI event or keyboard movement. (Possibly others in future?) An action is a method of the Controls object, together with how to apply input to it, and, for some methods, a target integer specifying which player/channel/etc the method should be aimed at. A Binding is represented in string form in the 'controls' prefs file as one 'input:action' pair per line. There may be multiple bindings of the same input or the same action. An 'input' string looks like one of: Cc.nn - MIDI control, channel 'c', control number 'nn' Nc.nn - MIDI note, channel 'c', note id 'nn' Pc - MIDI pitch wheel, channel 'c' Kmm.nnnn - Keypress, modifier-state 'm', keyval 'nnnn' All numbers are hex. This format is also used to send MIDI event data from the mixer to the idjcgui, with trailing ':vv' to set the value (0-127). An action string looks like: Mmethod.target.value Where method is the name of a method in the Controls object, target is the object index to apply it to where needed (eg. 0=left player for 'p_' methods), and the mode M is one of: D - mirror each input level change. For faders and held buttons. value may be 127, or -127 for inverted control (hold to set 0) P - call on input level high. For one-shot and toggle buttons. value is currently ignored. S - on input level high, set to specific value value is the value to set, from 0..127 A - on input level high, alter value. For keyboard-controlled faders. value is the delta to add to current value, from -127..127 Value is a signed decimal number. Example: C0.0F:Pp_stop.0.7F Binds the action 'Player 1 stop' to MIDI control number 15 on channel 0. """ source= property(lambda self: self[0]) channel= property(lambda self: self[1]) control= property(lambda self: self[2]) mode= property(lambda self: self[3]) method= property(lambda self: self[4]) target= property(lambda self: self[5]) value= property(lambda self: self[6]) # Possible source and mode values, in the order they should be listed in # the UI # SOURCES=( SOURCE_CONTROL, SOURCE_NOTE, SOURCE_PITCHWHEEL, SOURCE_KEYBOARD, )= 'cnpk' MODES=( MODE_DIRECT, MODE_PULSE, MODE_SET, MODE_ALTER )= 'dpsa' _default= [SOURCE_KEYBOARD, 0, 0x31, MODE_PULSE, 'p_pp', 0, 127] def __new__(cls, binding= None, source= None, channel= None, control= None, mode= None, method= None, target= None, value= None ): """New binding from copying old one, parsing from string, or new values """ if binding is None: binding= list(cls._default) elif isinstance(binding, tuple): binding= list(binding) # Parse from string. Can also parse an input string alone # elif isinstance(binding, (str, unicode)): input_part, _, action_part= binding.partition(':') binding= list(cls._default) s= input_part[:1] if s not in Binding.SOURCES: raise ValueError('Unknown binding source %r' % input_part[0]) binding[0]= s ch, _, inp= input_part[1:].partition('.') binding[1]= int(ch, 16) binding[2]= int(inp, 16) m= action_part[:1] if m not in Binding.MODES: raise ValueError('Unknown mode %r' % m) binding[3]= m parts= action_part[1:].split('.', 3) if len(parts)!=3: raise ValueError('Malformed control string %r' % action_part) if parts[0] not in Binding.METHODS: raise ValueError('Unknown method %r' % parts[0]) binding[4]= parts[0] binding[5]= int(parts[1], 16) binding[6]= int(parts[2]) else: raise ValueError('Expected string or Binding, not %r' % binding) # Override particular properties # if source is not None: binding[0]= source if channel is not None: binding[1]= channel if control is not None: binding[2]= control if mode is not None: binding[3]= mode if method is not None: binding[4]= method if target is not None: binding[5]= target if value is not None: binding[6]= value return tuple.__new__(cls, binding) def __str__(self): # Back to string # return '%s%x.%x:%s%s.%x.%d' % (self.source, self.channel, self.control, self.mode, self.method, self.target, self.value) def __repr__(self): return 'Binding(%r)' % str(self) @property def input_str(self): """Get user-facing representation of channel and control """ if self.source==Binding.SOURCE_KEYBOARD: return '%s%s' % (self.channel_str, self.control_str.title()) elif self.source==Binding.SOURCE_PITCHWHEEL: return self.channel_str else: return '%s: %s' % (self.channel_str, self.control_str) @property def channel_str(self): """Get user-facing representation of channel value (shifting for keys) """ if self.source==Binding.SOURCE_KEYBOARD: return Binding.modifier_to_str(self.channel) else: return str(self.channel) return '' @property def control_str(self): """Get user-facing representation of control value (key, note, ...) """ if self.source==Binding.SOURCE_KEYBOARD: return Binding.key_to_str(self.control) elif self.source==Binding.SOURCE_NOTE: return Binding.note_to_str(self.control) elif self.source==Binding.SOURCE_CONTROL: return str(self.control) return '' @property def action_str(self): """Get user-facing representation of action/mode/value """ return control_methods[self.method] @property def modifier_str(self): """Get user-facing representation of interaction type and value """ if self.mode==Binding.MODE_DIRECT: if self.value<0: return ' (-)' elif getattr(Controls, self.method).action_modes[0] != \ Binding.MODE_DIRECT: return ' (+)' elif self.mode==Binding.MODE_SET: return ' (%d)' % self.value elif self.mode==Binding.MODE_ALTER: if self.value>=0: return ' (+%d)' % self.value else: return ' (%d)' % self.value elif self.mode==Binding.MODE_PULSE: if self.value<0x40: return ' (1-)' return '' @property def target_str(self): """Get user-facing representation of the target for this method """ group= self.method[0] if group=='p': return control_targets_players[self.target] if group=='b': return control_targets_effects_bank[self.target] if group in control_targets: return '%s %d' % (control_targets[group], self.target+1) return '' # Display helpers used by the _str methods and also SpinButtons # Keys, with fallback names for unmapped keyvals # @staticmethod def key_to_str(k): name= gtk.gdk.keyval_name(k) if name is None: return '<%04X>' % k return name @staticmethod def str_to_key(s): s= s.strip() if s.startswith('<') and s.endswith('>') and len(s)==6: return int(s[1:-1], 16) # Try to find a name for a keyval using different case variants. # Unfortunately the case needed by keyval_from_name does not usually # match the case produced by keyval_name. Argh. # # Luckily it's not essential that this is completely right, as it's # only needed for bumping the 'key' spinbutton, which will rarely be # done. # if s.lower()=='backspace': # TC: The name of the backspace key. s= _('BackSpace') n= gtk.gdk.keyval_from_name(s) if n==0: n= gtk.gdk.keyval_from_name(s.lower()) if n==0: n= gtk.gdk.keyval_from_name(s.title()) if n==0: n= gtk.gdk.keyval_from_name(s[:1].upper()+s[1:].lower()) return n # Note names. Convert to/from MIDI note/octave format. # NOTES= u'C,C#,D,D#,E,F,F#,G,G#,A,A#,B'.replace(u'#', u'\u266F').split(',') @staticmethod def note_to_str(n): return '%s%d' % (Binding.NOTES[n%12], n//12-1) @staticmethod def str_to_note(s): m= re.match(u'^([A-G](?:\u266F?))(-1|\d)$', s.replace(' ', '').replace( u'#', u'\u266F').upper()) if m is None: raise ValueError('Invalid note') n= Binding.NOTES.index(m.group(1)) n+= int(m.group(2))*12+12 if not 0<=n<128: raise ValueError('Octave out of range') return n # Shifting keys. Convert to/from short textual forms, with symbols rather # than the verbose names that accelgroup_name uses. # # Also convert to/from an ordinal form where the bits are reordered to fit # a simple 0..127 range, for easy use in a SpinButton. # MODIFIERS= ( (gtk.gdk.SHIFT_MASK, u'\u21D1'), (gtk.gdk.CONTROL_MASK, u'^'), (gtk.gdk.MOD1_MASK, u'\u2020'), # alt/option (gtk.gdk.MOD5_MASK, u'\u2021'), # altgr/option (gtk.gdk.META_MASK, u'\u25C6'), (gtk.gdk.SUPER_MASK, u'\u2318'), # win/command (gtk.gdk.HYPER_MASK, u'\u25CF'), ) MODIFIERS_MASK= sum(m for m, c in MODIFIERS) @staticmethod def modifier_to_str(m): return ''.join(c for mask, c in Binding.MODIFIERS if m & mask != 0) @staticmethod def str_to_modifier(s): return sum(mask for mask, c in Binding.MODIFIERS if c in s) @staticmethod def modifier_to_ord(m): return sum(1 << i for i, (mask, c) in enumerate( Binding.MODIFIERS) if m & mask != 0) @staticmethod def ord_to_modifier(b): return sum(mask for i, (mask, c) in enumerate( Binding.MODIFIERS) if b & (1 <>sys.stderr, 'Warning: controls prefs file ' \ 'contained unreadable binding %r' % line fp.close() self.update_lookup() def update_lookup(self): """Bindings list has changed, rebuild input lookup """ self.lookup= {} for binding in self.bindings: self.lookup.setdefault( str(binding).split(':', 1)[0], []).append(binding) def input(self, input, iv): """Dispatch incoming input to all bindings associated with it """ # If a BindingEditor is open in learning mode, inform it of the input # instead of doing anything with it. # if self.learner is not None: self.learner.learn(input) return # Handle input value according to the action mode and pass value with # is-delta flag to action methods. # for binding in self.lookup.get(input, []): isd= False v= iv if binding.mode==Binding.MODE_DIRECT: if binding.value<0: v= 0x7F-v else: if binding.mode==Binding.MODE_PULSE: if v>=0x40: if binding in self.repeat_cache: continue else: self.repeat_cache.add(binding) else: self.repeat_cache.discard(binding) if binding.value<=0x40: v= (~v)&0x7F # Act upon release. if v<0x40: continue if binding.mode in (Binding.MODE_SET, Binding.MODE_ALTER): v= binding.value if binding.mode in (Binding.MODE_PULSE, Binding.MODE_ALTER): isd= True # Binding is to be highlighted in the user interface. self.highlights[binding]= (3, True) getattr(self, binding.method)(binding.target, v, isd) def input_key(self, event): """Convert incoming key events into input signals """ # Ignore modifier keypresses, suppress keyboard repeat, # and include only relevant modifier flags. # if not(0xFFE1<=event.keyval<0xFFEF or 0xFE01<=event.keyval<0xFE35): state= event.state&Binding.MODIFIERS_MASK v= 0x7F if event.type==gtk.gdk.KEY_PRESS else 0 self.input('k%x.%x' % (state, event.keyval), v) # Utility for p_ control methods # def _get_player(self, n): main = self.owner if n==3: if main.player_nb.get_current_page() == 1: if main.jingles.interlude.treeview.is_focus(): n = 2 else: return None elif main.player_left.treeview.is_focus(): n= 0 elif main.player_right.treeview.is_focus(): n=1 else: return None elif n==4: if main.crossfade.get_value()<50: n= 0 else: n= 1 return (main.player_left, main.player_right, main.jingles.interlude)[n] # Control implementations. The @action_method decorator records all control # methods in order, so the order they are defined in this code dictates the # order they'll appear in in the UI. # Miscellaneous # @action_method(Binding.MODE_PULSE, Binding.MODE_SET) def c_tips(self, n, v, isd): control= self.owner.prefs_window.enable_tooltips if isd: v= 0 if control.get_active() else 127 control.set_active(v>=64) @dbusify(in_signature='b') def set_enable_tooltips(self, enabled): self.owner.prefs_window.enable_tooltips.set_active(enabled) @dbusify(out_signature='b') def get_enable_tooltips(self): return self.owner.prefs_window.enable_tooltips.get_active() @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT) def c_sdjmix(self, n, v, isd): active= not self.owner.listen_dj.get_active() if isd else v>=0x40 if active: self.owner.listen_dj.set_active(True) else: self.owner.listen_stream.set_active(True) @dbusify() def set_listen_dj_mix(self): self.owner.listen_dj.set_active(True) @dbusify(out_signature='b') def get_listen_dj_mix(self): return self.owner.listen_dj.get_active() @dbusify() def set_listen_stream_mix(self): self.owner.listen_stream.set_active(True) @dbusify(out_signature='b') def get_listen_stream_mix(self): return self.owner.listen_stream.get_active() # Panning presets # @action_method(Binding.MODE_PULSE) def l_panpre(self, n, v, isd): self.owner.pan_preset_chooser.load_preset(n) @dbusify(in_signature='u') def panning_presets_load(self, n): self.l_panpre(n, 0, 0) # Player # @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT) def p_pp(self, n, v, isd): player= self._get_player(n) if player is None: return is_playing= player.is_playing if not is_playing and (isd or v >= 0x40): player.play.set_active(True) if is_playing if isd else (player.is_paused == (v >= 0x40)): player.pause.set_active(not player.pause.get_active()) @dbusify(in_signature='ubb') def player_playpause(self, index, play, toggle): self.p_pp(index, 127 if play else 0, toggle) @action_method(Binding.MODE_PULSE) def p_stop(self, n, v, isd): player= self._get_player(n) if player is None: return player.stop.clicked() @dbusify(in_signature='u') def player_stop(self, index): self.p_stop(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_advance(self, n, v, isd): player= self._get_player(n) if player is None: return player.advance() @dbusify(in_signature='u') def player_advance(self, index): self.p_advance(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_prev(self, n, v, isd): player= self._get_player(n) if player is None: return player.prev.clicked() @dbusify(in_signature='u') def player_previous(self, index): self.p_prev(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_next(self, n, v, isd): player= self._get_player(n) if player is None: return player.next.clicked() @dbusify(in_signature='u') def player_next(self, index): self.p_next(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_sprev(self, n, v, isd): player= self._get_player(n) if player is None: return treeview_selectprevious(player.treeview) @dbusify(in_signature='u') def player_select_previous(self, index): self.p_sprev(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_snext(self, n, v, isd): player= self._get_player(n) if player is None: return treeview_selectnext(player.treeview) @dbusify(in_signature='u') def player_select_next(self, index): self.p_snext(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_sfire(self, n, v, isd): player= self._get_player(n) if player is None: return player.cb_doubleclick(player.treeview, None, None, None) @dbusify(in_signature='u') def player_play_selected(self, index): self.p_sfire(index, 0, 0) @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def p_stream(self, n, v, isd): player= self._get_player(n) if player is None: return active= not player.stream.get_active() if isd else v>=0x40 player.stream.set_active(active) @dbusify(in_signature='ubb') def player_set_streammix(self, index, value, toggle): self.p_stream(index, 127 if value else 0, toggle) @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def p_listen(self, n, v, isd): player= self._get_player(n) if player is None: return active= not player.listen.get_active() if isd else v>=0x40 player.listen.set_active(active) @dbusify(in_signature='ubb') def player_set_djmix(self, index, value, toggle): self.p_listen(index, 127 if value else 0, toggle) @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def p_prep(self, n, v, isd): player= self._get_player(n) if player is None: return if player not in (self.owner.player_left, self.owner.player_right): print "player unsupported for this binding" return other= self.owner.player_left if player is self.owner.player_right \ else self.owner.player_right prep= player.stream.get_active() if isd else v>=0x40 player.stream.set_active(not prep) other.listen.set_active(not prep) if prep: player.listen.set_active(True) self.owner.listen_dj.set_active(True) else: # This is questionable. I like to listen to the Stream output not # DJ, so reset to Stream mode after pre-ing. This may not suit # everyone. Maybe there should be a different action for preview # without returning to stream listening. The alternative would be # to try to remember which output was being listened to previously, # but that would introduce invisible state not present in the # normal UI, making the behaviour unpredictable. # self.owner.listen_stream.set_active(True) @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def p_vol(self, n, v, isd): player= self._get_player(n) if player is None: return if player.playername in ("left", "right"): deckadj= self.owner.deck2adj if player is self.owner.player_right \ else self.owner.deckadj elif player.playername == "interlude": deckadj = self.owner.jingles.ivol_adj cross= deckadj.get_value()+v if isd else v deckadj.set_value(cross) @dbusify(in_signature='uib') def player_set_volume(self, index, value, delta): self.p_vol(index, value, delta) #@action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) #def p_gain(self, n, v, isd): # player= self._get_player(n) # if player is None: return # pass # XXX #@action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) #def p_pan(self, n, v, isd): # player= self._get_player(n) # if player is None: return # pass # XXX @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def p_pitch(self, n, v, isd): player= self._get_player(n) if player is None: return speed= player.pbspeedbar.get_value()+v if isd else v player.pbspeedbar.set_value(speed) @dbusify(in_signature='uib') def player_set_pitch(self, index, value, delta): self.p_pitch(index, value, delta) # Playlist methods, to reproduce previous idjcmedia shortcuts # @action_method(Binding.MODE_PULSE) def p_tag(self, n, v, isd): #t player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'MetaTag') @action_method(Binding.MODE_PULSE) def p_istop(self, n, v, isd): #s player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'Stop Control') @dbusify(in_signature='u') def playlist_insert_stop_control(self, index): self.p_istop(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_istop2(self, n, v, isd): #s player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'Stop Control 2') @dbusify(in_signature='u') def playlist_insert_stop_control_2(self, index): self.p_istop2(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_ianno(self, n, v, isd): #u player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'Announcement Control') @action_method(Binding.MODE_PULSE) def p_itrans(self, n, v, isd): #a player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'Transfer Control') @dbusify(in_signature='u') def playlist_insert_transfer_control(self, index): self.p_itrans(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_ifade(self, n, v, isd): #f player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'Crossfade Control') @dbusify(in_signature='u') def playlist_insert_crossfade_control(self, index): self.p_ifade(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_ipitch(self, n, v, isd): #n player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'Normal Speed Control') @dbusify(in_signature='u') def playlist_insert_normal_speed_control(self, index): self.p_ipitch(index, 0, 0) @action_method(Binding.MODE_PULSE) def p_igotop(self, n, v, isd): player= self._get_player(n) if player is None: return player.menu_model, player.menu_iter= \ player.treeview.get_selection().get_selected() player.menuitem_response(None, 'Jump To Top Control') @dbusify(in_signature='u') def playlist_insert_jump_to_top_control(self, index): self.p_igotop(index, 0, 0) @dbusify(in_signature='us') def playlist_insert_pathname(self, index, pathname): player = self._get_player(index) if player is None: return model, iter = player.treeview.get_selection().get_selected() row = player.get_media_metadata(pathname) if row: model.insert_after(iter, row) self.player_select_next(index) @dbusify() def playlist_clear(self, index): player = self._get_player(index) if player is None: return player.liststore.clear() # Both players # @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def x_fade(self, n, v, isd): v= v/127.0*100 cross= self.owner.crossadj.get_value()+v if isd else v self.owner.crossadj.set_value(cross) @dbusify(in_signature='ib') def crossfade_set(self, value, delta): self.x_fade(0, value, delta) @action_method(Binding.MODE_PULSE) def x_advance(self, n, v, isd): self.owner.advance.clicked() @dbusify() def playlist_advance(self): self.x_advance(0, 0, 0) @action_method(Binding.MODE_PULSE) def x_pass(self, n, v, isd): self.owner.passbutton.clicked() @dbusify() def crossfade_pass(self): self.x_pass(0, 0, 0) @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def x_pitch(self, n, v, isd): checkbox= self.owner.prefs_window.speed_variance checkbox.set_active(not checkbox.get_active() if isd else v>=0x40) @dbusify(in_signature='bb') def pitch_enable(self, value, toggle): self.x_pitch(0, 127 if value else 0, toggle) @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def x_focus(self, n, v, isd): if isd: if self.owner.player_left.treeview.is_focus(): player = self.owner.player_right else: player = self.owner.player_left else: player= self.owner.player_right if v>=0x40 else \ self.owner.player_left player.treeview.grab_focus() @dbusify(in_signature='ub') def main_player_focus(self, index, toggle): self.x_focus(0, 127 if index else 0, toggle) # Channel # @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def m_on(self, n, v, isd): button = self.owner.mic_opener.get_opener_button(n) if button is not None: s = not button.get_active() if isd else v>=0x40 button.set_active(s) @dbusify(in_signature='ubb') def channel_open(self, index, value, toggle): self.m_on(index, 127 if value else 0, toggle) @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def m_vol(self, n, v, isd): agc = getattr(self.owner.prefs_window, 'mic_control_%d'%n) vol = agc.valuesdict[agc.commandname+'_gain'].get_adjustment() if isd: v += vol.props.value else: v = v / 127.0 * (vol.props.upper - vol.props.lower) + vol.props.lower vol.set_value(v) @dbusify(in_signature='uib') def channel_gain(self, index, value, delta): self.m_vol(index, value, delta) #@action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) #def m_gain(self, n, v, isd): # pass # XXX @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def m_pan(self, n, v, isd): agc= getattr(self.owner.prefs_window, 'mic_control_%d'%n) pan= agc.valuesdict[agc.commandname+'_pan'] v= v/127.0*100 v= pan.get_value()+v if isd else v pan.set_value(v) @dbusify(in_signature='uib') def channel_pan(self, index, value, delta): self.m_pan(index, value, delta) # VoIP # @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def v_on(self, n, v, isd): phone= self.owner.greenphone s= not phone.get_active() if isd else v>=0x40 phone.set_active(s) @dbusify(in_signature='bb') def voip_mode_public(self, value, toggle): self.v_on(0, 127 if value else 0, toggle) @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def v_prep(self, n, v, isd): phone= self.owner.redphone s= not phone.get_active() if isd else v>=0x40 phone.set_active(s) @dbusify(in_signature='bb') def voip_mode_private(self, value, toggle): self.v_prep(0, 127 if value else 0, toggle) @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def v_vol(self, n, v, isd): vol = self.owner.voipgainadj.get_value() + v if isd else v self.owner.voipgainadj.set_value(vol) @dbusify(in_signature='ib') def voip_set_gain(self, value, delta): self.v_vol(0, value, delta) @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def v_mixback(self, n, v, isd): vol = self.owner.mixbackadj.get_value() + v if isd else v self.owner.mixbackadj.set_value(vol) @dbusify(in_signature='ib') def voip_set_mixback_level(self, value, delta): self.v_mixback(0, value, delta) #@action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) #def v_gain(self, n, v, isd): # pass # XXX #@action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) #def v_pan(self, n, v, isd): # pass # XXX # One jingle # @action_method(Binding.MODE_PULSE) def k_fire(self, n, v, isd): self.owner.jingles.all_effects[n].trigger.clicked() @dbusify(in_signature='u') def effect_trigger(self, index): self.k_fire(index, 0, 0) # Jingles player in general # @action_method(Binding.MODE_PULSE) def b_stop(self, n, v, isd): if n < 2: self.owner.jingles.effect_banks[n].stop() else: banks = self.owner.jingles.effect_banks banks[0].stop() if len(banks) > 1: banks[1].stop() @dbusify(in_signature='bb') def effect_bank_stop(self, first, second): if first or second: self.b_stop(2 if first and second else (0, 1)[second], 0, 0) @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def b_vol1(self, n, v, isd): if n < 2: fader= self.owner.jingles.jvol_adj[n] vol= fader.get_value()+v if isd else v fader.set_value(vol) else: self.b_vol1(0, v, isd) self.b_vol1(1, v, isd) @dbusify(in_signature='uib') def effect_bank_gain(self, index, value, delta): self.b_vol1(index, value, delta) @action_method(Binding.MODE_DIRECT, Binding.MODE_SET, Binding.MODE_ALTER) def b_vol2(self, n, v, isd): if n < 2: fader= self.owner.jingles.jmute_adj[n] vol= fader.get_value()+v if isd else v fader.set_value(vol) else: self.b_vol2(0, v, isd) self.b_vol2(1, v, isd) @dbusify(in_signature='uib') def effect_bank_headroom(self, index, value, delta): self.b_vol2(index, value, delta) # Stream connection # @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def s_on(self, n, v, isd): connect= self.owner.server_window.streamtabframe.tabs[n].server_connect s= not connect.get_active() if isd else v>=0x40 connect.set_active(s) @dbusify(in_signature='ubb') def stream_set_connected(self, index, value, toggle): self.s_on(index, 127 if value else 0, toggle) # Recorder # @action_method(Binding.MODE_PULSE, Binding.MODE_DIRECT, Binding.MODE_SET) def r_on(self, n, v, isd): buttons= self.owner.server_window.recordtabframe.tabs[n].record_buttons s= not buttons.record_button.get_active() if isd else v>=0x40 if s: buttons.record_button.set_active(s) else: buttons.stop_button.clicked() @dbusify(in_signature='ubb') def recorder_set_recording(self, index, value, toggle): self.r_on(index, 127 if value else 0, toggle) # Generic GTK utilities ______________________________________________________ # TreeView move selection up/down with wrapping # def treeview_selectprevious(treeview): selection= treeview.get_selection() model, siter= selection.get_selected() iter= model.get_iter_first() if iter is not None: while True: niter= model.iter_next(iter) if niter is None or siter is not None and \ model.get_path(niter)==model.get_path(siter): break iter= niter selection.select_iter(iter) treeview.scroll_to_cell(model.get_path(iter), None, False) def treeview_selectnext(treeview): selection= treeview.get_selection() model, siter= selection.get_selected() iter= model.get_iter_first() if iter is not None: if siter is not None: siter= model.iter_next(siter) if siter is not None: iter= siter selection.select_iter(iter) treeview.scroll_to_cell(model.get_path(iter), None, False) # Simple value+text-based combo box with optional icon # class LookupComboBox(gtk.ComboBox): def __init__(self, values, texts, icons= None): self._values = values if icons is not None: model = gtk.ListStore(str, bool, gtk.gdk.Pixbuf) else: model = gtk.ListStore(str, bool) for valuei, value in enumerate(values): if icons is not None: model.append((texts[value], True, icons[value])) else: model.append((texts[value], True)) gtk.ComboBox.__init__(self, model) if icons is not None: cricon= gtk.CellRendererPixbuf() self.pack_start(cricon, False) self.set_attributes(cricon, pixbuf= 2) crtext= gtk.CellRendererText() self.pack_start(crtext, False) self.set_attributes(crtext, text= 0, sensitive= 1) def get_value(self): active = self.get_active() if active==-1: active= 0 return self._values[active] def set_value(self, value): self.set_active(self._values.index(value)) # Combo box with simple 1-level grouping and insensitive group headings # class GroupedComboBox(gtk.ComboBox): def __init__(self, groups, groupnames, values, valuenames, valuegroups): self._values= values self._lookup= {} model= gtk.TreeStore(int, str, bool) group_rows= {} for group in groups: group_rows[group]= model.append( None, [-1, groupnames[group], False]) for i in range(len(values)): iter= model.append(group_rows[valuegroups[i]], [i, valuenames[values[i]], True]) self._lookup[values[i]]= model.get_path(iter) gtk.ComboBox.__init__(self, model) cr= gtk.CellRendererText() self.pack_start(cr, True) self.set_attributes(cr, text= 1, sensitive= 2) def get_value(self): iter= self.get_active_iter() if iter is None: return self._values[0] i= self.get_model().get_value(iter, 0) if i==-1: return self._values[0] return self._values[i] def set_value(self, value): self.set_active_iter(self.get_model().get_iter(self._lookup[value])) # Horrible hack to make the text of a SpinButton customisable. If the # adjustment property is set to a subclass of CustomAdjustment, the display # text will be customisable through the read_input and write_output method # of that Adjustment. (With a plain Adjustment, works like normal SpinButton.) # # Normally customisation is impossible because the 'input' signal needs an # output written to its gpointer argument, which is not accessible via PyGTK. # Try to do the pointer write using ctypes, if available. Otherwise fall back # to working like a standard ComboBox. # try: import ctypes except ImportError: ctypes= None class CustomSpinButton(gtk.SpinButton): def __init__(self, adjustment, climb_rate= 0.0, digits= 0): gtk.SpinButton.__init__(self, adjustment, climb_rate, digits) self._value = adjustment.get_value() self._iscustom = ctypes is not None if self._iscustom: self.connect('input', self._on_input) self.connect('output', self._on_output) def _on_input(self, _, ptr): if not repr(ptr).startswith('=64) self.value_field_pulse_inverted.set_active(binding.value<64) def get_binding(self): mode= self.mode_field.get_value() if mode==Binding.MODE_DIRECT: value= -127 if self.value_field_invert.get_active() else 127 elif mode==Binding.MODE_PULSE: value= 127 if self.value_field_pulse_noinvert.get_active() else 0 else: value= int(self.value_field_scale.get_value()) return Binding( source= self.source_field.get_value(), channel= int(self.channel_field.get_value()), control= int(self.control_field.get_value()), mode= mode, method= self.method_field.get_value(), target= int(self.target_field.get_value()), value= value ) def on_delete(self, *args): self.on_close() return True def on_close(self, *args): self.learn_button.set_active(False) def on_key(self, _, event): if self.learn_button.get_active(): self.owner.owner.input_key(event) return True return False # Learn mode, take inputs and set the input fields from them # def on_learn_toggled(self, *args): if self.learn_button.get_active(): self.learn_button.set_label(_('Listening for input')) self.owner.owner.learner= self else: # TC: Button text. If pressed triggers 'Listening for input' mode. self.learn_button.set_label(_('Listen for input...')) self.owner.owner.learner= None def learn(self, input): binding= Binding(input+':dp_pp.0.0') self.source_field.set_value(binding.source) self.channel_field.set_value(binding.channel) self.control_field.set_value(binding.control) self.learn_button.set_active(False) # Update dependent controls # def on_source_changed(self, *args): s= self.source_field.get_value() if s==Binding.SOURCE_KEYBOARD: # TC: Refers to key modifiers including Ctrl, Alt, Shift, .... self.channel_label.set_text(_('Shifting')) self.channel_field.set_adjustment(ModifierAdjustment()) else: # TC: Specifically, the numerical midi channel. self.channel_label.set_text(_('Channel')) self.channel_field.set_adjustment(ChannelAdjustment()) self.control_label.set_text(self.binding_controls[s]) if s==Binding.SOURCE_KEYBOARD: self.control_field.set_adjustment(KeyAdjustment()) elif s==Binding.SOURCE_NOTE: self.control_field.set_adjustment(NoteAdjustment()) else: self.control_field.set_adjustment(gtk.Adjustment(0, 0, 127, 1)) self.control_label.set_sensitive(s!=Binding.SOURCE_PITCHWHEEL) self.control_field.set_sensitive(s!=Binding.SOURCE_PITCHWHEEL) def on_method_changed(self, *args): method= self.method_field.get_value() modes= getattr(Controls, method).action_modes model= self.mode_field.get_model() iter= model.get_iter_first() i= 0 while iter is not None: model.set_value(iter, 1, Binding.MODES[i] in modes) iter= model.iter_next(iter) i+= 1 self.mode_field.set_value(modes[0]) group= method[:1] if group=='p': self.target_field.set_adjustment(PlayerAdjustment()) elif group=='b': self.target_field.set_adjustment(EffectsBankAdjustment()) elif group in 'mksrl': self.target_field.set_adjustment(TargetAdjustment(group)) else: self.target_field.set_adjustment(SingularAdjustment()) self.target_field.update() # Snap state may need altering. self.snap_needed = 'p' in modes and 'a' not in modes if bool(self.value_field_scale.snap) != self.snap_needed: self.mode_field.emit("changed") def on_mode_changed(self, *args): mode= self.mode_field.get_value() self.value_label.set_text(self.binding_values[mode]) self.value_field_pulsebox.hide() self.value_field_scale.hide() self.value_field_invert.hide() if mode==Binding.MODE_DIRECT: self.value_field_invert.set_active(False) self.value_field_invert.show() elif mode==Binding.MODE_PULSE: self.value_field_pulsebox.show() else: # Find the adjustment limits. if mode==Binding.MODE_SET: min, max = 0, 127 else: min, max = -127, 127 val= min + (max - min + 1) // 2 snap= val if self.snap_needed else None self.value_field_scale.set_range(val, min, max, snap) self.value_field_scale.show() # A Compound HScale widget that supports snapping. # class ValueSnapHScale(gtk.HBox): can_mark= all(hasattr(gtk.Scale, x) for x in ('add_mark', 'clear_marks')) def __init__(self, *args, **kwds): gtk.HBox.__init__(self) self.set_spacing(2) self.label= gtk.Label() self.label.set_width_chars(4) self.label.set_alignment(1.0, 0.5) self.pack_start(self.label, False) self.hscale= gtk.HScale() self.hscale.connect('change-value', self.on_change_value) self.hscale.connect('value-changed', self.on_value_changed) # We draw our own value so we can control the alignment. self.hscale.set_draw_value(False) self.pack_start(self.hscale) self.foreach(gtk.Widget.show) if args: self.set_range(*args, **kwds) else: self.label.set_text("0") self.snap= None def set_range(self, val, lower, upper, snap=None): # Here snap also doubles as the boundary value. self.snap= snap if snap is not None: policy= gtk.UPDATE_DISCONTINUOUS adj= gtk.Adjustment( val, lower, upper + snap - 1, snap * 2, snap * 2, snap-1) adj.connect('notify::value', self.on_value_do_snap, lower, upper) else: policy= gtk.UPDATE_CONTINUOUS adj= gtk.Adjustment(val, lower, upper, 1, 6) if self.can_mark: self.hscale.clear_marks() if not self.snap: mark= lower + (upper - lower + 1) // 2 self.hscale.add_mark(mark, gtk.POS_BOTTOM, None) self.hscale.set_adjustment(adj) self.hscale.set_update_policy(policy) adj.props.value= val self.hscale.emit('value-changed') def on_change_value(self, range, scroll, _val): if self.snap: props= range.get_adjustment().props value= props.upper - props.page_size if \ range.get_value() >= self.snap else props.lower self.label.set_text(str(int(value))) def on_value_changed(self, range): self.label.set_text(str(int(range.get_value()))) def on_value_do_snap(self, adj, _val, lower, upper): val= upper if adj.props.value >= self.snap else lower if adj.props.value != val: adj.props.value= val if val==lower: self.snap= lower + (upper - lower) // 4 else: self.snap= lower + (upper - lower) * 3 // 4 def __getattr__(self, name): return getattr(self.hscale, name) # Extended adjustments for custom SpinButtons # class ChannelAdjustment(CustomAdjustment): def __init__(self, value= 0): CustomAdjustment.__init__(self, value, 0, 15, 1) def read_input(self, text): return int(text)-1 def write_output(self, value): return str(int(value+1)) class ModifierAdjustment(CustomAdjustment): def __init__(self, value= 0): CustomAdjustment.__init__(self, value, 0, 127, 1) def read_input(self, text): return Binding.modifier_to_ord(Binding.str_to_modifier(text)) def write_output(self, value): return Binding.modifier_to_str(Binding.ord_to_modifier(int(value))) class NoteAdjustment(CustomAdjustment): def __init__(self, value= 0): CustomAdjustment.__init__(self, value, 0, 127, 1) def read_input(self, text): return Binding.str_to_note(text) def write_output(self, value): return Binding.note_to_str(int(value)) class KeyAdjustment(CustomAdjustment): def __init__(self, value= 0): CustomAdjustment.__init__(self, value, 0, 0xFFFF, 1) def read_input(self, text): return Binding.str_to_key(text) def write_output(self, value): return Binding.key_to_str(int(value)) class PlayerAdjustment(CustomAdjustment): def __init__(self, value= 0): CustomAdjustment.__init__(self, value, 0, 4, 1) def read_input(self, text): return control_targets_players.index(text) def write_output(self, value): return control_targets_players[max(min(int(value), 4), 0)] class EffectsBankAdjustment(CustomAdjustment): def __init__(self, value= 0): CustomAdjustment.__init__(self, value, 0, 2, 1) def read_input(self, text): return control_targets_effects_bank.index(text) def write_output(self, value): return control_targets_effects_bank[max(min(int(value), 2), 0)] class TargetAdjustment(CustomAdjustment): def __init__(self, group, value= 0): CustomAdjustment.__init__(self, value, 0, { 'p': 3, 'm': 11, 'k': 23, 's': 8, 'r': 3, 'l': 8} [group], 1) self._group= group def read_input(self, text): return int(text.rsplit(' ', 1)[-1])-1 def write_output(self, value): return '%s %d' % (control_targets[self._group], value+1) class SingularAdjustment(CustomAdjustment): def __init__(self, value= 0): CustomAdjustment.__init__(self) def read_input(self, text): return 0.0 def write_output(self, value): return _('Singular control') # SpinButton that can translate its underlying adjustment values to GTK shift # key modifier flags, when a ModifierAdjustment is used. # class ModifierSpinButton(CustomSpinButton): def get_value(self): value= CustomSpinButton.get_value(self) if isinstance(self.get_adjustment(), ModifierAdjustment): value= Binding.ord_to_modifier(int(value)) return value def set_value(self, value): if isinstance(self.get_adjustment(), ModifierAdjustment): value= Binding.modifier_to_ord(int(value)) CustomSpinButton.set_value(self, value) # Main UI binding list tab ___________________________________________________ class ControlsUI(gtk.VBox): """Controls main config interface, displayed in a tab by IDJCmixprefs """ tooltip_coords = (0, 0) def __init__(self, owner): gtk.VBox.__init__(self, spacing= 4) self.owner= owner self.source_icons= {} for ct in Binding.SOURCES: self.source_icons[ct]= gtk.gdk.pixbuf_new_from_file( FGlobs.pkgdatadir / ('control_' + ct + ".png")) self.editor= BindingEditor(self) self.editor.connect('response', self.on_editor_response) self.editing= None # Control list # # TC: Tree column heading for Inputs e.g. Backspace, F1, S. column_input= gtk.TreeViewColumn(_('Input')) column_input.set_expand(True) cricon= gtk.CellRendererPixbuf() crtext= gtk.CellRendererText() crtext.props.ellipsize= pango.ELLIPSIZE_END column_input.pack_start(cricon, False) column_input.pack_start(crtext, True) column_input.set_attributes(cricon, pixbuf= 3, cell_background= 8) column_input.set_attributes(crtext, text= 4) column_input.set_sort_column_id(0) craction= gtk.CellRendererText() crmodifier= gtk.CellRendererText() crmodifier.props.xalign= 1.0 # TC: Tree column heading for actions e.g. Player stop. column_action= gtk.TreeViewColumn(_('Action')) column_action.pack_start(craction, True) column_action.pack_start(crmodifier, False) column_action.set_attributes(craction, text= 5) column_action.set_attributes(crmodifier, text= 6) column_action.set_sort_column_id(1) column_action.set_sizing(gtk.TREE_VIEW_COLUMN_AUTOSIZE) # TC: Tree column heading for targets e.g. Channel 1, Stream 2 column_target= gtk.TreeViewColumn( _('Target'), gtk.CellRendererText(), text= 7) column_target.set_sort_column_id(2) model= BindingListModel(self) model_sort= gtk.TreeModelSort(model) model_sort.set_sort_column_id(2, gtk.SORT_ASCENDING) self.tree= gtk.TreeView(model_sort) self.tree.connect('realize', model.on_realize, column_input, model_sort) self.tree.connect('cursor-changed', self.on_cursor_changed) self.tree.connect('key-press-event', self.on_tree_key) self.tree.connect('query-tooltip', self.on_tooltip_query) model.connect('row-deleted', self.on_cursor_changed) self.tree.append_column(column_input) self.tree.append_column(column_action) self.tree.append_column(column_target) self.tree.set_headers_visible(True) self.tree.set_rules_hint(True) self.tree.set_enable_search(False) self.tree.set_has_tooltip(True) # New/Edit/Remove buttons # # TC: User to create a new input binding. self.new_button= gtk.Button(stock=gtk.STOCK_NEW) # TC: User to remove an input binding. self.remove_button= gtk.Button(stock=gtk.STOCK_DELETE) # TC: User to modify an existing input binding. self.edit_button= gtk.Button(stock=gtk.STOCK_EDIT) self.new_button.connect('clicked', self.on_new) self.remove_button.connect('clicked', self.on_remove) self.edit_button.connect('clicked', self.on_edit) self.tree.connect('row-activated', self.on_edit) # Layout # buttons= gtk.HButtonBox() buttons.set_spacing(8) buttons.set_layout(gtk.BUTTONBOX_END) buttons.pack_start(self.edit_button, False, False) buttons.pack_start(self.remove_button, False, False) buttons.pack_start(self.new_button, False, False) buttons.show_all() self.on_cursor_changed() self.set_border_width(4) scroll= gtk.ScrolledWindow() scroll.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) scroll.add(self.tree) self.pack_start(scroll, True, True) self.pack_start(buttons, False, False) self.show_all() # Dynamic tooltip generation # def on_tooltip_query(self, tv, x, y, kb_mode, tooltip): if (x, y) != self.tooltip_coords: self.tooltip_coords = (x, y) elif None not in (x, y) and \ self.owner.owner.prefs_window.enable_tooltips.get_active(): path = tv.get_path_at_pos( *tv.convert_widget_to_bin_window_coords(x, y)) if path is not None: row = tv.get_model()[path[0]] hbox = gtk.HBox() hbox.set_spacing(3) hbox.pack_start(gtk.image_new_from_pixbuf(row[3].copy()), False) hbox.pack_start(gtk.Label(row[4]), False) hbox.pack_start(gtk.Label(" " + row[5] + row[6]), False) if row[7]: hbox.pack_start(gtk.Label(" " + row[7]), False) hbox.show_all() tooltip.set_custom(hbox) return True # Tree interaction # def on_cursor_changed(self, *args): isselected= self.tree.get_selection().count_selected_rows()!=0 self.edit_button.set_sensitive(isselected) self.remove_button.set_sensitive(isselected) def on_tree_key(self, tree, event, *args): if event.keyval==0xFFFF: # GDK_Delete self.on_remove() # Button presses # def on_remove(self, *args): model_sort, iter_sort= self.tree.get_selection().get_selected() model= model_sort.get_model() if iter_sort is None: return iter= model_sort.convert_iter_to_child_iter(None, iter_sort) binding= self.owner.bindings[model.get_path(iter)[0]] if binding is self.editing: self.editor.learnbutton.set_active(False) self.editor.hide() self.editing= None niter= model.iter_next(iter) if niter is None: treeview_selectprevious(self.tree) else: treeview_selectnext(self.tree) model.remove(iter) self.on_cursor_changed() def on_new(self, *args): model_sort, iter_sort= self.tree.get_selection().get_selected() model= model_sort.get_model() if iter_sort is not None: iter= model_sort.convert_iter_to_child_iter(None, iter_sort) binding= self.owner.bindings[model.get_path(iter)[0]] else: binding= Binding() self.editing= None self.editor.set_binding(binding) self.editor.show() def on_edit(self, *args): model_sort, iter_sort= self.tree.get_selection().get_selected() if iter_sort is None: return model= model_sort.get_model() iter= model_sort.convert_iter_to_child_iter(None, iter_sort) self.editing= iter self.editor.set_binding(self.owner.bindings[model.get_path(iter)[0]]) self.editor.show() def on_editor_response(self, _, response): if response==gtk.RESPONSE_OK: model= self.tree.get_model().get_model() binding= self.editor.get_binding() if self.editing==None: path= model.append(binding) else: path= model.replace(self.editing, binding) path_sort= self.tree.get_model().convert_child_path_to_path(path) self.tree.get_selection().select_path(path_sort) self.tree.scroll_to_cell(path_sort, None, False) self.on_cursor_changed() self.editor.hide() class BindingListModel(gtk.GenericTreeModel): """TreeModel mapping the list of Bindings in Controls to a TreeView """ def __init__(self, owner): gtk.GenericTreeModel.__init__(self) self.owner= owner self.bindings= owner.owner.bindings self.highlights= owner.owner.highlights def on_realize(self, tree, column0, model_sort): source= timeout_add(100, self.cb_highlights, tree, column0, model_sort) tree.connect_object('destroy', source_remove, source) @threadslock def cb_highlights(self, tree, column0, model_sort): d= self.highlights if d: for rowref, (count, is_new) in d.items(): # Highlights counter is reduced. if count < 1: del d[rowref] else: d[rowref]= (count - 1, False) # TreeView area invalidation to trigger a redraw. if is_new or rowref not in d: try: path= self.on_get_path(rowref) except ValueError: # User craftily deleted the entry during highlighting. pass else: path= model_sort.convert_child_path_to_path(path) area= tree.get_background_area(path, column0) tree.get_bin_window().invalidate_rect(area, False) return True def on_get_flags(self): return gtk.TREE_MODEL_LIST_ONLY|gtk.TREE_MODEL_ITERS_PERSIST def on_get_n_columns(self): return len(BindingListModel.column_types) def on_get_column_type(self, index): return BindingListModel.column_types[index] def has_default_sort_func(self): return False # Pure-list iteration # def on_get_iter(self, path): return self.bindings[path[0]] if self.bindings else None def on_get_path(self, rowref): return (self.bindings.index(rowref),) def on_iter_next(self, rowref): i= self.bindings.index(rowref)+1 if i>=len(self.bindings): return None return self.bindings[i] def on_iter_children(self, rowref): if rowref is None and len(self.bindings)>=1: return self.bindings[0] return None def on_iter_has_child(self, rowref): return False def on_iter_n_children(self, rowref): if rowref is None: return len(self.bindings) return 0 def on_iter_nth_child(self, rowref, i): if rowref is None and i. import os import gettext import ctypes import pygtk pygtk.require("2.0") import glib from .utils import FixedAttributes from .utils import PolicedAttributes from .utils import PathStr def lib_probe(at_runtime, names, extension): if at_runtime: for name in names.split(): name += extension try: ctypes.CDLL(name) except Exception: continue else: return True, name else: return False, "" else: return True, "" class FGlobs(object): """Namespace class of variables which cannot be altered. These are set by the build process. """ __metaclass__ = FixedAttributes datarootdir = PathStr("""@datarootdir@""") libdir = PathStr("""@libdir@""") pkglibdir = PathStr("""${pkglibdir}""") pkgdatadir = PathStr("""${pkgdatadir}""") localedir = PathStr("""@localedir@""") bindir = PathStr("""@bindir@""") avenabled = (0, 1)[@HAVE_AVFORMAT@ and @HAVE_AVCODEC@ and @HAVE_AVUTIL@] flacenabled = @HAVE_FLAC@ oggflacenabled = @HAVE_OGGFLAC@ opusenabled = @HAVE_OPUS@ speexenabled = @HAVE_SPEEX@ twolameenabled = @HAVE_TWOLAME@ shouttlsenabled = @HAVE_SHOUT_TLS@ have_libmp3lame, libmp3lame_filename = lib_probe(@DYN_LAME@, "libmp3lame liblame", """@DYLIB_EXT@""") have_libmpg123, libmpg123_filename = lib_probe(@DYN_MPG123@, "libmpg123", """@DYLIB_EXT@""") package_name = """@PACKAGE_NAME@""" package_version = """@PACKAGE_VERSION@""" backend = PathStr("""${pkglibdir}""") / ("idjc" + """@DYLIB_EXT@""") _ = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True).gettext class PGlobs(object): """Values which cannot be changed once they have been read.""" __metaclass__ = PolicedAttributes config_dir = PathStr(glib.get_user_config_dir()) / FGlobs.package_name #config_dir = PathStr(os.path.expanduser("~")) / ("." + FGlobs.package_name) profile_dir = config_dir / "profiles" dbus_bus_basename = "net.sf." + FGlobs.package_name dbus_objects_basename = "/net/sf/" + FGlobs.package_name app_shortform = "IDJC" app_longform = "Internet DJ Console" default_icon = FGlobs.pkgdatadir / "icon.png" autoload_profile_pathname = config_dir / "autoload-profile" copyright = _("Copyright 2005-%s Stephen Fairchild and others." ) % """@COPYRIGHT_YEAR@""" license = _("Released under the GNU General Public License V2.0+.") num_micpairs = 2 num_streamers = 6 num_encoders = 6 num_recorders = 2 num_effects = 24 num_panpresets = 3 def main(): """Package execution entry point.""" from .prelims import ProfileManager # pylint: disable=W0404 ProfileManager() from . import maingui # pylint: disable=W0404 return maingui.main() idjc-0.8.16/python/idjcmonitor.py0000644000175000017500000003410712630014503013653 00000000000000# idjcmonitor.py (C) 2013 Stephen Fairchild # Released under the GNU Lesser General Public License version 2.0 (or # at your option, any later version). """A monitoring class that keeps an eye on IDJC. It can be extended to issue e-mail alerts if IDJC freezes or perform Twitter updates when the music changes. Requires IDJC 0.8.9 or higher. Example usage: http://idjc.sourceforge.net/code_idjcmon.html """ import os import sys import time import gobject import dbus from dbus.mainloop.glib import DBusGMainLoop __all__ = ["IDJCMonitor"] BUS_BASENAME = "net.sf.idjc" OBJ_BASENAME = "/net/sf/idjc" def pid_exists(pid): """Check whether pid exists in the current process table.""" if pid < 0: return False try: os.kill(pid, 0) except OSError, e: return e.errno == os.errno.EPERM else: return True class IDJCMonitor(gobject.GObject): """Monitor IDJC internals relating to a specific profile or session. Can yield information about streams, music metadata, health. example usage: http://idjc.sourceforge.net/code_idjcmon.html """ __gsignals__ = { 'launch' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_STRING, gobject.TYPE_UINT)), 'quit' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_STRING, gobject.TYPE_UINT)), 'streamstate-changed' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_INT, gobject.TYPE_BOOLEAN, gobject.TYPE_STRING)), 'recordstate-changed' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_INT, gobject.TYPE_BOOLEAN, gobject.TYPE_STRING)), 'channelstate-changed' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_UINT, gobject.TYPE_BOOLEAN)), 'voip-mode-changed' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_UINT,)), 'metadata-changed' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_STRING,) * 5), 'effect-started': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_STRING,) * 2 + (gobject.TYPE_UINT,)), 'effect-stopped': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_UINT,)), 'tracks-finishing': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()), 'frozen' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_STRING, gobject.TYPE_UINT, gobject.TYPE_BOOLEAN)) } __gproperties__ = { 'artist' : (gobject.TYPE_STRING, 'artist', 'artist from track metadata', "", gobject.PARAM_READABLE), 'title' : (gobject.TYPE_STRING, 'title', 'title from track metadata', "", gobject.PARAM_READABLE), 'album' : (gobject.TYPE_STRING, 'album', 'album from track metadata', "", gobject.PARAM_READABLE), 'songname' : (gobject.TYPE_STRING, 'songname', 'the song name from metadata tags when available' ' and from the filenmame when not', "", gobject.PARAM_READABLE), 'music-filename' : (gobject.TYPE_STRING, 'music_filename', 'the audio file pathname of the track', "", gobject.PARAM_READABLE), 'streaminfo' : (gobject.TYPE_PYOBJECT, 'streaminfo', 'information about the streams', gobject.PARAM_READABLE), 'recordinfo' : (gobject.TYPE_PYOBJECT, 'recordinfo', 'information about the recorders', gobject.PARAM_READABLE), 'channelinfo' : (gobject.TYPE_PYOBJECT, 'channelinfo', 'toggle state of the audio channels', gobject.PARAM_READABLE), 'voip-mode' : (gobject.TYPE_UINT, 'voip-mode', 'voice over ip mixer mode', 0, 2, 0, gobject.PARAM_READABLE) } def __init__(self, profile): """Takes the profile parameter e.g. "default". Can also handle sessions with "session.sessionname" """ gobject.GObject.__init__(self) self.__profile = profile self.__bus = dbus.SessionBus(mainloop=DBusGMainLoop()) self.__bus_address = ".".join((BUS_BASENAME, profile)) self.__base_objpath = OBJ_BASENAME self.__base_interface = BUS_BASENAME self.__artist = self.__title = self.__album = "" self.__songname = self.__music_filename = "" self.__shutdown = False self._start_probing() @property def main(self): """A DBus interface to the main object. Code that uses this should catch any AttributeError exceptions. """ return dbus.Interface(self.__main, self.__base_interface) @property def output(self): """A DBus interface to the output object. Code that uses this should catch any AttributeError exceptions. """ return dbus.Interface(self.__output, self.__base_interface) @property def controls(self): """A DBus interface to the controls object. Code that uses this should catch any AttributeError exceptions. """ return dbus.Interface(self.__controls, self.__base_interface) def shutdown(self): """Block both signal emission and property reads.""" self.__shutdown = True def _start_probing(self): self.__watchdog_id = None self.__probe_id = None self.__watchdog_notice = False self.__pid = 0 self.__frozen = False self.__main = self.__output = self.__controls = None if not self.__shutdown: self.__probe_id = gobject.timeout_add_seconds( 2, self._idjc_started_probe) def _idjc_started_probe(self): # Check for a newly started IDJC instance of the correct profile. bus_address = ".".join((BUS_BASENAME, self.__profile)) try: self.__main = self.__bus.get_object(self.__bus_address, self.__base_objpath + "/main") self.__output = self.__bus.get_object(self.__bus_address, self.__base_objpath + "/output") self.__controls = self.__bus.get_object(self.__bus_address, self.__base_objpath + "/controls") main_iface = dbus.Interface(self.__main, self.__base_interface) main_iface.pid(reply_handler=self._pid_reply_handler, error_handler=self._pid_error_handler) except dbus.exceptions.DBusException: # Keep searching periodically. return not self.__shutdown else: return False def _pid_reply_handler(self, value): self.__pid = value try: self.__main.connect_to_signal("track_metadata_changed", self._metadata_handler) self.__main.connect_to_signal("effect_started", self._effect_started_handler) self.__main.connect_to_signal("effect_stopped", self._effect_stopped_handler) self.__main.connect_to_signal("quitting", self._quit_handler) self.__main.connect_to_signal("heartbeat", self._heartbeat_handler) self.__main.connect_to_signal("channelstate_changed", self._channelstate_handler) self.__main.connect_to_signal("voip_mode_changed", self._voip_mode_handler) self.__main.connect_to_signal("tracks_finishing", self._tracks_finishing_handler) self.__output.connect_to_signal("streamstate_changed", self._streamstate_handler) self.__output.connect_to_signal("recordstate_changed", self._recordstate_handler) # Start watchdog thread. self.__watchdog_id = gobject.timeout_add_seconds(3, self._watchdog) self.__streams = {n : (False, "unknown") for n in xrange(10)} self.__recorders = {n : (False, "unknown") for n in xrange(4)} self.__channels = [False] * 12 self.__voip_mode = 0 main_iface = dbus.Interface(self.__main, self.__base_interface) output_iface = dbus.Interface(self.__output, self.__base_interface) self.emit("launch", self.__profile, self.__pid) # Tell IDJC to initialize as empty its cache of sent data. # This yields a dump of server related info. main_iface.new_plugin_started() output_iface.new_plugin_started() except dbus.exceptions.DBusException: self._start_probing() def _pid_error_handler(self, error): self._start_probing() def _watchdog(self): if self.__watchdog_notice: if pid_exists(int(self.__pid)): if not self.__frozen: self.__frozen = True self.emit("frozen", self.__profile, self.__pid, True) return True else: for id_, (conn, where) in self.__streams.iteritems(): if conn: self._streamstate_handler(id_, 0, where) for id_, (rec, where) in self.__recorders.iteritems(): if rec: self._recordstate_handler(id_, 0, where) for index, open_ in enumerate(self.__channels): if open_: self._channelstate_handler(index, 0) self._quit_handler() return False elif self.__frozen: self.__frozen = False self.emit("frozen", self.__profile, self.__pid, False) self.__watchdog_notice = True return not self.__shutdown def _heartbeat_handler(self): self.__watchdog_notice = False def _quit_handler(self): """Start scanning for a new bus object.""" if self.__watchdog_id is not None: gobject.source_remove(self.__watchdog_id) self.emit("quit", self.__profile, self.__pid) self._start_probing() def _streamstate_handler(self, numeric_id, connected, where): numeric_id = int(numeric_id) connected = bool(connected) where = where.encode("utf-8") self.__streams[numeric_id] = (connected, where) self.notify("streaminfo") self.emit("streamstate-changed", numeric_id, connected, where) def _recordstate_handler(self, numeric_id, recording, where): numeric_id = int(numeric_id) recording = bool(recording) where = where.encode("utf-8") self.__recorders[numeric_id] = (recording, where) self.notify("recordinfo") self.emit("recordstate-changed", numeric_id, recording, where) def _channelstate_handler(self, numeric_id, open_): numeric_id = int(numeric_id) open_ = bool(open_) self.__channels[numeric_id] = open_ self.notify("channelinfo") self.emit("channelstate-changed", numeric_id, open_) def _voip_mode_handler(self, mode): mode = int(mode) self.__voip_mode = mode self.notify("voip-mode") self.emit("voip-mode-changed", mode) def _tracks_finishing_handler(self): self.emit("tracks-finishing") def _metadata_handler(self, artist, title, album, songname, music_filename): def update_property(name, value): oldvalue = getattr(self, "_IDJCMonitor__" + name) newvalue = value.encode("utf-8") if newvalue != oldvalue: setattr(self, "_IDJCMonitor__" + name, newvalue) self.notify(name) for name, value in zip( "artist title album songname music_filename".split(), (artist, title, album, songname, music_filename)): update_property(name, value) self.emit("metadata-changed", self.__artist, self.__title, self.__album, self.__songname, self.__music_filename) def _effect_started_handler(self, title, pathname, player): self.emit("effect-started", title, pathname, player) def _effect_stopped_handler(self, player): self.emit("effect-stopped", player) def do_get_property(self, prop): if self.__shutdown: raise AttributeError( "Attempt to read property after shutdown was called.") name = prop.name if name in ("artist", "title", "album", "songname", "music_filename", "effect_pathname"): return getattr(self, "_IDJCMonitor__" + name) if name == "streaminfo": return tuple(self.__streams[n] for n in xrange(10)) elif name == "recordinfo": return tuple(self.__recorders[n] for n in xrange(4)) elif name == "channelinfo": return tuple(self.__channels[n] for n in xrange(12)) elif name == "voip-mode": return self.__voip_mode else: raise AttributeError("Unknown property %s in %s" % ( name, repr(self))) def notify(self, property_name): if not self.__shutdown: gobject.GObject.notify(self, property_name) def emit(self, *args, **kwargs): if not self.__shutdown: gobject.GObject.emit(self, *args, **kwargs) idjc-0.8.16/python/prelims/0000755000175000017500000000000012711167613012521 500000000000000idjc-0.8.16/python/prelims/profiledialog.py0000644000175000017500000004735512636563402015653 00000000000000"""The profile management dialog.""" # Copyright (C) 2011 Stephen Fairchild (s-fairchild@users.sourceforge.net) # 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 in the file entitled COPYING. # If not, see . __all__ = ["ProfileDialog"] import atexit # This is and needs to remain the initial gtk import point. import glib import gobject import gtk import pango from idjc import PGlobs, FGlobs from idjc.prelims import MAX_PROFILE_LENGTH, profile_name_valid, default from ..utils import Singleton gtk.gdk.threads_init() gtk.gdk.threads_enter() atexit.register(gtk.gdk.threads_leave) from ..gtkstuff import ConfirmationDialog from ..gtkstuff import ErrorMessageDialog from ..gtkstuff import CellRendererLED from ..gtkstuff import CellRendererTime from ..gtkstuff import threadslock from ..gtkstuff import IconChooserButton from ..gtkstuff import IconPreviewFileChooserDialog from ..gtkstuff import timeout_add import gettext t = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True) _ = t.gettext gtk.window_set_default_icon_from_file(PGlobs.default_icon) class ProfileEntry(gtk.Entry): _allowed = (65056, 65361, 65363, 65365, 65288, 65289, 65535) def __init__(self): gtk.Entry.__init__(self) self.set_max_length(MAX_PROFILE_LENGTH) self.connect("key-press-event", self._cb_kp) self.connect("button-press-event", self._cb_button) def _cb_kp(self, widget, event): if not event.keyval in self._allowed and not \ profile_name_valid(event.string): return True def _cb_button(self, widget, event): if event.button != 1: return True class NewProfileDialog(gtk.Dialog): _icon_dialog = IconPreviewFileChooserDialog("Choose An Icon", buttons = (gtk.STOCK_CLEAR, gtk.RESPONSE_NONE, gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OK, gtk.RESPONSE_OK)) def __init__(self, row, filter_function=None, title_extra = "", edit=False): gtk.Dialog.__init__(self) self.set_border_width(6) self.get_child().set_spacing(12) self.set_modal(True) self.set_destroy_with_parent(True) self._icon_dialog.set_transient_for(self) if row is not None: if edit: # TC: data entry dialog window title text. %s = profile name title = _("Edit profile %s") else: # TC: data entry dialog window title text. %s = profile name title = _("New profile based upon %s") title %= row[1] else: # TC: data entry dialog window title text. title = _("New profile details") self.set_title(title + title_extra) hbox = gtk.HBox() hbox.set_border_width(6) hbox.set_spacing(12) if edit: icon = gtk.STOCK_EDIT else: icon = gtk.STOCK_COPY if row else gtk.STOCK_NEW self.image = gtk.image_new_from_stock(icon, gtk.ICON_SIZE_DIALOG) self.image.set_alignment(0.0, 0.0) hbox.pack_start(self.image, False) table = gtk.Table(2, 4) table.set_row_spacings(6) table.set_col_spacing(0, 6) hbox.pack_start(table) labels = ( # TC: data entry dialog label text. _("Profile name"), # TC: data entry dialog label text. _("Icon"), # TC: data entry dialog label text. _("Nickname"), # TC: data entry dialog label text. _("Description")) names = ("profile_entry", "icon_button", "nickname_entry", "description_entry") widgets = (ProfileEntry(), IconChooserButton(self._icon_dialog), gtk.Entry(), gtk.Entry()) for i, (label, name, widget) in enumerate(zip(labels, names, widgets)): label = gtk.Label(label) label.set_alignment(1.0, 0.5) table.attach(label, 0, 1, i, i + 1, gtk.SHRINK | gtk.FILL) table.attach(widget, 1, 2, i, i + 1, yoptions=gtk.SHRINK) setattr(self, name, widget) self.profile_entry.set_width_chars(30) self.get_content_area().add(hbox) bb = self.get_action_area() bb.set_spacing(6) if row is not None: profile = row[1] if edit else "" revert = gtk.Button(stock=gtk.STOCK_REFRESH) revert.connect("clicked", self._revert, row, edit) revert.clicked() bb.add(revert) bb.set_child_secondary(revert, True) else: self.icon_button.set_filename(PGlobs.default_icon) if edit: if self.profile_entry.get_text() == default: self.profile_entry.set_sensitive(False) self.delete = gtk.Button(stock=gtk.STOCK_DELETE) self.delete.connect_after("clicked", lambda w: self.destroy()) bb.add(self.delete) cancel = gtk.Button(stock=gtk.STOCK_CANCEL) cancel.connect("clicked", lambda w: self.destroy()) bb.add(cancel) self.ok = gtk.Button(stock=gtk.STOCK_OK) bb.add(self.ok) def _revert(self, widget, row, edit): profile_text = row[1] if edit else "" self.profile_entry.set_text(profile_text) self.icon_button.set_filename(row[4]) self.nickname_entry.set_text(row[5]) self.description_entry.set_text(row[2]) self.profile_entry.grab_focus() @classmethod def append_dialog_title(cls, text): cls._icon_dialog.set_title(cls._icon_dialog.get_title() + text) class ProfileSingleton(Singleton, type(gtk.Dialog)): def __call__(cls, *args, **kwds): return super(ProfileSingleton, cls).__call__(*args, **kwds) class ProfileDialog(gtk.Dialog): __metaclass__ = ProfileSingleton __gproperties__ = { "selection-active" : (gobject.TYPE_BOOLEAN, "selection active", "selected profile is active", 0, gobject.PARAM_READABLE), "selection": (str, "profile selection", "profile selected in profile manager", "", MAX_PROFILE_LENGTH) } _signal_names = "choose", "delete", "auto" _new_profile_dialog_signal_names = "new", "clone", "edit" __gsignals__ = { "selection-active-changed" : ( gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, (str, gobject.TYPE_BOOLEAN,)), "selection-changed" : ( gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, (str,)) } __gsignals__.update(dict( (x, (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, (gobject.TYPE_STRING,))) for x in (_signal_names))) __gsignals__.update(dict( (x, (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, (gobject.TYPE_STRING,) * 5)) for x in (_new_profile_dialog_signal_names))) @property def profile(self): return self._profile def __init__(self, default, data_function=None): self._default = default self._profile = self._highlighted = None self._selection_active = False self._olddata = () self._title_extra = "" # TC: profile dialog window title text. gtk.Dialog.__init__(self, _("IDJC Profile Manager")) self.set_size_request(600, 300) self.set_border_width(6) w = gtk.ScrolledWindow() w.set_border_width(6) w.set_shadow_type(gtk.SHADOW_ETCHED_OUT) w.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) self.get_content_area().add(w) self.store = gtk.ListStore( gtk.gdk.Pixbuf, str, str, int, str, str, int, int) self.sorted = gtk.TreeModelSort(self.store) self.sorted.set_sort_func(1, self._sort_func) self.sorted.set_sort_column_id(1, gtk.SORT_ASCENDING) self.treeview = gtk.TreeView(self.sorted) self.treeview.set_headers_visible(True) self.treeview.set_rules_hint(True) w.add(self.treeview) autorend = gtk.CellRendererPixbuf() autorend.props.width = 16 autorend.props.stock_id = gtk.STOCK_APPLY autorend.props.stock_size = gtk.ICON_SIZE_MENU pbrend = gtk.CellRendererPixbuf() pbrend.props.width = 16 strrend = gtk.CellRendererText() ledrend = CellRendererLED() time_rend = CellRendererTime() strrend_ellip = gtk.CellRendererText() strrend_ellip.props.ellipsize = pango.ELLIPSIZE_END # TC: column heading. The available profile names appears below. c0 = gtk.TreeViewColumn(None, autorend, visible=7) image = gtk.image_new_from_stock(gtk.STOCK_OPEN, gtk.ICON_SIZE_MENU) c0.set_widget(image) image.show() self.treeview.append_column(c0) c1 = gtk.TreeViewColumn(_("Profile")) c1.pack_start(pbrend, expand=False) c1.pack_start(strrend) c1.add_attribute(pbrend, "pixbuf", 0) c1.add_attribute(strrend, "text", 1) c1.set_spacing(2) self.treeview.append_column(c1) # TC: column heading. The profile nicknames. c2 = gtk.TreeViewColumn(_("Nickname"), strrend, text=5) self.treeview.append_column(c2) # TC: column heading. c3 = gtk.TreeViewColumn(_("Description"), strrend_ellip, text=2) c3.set_expand(True) self.treeview.append_column(c3) # TC: column heading. The time a particular profile has been running. c4 = gtk.TreeViewColumn(_("Up-time")) c4.pack_start(ledrend) c4.pack_start(time_rend) c4.add_attribute(ledrend, "active", 3) c4.add_attribute(time_rend, "time", 6) c4.set_spacing(2) self.treeview.append_column(c4) self.selection = self.treeview.get_selection() self.selection.connect("changed", self._cb_selection) box = self.get_action_area() box.set_spacing(6) for attr, label, sec, stock in zip( ("new", "clone", "edit", "delete", "auto", "cancel", "choose"), (gtk.STOCK_NEW, gtk.STOCK_COPY, gtk.STOCK_EDIT, gtk.STOCK_DELETE, _("_Auto"), gtk.STOCK_QUIT, gtk.STOCK_OPEN), (True,) * 4 + (False,) * 3, (True,) * 4 + (False,) + (True,) * 2): w = gtk.Button(label) w.set_use_stock(stock) box.add(w) box.set_child_secondary(w, sec) setattr(self, attr, w) self.delete.set_no_show_all(True) self.cancel.connect("clicked", self._cb_cancel) self.set_data_function(data_function) self.connect("notify::visible", self._cb_visible) for each in self._signal_names: getattr(self, each).connect("clicked", self._cb_click, each) for each in self._new_profile_dialog_signal_names: getattr(self, each).connect("clicked", self._cb_new_profile_dialog, each) def display_error(self, message, transient_parent=None, markup=False): error_dialog = ErrorMessageDialog("", message, markup=markup) error_dialog.set_transient_for(transient_parent or self) error_dialog.show_all() def destroy_new_profile_dialog(self): self._new_profile_dialog.destroy() del self._new_profile_dialog def get_new_profile_dialog(self): return self._new_profile_dialog def do_get_property(self, prop): if prop.name == "selection-active": return self._selection_active elif prop.name == "selection": return self._highlighted else: raise AttributeError("unknown property: %s" % prop.name) def do_selection_active_changed(self, profile, state): state = not state self.choose.set_sensitive(state) self.edit.set_sensitive(state) self.clone.set_sensitive(state) def _cb_click(self, widget, signal): if self._highlighted is not None: def commands(): self.emit(signal, self._highlighted) self._update_data() if signal == "delete": if self._highlighted == self._default: message = _("Delete the" " data of profile '%s'?\n\nThe profile will" " remain available with initial settings.") else: message = _("Delete " "profile '%s' and all its data?\n\nThe" " data of deleted profiles cannot be recovered.") conf = ConfirmationDialog("", message % self._highlighted, markup=True) conf.set_transient_for(self) conf.ok.connect("clicked", lambda w: commands()) conf.show_all() else: commands() def _cb_new_profile_dialog(self, widget, action): if action in ("clone", "edit"): if self._highlighted is None: return row = self._get_row_for_profile(self._highlighted) template = row[1] else: row = None template = None np_dialog = self._new_profile_dialog = NewProfileDialog(row, title_extra = self._title_extra, edit=action=="edit") np_dialog.set_transient_for(self) def sub_ok(widget): profile = np_dialog.profile_entry.get_text() icon = np_dialog.icon_button.get_filename() description = np_dialog.description_entry.get_text().strip() nickname = np_dialog.nickname_entry.get_text().strip() self.emit(action, profile, template, icon, nickname, description) self._update_data() self.highlight_profile(profile) np_dialog.ok.connect("clicked", sub_ok) if action == "edit": np_dialog.delete.connect("clicked", lambda w: self.delete.clicked()) np_dialog.show_all() def _cb_cancel(self, widget): if self._profile is None: self.response(0) else: self.hide() def _cb_delete_event(self, widget, event): self.hide() return True def _cb_visible(self, *args): self._update_data() if self.props.visible: timeout_add(200, threadslock(self._update_data)) def _cb_selection(self, ts): model, iter = ts.get_selected() if iter is not None: highlighted = model.get_value(iter, 1) active = model.get_value(iter, 3) else: highlighted = None active = False if highlighted != self._highlighted: self._highlighted = highlighted self.emit("selection-changed", self._highlighted) if active != self._selection_active: self._selection_active = active self.emit("selection-active-changed", self._highlighted, active) def highlight_profile(self, target, scroll=True): i = self._get_index_for_profile(target) if i is not None: self.selection.select_path(i) if scroll: self.selection.get_tree_view().scroll_to_cell(i) def _get_index_for_profile(self, target): for i, data in enumerate(self.sorted): if data[1] == target: return i return None def _get_row_for_profile(self, target): path = self._get_index_for_profile(target) if path is not None: return list(self.sorted[path]) else: return None def _sort_func(self, model, *iters): vals = tuple(model.get_value(x, 1) for x in iters) try: return vals.index(self._default) except ValueError: return cmp(*vals) def set_data_function(self, f): self._data_function = f self._update_data() if f is not None: self.highlight_profile(self._default) def _auto_data_function(self, col, cell, model, iter): val = model.get_value(iter, 7) cell.set_visible(val) if val: cell.props.stock_id = gtk.STOCK_APPLY cell.props.stock_size = gtk.ICON_SIZE_MENU def _update_data(self): if self._data_function is not None: data = tuple(self._data_function()) if self._olddata != data: self._olddata = data h = self._highlighted self.selection.handler_block_by_func(self._cb_selection) self.store.clear() for d in data: if d["icon"] is not None: i = d["icon"] else: if d["profile"] == self._default: i = PGlobs.default_icon else: i = None if i is not None: try: pb = gtk.gdk.pixbuf_new_from_file_at_size(i, 16, 16) except glib.GError: pb = i = None else: pb = None desc = d["description"] or "" active = d["active"] nick = d["nickname"] or "" uptime = d["uptime"] auto = d["auto"] self.store.append((pb, d["profile"], desc, active, i or "", nick, uptime, auto)) self.selection.handler_unblock_by_func(self._cb_selection) self.highlight_profile(h, scroll=False) return self.props.visible def set_profile(self, newprofile, title_extra, iconpathname): assert self._profile is None self.hide() self._profile = newprofile self.highlight_profile(newprofile, scroll=True) self.set_title(self.get_title() + title_extra) NewProfileDialog.append_dialog_title(title_extra) self._title_extra = title_extra try: self.set_icon_from_file(iconpathname) except glib.GError: print "Profile icon image file not found:", iconpathname else: gtk.window_set_default_icon_from_file(iconpathname) self.cancel.set_label(gtk.STOCK_CLOSE) self.connect("delete-event", self._cb_delete_event) self.response(0) def run(self): if self._profile is None: self.show_all() gtk.Dialog.run(self) else: self.show() def present(self): self.show_all() idjc-0.8.16/python/prelims/__init__.py0000644000175000017500000011464612630014503014553 00000000000000"""Preliminary initialisation stuff.""" # Copyright (C) 2011, 2013 Stephen Fairchild (s-fairchild@users.sourceforge.net) # 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 in the file entitled COPYING. # If not, see . __all__ = ["ArgumentParserImplementation", "ProfileManager"] import os import sys import argparse import shutil import tempfile import time import math import fcntl import re import glob import uuid import datetime import subprocess from functools import partial from collections import defaultdict import dbus import dbus.service from dbus.mainloop.glib import DBusGMainLoop DBusGMainLoop(set_as_default=True) import glib from idjc import FGlobs from idjc import PGlobs from ..utils import Singleton from ..utils import PathStr import gettext t = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True) _ = t.gettext # The name of the default profile. default = "default" # Regular expressions of files to copy when cloning a profile. config_files = ("config", "controls", "left_session", "main_session", "main_session_files_played", "playerdefaults", "right_session", "interlude_session", "effects[12]_session", "s_data", "ports-.+-.+") class ArgumentParserError(Exception): pass class ArgumentParser(argparse.ArgumentParser): def error(self, text): raise ArgumentParserError(text) def exit_with_message(self, text): """This is just error on the superclass.""" super(ArgumentParser, self).error(text) class ArgumentParserImplementation(object): """To parse the command line arguments, if any.""" __metaclass__ = Singleton def __init__(self, args=None, description=None, epilog=None): if args is None: args = sys.argv[1:] self._args = list(args) if description is None: description = PGlobs.app_longform ap = self._ap = ArgumentParser(description=description, epilog=epilog, add_help=False) ap.add_argument("-h", "--help", action="help", help=_('show this help ' 'message and exit -- additional help is available on each of the ' 'sub-commands for example: "%(prog)s run --help" shows the help ' 'for the run command')) ap.add_argument("-v", "--version", action='version', version=FGlobs.package_name + " " + FGlobs.package_version, # TC: a command line option help string. help=_("show the version number and exit")) sp = self._sp = ap.add_subparsers() # TC: a command line option help string. sp_run = sp.add_parser("run", add_help=False, help=_("run the main " "idjc application -- this is the default when no command line options" " are specified"), # TC: do not translate run. description=description + " " + _("-- sub-command: run -- launch " "the idjc application"), epilog=epilog) # TC: a command line option help string. sp_new = sp.add_parser("new", add_help=False, help=_("make a new profile"), # TC: do not translate the word new. description=description + " " + _("-- sub-command: new -- " "make a new profile"), epilog=epilog) # TC: a command line option help string. sp_rm = sp.add_parser("rm", add_help=False, help=_("remove profile(s)"), # TC: do not translate the word rm. description=description + " " + _("-- sub-command: rm -- remove " "profile(s)"), epilog=epilog) # TC: a command line option help string. sp_auto = sp.add_parser("auto", add_help=False, help=_("select which " "profile is to automatically launch"), # TC: do not translate the word auto. description=description + " " + _("-- sub-command: auto -- mark a" " profile for auto-launch"), epilog=epilog) # TC: a command line option help string. sp_noauto = sp.add_parser("noauto", add_help=False, help=_("remove auto-launch"), description=description + " " + _("-- sub-command: noauto -- " "remove auto-launch"), epilog=epilog) # TC: a command line option help string. sp_ls = sp.add_parser("ls", add_help=False, help=_("list available profiles"), # TC: do not translate the word ls. description=description + " " + _("-- sub-command: ls -- list " "available profiles"), epilog=epilog) sp_run.add_argument("-h", "--help", action="help", help=_('show this help message and exit')) sp_run.add_argument("-d", "--dialog", dest="dialog", nargs=1, choices=("true", "false"), help=_("""force the appearance or non-appearance of the profile chooser dialog -- when used with the -p option the chosen profile is preselected""")) # TC: command line help placeholder. sp_run.add_argument("-p", "--profile", dest="profile", nargs=1, metavar=_("profile_choice"), help=_("""the profile to use -- overrides the user interface preferences "show profile dialog" option""")) sp_run.add_argument("-j", "--jackserver", dest="jackserver", nargs=1, # TC: command line help placeholder. metavar=_("server_name"), help=_("the named jack sound-server " "to connect with")) sp_run.add_argument("-S", "--session", dest="session", nargs=1, # TC: command line help placeholder. metavar=_("session_details"), help=_("e.g. 'L1:name' for a named Ladish [L1] session called " "'name' -- refer to the idjc man page for more details")) sp_run.add_argument("--no-jack-connections", dest="no_jack_connections", action="store_true", help=_('At start-up do not make any JACK connections. This ' 'option delegates all control over restored connections to ' 'the session handler.')) sp_run.add_argument("-C", "--no-default-jack-connections", dest="no_default_jack_connections", action="store_true", help=_('No JACK ports will be connected except those listed in' ' the session file.')) group = sp_run.add_argument_group(_("user interface settings")) group.add_argument("-c", "--channels", dest="channels", nargs="+", metavar="c", help=_("the audio channels to have open at startup")) group.add_argument("-V", "--voip", dest="voip", nargs=1, choices= ("off", "private", "public"), help=_("the voip mode at startup")) group.add_argument("-P", "--players", dest="players", nargs="+", metavar="p", help="the players to start among values {1,2,3}") group.add_argument("-s", "--servers", dest="servers", nargs="+", metavar="s", help=_("attempt connection with the specified servers")) group.add_argument("-k", "--kicksources", dest="kicksources", nargs="+", metavar="k", help=_("""kick sources on servers -- note that this will be done before any server connection attempts are made""")) group.add_argument("-x", "--crossfader", dest="crossfader", choices=("1", "2"), help=_("position the crossfader for the specified player")) sp_new.add_argument("-h", "--help", action="help", help=_('show this help message and exit')) # TC: command line help placeholder. sp_new.add_argument("newprofile", metavar=_("profile_name"), help=_("""new profile name -- will form part of the dbus bus/object/interface name and the JACK client ID -- restrictions therefore apply""")) # TC: command line help placeholder. sp_new.add_argument("-t", "--template", dest="template", metavar=_("template_profile"), help=_("an existing profile to use as a template")) # TC: command line help placeholder. sp_new.add_argument("-i", "--icon", dest="icon", metavar=_("icon_pathname"), help=_("pathname to an icon -- defaults to idjc logo")) # TC: Command line help placeholder for the profile's nickname. # TC: Profile names are very restricted in what characters can be used. sp_new.add_argument("-n", "--nickname", dest="nickname", metavar=_("nickname"), help=_("the alternate profile name to appear in window title" " bars")) sp_new.add_argument("-d", "--description", dest="description", metavar=_("description_text"), help=_("a description of the profile")) sp_rm.add_argument("-h", "--help", action="help", help=_('show this help message and exit')) sp_rm.add_argument("rmprofile", metavar=_("profile_name"), nargs="+", help=_('the profile(s) to remove')) sp_auto.add_argument("-h", "--help", action="help", help=_('show this help message and exit')) sp_auto.add_argument("autoprofile", metavar="profile_name", help=_('the profile to make automatic')) sp_noauto.add_argument("-h", "--help", action="help", help=_('show this help message and exit')) sp_noauto.add_argument("--dummyarg", dest="noauto", help=argparse.SUPPRESS) sp_ls.add_argument("-h", "--help", action="help", help=_('show this help message and exit')) sp_ls.add_argument("--dummyarg", dest="ls", help=argparse.SUPPRESS) def parse_args(self): try: return self._ap.parse_args(self._args) except ArgumentParserError as e: try: for cmd in self._sp.choices.iterkeys(): if cmd in self._args: raise return self._ap.parse_args(self._args + ["run"]) except ArgumentParserError: self._ap.exit_with_message(str(e)) def error(self, text): self._ap.exit_with_message(text) def exit(self, status=0, message=None): self._ap.exit(status, message) class DBusUptimeReporter(dbus.service.Object): """Supply uptime to other idjc instances.""" interface_name = PGlobs.dbus_bus_basename + ".profile" obj_path = PGlobs.dbus_objects_basename + "/uptime" def __init__(self): self._uptime_cache = defaultdict(float) self._interface_cache = {} # Defer base class initialisation. @dbus.service.method(interface_name, out_signature="d") def get_uptime(self): """Broadcast uptime from the current profile.""" return self._get_uptime() def activate_for_profile(self, bus_name, get_uptime): self._get_uptime = get_uptime dbus.service.Object.__init__(self, bus_name, self.obj_path) def get_uptime_for_profile(self, profile): """Ask and return the uptime of an active profile. Step 1, Issue an async request for new data. Step 2, Return immediately with the cached value. Note: On error the cache is purged. Supports synchronous mode in the absence of an event loop. """ def rh(retval): self._uptime_cache[profile] = retval def eh(exception): try: del self._uptime_cache[profile] except KeyError: pass try: del self._interface_cache[profile] except KeyError: pass try: interface = self._interface_cache[profile] except KeyError: try: p = dbus.SessionBus().get_object(PGlobs.dbus_bus_basename + \ "." + profile, self.obj_path) interface = dbus.Interface(p, self.interface_name) except dbus.exceptions.DBusException as e: eh(e) return self._uptime_cache.default_factory() self._interface_cache[profile] = interface if glib.main_depth(): # asynchronous: more CPU efficient but requires event loop interface.get_uptime(reply_handler=rh, error_handler=eh) return self._uptime_cache[profile] else: # synchronous return interface.get_uptime() # Profile length limited for practical reasons. For more descriptive # purposes the nickname parameter was created. MAX_PROFILE_LENGTH = 18 def profile_name_valid(p): try: dbus.validate_bus_name("com." + p) dbus.validate_object_path("/" + p) except (TypeError, ValueError): return False return len(p) <= MAX_PROFILE_LENGTH class ProfileError(Exception): """General purpose exception used within the ProfileManager class. Takes two strings so that one can be used for command line messages and the other for displaying in dialog boxes.""" def __init__(self, str1, str2=None): Exception.__init__(self, str1) self.gui_text = str2 def profileclosure(cmd, name): """A factory function of sorts.""" busbase = PGlobs.dbus_bus_basename def inner(profname): return cmd(".".join((busbase, profname))) inner.__name__ = name return staticmethod(inner) class ProfileManager(object): """The profile gives each application instance a unique identity. This identity extends to the config file directory if present, to the JACK application ID, to the DBus bus name. """ __metaclass__ = Singleton _profile = _dbus_bus_name = _profile_dialog = _init_time = None _iconpathname = PGlobs.default_icon _textoptionals = ("nickname", "description") _optionals = ("icon",) + _textoptionals def __init__(self): ap = ArgumentParserImplementation() args = ap.parse_args() try: if not os.path.isdir(PGlobs.profile_dir / default): self._generate_default_profile() if "newprofile" in args: self._generate_profile(**vars(args)) ap.exit(0) except ProfileError as e: ap.error(_("failed to create profile: %s") % str(e)) try: if "rmprofile" in args: self._delete_profile(None, args.rmprofile) ap.exit(0) except ProfileError as e: ap.error(_("failed to delete profile: %s") % str(e)) try: if "autoprofile" in args: self._auto(None, args.autoprofile) ap.exit(0) except ProfileError as e: ap.error(_("auto failed: %s") % str(e)) try: if "noauto" in args: self._noauto() ap.exit(0) except EnvironmentError as e: ap.error(_("noauto failed: %s") % e) self._uprep = DBusUptimeReporter() try: if "ls" in args: self._ls() ap.exit(0) except EnvironmentError as e: ap.error(_("ls failed: %s") % e) self._session_type, self._session_dir, self._session_name, \ self._session_uuid = self._parse_session(ap, args) if self._session_dir is None: # Not in session mode so do the profile init stuff. profile = self.autoloadprofilename if profile is None: profile = default dialog_selects = True else: dialog_selects = False if args.profile is not None: profile = args.profile[0] dialog_selects = False if not profile_name_valid(profile): ap.error(_("the specified profile name is not valid")) if args.dialog is not None: dialog_selects = args.dialog[0] == "true" if not dialog_selects and profile: if not profile_name_valid(profile): ap.error(_('profile name is bad')) if profile not in os.walk(PGlobs.profile_dir).next()[1]: ap.error(_('profile %s does not exist') % profile) if self._profile_has_owner(profile): ap.error(_('profile %s is already running') % profile) self._profile_dialog = self._get_profile_dialog() self._profile_dialog.connect("delete", self._delete_profile) self._profile_dialog.connect("choose", self._choose_profile) def new_profile(dialog, profile, template, icon, nickname, description): try: self._generate_profile(profile, template, icon=icon, nickname=nickname, description=description) dialog.destroy_new_profile_dialog() except ProfileError as e: dialog.display_error(_("" "Error while creating new profile.\n\n%s") % e.gui_text, transient_parent=dialog.get_new_profile_dialog(), markup=True) self._profile_dialog.connect("new", new_profile) self._profile_dialog.connect("clone", new_profile) self._profile_dialog.connect("edit", self._cb_edit_profile) self._profile_dialog.connect("auto", self._auto) self._profile_dialog.highlight_profile(profile, scroll=True) if dialog_selects: self._profile_dialog.run() self._profile_dialog.hide() else: self._choose_profile(self._profile_dialog, profile, verbose=True) if self._profile is None: ap.error(_("no profile is set")) else: claim = "session." + self._session_name try: self._dbus_bus_name = self._grab_bus_name_for_profile(claim) except Exception: ap.error(_("failed to grab bus name -- " "another session by the same name appears to be running")) @property def profile(self): return self._profile @property def iconpathname(self): return self._iconpathname @property def dbus_bus_name(self): return self._dbus_bus_name @property def basedir(self): """The root save directory.""" if self._session_dir is not None: return self._session_dir else: return PGlobs.profile_dir / self.profile @property def session_type(self): """Session mode: L0 for none, L1 for Ladish L1 mode.""" return self._session_type @property def session_name(self): """The name of the session.""" return self._session_name @property def session_uuid(self): """When session is JACK this will be set to something.""" return self._session_uuid @property def ports_pathname(self): """Where to save jack session to and load it from.""" return self.basedir / ("ports-%s-%s" % ( self.session_type, self.session_name)) @property def title_extra(self): """Window title text indicating which profile is in use.""" if self.profile is not None: n = self._nickname if n: return " (%s:%s)" % ((self.profile, n)) else: if self.profile == default: return "" return " (%s)" % self.profile else: # TC: text appears in the title bar when in session mode. return " (%s)" % _('session={type}:{name}').format( type=self.session_type, name=self.session_name) @property def autoloadprofilename(self): """Which profile would automatically load if given the chance?""" al_profile = self._autoloadprofilename() if al_profile is None: return None try: profiledirs = os.walk(PGlobs.profile_dir).next()[1] except (EnvironmentError, StopIteration): return None return al_profile if al_profile in profiledirs else None @property def profile_dialog(self): return self._profile_dialog def get_uptime(self): if self._init_time is not None: return time.time() - self._init_time else: return 0.0 @staticmethod def _parse_session(ap, args): """User supplied session details are parsed and checked for validity.""" def profile_check(): if not profile_name_valid(args.profile[0]): ap.error( _('specified profile is not valid %s') % args.profile[0]) if not os.path.isdir(PGlobs.profile_dir / args.profile[0]): ap.error(_('specified profile does not exist: %s') % \ args.profile[0]) if args.session is None: # The None parameter below indicates profile mode is on and the # profile will determine the save directory, otherwise we return # the save directory instead. # L0 relates to Ladish [L0] mode which is an unmanaged session. # The final return value is the save location of the JACK port # connections file. # Since it's not a pathname it goes in the standard save directory. return "L0", None, "default", None if ":" in args.session[0]: session_type, rest = args.session[0].split(":", 1) if ":" in rest: session_name, session_dir = rest.split(":", 1) else: session_name = rest session_dir = None else: session_type = args.session[0] session_name = "default" session_dir = None # Check validity of session_type and normalize it. supported_sessions = {"l0": "L0", "l1": "L1", "jack": "JACK"} try: session_type = supported_sessions[session_type.lower()] except KeyError: ap.error(_("unknown session type: %s: must be one of %s") % (session_type, str(supported_sessions.values()))) # The backend when started needs to know what session type we are using. os.environ["session_type"] = session_type if re.match("^[a-zA-Z0-9_]+$", session_name) is None: ap.error("session name must match [a-zA-Z0-9_]+") if session_dir is not None: session_dir = os.path.realpath(os.path.expanduser(session_dir)) if not os.path.isdir(session_dir): ap.error(_('directory does not exist: %s') % session_dir) # Use a subdir for the actual save path based on the mode and name. session_dir = os.path.join(session_dir, "idjc-%s-%s" % ( session_type, session_name)) if args.profile is not None: profile_check() if os.path.isdir(session_dir): # Session directory was created earlier so use that. pass else: if session_type == "JACK": ap.error("session directory has no data") else: # Perform copy of profile data. try: shutil.copytree(PGlobs.profile_dir / args.profile[0], session_dir) except EnvironmentError as e: if e.errno != 17: ap.error("failed to copy data from the" " profile directory: %s" % e) elif session_type != "JACK": # Just make the empty session directory. try: os.makedirs(session_dir) except EnvironmentError as e: if e.errno != 17: ap.error( _('problem with specified session directory: %s') % e) if session_type == "JACK": if session_dir is None and args.profile is not None: profile_check() session_dir = PGlobs.profile_dir / args.profile[0] try: session_uuid = uuid.UUID(args.jackserver[0]) except TypeError: if args.jackserver is not None: ap.error("supplied parameter to -j is not a UUID") session_uuid = uuid.uuid4() print "creating random UUID for JACK session = {%s}" % \ session_uuid else: session_uuid = None return session_type, PathStr(session_dir), session_name, \ None if session_uuid is None else str(session_uuid) def _autoloadprofilename(self): """Just the file contents without checking.""" try: with open(PGlobs.autoload_profile_pathname) as f: fcntl.flock(f, fcntl.LOCK_EX) al_profile = f.readline().strip() except IOError: return None return al_profile def _auto(self, dialog, profile): if dialog is None and profile != default and not \ os.path.isdir(PGlobs.profile_dir / profile): raise ProfileError(_('profile %s does not exist') % profile, None) try: if not os.path.exists(PGlobs.autoload_profile_pathname): with open(PGlobs.autoload_profile_pathname, "w"): pass with open(PGlobs.autoload_profile_pathname, "r+") as f: fcntl.flock(f, fcntl.LOCK_EX) al_profile = f.readline().strip() f.seek(0) if profile != al_profile or dialog is None: f.write(profile) f.truncate() except IOError as e: if dialog is None: raise ProfileError(str(e), None) def _noauto(self): try: with open(PGlobs.autoload_profile_pathname, "r+") as f: fcntl.flock(f, fcntl.LOCK_EX) f.truncate() except IOError: pass def _cb_edit_profile(self, dialog, newprofile, oldprofile, *opts): busses = [] try: try: busses.append(self._grab_bus_name_for_profile(oldprofile)) if newprofile != oldprofile: busses.append(self._grab_bus_name_for_profile(newprofile)) except dbus.DBusException: raise ProfileError(None, _("Profile %s is active.") % (oldprofile, newprofile)[len(busses)]) if newprofile != oldprofile: try: shutil.copytree(PGlobs.profile_dir / oldprofile, PGlobs.profile_dir / newprofile) except EnvironmentError as e: if e.errno == 17: raise ProfileError(None, _("Cannot rename profile {0} to {1}, {1} currently " "exists.").format(oldprofile, newprofile)) else: raise ProfileError(None, _("Error during attempt to rename {0} to {1}." ).format(oldprofile, newprofile)) shutil.rmtree(PGlobs.profile_dir / oldprofile) for name, data in zip(self._optionals, opts): with open(PGlobs.profile_dir / newprofile / name, "w") as f: f.write(data or "") except ProfileError, e: text = _("Error while editing " "profile: {0}.\n\n{1}").format(oldprofile, e.gui_text) dialog.display_error(text, markup=True, transient_parent=dialog.get_new_profile_dialog()) else: dialog.destroy_new_profile_dialog() def _delete_profile(self, dialog, profiles): if isinstance(profiles, str): profiles = [profiles] if dialog is None or profiles[0] is not dialog.profile: busnames = [] # Lock all specified profiles before deleting any. for profile in profiles: try: busnames.append(self._grab_bus_name_for_profile(profile)) except (dbus.DBusException, ValueError) as e: if dialog is None: raise ProfileError(_("could not get a lock on profile" " {0}: {1}").format(profile, str(e)), None) # Check all directories exist beforehand. if not any(os.path.isdir(PGlobs.profile_dir / x) for x in profiles): raise ProfileError(_('profile does not exist')) for profile in profiles: try: shutil.rmtree(PGlobs.profile_dir / profile) except OSError as e: if dialog is None: raise ProfileError(e, None) del busnames if profile == default: self._generate_default_profile() def _choose_profile(self, dialog, profile, verbose=False): if dialog.profile is None: try: self._dbus_bus_name = self._grab_bus_name_for_profile(profile) except dbus.DBusException: if verbose: print _("the profile '%s' is in use") % profile else: self._init_time = time.time() self._profile = profile self._nickname = self._grab_profile_filetext( profile, "nickname") or "" self._iconpathname = self._grab_profile_filetext( profile, "icon") or PGlobs.default_icon dialog.set_profile( profile, self.title_extra, self._iconpathname) self._uprep.activate_for_profile( self._dbus_bus_name, self.get_uptime) else: print "%s run -p %s" % (FGlobs.bindir / FGlobs.package_name, profile) subprocess.Popen([FGlobs.bindir / FGlobs.package_name, "run", "-p", profile], close_fds=True) def _generate_profile(self, newprofile, template=None, **kwds): if PGlobs.profile_dir is not None: if len(newprofile) > MAX_PROFILE_LENGTH: raise ProfileError(_("the profile length is too long " "(max %d characters)") % MAX_PROFILE_LENGTH, _("The profile length is too long (max %d characters).") % MAX_PROFILE_LENGTH) if not profile_name_valid(newprofile): raise ProfileError(_("the new profile name is not valid"), _("The new profile name is not valid.")) try: busname = self._grab_bus_name_for_profile(newprofile) except dbus.DBusException: raise ProfileError(_("the chosen profile is currently running"), _("The chosen profile is currently running.")) try: tmp = PathStr(tempfile.mkdtemp()) except EnvironmentError: raise ProfileError(_("temporary directory creation failed"), _("Temporary directory creation failed.")) try: if template is not None: if not profile_name_valid(template): raise ProfileError( _("the specified template '%s' is not valid") % template, _("The specified template '%s' is not valid.") % template) tdir = PGlobs.profile_dir / template if os.path.isdir(tdir): for top, dirs, files in os.walk(tdir): for filename in files: for expr in self._optionals + config_files: if re.match(expr + "$", filename): try: shutil.copyfile(tdir / filename, tmp / filename) except EnvironmentError as e: print e try: shutil.copytree(tdir / "links", tmp / "links") except EnvironmentError: # Links directory might not exist. pass else: raise ProfileError( _("the template profile '%s' does not exist") % template, _("The template profile '%s' does not exist.") % template) for fname in self._optionals: if kwds.get(fname): try: with open(tmp / fname, "w") as f: f.write(kwds[fname]) except EnvironmentError: raise ProfileError( _("could not write file %s") + fname, _("Could not write file %s.") % fname) dest = PGlobs.profile_dir / newprofile try: shutil.copytree(tmp, dest) except EnvironmentError as e: if e.errno == 17 and os.path.isdir(dest): msg1 = _("the profile directory '%s' already" \ " exists") % dest msg2 = _("The profile directory '%s' already" \ " exists.") % dest else: msg1 = _("a non directory path exists at: '%s'") % dest msg2 = _("A Non directory path exists at: '%s'.") % dest raise ProfileError(msg1, msg2) finally: # Failure to clean up is not a critical error. try: shutil.rmtree(tmp) except EnvironmentError: pass def _generate_default_profile(self): self._generate_profile(default, description=_("The default profile")) def _profile_data(self): a = self._autoloadprofilename() d = PGlobs.profile_dir try: profdirs = os.walk(d).next()[1] except (EnvironmentError, StopIteration): return for profname in profdirs: if profile_name_valid(profname): files = os.walk(d / profname).next()[2] rslt = {"profile": profname} for each in self._optionals: try: with open(d / profname / each) as f: rslt[each] = f.read() except EnvironmentError: rslt[each] = None rslt["active"] = self._profile_has_owner(profname) rslt["uptime"] = math.floor(self._uprep.get_uptime_for_profile( profname)) rslt["auto"] = (1 if a == profname else 0) yield rslt def _ls(self): table = [] for pd in self._profile_data(): row = [] row.append(pd["profile"]) row.append("*" if pd["auto"] else " ") row.append(str(datetime.timedelta(seconds=pd["uptime"]))) for each in self._textoptionals: row.append(self._grab_profile_filetext(pd["profile"], each) or "\b") table.append(row) for row in sorted(table): print "{1} {0:{5}} {2:>16} {3} {4}".format(*(tuple(row) + (MAX_PROFILE_LENGTH,))) _profile_has_owner = profileclosure(dbus.SessionBus().name_has_owner, "_profile_has_owner") _grab_bus_name_for_profile = profileclosure(partial( dbus.service.BusName, do_not_queue=True), "_grab_bus_name_for_profile") @staticmethod def _grab_profile_filetext(profile, filename): try: with open(PGlobs.profile_dir / profile / filename) as f: return f.readline().strip() except EnvironmentError: return None def _get_profile_dialog(self): from .profiledialog import ProfileDialog return ProfileDialog(default=default, data_function=self._profile_data) idjc-0.8.16/python/prelims/Makefile.in0000644000175000017500000004411112711167210014500 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = python/prelims ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(prelimspython_PYTHON) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile) am__installdirs = "$(DESTDIR)$(prelimspythondir)" am__pep3147_tweak = \ sed -e 's|\.py$$||' -e 's|[^/]*$$|__pycache__/&.*.py|' py_compile = $(top_srcdir)/py-compile am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/py-compile DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ prelimspython_PYTHON = __init__.py profiledialog.py prelimspythondir = ${idjcpkgpythondir}/prelims .PHONY = $prelimspython_PYTHON all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu python/prelims/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu python/prelims/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-prelimspythonPYTHON: $(prelimspython_PYTHON) @$(NORMAL_INSTALL) @list='$(prelimspython_PYTHON)'; dlist=; list2=; test -n "$(prelimspythondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(prelimspythondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(prelimspythondir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ if test -f $$b$$p; then \ $(am__strip_dir) \ dlist="$$dlist $$f"; \ list2="$$list2 $$b$$p"; \ else :; fi; \ done; \ for file in $$list2; do echo $$file; done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(prelimspythondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(prelimspythondir)" || exit $$?; \ done || exit $$?; \ if test -n "$$dlist"; then \ $(am__py_compile) --destdir "$(DESTDIR)" \ --basedir "$(prelimspythondir)" $$dlist; \ else :; fi uninstall-prelimspythonPYTHON: @$(NORMAL_UNINSTALL) @list='$(prelimspython_PYTHON)'; test -n "$(prelimspythondir)" || list=; \ py_files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$py_files" || exit 0; \ dir='$(DESTDIR)$(prelimspythondir)'; \ pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \ pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \ py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \ echo "$$py_files_pep3147";\ pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \ pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \ st=0; \ for files in \ "$$py_files" \ "$$pyc_files" \ "$$pyo_files" \ "$$pyc_files_pep3147" \ "$$pyo_files_pep3147" \ ; do \ $(am__uninstall_files_from_dir) || st=$$?; \ done; \ exit $$st 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 installdirs: for dir in "$(DESTDIR)$(prelimspythondir)"; 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-prelimspythonPYTHON 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-prelimspythonPYTHON .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-prelimspythonPYTHON \ 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-prelimspythonPYTHON .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: idjc-0.8.16/python/prelims/Makefile.am0000644000175000017500000000020312630014503014455 00000000000000prelimspython_PYTHON = __init__.py profiledialog.py prelimspythondir = ${idjcpkgpythondir}/prelims .PHONY = $prelimspython_PYTHON idjc-0.8.16/python/Makefile.am0000644000175000017500000000136012630014503013007 00000000000000SUBDIRS = prelims am__py_compile = $(top_srcdir)/py-compile python_PYTHON = idjcmonitor.py idjcpkgpython_PYTHON = dialogs.py gtkstuff.py irc.py jingles.py licence_window.py \ maingui.py midicontrols.py mutagentagger.py songdb.py playergui.py \ popupwindow.py preferences.py sourceclientgui.py tooltips.py utils.py \ format.py nodist_idjcpkgpython_PYTHON = __init__.py dist_noinst_PYTHON = __init__.py.in.in __init__.py: __init__.py.in sed -e 's|$${pkgdatadir}|${pkgdatadir}|g' \ -e 's|$${pkglibdir}|${pkglibdir}|g' \ -e 's|$${exec_prefix}|${exec_prefix}|g' \ -e 's|$${prefix}|${prefix}|g' \ -e 's|$${datarootdir}|${datarootdir}|g' \ $? >$@ clean-local: rm -f __init__.py .PHONY: __init__.py $pkgpython_PYTHON idjc-0.8.16/python/songdb.py0000644000175000017500000022613212630014503012607 00000000000000"""Music database connectivity and display.""" # Copyright (C) 2012 Stephen Fairchild (s-fairchild@users.sourceforge.net) # (C) 2012 Brian Millham (bmillham@users.sourceforge.net) # # 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 in the file entitled COPYING. # If not, see . import os import ntpath import time import types import gettext import threading import json from functools import partial, wraps from collections import deque, defaultdict from contextlib import contextmanager from urllib import quote import glib import gobject import pango import gtk try: import MySQLdb as sql except ImportError: have_songdb = False else: have_songdb = True from idjc import FGlobs from .tooltips import set_tip from .gtkstuff import threadslock, gdklock, DefaultEntry, NotebookSR from .gtkstuff import idle_add, timeout_add, source_remove __all__ = ['MediaPane', 'have_songdb'] AMPACHE = "Ampache" AMPACHE_3_7 = "Ampache 3.7" PROKYON_3 = "Prokyon 3" FUZZY, CLEAN, WHERE, DIRTY = xrange(4) t = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True) _ = t.gettext N_ = lambda t: t def dirname(pathname): if pathname.startswith("/") and not pathname.startswith("//"): return os.path.dirname(pathname) return ntpath.dirname(pathname) def basename(pathname): if pathname.startswith("/") and not pathname.startswith("//"): return os.path.basename(pathname) return ntpath.basename(pathname) def thread_only(func): """Guard a method from being called from outside the thread context.""" @wraps(func) def inner(self, *args, **kwargs): assert threading.current_thread() == self func(self, *args, **kwargs) return inner class DBAccessor(threading.Thread): """A class to hide the intricacies of database access. When the database connection is dropped due to timeout it will silently remake the connection and continue on with its work. """ def __init__(self, hostnameport, user, password, database, notify): """The notify function must lock gtk before accessing widgets.""" threading.Thread.__init__(self) try: hostname, port = hostnameport.rsplit(":", 1) port = int(port) except ValueError: hostname = hostnameport port = 3306 # MySQL uses this as the default port. self.hostname = hostname self.port = port self.user = user self.password = password self.database = database self.notify = notify self._handle = None # No connections made until there is a query. self._cursor = None self.jobs = deque() self.semaphore = threading.Semaphore() self.keepalive = True self.start() def request(self, sql_query, handler, failhandler=None): """Add a request to the job queue. The failhandler may "raise exception" to reconnect and try again or it may return... False, None: to run the handler True: to cancel the job """ self.jobs.append((sql_query, handler, failhandler)) self.semaphore.release() def close(self): """Clean up the worker thread prior to disposal.""" if self.is_alive(): self.keepalive = False self.semaphore.release() return def run(self): """This is the worker thread.""" notify = partial(idle_add, threadslock(self.notify)) try: while self.keepalive: self.semaphore.acquire() if self.keepalive and self.jobs: query, handler, failhandler = self.jobs.popleft() trycount = 0 while trycount < 3: try: try: rows = self._cursor.execute(*query) except sql.Error as e: if failhandler is not None: if failhandler(e, notify): break rows = 0 else: raise e except (sql.Error, AttributeError) as e: if not self.keepalive: return if isinstance(e, sql.OperationalError): # Unhandled errors will be treated like # connection failures. try: self._cursor.close() except Exception: pass try: self._handle.close() except Exception: pass if not self.keepalive: return notify(_('Connecting')) trycount += 1 try: self._handle = sql.Connection( host=self.hostname, port=self.port, user=self.user, passwd=self.password, db=self.database, connect_timeout=6, charset='utf8', compress=True) self._cursor = self._handle.cursor() except sql.Error as e: notify(_("Connection failed (try %d)") % trycount) print e time.sleep(0.5) else: # This causes problems if other # processes try to access the database, # so set autocommit to 1 try: self._handle.autocommit(True) except sql.MySQLError: notify(_('Connected: autocommit mode failed')) else: notify(_('Connected: autocommit mode set')) notify(_('Connected')) else: if not self.keepalive: return handler(self, self.request, self._cursor, notify, rows) break else: notify(_('Job dropped')) finally: try: self._cursor.close() except Exception: pass try: self._handle.close() except Exception: pass notify(_('Disconnected')) @thread_only def purge_job_queue(self, remain=0): while len(self.jobs) > remain: self.jobs.popleft() self.semaphore.acquire() @thread_only def disconnect(self): try: self._handle.close() except sql.Error: idle_add(threadslock(self.notify), _('Problem dropping connection')) else: idle_add(threadslock(self.notify), _('Connection dropped')) @thread_only def replace_cursor(self, cursor): """Handler may break off the cursor to pass along its data.""" assert cursor is self._cursor self._cursor = self._handle.cursor() class UseSettings(dict): """Holder of data generated while using the database. It's for storage of data like the preferred browse view, catalog selection. """ def __init__(self, key_controls): self._key_controls = key_controls self._hide_top = True dict.__init__(self) @contextmanager def _toplayer(self): self._hide_top = False yield self._hide_top = True def _get_top_level_key(self): """The currently active key. When the database is activated the 'Settings' user interface is locked so this key is guaranteed to not change during that time. """ return " ".join(s.get_text().replace(" ", "") for s in self._key_controls) def __getitem__(self, key): if self._hide_top: tlk = self._get_top_level_key() return dict.__getitem__(self, tlk)[key] else: return super(UseSettings, self).__getitem__(key) def __setitem__(self, key, value): if self._hide_top: tlk = self._get_top_level_key() try: dict_ = dict.__getitem__(self, tlk) except: dict_ = {} dict.__setitem__(self, tlk, dict_) dict_[key] = value else: super(UseSettings, self).__setitem__(key, value) def get_text(self): with self._toplayer(): save_data = json.dumps(self) return save_data def set_text(self, data): with self._toplayer(): try: data = json.loads(data) except ValueError: pass else: self.update(data) class Settings(gtk.Table): """Connection details widgets.""" def __init__(self, name): self._name = name gtk.Table.__init__(self, 5, 4) self.set_border_width(10) self.set_row_spacings(1) for col, spc in zip(xrange(3), (3, 10, 3)): self.set_col_spacing(col, spc) self._controls = [] self.textdict = {} # Attachment for labels. l_attach = partial(self.attach, xoptions=gtk.SHRINK | gtk.FILL) # Top row. hostportlabel, self.hostnameport = self._factory( _('Hostname[:Port]'), 'localhost', "hostnameport") l_attach(hostportlabel, 0, 1, 0, 1) self.attach(self.hostnameport, 1, 4, 0, 1) # Second row. userlabel, self.user = self._factory(_('User Name'), "ampache", "user") l_attach(userlabel, 0, 1, 2, 3) self.attach(self.user, 1, 2, 2, 3) dblabel, self.database = self._factory(_('Database'), "ampache", "database") l_attach(dblabel, 2, 3, 2, 3) self.attach(self.database, 3, 4, 2, 3) self.usesettings = UseSettings(self._controls[:]) self.textdict["songdb_usesettings_" + name] = self.usesettings # Third row. passlabel, self.password = self._factory(_('Password'), "", "password") self.password.set_visibility(False) l_attach(passlabel, 0, 1, 3, 4) self.attach(self.password, 1, 2, 3, 4) def get_data(self): """Collate parameters for DBAccessor contructors.""" accdata = {} for key in "hostnameport user password database".split(): accdata[key] = getattr(self, key).get_text().strip() return accdata, self.usesettings def set_sensitive(self, sens): """Just specific contents of the table are made insensitive.""" for each in self._controls: each.set_sensitive(sens) def _factory(self, labeltext, entrytext, control_name): """Widget factory method.""" label = gtk.Label(labeltext) label.set_alignment(1.0, 0.5) if entrytext: entry = DefaultEntry(entrytext, True) else: entry = gtk.Entry() entry.set_size_request(10, -1) self._controls.append(entry) self.textdict["songdb_%s_%s" % (control_name, self._name)] = entry return label, entry class PrefsControls(gtk.Frame): """Database controls as visible in the preferences window.""" def __init__(self): gtk.Frame.__init__(self) self.set_border_width(3) label = gtk.Label(" %s " % _('Prokyon3 or Ampache (song title) Database')) set_tip(label, _('You can make certain media databases accessible in ' 'IDJC for easy drag and drop into the playlists.')) self.set_label_widget(label) vbox = gtk.VBox() vbox.set_border_width(6) vbox.set_spacing(2) self.add(vbox) self._notebook = NotebookSR() if have_songdb: vbox.pack_start(self._notebook, False) self._settings = [] for i in range(1, 5): settings = Settings(str(i)) self._settings.append(settings) label = gtk.Label(str(i)) self._notebook.append_page(settings, label) self.dbtoggle = gtk.ToggleButton(_('Music Database')) self.dbtoggle.connect("toggled", self._cb_dbtoggle) hbox = gtk.HBox() hbox.set_spacing(2) self._disconnect = gtk.Button() self._disconnect.set_sensitive(False) image = gtk.image_new_from_stock(gtk.STOCK_DISCONNECT, gtk.ICON_SIZE_MENU) self._disconnect.add(image) self._disconnect.connect("clicked", lambda w: self.dbtoggle.set_active(False)) hbox.pack_start(self._disconnect, False) self._connect = gtk.Button() image = gtk.image_new_from_stock(gtk.STOCK_CONNECT, gtk.ICON_SIZE_MENU) self._connect.add(image) self._connect.connect("clicked", lambda w: self.dbtoggle.set_active(True)) hbox.pack_start(self._connect, False) self._statusbar = gtk.Statusbar() self._statusbar.set_has_resize_grip(False) cid = self._statusbar.get_context_id("all output") self._statusbar.push(cid, _('Disconnected')) hbox.pack_start(self._statusbar) if have_songdb: vbox.pack_start(hbox, False) else: vbox.set_sensitive(False) label = gtk.Label(_('Module mysql-python (MySQLdb) required')) vbox.add(label) self.show_all() # Save and Restore. self.activedict = {"songdb_active": self.dbtoggle, "songdb_page": self._notebook} self.textdict = {} for each in self._settings: self.textdict.update(each.textdict) def credentials(self): if self.dbtoggle.get_active(): active = self._notebook.get_current_page() else: active = None pages = [] for i, settings in enumerate(self._notebook.get_children()): creddict = settings.get_data()[0] creddict.update({"active": i == active}) pages.append(creddict) return pages def disconnect(self): self.dbtoggle.set_active(False) def bind(self, callback): """Connect with the activate method of the view pane.""" self.dbtoggle.connect("toggled", self._cb_bind, callback) def _cb_bind(self, widget, callback): """This runs when the database is toggled on and off.""" if widget.get_active(): settings = self._notebook.get_nth_page( self._notebook.get_current_page()) accdata, usesettings = settings.get_data() accdata["notify"] = self._notify else: accdata = usesettings = None callback(accdata, usesettings) def _cb_dbtoggle(self, widget): """Parameter widgets to be made insensitive when db is active.""" if widget.get_active(): self._connect.set_sensitive(False) self._disconnect.set_sensitive(True) settings = self._notebook.get_nth_page( self._notebook.get_current_page()) for settings_page in self._settings: if settings_page is settings: settings_page.set_sensitive(False) else: settings_page.hide() else: self._connect.set_sensitive(True) self._disconnect.set_sensitive(False) for settings_page in self._settings: settings_page.set_sensitive(True) settings_page.show() def _notify(self, message): """Display status messages beneath the prefs settings.""" print "Song title database:", message cid = self._statusbar.get_context_id("all output") self._statusbar.pop(cid) self._statusbar.push(cid, message) # To ensure readability of long messages also set the tooltip. self._statusbar.set_tooltip_text(message) class PageCommon(gtk.VBox): """Base class for all pages.""" def __init__(self, notebook, label_text, controls): gtk.VBox.__init__(self) self.set_spacing(2) self.scrolled_window = gtk.ScrolledWindow() self.scrolled_window.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_ALWAYS) self.pack_start(self.scrolled_window) self.tree_view = gtk.TreeView() self.tree_view.set_enable_search(False) self.tree_selection = self.tree_view.get_selection() self.scrolled_window.add(self.tree_view) self.pack_start(controls, False) label = gtk.Label(label_text) notebook.append_page(self, label) self._update_id = deque() self._acc = None @property def db_type(self): return self._db_type def get_col_widths(self): return ",".join([str(x.get_width() or x.get_fixed_width()) for x in self.tree_cols]) def in_text_entry(self): return False def set_col_widths(self, data): """Restore column width values. Includes a data validity check.""" if len(self.tree_cols) == data.count(",") + 1: for width, col in zip(data.split(","), self.tree_cols): if width != "0": col.set_fixed_width(int(width)) else: print "can't restore column widths" def activate(self, accessor, db_type, usesettings): self._acc = accessor self._db_type = db_type self._usesettings = usesettings def deactivate(self): while self._update_id: context, namespace = self._update_id.popleft() namespace[0] = True source_remove(context) self._acc = None model = self.tree_view.get_model() self.tree_view.set_model(None) if model is not None: model.clear() def repair_focusability(self): self.tree_view.set_flags(gtk.CAN_FOCUS) @staticmethod def _make_tv_columns(tree_view, parameters): """Build a TreeViewColumn list from a table of data.""" list_ = [] for p in parameters: try: # Check if there is an extra parameter to set the renderer label, data_index, data_function, mw, el, renderer = p except: label, data_index, data_function, mw, el = p renderer = gtk.CellRendererText() renderer.props.ellipsize = el column = gtk.TreeViewColumn(label, renderer) if mw != -1: column.set_resizable(True) column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED) column.set_min_width(mw) column.set_fixed_width(mw + 50) tree_view.append_column(column) list_.append(column) if data_function is not None: column.set_cell_data_func(renderer, data_function, data_index) else: column.add_attribute(renderer, 'text', data_index) return list_ def _handler(self, acc, request, cursor, notify, rows): # Lock against the very start of the update functions. with gdklock(): while self._update_id: context, namespace = self._update_id.popleft() source_remove(context) # Idle functions to receive the following and know to clean-up. namespace[0] = True try: self._old_cursor.close() except sql.Error as e: print str(e) except AttributeError: pass self._old_cursor = cursor acc.replace_cursor(cursor) # Scrap intermediate jobs whose output would merely slow down the # user interface responsiveness. namespace = [False, ()] context = idle_add(self._update_1, acc, cursor, rows, namespace) self._update_id.append((context, namespace)) class ViewerCommon(PageCommon): """Base class for TreePage and FlatPage.""" def __init__(self, notebook, label_text, controls, catalogs): self.catalogs = catalogs self.notebook = notebook self._reload_upon_catalogs_changed(enable_notebook_reload=True) PageCommon.__init__(self, notebook, label_text, controls) self.tree_view.enable_model_drag_source(gtk.gdk.BUTTON1_MASK, self._sourcetargets, gtk.gdk.ACTION_DEFAULT | gtk.gdk.ACTION_COPY) self.tree_view.connect_after("drag-begin", self._cb_drag_begin) self.tree_view.connect("drag-data-get", self._cb_drag_data_get) def deactivate(self): self._reload_upon_catalogs_changed() super(ViewerCommon, self).deactivate() def _reload_upon_catalogs_changed(self, enable_notebook_reload=False): handler_id = [] handler_id.append(self.catalogs.connect("changed", self._on_catalogs_changed, enable_notebook_reload, handler_id)) self._old_cat_data = None def _on_catalogs_changed(self, widget, enable_notebook_reload, handler_id): self.catalogs.disconnect(handler_id[0]) # Only run once. if enable_notebook_reload: self.notebook.connect("switch-page", self._on_page_change) self.reload() def _on_page_change(self, notebook, page, page_num): if notebook.get_nth_page(page_num) == self: self.reload() _sourcetargets = ( # Drag and drop source target specs. ('text/plain', 0, 1), ('TEXT', 0, 2), ('STRING', 0, 3)) def _cb_drag_begin(self, widget, context): """Set icon for drag and drop operation.""" context.set_icon_stock(gtk.STOCK_CDROM, -5, -5) def _cb_drag_data_get(self, tree_view, context, selection, target, etime): model, paths = self.tree_selection.get_selected_rows() data = [] for catalog, pathname in self._drag_data(model, paths): valid, pathname = self.catalogs.transform_path(catalog, pathname) if valid: data.append("file://" + pathname) selection.set(selection.target, 8, "\n".join(data)) def _cond_cell_secs_to_h_m_s(self, column, renderer, model, iter, cell): if model.get_value(iter, 0) >= 0: return self._cell_secs_to_h_m_s(column, renderer, model, iter, cell) else: renderer.set_property("text", "") def _cell_k(self, column, renderer, model, iter, cell): bitrate = model.get_value(iter, cell) if bitrate == 0: renderer.set_property("text", "") elif self._db_type == "P3": renderer.set_property("text", "%dk" % bitrate) elif bitrate > 9999 and self._db_type in (AMPACHE, AMPACHE_3_7): renderer.set_property("text", "%dk" % (bitrate // 1000)) renderer.set_property("xalign", 1.0) def _query_cook_common(self, query): if self._db_type == AMPACHE: query = query.replace("__played_by_me__", "'1' as played_by_me") else: query = query.replace("__played_by_me__", """SUBSTR(MAX(CONCAT(object_count.date, IF(ISNULL(agent), NULL, IF(STRCMP(LEFT(agent,5), "IDJC:"), 2, IF(STRCMP(agent, "IDJC:1"), 0, 1))))), 11) AS played_by_me""") return query.replace("__catalogs__", self.catalogs.sql()) def _cell_show_unknown(self, column, renderer, model, iter, data): text, max_lastplay_date, played_by, played, played_by_me, cat = model.get(iter, *data) if text is None: text = _('') weight = pango.WEIGHT_NORMAL if not played: col = 'black' renderer.props.background_set = False else: value, percent, weight = self._get_played_percent(cat, max_lastplay_date) col, bg_col = ViewerCommon._set_color(played_by_me, percent) renderer.props.background_set = True renderer.props.background = bg_col renderer.props.text = text renderer.props.foreground = col renderer.props.weight = weight def _cell_show_nested(self, column, renderer, model, iter, data): text, max_lastplay_date, played_by, played, played_by_me, cat = model.get(iter, *data) if text is None: text = _('') col = "black" weight = pango.WEIGHT_NORMAL renderer.props.background_set = False if model.iter_depth(iter) == 0: col = "red" elif played: value, percent, weight = self._get_played_percent(cat, max_lastplay_date) col, bg_col = ViewerCommon._set_color(played_by_me, percent) renderer.props.background_set = True renderer.props.background = bg_col renderer.props.text = text renderer.props.foreground = col renderer.props.weight = weight def _cell_progress(self, column, renderer, model, iter, data): max_lastplay_date, played_by, played, cat= model.get(iter, *data) if not played: text = _("Not Played") value = 0 renderer.props.visible = False else: value, percent, weight = self._get_played_percent(cat, max_lastplay_date) text = ViewerCommon._format_lastplay_date(max_lastplay_date) text += "(" + (played_by or _('')) + ")" renderer.props.visible = True renderer.props.text = text renderer.props.value = value @staticmethod def _cell_pathname(column, renderer, model, iter, data, partition, transform): catalog, text = model.get(iter, *data) if text: present, text = transform(catalog, text) renderer.props.foreground = "black" if present else "red" text = partition(text) renderer.props.text = text def _cell_path(self, *args, **kwargs): kwargs["partition"] = dirname kwargs["transform"] = self.catalogs.transform_path self._cell_pathname(*args, **kwargs) def _cell_filename(self, *args, **kwargs): kwargs["partition"] = basename kwargs["transform"] = lambda c, p: (True, p) self._cell_pathname(*args, **kwargs) @staticmethod def _cell_secs_to_h_m_s(column, renderer, model, iter, cell): v_in = model.get_value(iter, cell) d, h, m, s = ViewerCommon._secs_to_h_m_s(v_in) if d: v_out = "%dd:%02d:%02d" % (d, h, m) else: if h: v_out = "%d:%02d:%02d" % (h, m, s) else: v_out = "%d:%02d" % (m, s) renderer.set_property("xalign", 1.0) renderer.set_property("text", v_out) @staticmethod def _cell_ralign(column, renderer, model, iter, cell): val = model.get_value(iter, cell) if val: renderer.set_property("xalign", 1.0) renderer.set_property("text", val) else: renderer.set_property("text", "") @staticmethod def _secs_to_h_m_s(value): m, s = divmod(value, 60) h, m = divmod(m, 60) d, h = divmod(h, 24) return d, h, m, s @staticmethod def _format_lastplay_date(value): if value is None: return _("") + " " difftime = time.time() - int(value) d, h, m, s = ViewerCommon._secs_to_h_m_s(difftime) return "%dd %dh %dm ago " % (d, h, m) def _get_played_percent(self, catalog, value): if value is None: return 0, 0.0, pango.WEIGHT_NORMAL + 50 now = time.time() max_days_ago = self.catalogs.lpscale(catalog) diff = now - int(value) if diff > max_days_ago: value = 0 percent = 0.35 weight = pango.WEIGHT_NORMAL + 100 else: percent = 1.0 - (float(diff) / float(max_days_ago)) value = 100 * percent # Refactor percent used for colors to be .4 to 1.0, as anything # below about .35 starts to look to much like black. percent = (percent * .6) + .4 # Get a weight from 500 to 900 weight = ((percent * .4) * 1000) + pango.WEIGHT_NORMAL + 100 return value, percent, weight @staticmethod def _set_color(text, percent=1.0): #print "text: ", text if percent == 1.0: bg_col = "white" elif int(text) == 1: bg_col = "Powder Blue" else: bg_col = "Light Pink" return (gtk.gdk.color_from_hsv(0.0, 1.0, percent), gtk.gdk.color_from_hsv(0.6666, 1.0, percent), gtk.gdk.color_from_hsv(0.3333, 1.0, percent))[int(text)], bg_col class ExpandAllButton(gtk.Button): def __init__(self, expanded, tooltip=None): expander = gtk.Expander() expander.set_expanded(expanded) expander.show_all() gtk.Button.__init__(self) self.add(expander) if tooltip is not None: set_tip(self, tooltip) class TreePage(ViewerCommon): """Browsable UI with tree structure.""" # *depth*(0), *treecol*(1), album(2), album_prefix(3), year(4), disk(5), # album_id(6), tracknumber(7), title(8), artist(9), artist_prefix(10), # pathname(11), bitrate(12), length(13), catalog_id(14), max_date_played(15), # played_by(16), played(17), played_by_me(18) # The order chosen negates the need for a custom sort comparison function. DATA_SIGNATURE = int, str, str, str, int,\ int, int, int, str, str, str, str,\ int, int, int, str, str, int, str BLANK_ROW = tuple(x() for x in DATA_SIGNATURE[2:]) def __init__(self, notebook, catalogs): self.controls = gtk.HBox() layout_store = gtk.ListStore(str, gtk.TreeStore, gobject.TYPE_PYOBJECT) self.layout_combo = gtk.ComboBox(layout_store) cell_text = gtk.CellRendererText() self.layout_combo.pack_start(cell_text) self.layout_combo.add_attribute(cell_text, "text", 0) self.controls.pack_start(self.layout_combo, False) self.right_controls = gtk.HBox() self.right_controls.set_spacing(1) self.tree_rebuild = gtk.Button() set_tip(self.tree_rebuild, _('Reload the database.')) image = gtk.image_new_from_stock(gtk.STOCK_REFRESH, gtk.ICON_SIZE_MENU) self.tree_rebuild.add(image) self.tree_rebuild.connect("clicked", self._cb_tree_rebuild) self.tree_rebuild.set_use_stock(True) tree_expand = ExpandAllButton(True, _('Expand entire tree.')) tree_collapse = ExpandAllButton(False, _('Collapse tree.')) sg = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) for each in (self.tree_rebuild, tree_expand, tree_collapse): self.right_controls.pack_start(each, False) sg.add_widget(each) self.controls.pack_end(self.right_controls, False) ViewerCommon.__init__(self, notebook, _('Browse'), self.controls, catalogs) self.tree_view.set_enable_tree_lines(True) tree_expand.connect_object("clicked", gtk.TreeView.expand_all, self.tree_view) tree_collapse.connect_object("clicked", gtk.TreeView.collapse_all, self.tree_view) self.tree_cols = self._make_tv_columns(self.tree_view, ( ("", (1, 15, 16, 17, 18, 14), self._cell_show_nested, 180, pango.ELLIPSIZE_END), # TC: Track artist. (_('Artist'), (10, 9), self._data_merge, 100, pango.ELLIPSIZE_END), # TC: The disk number of the album track. (_('Disk'), 5, self._cell_ralign, -1, pango.ELLIPSIZE_NONE), # TC: The album track number. (_('Track'), 7, self._cell_ralign, -1, pango.ELLIPSIZE_NONE), # TC: Track playback time. (_('Duration'), 13, self._cond_cell_secs_to_h_m_s, -1, pango.ELLIPSIZE_NONE), (_('Last Played'), (15, 16, 17, 14), self._cell_progress, -1, None, gtk.CellRendererProgress()), (_('Bitrate'), 12, self._cell_k, -1, pango.ELLIPSIZE_NONE), (_('Filename'), (14, 11), self._cell_filename, 100, pango.ELLIPSIZE_END), # TC: Directory path to a file. (_('Path'), (14, 11), self._cell_path, -1, pango.ELLIPSIZE_NONE), )) self.artist_store = gtk.TreeStore(*self.DATA_SIGNATURE) self.album_store = gtk.TreeStore(*self.DATA_SIGNATURE) layout_store.append((_('Artist - Album - Title'), self.artist_store, (1, ))) layout_store.append((_('Album - [Disk] - Title'), self.album_store, (2, ))) self.layout_combo.set_active(0) self.layout_combo.connect("changed", self._cb_layout_combo) self.loading_vbox = gtk.VBox() self.loading_vbox.set_border_width(20) self.loading_vbox.set_spacing(20) # TC: The database tree view is being built (populated). self.loading_label = gtk.Label() self.loading_vbox.pack_start(self.loading_label, False) self.progress_bar = gtk.ProgressBar() self.loading_vbox.pack_start(self.progress_bar, False) self.pack_start(self.loading_vbox) self._pulse_id = deque() self.show_all() def set_loading_view(self, loading): if loading: self.progress_bar.set_fraction(0.0) self.loading_label.set_text(_('Fetching')) self.controls.hide() self.scrolled_window.hide() self.loading_vbox.show() else: self.layout_combo.emit("changed") self.loading_vbox.hide() self.scrolled_window.show() self.controls.show() def activate(self, *args, **kwargs): PageCommon.activate(self, *args, **kwargs) try: layout_mode = self._usesettings["layout mode"] except KeyError: pass else: self.layout_combo.set_active(layout_mode) def deactivate(self): while self._pulse_id: source_remove(self._pulse_id.popleft()) self.progress_bar.set_fraction(0.0) super(TreePage, self).deactivate() def reload(self): if self.catalogs.update_required(self._old_cat_data): self.tree_rebuild.clicked() def _cb_layout_combo(self, widget): iter = widget.get_active_iter() store, hide = widget.get_model().get(iter, 1, 2) self.tree_view.set_model(store) for i, col in enumerate(self.tree_cols): col.set_visible(i not in hide) self._usesettings["layout mode"] = widget.get_active() def _cb_tree_rebuild(self, widget): """(Re)load the tree with info from the database.""" self._old_cat_data = self.catalogs.copy_data() self.set_loading_view(True) if self._db_type == PROKYON_3: query = """SELECT album, "" as alb_prefix, IFNULL(albums.year, 0) as year, 0 as disk, IFNULL(albums.id, 0) as album_id, tracknumber, title, tracks.artist as artist, "" as art_prefix, CONCAT_WS('/',path,filename) as file, bitrate, length, 0 as catalog_id, 0 as max_date_played, "" as played_by, 0 as played, 0 as played_by_me FROM tracks LEFT JOIN albums on tracks.album = albums.name AND tracks.artist = albums.artist ORDER BY tracks.artist, album, tracknumber, title""" elif self._db_type in (AMPACHE, AMPACHE_3_7): query = """SELECT album.name as album, album.prefix as alb_prefix, album.year as year, album.disk as disk, song.album as album_id, track as tracknumber, title, artist.name as artist, artist.prefix as art_prefix, file, bitrate, time as length, catalog.id as catalog_id, MAX(object_count.date) as max_date_played, SUBSTR(MAX(CONCAT(object_count.date, user.fullname)), 11) AS played_by, played, __played_by_me__ FROM song LEFT JOIN artist ON song.artist = artist.id LEFT JOIN album ON song.album = album.id LEFT JOIN object_count ON song.id = object_count.object_id AND object_count.object_type = "song" LEFT JOIN user ON user.id = object_count.user LEFT JOIN catalog ON song.catalog = catalog.id WHERE __catalogs__ GROUP BY song.id ORDER BY artist.name, album, disk, tracknumber, title""" query = self._query_cook_common(query) else: print "unsupported database type:", self._db_type return self._pulse_id.append(timeout_add(1000, self._progress_pulse)) self._acc.request((query,), self._handler, self._failhandler) def _drag_data(self, model, path): iter = model.get_iter(path[0]) for each in self._more_drag_data(model, iter): yield each def _more_drag_data(self, model, iter): depth, catalog, pathname = model.get(iter, 0, 14, 11) if depth == 0: yield catalog, pathname else: iter = model.iter_children(iter) while iter is not None: for each in self._more_drag_data(model, iter): yield each iter = model.iter_next(iter) @threadslock def _progress_pulse(self): self.progress_bar.pulse() return True def _data_merge(self, column, renderer, model, iter, elements): renderer.props.text = self._join(*model.get(iter, *elements)) @staticmethod def _join(prefix, name): if prefix and name: return prefix + " " + name return prefix or name or "" ########################################################################### def _handler(self, acc, request, cursor, notify, rows): PageCommon._handler(self, acc, request, cursor, notify, rows) acc.disconnect() def _failhandler(self, exception, notify): if isinstance(exception, sql.InterfaceError): raise exception # Recover. print exception notify(_('Tree fetch failed')) idle_add(threadslock(self.loading_label.set_text), _('Fetch Failed!')) while self._pulse_id: source_remove(self._pulse_id.popleft()) return True # Drop job. Don't run handler. ########################################################################### @threadslock def _update_1(self, acc, cursor, rows, namespace): if namespace[0]: return False self.loading_label.set_text(_('Populating')) # Turn off progress bar pulser. while self._pulse_id: source_remove(self._pulse_id.popleft()) # Clean away old data. self.tree_view.set_model(None) self.artist_store.clear() self.album_store.clear() namespace = [False, (0.0, None, None, None, {}, None, None, None, None)] do_max = min(max(30, rows / 100), 200) # Data size to process. total = 2.0 * rows context = idle_add(self._update_2, acc, cursor, total, do_max, [], namespace) self._update_id.append((context, namespace)) return False @threadslock def _update_2(self, acc, cursor, total, do_max, store, namespace): kill, (done, iter_l, iter_1, iter_2, letter, artist, album, art_prefix, alb_prefix) = namespace if kill: return False r_append = self.artist_store.append l_append = store.append BLANK_ROW = self.BLANK_ROW rows = cursor.fetchmany(do_max) if not rows: store.sort() namespace = [False, (done, ) + (None, ) * 11] context = idle_add(self._update_3, acc, total, do_max, store, namespace) self._update_id.append((context, namespace)) return False for row in rows: if acc.keepalive == False: return False l_append(row) try: art_letter = row[7].decode('utf-8')[0].upper() except IndexError: art_letter = "" if art_letter in letter: iter_l = letter[art_letter] else: iter_l = letter[art_letter] = r_append(None, (-1, art_letter) + BLANK_ROW) if album == row[0] and artist == row[7] and \ alb_prefix == row[1] and art_prefix == row[8]: iter_3 = r_append(iter_2, (0, row[6]) + row) continue else: if artist != row[7] or art_prefix != row[8]: artist = row[7] art_prefix = row[8] iter_1 = r_append(iter_l, (-2, self._join(art_prefix, artist)) + BLANK_ROW) album = None if album != row[0] or alb_prefix != row[1]: album = row[0] alb_prefix = row[1] year = row[2] if year: albumtext = "%s (%d)" % (self._join(alb_prefix, album), year) else: albumtext = album iter_2 = r_append(iter_1, (-3, albumtext) + BLANK_ROW) iter_3 = r_append(iter_2, (0, row[6]) + row) done += do_max self.progress_bar.set_fraction(sorted((0.0, done / total, 1.0))[1]) namespace[1] = done, iter_l, iter_1, iter_2, letter, artist, album, art_prefix, alb_prefix return True @threadslock def _update_3(self, acc, total, do_max, store, namespace): kill, (done, iter_l, iter_1, iter_2, letter, artist, album, art_prefix, alb_prefix, year, disk, album_id) = namespace if kill: return False append = self.album_store.append pop = store.pop BLANK_ROW = self.BLANK_ROW if letter is None: letter = {} for each in xrange(do_max): if acc.keepalive == False: return False try: row = pop(0) except IndexError: self.set_loading_view(False) return False try: alb_letter = row[0].decode('utf-8')[0].upper() except IndexError: alb_letter = "" if alb_letter in letter: iter_l = letter[alb_letter] else: iter_l = letter[alb_letter] = append(None, (-1, alb_letter) + BLANK_ROW) if album_id == row[4]: iter_3 = append(iter_2, (0, row[6]) + row) continue else: if album != row[0] or year != row[2] or alb_prefix != row[1]: album = row[0] alb_prefix = row[1] year = row[2] disk = None if year: albumtext = "%s (%d)" % (self._join(alb_prefix, album), year) else: albumtext = album iter_1 = append(iter_l, (-2, albumtext) + BLANK_ROW) if disk != row[3]: disk = row[3] if disk == 0: iter_2 = iter_1 else: iter_2 = append(iter_1, (-3, _('Disk %d') % disk) + BLANK_ROW) iter_3 = append(iter_2, (0, row[6]) + row) done += do_max self.progress_bar.set_fraction(min(done / total, 1.0)) namespace[1] = done, iter_l, iter_1, iter_2, letter, artist, album, art_prefix, alb_prefix, year, disk, album_id return True class FlatPage(ViewerCommon): """Flat list based user interface with a search facility.""" def __init__(self, notebook, catalogs): # Base class overwrites these values. self.scrolled_window = self.tree_view = self.tree_selection = None self.transfrom = self.db_accessor = None # TC: User specified search filter entry box title text. self.controls = gtk.Frame(" %s " % _('Filters')) self.controls.set_shadow_type(gtk.SHADOW_OUT) self.controls.set_border_width(1) self.controls.set_label_align(0.5, 0.5) filter_vbox = gtk.VBox() filter_vbox.set_border_width(3) filter_vbox.set_spacing(1) self.controls.add(filter_vbox) fuzzy_hbox = gtk.HBox() filter_vbox.pack_start(fuzzy_hbox, False) # TC: A type of search on any data field matching paritial strings. fuzzy_label = gtk.Label(_('Fuzzy Search')) fuzzy_hbox.pack_start(fuzzy_label, False) self.fuzzy_entry = gtk.Entry() self.fuzzy_entry.connect("changed", self._cb_fuzzysearch_changed) fuzzy_hbox.pack_start(self.fuzzy_entry, True, True, 0) where_hbox = gtk.HBox() filter_vbox.pack_start(where_hbox, False) # TC: WHERE is an SQL keyword. where_label = gtk.Label(_('WHERE')) where_hbox.pack_start(where_label, False) self.where_entry = gtk.Entry() self.where_entry.connect("activate", self._cb_update) where_hbox.pack_start(self.where_entry) image = gtk.image_new_from_stock(gtk.STOCK_EXECUTE, gtk.ICON_SIZE_BUTTON) self.update_button = gtk.Button() self.update_button.connect("clicked", self._cb_update) self.update_button.set_image(image) image.show where_hbox.pack_start(self.update_button, False) ViewerCommon.__init__(self, notebook, _("Search"), self.controls, catalogs) # Row data specification: # index(0), ARTIST(1), ALBUM(2), TRACKNUM(3), TITLE(4), DURATION(5), BITRATE(6), # pathname(7), disk(8), catalog_id(9), max_date_played(10), # played_by(11), played(12), played_by_me(13) self.list_store = gtk.ListStore( int, str, str, int, str, int, int, str, int, int, str, str, int, str) self.tree_cols = self._make_tv_columns(self.tree_view, ( ("(0)", 0, self._cell_ralign, -1, pango.ELLIPSIZE_NONE), (_('Artist'), (1, 10, 11, 12, 13, 9), self._cell_show_unknown, 100, pango.ELLIPSIZE_END), (_('Album'), (2, 10, 11, 12, 13, 9), self._cell_show_unknown, 100, pango.ELLIPSIZE_END), (_('Title'), (4, 10, 11, 12, 13, 9), self._cell_show_unknown, 100, pango.ELLIPSIZE_END), (_('Last Played'), (10, 11, 12, 9), self._cell_progress, -1, None, gtk.CellRendererProgress()), (_('Disk'), 8, self._cell_ralign, -1, pango.ELLIPSIZE_NONE), (_('Track'), 3, self._cell_ralign, -1, pango.ELLIPSIZE_NONE), (_('Duration'), 5, self._cell_secs_to_h_m_s, -1, pango.ELLIPSIZE_NONE), (_('Bitrate'), 6, self._cell_k, -1, pango.ELLIPSIZE_NONE), (_('Filename'), (9, 7), self._cell_filename, 100, pango.ELLIPSIZE_END), (_('Path'), (9, 7), self._cell_path, -1, pango.ELLIPSIZE_NONE), )) self.tree_view.set_rules_hint(True) self.tree_view.set_rubber_banding(True) self.tree_selection.set_mode(gtk.SELECTION_MULTIPLE) def reload(self): if self.catalogs.update_required(self._old_cat_data): self.update_button.clicked() def in_text_entry(self): return any(x.has_focus() for x in (self.fuzzy_entry, self.where_entry)) def deactivate(self): self.fuzzy_entry.set_text("") self.where_entry.set_text("") super(FlatPage, self).deactivate() def repair_focusability(self): PageCommon.repair_focusability(self) self.fuzzy_entry.set_flags(gtk.CAN_FOCUS) self.where_entry.set_flags(gtk.CAN_FOCUS) _queries_table = { PROKYON_3: {FUZZY: (CLEAN, """ SELECT artist,album,tracknumber,title,length,bitrate, CONCAT_WS('/',path,filename) as file, 0 as disk, 0 as catalog_id, 0 as max_date_played, "" as played_by, 0 as played, 0 as played_by_me FROM tracks WHERE MATCH (artist,album,title,filename) AGAINST (%s) """), WHERE: (DIRTY, """ SELECT artist,album,tracknumber,title,length,bitrate, CONCAT_WS('/',path,filename) as file, 0 as disk, 0 as catalog_id, 0 as max_date_played, "" as played_by, 0 as played, 0 as played_by_me FROM tracks WHERE (%s) ORDER BY artist,album,path,tracknumber,title """)}, AMPACHE: {FUZZY: (CLEAN, """ SELECT concat_ws(" ",artist.prefix,artist.name), concat_ws(" ",album.prefix,album.name), track as tracknumber, title, time as length,bitrate, file, album.disk as disk, catalog.id as catalog_id, MAX(object_count.date) as max_date_played, SUBSTR(MAX(CONCAT(object_count.date, user.fullname)), 11) AS played_by, played, __played_by_me__ FROM song LEFT JOIN artist ON artist.id = song.artist LEFT JOIN album ON album.id = song.album LEFT JOIN object_count ON song.id = object_count.object_id AND object_count.object_type = "song" LEFT JOIN user ON user.id = object_count.user LEFT JOIN catalog ON song.catalog = catalog.id WHERE (MATCH(album.name) against(%s) OR MATCH(artist.name) against(%s) OR MATCH(title) against(%s)) AND __catalogs__ GROUP BY song.id """), WHERE: (DIRTY, """ SELECT concat_ws(" ", artist.prefix, artist.name) as artist, concat_ws(" ", album.prefix, album.name) as albumname, track as tracknumber, title,time as length, bitrate, file, album.disk as disk, catalog.id as catalog_id, MAX(object_count.date) as max_date_played, SUBSTR(MAX(CONCAT(object_count.date, user.fullname)), 11) AS played_by, played, __played_by_me__ FROM song LEFT JOIN album on album.id = song.album LEFT JOIN artist on artist.id = song.artist LEFT JOIN object_count ON song.id = object_count.object_id AND object_count.object_type = "song" LEFT JOIN user ON user.id = object_count.user LEFT JOIN catalog ON song.catalog = catalog.id WHERE (%s) AND __catalogs__ GROUP BY song.id ORDER BY artist.name, album.name, file, album.disk, track, title """)} } _queries_table[AMPACHE_3_7] = _queries_table[AMPACHE] def _cb_update(self, widget): self._old_cat_data = self.catalogs.copy_data() try: table = self._queries_table[self._db_type] except KeyError: print "unsupported database type" return user_text = self.fuzzy_entry.get_text().strip() if user_text: access_mode, query = table[FUZZY] else: access_mode, query = table[WHERE] user_text = self.where_entry.get_text().strip() if not user_text: self.where_entry.set_text("") while self._update_id: context, namespace = self._update_id.popleft() source_remove(context) namespace[0] = True self.list_store.clear() return query = self._query_cook_common(query) qty = query.count("(%s)") if access_mode == CLEAN: query = (query, (user_text,) * qty) elif access_mode == DIRTY: # Accepting of SQL code in user data. query = (query % ((user_text,) * qty),) else: print "unknown database access mode", access_mode return self._acc.request(query, self._handler, self._failhandler) return @staticmethod def _drag_data(model, paths): """Generate tuples of (catalog, pathname) for the given paths.""" for path in paths: row = model[path] yield row[9], row[7] def _cb_fuzzysearch_changed(self, widget): if widget.get_text().strip(): self.where_entry.set_sensitive(False) self.where_entry.set_text("") else: self.where_entry.set_sensitive(True) self.update_button.clicked() ########################################################################### def _handler(self, acc, *args, **kwargs): PageCommon._handler(self, acc, *args, **kwargs) acc.purge_job_queue(1) def _failhandler(self, exception, notify): notify(str(exception)) if exception[0] == 2006: raise idle_add(self.tree_view.set_model, None) idle_add(self.list_store.clear) ########################################################################### @threadslock def _update_1(self, acc, cursor, rows, namespace): if not namespace[0]: self.tree_view.set_model(None) self.list_store.clear() namespace[1] = (0, ) # found = 0 context = idle_add(self._update_2, acc, cursor, namespace) self._update_id.append((context, namespace)) return False @threadslock def _update_2(self, acc, cursor, namespace): kill, (found, ) = namespace if kill: return False next_row = cursor.fetchone append = self.list_store.append for i in xrange(100): if acc.keepalive == False: return False try: row = next_row() except sql.Error: return False if row: found += 1 append((found, ) + row) else: if found: self.tree_cols[0].set_title("(%s)" % found) self.tree_view.set_model(self.list_store) return False namespace[1] = (found, ) return True class CatalogsInterface(gobject.GObject): __gsignals__ = { "changed" : (gobject.SIGNAL_RUN_LAST, None, ()) } time_unit_table = {N_('Minutes'): 60, N_('Hours'): 3600, N_('Days'): 86400, N_('Weeks'): 604800} def __init__(self): gobject.GObject.__init__(self) self._dict = {} def clear(self): self._dict.clear() def copy_data(self): return self._dict.copy() def update(self, liststore): """Replacement of the standard dict update method. This one interprets a CatalogPage gtk.ListStore. """ self._dict.clear() for row in liststore: if row[0]: self._dict[row[5]] = { "peel" : row[1], "prepend" : row[2], "lpscale" : self._lpscale_calc(row[3], row[4]), "name" : row[6], "path" : row[7], "last_update" : row[8], "last_clean" : row[9], "last_add" : row[10] } self.emit("changed") @classmethod def _lpscale_calc(cls, qty, unit): return qty * cls.time_unit_table[unit] def transform_path(self, catalog, path): if len(path) < 4: return False, path # Path too short to be valid. # Conversion of Windows paths to a Unix equivalent. if path[:2] in ("\\\\", "//"): # Handle UNC paths. Throw away the server and share parts. try: path = ntpath.splitunc(path)[1].replace("\\", "/") except Exception: return False, path elif path[0] != '/': # Assume it's a regular Windows path and try to convert it. path = '/' + path.replace('\\', '/') peel = self._dict[catalog]["peel"] if peel > 0: path = "/" + path.split("/", peel + 1)[-1] path = os.path.normpath(self._dict[catalog]["prepend"] + path) return os.path.isfile(path), path def sql(self): ids = tuple(x for x in self._dict.iterkeys()) if not ids: return "FALSE" if len(ids) == 1: which = "catalog = %d" % ids[0] else: which = "catalog IN %s" % str(ids) return which + ' AND catalog.catalog_type = "local"' def update_required(self, other): if other is None: return True return self._stripped_copy(self._dict) != self._stripped_copy(other) def lpscale(self, catalog): return self._dict[catalog]["lpscale"] @staticmethod def _stripped_copy(_dict): copy = {} for key1, val1 in _dict.iteritems(): copy[key1] = {} for key2, val2 in val1.iteritems(): if key2 not in ("peel", "prepend", "lpscale"): copy[key1][key2] = val2 return copy class CatalogsPage(PageCommon): def __init__(self, notebook, interface): self.interface = interface self.refresh = gtk.Button(stock=gtk.STOCK_REFRESH) self.refresh.connect("clicked", self._on_refresh) PageCommon.__init__(self, notebook, _("Catalogs"), self.refresh) # active, peel, prepend, lpscale_qty, lpscale_unit, id, name, path, # last_update, last_clean, last_add self.list_store = gtk.ListStore( int, int, str, int, str, int, str, str, int, int, int) self.tree_cols = self._make_tv_columns(self.tree_view, ( (_('Name'), 6, None, 65, pango.ELLIPSIZE_END), (_('Catalog Path'), 7, None, 100, pango.ELLIPSIZE_END), (_('Prepend Path'), 2, None, -1, pango.ELLIPSIZE_NONE) )) rend1 = gtk.CellRendererToggle() rend1.set_activatable(True) rend1.connect("toggled", self._on_toggle) self.tree_view.insert_column_with_attributes(0, "", rend1, active=0) col = gtk.TreeViewColumn(_('Last Played Scale')) adj = gtk.Adjustment(0.0, 0.0, 999.0, 1.0, 1.0) rend2 = gtk.CellRendererSpin() rend2.props.editable = True rend2.props.adjustment = adj rend2.props.xalign = 1.0 rend2.connect("editing-started", self._on_spin_editing_started, 3) rend2.connect("edited", self._on_spin_edited, 3) col.pack_start(rend2, False) col.add_attribute(rend2, "text", 3) lp_unit_scale_store = gtk.ListStore(str) for each in (N_('Minutes'), N_('Hours'), N_('Days'), N_('Weeks')): lp_unit_scale_store.append((each,)) lp_unit_scale_cr = gtk.CellRendererCombo() lp_unit_scale_cr.props.has_entry = False lp_unit_scale_cr.props.editable = True lp_unit_scale_cr.props.model = lp_unit_scale_store lp_unit_scale_cr.props.text_column = 0 lp_unit_scale_cr.connect("changed", self._on_lp_unit_changed) col.pack_start(lp_unit_scale_cr, False) col.set_cell_data_func(lp_unit_scale_cr, self._translate_scale) self.tree_view.insert_column(col, 3) adj = gtk.Adjustment(0.0, 0.0, 999.0, 1.0, 1.0) rend3 = gtk.CellRendererSpin() rend3.props.editable = True rend3.props.adjustment = adj rend3.props.xalign = 1.0 rend3.connect("editing-started", self._on_spin_editing_started, 1) rend3.connect("edited", self._on_spin_edited, 1) col = self.tree_view.insert_column_with_attributes(4, _("Path Peel"), rend3, text=1) rend4 = self.tree_view.get_column(5).get_cell_renderers()[0] rend4.props.editable = True rend4.connect("edited", self._on_prepend_edited) for rend in (rend3, rend4): rend.connect("editing-started", self._on_editing_started) rend.connect("editing-canceled", self._on_editing_cancelled) self.tree_view.set_rules_hint(True) self._block_key_bindings = False def in_text_entry(self): return self._block_key_bindings def activate(self, *args, **kwargs): PageCommon.activate(self, *args, **kwargs) self.tree_view.get_column(0).set_visible(self._db_type in (AMPACHE, AMPACHE_3_7)) self.refresh.clicked() def deactivate(self, *args, **kwargs): PageCommon.deactivate(self, *args, **kwargs) self.interface.clear() def _translate_scale(self, col, cell, model, iter): cell.props.text = _(model.get_value(iter, 4)) def _get_active_catalogs(self): return tuple(x[3] for x in self.list_store if x[0]) def _store_user_data(self): dict_ = {} for row in self.list_store: dict_[str(row[5])] = (row[0], row[1], row[2], row[3], row[4]) self._usesettings["catalog_data"] = dict_ def _restore_user_data(self): try: dict_ = self._usesettings["catalog_data"] except: return for row in self.list_store: try: row[0], row[1], row[2], row[3], row[4] = dict_[str(row[5])] except KeyError: pass except ValueError: row[0], row[1], row[2] = dict_[str(row[5])] row[3], row[4] = 4, N_('Weeks') def _on_toggle(self, renderer, path): iter = self.list_store.get_iter(path) if iter is not None: old_val = self.list_store.get_value(iter, 0) self.list_store.set_value(iter, 0, not old_val) self._store_user_data() self.interface.update(self.list_store) def _on_refresh(self, widget): if self._db_type in (AMPACHE, AMPACHE_3_7): self.refresh.set_sensitive(False) self.tree_view.set_model(None) if self._db_type == AMPACHE: query = """SELECT id, name, path, last_update, IFNULL(last_clean,0), last_add FROM catalog WHERE enabled=1 ORDER BY name""" else: query = """SELECT catalog.id, name, path, last_update, IFNULL(last_clean,0), last_add FROM catalog LEFT JOIN catalog_local on catalog.id = catalog_id AND catalog.catalog_type = "local" WHERE enabled=1 ORDER BY name""" self._acc.request((query,), self._handler, self._failhandler) elif self._db_type == PROKYON_3: self.list_store.clear() self.tree_view.set_model(self.list_store) self.list_store.append((1, 0, "", 0, _('N/A'), 0, _('N/A'), _('N/A'), 0, 0, 0)) self._restore_user_data() self.interface.update(self.list_store) def _on_editing_started(self, rend, editable, path): self._block_key_bindings = True def _on_editing_cancelled(self, rend): self._block_key_bindings = False def _on_spin_editing_started(self, rend, editable, path, index): val = self.list_store[path][index] rend.props.adjustment.props.value = val def _on_spin_edited(self, rend, path, new_data, index): self._block_key_bindings = False row = self.list_store[path] try: val = int(new_data.strip() or 0) except ValueError: pass else: if val >= 0 and val != row[index]: row[index] = min(val, int(rend.props.adjustment.props.upper)) self._store_user_data() self.interface.update(self.list_store) def _on_prepend_edited(self, rend, path, new_data): self._block_key_bindings = False row = self.list_store[path] new_data = new_data.strip() if new_data != row[2]: row[2] = new_data self._store_user_data() self.interface.update(self.list_store) def _on_lp_unit_changed(self, combo, path_string, new_iter): text = combo.props.model.get_value(new_iter, 0) self.list_store[path_string][4] = text self._store_user_data() self.interface.update(self.list_store) ########################################################################### def _failhandler(self, exception, notify): notify(str(exception)) if exception[0] == 2006: raise idle_add(threadslock(self.tree_view.set_model), self.list_store) idle_add(threadslock(self.refresh.set_sensitive), True) @threadslock def _update_1(self, acc, cursor, rows, namespace): if not namespace[0]: self.list_store.clear() while 1: try: db_row = cursor.fetchone() except sql.Error: break if db_row is None: break self.list_store.append((0, 0, "", 4, N_('Weeks')) + db_row) self._restore_user_data() self.tree_view.set_model(self.list_store) self.refresh.set_sensitive(True) self.interface.update(self.list_store) return False class MediaPane(gtk.VBox): """Database song details are displayed in this widget.""" def __init__(self): gtk.VBox.__init__(self) self.notebook = gtk.Notebook() self.pack_start(self.notebook) catalogs = CatalogsInterface() self._tree_page = TreePage(self.notebook, catalogs) self._flat_page = FlatPage(self.notebook, catalogs) self._catalogs_page = CatalogsPage(self.notebook, catalogs) self.prefs_controls = PrefsControls() if have_songdb: self.prefs_controls.bind(self._dbtoggle) spc = gtk.VBox() spc.set_border_width(2) self.pack_start(spc, False) spc.show() self.notebook.show_all() def in_text_entry(self): if self.get_visible(): page = self.notebook.get_nth_page(self.notebook.get_current_page()) return page.in_text_entry() return False def repair_focusability(self): self._tree_page.repair_focusability() self._flat_page.repair_focusability() self._catalogs_page.repair_focusability() def get_col_widths(self, keyval): """Grab column widths as textual data.""" try: target = getattr(self, "_%s_page" % keyval) except AttributeError as e: print e return "" else: return target.get_col_widths() def set_col_widths(self, keyval, data): """Column widths are to be restored on application restart.""" if data: try: target = getattr(self, "_%s_page" % keyval) except AttributeError as e: print e return else: target.set_col_widths(data) def _dbtoggle(self, accdata, usesettings): if accdata: # Connect and discover the database type. self.usesettings = usesettings for i in range(1, 4): setattr(self, "_acc%d" % i, DBAccessor(**accdata)) self._acc1.request(('SHOW tables',), self._stage_1, self._fail_1) else: try: for i in xrange(1, 4): getattr(self, "_acc%d" % i).close() except AttributeError: pass else: for each in "tree flat catalogs".split(): getattr(self, "_%s_page" % each).deactivate() self.hide() @staticmethod def schema_test(string, data): data = frozenset(x[0] for x in data) return frozenset(string.split()).issubset(data) ########################################################################### def _safe_disconnect(self): idle_add(threadslock(self.prefs_controls.disconnect)) def _hand_over(self, db_name): self._tree_page.activate(self._acc1, db_name, self.usesettings) self._flat_page.activate(self._acc2, db_name, self.usesettings) self._catalogs_page.activate(self._acc3, db_name, self.usesettings) idle_add(threadslock(self.show)) def _fail_1(self, exception, notify): # Give up. self._safe_disconnect() return True def _fail_2(self, exception, notify): try: code = exception.args[0] except IndexError: raise if code != 1061: notify(_('Failed to create FULLTEXT index')) print exception raise notify(_('Found existing FULLTEXT index')) def _stage_1(self, acc, request, cursor, notify, rows): """Running under the accessor worker thread! Step 1 Identifying database type. """ data = cursor.fetchall() if self.schema_test("tracks", data): request(('DESCRIBE tracks',), self._stage_2, self._fail_1) elif self.schema_test("album artist song", data): request(('DESCRIBE song',), self._stage_4, self._fail_1) else: notify(_('Unrecognised database')) self._safe_disconnect() def _stage_2(self, acc, request, cursor, notify, rows): """Confirm it's a Prokyon 3 database.""" if self.schema_test("artist title album tracknumber bitrate " "path filename", cursor.fetchall()): notify(_('Found Prokyon 3 schema')) # Try to add a FULLTEXT database. request(("""ALTER TABLE tracks ADD FULLTEXT artist (artist,title, album,filename)""",), self._stage_2a, self._fail_2) else: notify(_('Unrecognised database')) self._safe_disconnect() def _stage_2a(self, acc, request, cursor, notify, rows): request(("ALTER TABLE albums ADD INDEX idjc (name)",), self._stage_3, self._fail_2) def _stage_3(self, acc, request, cursor, notify, rows): self._hand_over(PROKYON_3) def _stage_4(self, acc, request, cursor, notify, rows): """Test for Ampache database.""" if self.schema_test("artist title album track bitrate file", cursor.fetchall()): request(('DESCRIBE artist',), self._stage_5, self._fail_1) else: notify('Unrecognised database') self._safe_disconnect() def _stage_5(self, acc, request, cursor, notify, rows): if self.schema_test("name prefix", cursor.fetchall()): request(('DESCRIBE artist',), self._stage_6, self._fail_1) else: notify('Unrecognised database') self._safe_disconnect() def _stage_6(self, acc, request, cursor, notify, rows): if self.schema_test("name prefix", cursor.fetchall()): notify('Found Ampache schema') request(("ALTER TABLE album ADD FULLTEXT idjc (name)",), self._stage_7, self._fail_2) else: notify('Unrecognised database') self._safe_disconnect() def _stage_7(self, acc, request, cursor, notify, rows): request(("ALTER TABLE artist ADD FULLTEXT idjc (name)",), self._stage_8, self._fail_2) def _stage_8(self, acc, request, cursor, notify, rows): request(("ALTER TABLE song ADD FULLTEXT idjc (title)",), self._stage_9, self._fail_2) def _stage_9(self, acc, request, cursor, notify, rows): notify("Checking ampache type") request(("DESCRIBE catalog",), self._stage_10, self._fail_2) def _stage_10(self, acc, request, cursor, notify, rows): if self.schema_test("path", cursor.fetchall()): notify('Found Ampache pre 3.7 schema') self._hand_over(AMPACHE) else: request(("DESCRIBE catalog_local",), self._stage_11, self._fail_2) def _stage_11(self, acc, request, cursor, notify, rows): if self.schema_test("path", cursor.fetchall()): notify('Found Ampache 3.7 schema') self._hand_over(AMPACHE_3_7) else: notify('Unrecognised database') self._safe_disconnect() idjc-0.8.16/config.h.in0000644000175000017500000001236012711167217011472 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* LAME to be linked dynamically */ #undef DYN_LAME /* MPG123 to be linked dynamically */ #undef DYN_MPG123 /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Set if libavcodec was found */ #undef HAVE_AVCODEC /* Set if libavformat was found */ #undef HAVE_AVFORMAT /* Set if libavutil was found */ #undef HAVE_AVUTIL /* Set if av_frame_alloc function exists */ #undef HAVE_AV_FRAME_ALLOC /* Set if av_frame_unref function exists */ #undef HAVE_AV_FRAME_UNREF /* Define to 1 if you have the `canonicalize_file_name' function. */ #undef HAVE_CANONICALIZE_FILE_NAME /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework. */ #undef HAVE_CFLOCALECOPYCURRENT /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ #undef HAVE_CFPREFERENCESCOPYAPPVALUE /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the `dlopen' function. */ #undef HAVE_DLOPEN /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Set if libflac >= 1.1.3 was found */ #undef HAVE_FLAC /* Define to 1 if you have the `getline' function. */ #undef HAVE_GETLINE /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_JACK_JACK_H /* Define to 1 if you have the header file. */ #undef HAVE_JACK_TRANSPORT_H /* Define to 1 if you have the header file. */ #undef HAVE_LAME_LAME_H /* Define to 1 if you have the header file. */ #undef HAVE_LIBAVUTIL_CHANNEL_LAYOUT_H /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `memset' function. */ #undef HAVE_MEMSET /* Define to 1 if you have the header file. */ #undef HAVE_MPG123_H /* Set if libFLAC has oggflac support */ #undef HAVE_OGGFLAC /* Set if libopus was found */ #undef HAVE_OPUS /* Define to 1 if you have the `pow' function. */ #undef HAVE_POW /* Define to 1 if you have the header file. */ #undef HAVE_PTHREAD_H /* Define to 1 if you have the header file. */ #undef HAVE_SHOUTIDJC_SHOUT_H /* Set if libspeex was found */ #undef HAVE_SPEEX /* Define to 1 if you have the `sqrt' function. */ #undef HAVE_SQRT /* 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 `strchr' function. */ #undef HAVE_STRCHR /* 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 `strndup' function. */ #undef HAVE_STRNDUP /* Set if libswresample was found */ #undef HAVE_SWRESAMPLE /* 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 /* Set if libtwolame was found */ #undef HAVE_TWOLAME /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define as the return type of signal handlers (`int' or `void'). */ #undef RETSIGTYPE /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Set if GNU extensions need to be replicated */ #undef USE_BSD_COMPAT /* Set if libswresample allows format conversion */ #undef USE_SWRESAMPLE /* Version number of package */ #undef VERSION /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc /* Define to `int' if does not define. */ #undef pid_t /* Define to `unsigned int' if does not define. */ #undef size_t #if defined(HAVE_AVCODEC) && defined(HAVE_AVFORMAT) && defined(HAVE_AVUTIL) #define HAVE_LIBAV 1 #endif idjc-0.8.16/Makefile.am0000644000175000017500000000374112631303013011471 00000000000000SUBDIRS = po c python artwork man doc EXTRA_SCRIPTS= nodist_bin_SCRIPTS=${PACKAGE_NAME} dist_noinst_SCRIPTS=idjc.in.in bootstrap nodist_doc_DATA=AUTHORS.gz NEWS.gz README.gz ChangeLog.gz docdir=${prefix}/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION} dist_noinst_DATA=idjc.desktop.in.in idjc.appdata.xml.in.in nodist_appmenu_DATA=${PACKAGE_NAME}.desktop appmenudir=${prefix}/share/applications nodist_appdata_DATA=${PACKAGE_NAME}.appdata.xml appdatadir=${datadir}/appdata nodist_pkgdata_DATA=buildinfo ${PACKAGE_NAME}: idjc.in @sed -e 's|$${prefix}|${prefix}|g' -e 's|$${pkglibdir}|${pkglibdir}|g' $? >$@ ${PACKAGE_NAME}.desktop: idjc.desktop.in @sed -e 's|$${prefix}|${prefix}|g' -e 's|$${exec_prefix}|${exec_prefix}|g' $? >$@ ${PACKAGE_NAME}.appdata.xml: idjc.appdata.xml.in @sed -e 's|$${prefix}|${prefix}|g' -e 's|$${exec_prefix}|${exec_prefix}|g' $? >$@ AUTHORS.gz: AUTHORS @ gzip -c $? >$@ NEWS.gz: NEWS @ gzip -c $? >$@ README.gz: README @ gzip -c $? >$@ ChangeLog.gz: ChangeLog @ gzip -c $? >$@ buildinfo: if GIT_VERSION_CONTROL echo Commit hash: $$(git log -n1 "--pretty=format:%H") > buildinfo echo Commit date: $$(git log -n1 "--pretty=format:%aD") >> buildinfo echo Repo status: $$(if test -z "$(git status --porcelain) 2>&1" ; then echo "clean" ; else echo "dirty" ; fi) >> buildinfo echo Remote URL: $$(git config --get remote.origin.url) >> buildinfo echo >> buildinfo else rm buildinfo endif echo Build date: $$(date -R) >> buildinfo clean-local: rm -f buildinfo ChangeLog.gz README.gz NEWS.gz AUTHORS.gz ${PACKAGE_NAME}.desktop ${PACKAGE_NAME}.appdata.xml ${PACKAGE_NAME} dtdist: make dist mv ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.gz ${HOME}/Desktop sfpublish: make dist curl --retry 3 --connect-timeout 10 -T ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.gz -n sftp://frs.sourceforge.net/home/frs/project/i/id/idjc/idjc/0.8/ .PHONY: buildinfo dtdist sfpublish ${PACKAGE_NAME} ${PACKAGE_NAME}.desktop ACLOCAL_AMFLAGS = -I m4 EXTRA_DIST = config.rpath m4/ChangeLog idjc-0.8.16/NEWS0000644000175000017500000000203412630014504010131 000000000000007th September 2006: Project files for version 0.6.6 added to sourceforge.net and screenshot updated. Hopefully this will guarantee the continued availability of idjc since prior to this I was hosting this project solely on my ISP provided webspace. 24th March 2006: Ogg streaming of song titles is up and running (and you can't have it yet :P). This has prompted the imminent version bump to 0.6.0 which should also accompany an increase in quality -- thank-you beta testers. 24th March 2006: IDJC is one year old today. :) 23rd February 2006: After a long break a new version with some nasty bugs caught 0.5.8. 21st December 2005: Version 0.5.7 goes live. 3rd December 2005: Released version 0.5.6 28th November 2005: Autoconf w00t!! New build system installed and working. The software components go in the correct directories rather than getting stuffed in /usr/lib/idjc. 28th November 2005: I have a NEWS file so I guess I may as well make it my personal journal. The news is I am off work this week so I plan on doing a lot of coding. idjc-0.8.16/depcomp0000755000175000017500000005601612552234435011032 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook '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: idjc-0.8.16/ltmain.sh0000644000175000017500000117077112514014631011273 00000000000000#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.6 package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # func_quote_for_expand ARG # ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2014-01-07.03; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do eval $_G_hook '"$@"' # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift done func_quote_for_eval ${1+"$@"} func_run_hooks_result=$func_quote_for_eval_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, remove any # options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # func_quote_for_eval ${1+"$@"} # my_options_prep_result=$func_quote_for_eval_result # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # ;; # *) set dummy "$_G_opt" "$*"; shift; break ;; # esac # done # # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # func_quote_for_eval ${1+"$@"} # my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # # You'll alse need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd func_options_prep ${1+"$@"} eval func_parse_options \ ${func_options_prep_result+"$func_options_prep_result"} eval func_validate_options \ ${func_parse_options_result+"$func_parse_options_result"} eval func_run_hooks func_options \ ${func_validate_options_result+"$func_validate_options_result"} # save modified positional parameters for caller func_options_result=$func_run_hooks_result } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propogate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} # Adjust func_parse_options positional parameters to match eval set dummy "$func_run_hooks_result"; shift # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) test $# = 0 && func_missing_arg $_G_opt && break case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname (GNU libtool) 2.4.6 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: idjc-0.8.16/config.guess0000755000175000017500000012572512706207411011774 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-12-14' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. 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-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." 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' | sed 's, ,,g'` ;; 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=`(uname -p 2>/dev/null || \ /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 ;; earmv*) arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` machine=${arch}${endian}-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|earm*|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 # Determine ABI tags. case "${UNAME_MACHINE_ARCH}" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *: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 ;; *:Sortix:*:*) echo ${UNAME_MACHINE}-unknown-sortix 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/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm: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 ;; *: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 ;; e2k:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; k1om:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; 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; } ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; 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:*:*) eval $set_cc_for_build X86_64_ABI= # If there is a compiler, see if it is configured for 32-bit objects. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_X32 >/dev/null then X86_64_ABI=x32 fi fi echo ${UNAME_MACHINE}-pc-linux-${LIBC}${X86_64_ABI} 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 configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -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 test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then 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 elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 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 ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs exit ;; esac 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: idjc-0.8.16/idjc.in.in0000644000175000017500000000202412630014502011275 00000000000000#! @PYTHON@ """idjc(.in.in): Application launcher of IDJC""" # Copyright (C) 2011-2013 Stephen Fairchild (s-fairchild@users.sourceforge.net) # 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 in the file entitled COPYING. # If not, see . import locale locale.setlocale(locale.LC_ALL, "") import sys sys.path.insert(0, """@idjcpythondir@""") try: import idjc except ImportError: print "failed to import the idjc package" else: exit(idjc.main()) idjc-0.8.16/artwork/0000755000175000017500000000000012711167613011216 500000000000000idjc-0.8.16/artwork/volume2.png0000644000175000017500000000032712630014515013227 00000000000000PNG  IHDR bKGD pHYs  tIMEhdIDAT8ӻ P^ރ*uVBl](&"% 0afp)vZ-hTЃ-A/6#b}`% xW*^7IENDB`idjc-0.8.16/artwork/icon.png0000644000175000017500000007436412630014515012602 00000000000000PNG  IHDR``{bKGDC pHYs   vpAg``xxMIDATxgUŲgO3 0s9HEP$dDE Y9K9<0 0y٫b9<\So~Z{u_/4&gӔfVsҝ+F R6og| 74g}'DןsC-}aAt̹2_/AOLE!M7sϓ˜os~>Ͼh)ԚRWm /DU@ Zt>5g{Џjs-/eK.D|;7?l[.\l?%)u0Zvǜ[쏞iѬ_)thwDJ{ߛ?s?Hg/db/b@<&/kdy1Sry11ыh| U3`1oMueI,׽ٴ[%"wkr5,U/7T\]'UTiRix5˫Y^_Y|!V%/gUF3Ѫ{1C/ryq:/|lA^K U}^U,߽>=x,md%#KR _D3]-PוO8g/?_¿b^lҋ{1ORI%š>}N;_7yȹۜ+xH)"Ry FVS %2/+e9(g@jCmD)s9bti lXaTe 'UZЍnt鈼6Ջ3MU=\r:/R~ RT۵)w^g۳<b8sn|ŵ2rN)|rtș3~g䦓N! aȟݽeP 9kzM;y|}^}c}Ƃ3W!I tv(GO4pSr T55}@ JR UW*o_6d55i35=@GCg sߜ0@RHJ K%܅7/ xd|1P*el؛-gIxJKc\8w8!/N7:dAA2!d\`jYA9 :Q'W`5jZ_I9u3 CFܖ8 rGNv)yBEk0h 6H=)'5(^mG? sdNs=`Z;AOQ=!"/@d1?t~RNHs %rNӃxs cB'lo=Fr_\/>0' J:ጁ N >c ^|9n}{'&<7?2Žfߒl/Έ.u@_xmYKNuA&4RF H%*iLC @I*Pd eeJ1@{JG-3hK{m*( |%_L& Cn, > l{:Xj2~Er(HQ 43E| ]|ʷvId|,QMh9R/>޾gOg<)`=ki;5l 0 d?/72g\ȸa_o[&^Oy*7m/@/xͰ_9@̙cN1ŏ>&|D{uq; DH` { :6Dp&@0 x0OH,?ЎU{8 g Vm2aٴ2 A/y`-kԢ1mgjkl>X /x|t zO!0 9ufY /B.wO;栙 [|CSһ\ӇU@V{!)#eN}M끫 9e|e\)0/mgO,K I-jtGb6~&hW(G9^\hЗB_SwCg d 5 qԡ.Ed#H:ρTRq7q _fzEjZL( \zA79 gAЈfHs'AS 3d6.oO6OOA0M[XOVМV1 ?"(Kc>$F\`` ^`ҭߵ?IML~Ћ } 4K éoY 'U0j H[ ŭVe` CHNU`YVD|'N NNKz<cf@^zPa6v?w2Zy۴34L`v'H~,e7ad~`%{@h! $LE>NFvƂѓtv}`/9z{x"u`+dw5Z#;>y4+*a Phi0!S5=`/;XR@jIkPyh߰2Ayj!vyn%5S$\qËnT U],I/P:4|k4|oDG݊9sMx^ g1Ouy~ˠA]ކa{zj R^H1H^ӚCČST7AkS} t, +}caH?;q8H#i'թL >5 2ZJ?pv pV^p|b$QRiLg&p ?NduFDc  P}.p BA&lY R@ Ku.mhE @"(<w@_7%0)9%@hKm 63Ahv-zO/h2 \>ZIA/ MXPT@H9|6كI=l7D䁔|Zӭ6IH#٬"`6O׀;5HWza'{>p t4Y,a+ 9AY '"2"`+ }^,؋#?e7;l^갩?C@ D|;1 H' 3 Yh4^[ oH S @! ЎyHP.qK  d\#yIHg\O*l=A$NAvYRAJ RkKh'#vNS򳰢.څu~zYo! d,PC/x_!45$69<1\7=m%n̼Af&lV逕m^[gc Tr͵nAYX PX{FΗGOEukf0x~t)/y$?m"#?! B=mÇ^Kg3M:\Eg.]DKx> D?!LdpChSmMjlղ-zL_3jVbe@׀~t_k5wO:_%(B5 D)DE.W8%͞8^] Y;Ga ~!B]z\ F5J tY|i#.Zerm^iU P Y(auK!oY{O #pBZST><ԁ˯-1.Xrz8ރ CKDW6A R el}> q- N]]27ogFr4h^ӧO'WSXհayA.PH"p1؃ϙR&v|6L63[= %ffqC"@fI8ɆwYr@78\ÐF6LнSZx bAԡ@62hDW{YZ( d. ]c| &@$JT8&ᐫh`YAedM263 ʚ?pU!HVIVJC Dc24`ZeG YT䔕H48:0t) 2*ۍhxȓ'k ,-pssV-U u}GnP?-`]sA#px8o@_2i=?4CI&om/mghNYBE e%|RRrI-h zmhAK pA.ZhKt5Hui $=@@U0:L,MMZKKZjk"Н VTi*UC8QrVwė@!b) \ qV S)ITO'O  ahgX̧ ]b<^`],pksnK^ 8f^!f;Ms8\4HΛR<tvWm67<>섔;i!ly.rg;UOēA PUyM8 /߂~ WUŷsxO3?w4lz1o5bp$I^c׀UHp7qpOWOWOO0_f6H%)/Pf쑏i<+A9BzǶ@Dx?e,ktBuogv DNش i Q Ā\GHP_1 hC+I Qί_kqx,YDg]z?xɬc(ȯ_07`zd y#$jfΒH H\s@NJP VW@TԤ?}b3Qg `[ B2NwhIr4X& b՛z>&- 0AF9 3|O2<!L3z*Piؘ޳4ǀk\*P2*B? y>&S2Am~ &Ju9<iNI%M$AdzT3Ɨ[ %pIHvhAB2 [g_  J/N'@78V"AR< 't d0Esf;T  I'pgQm3 fd&@ PCRjEU >頓t~ cC@֮dLlf`HiP>`N&H5H$yB =}n[rQNЇzxI.0{~ KCg$Zo6UNy0Q&^oggg0$I4RBRR".h ==45NPxQA B:Q s Bh YB69*/P@pe<0pD8Qh /"VV"@JX\rY9ZѤ>z'vƽ1ᇗCMيP\V;Q,ղR1BH8%k 偤թE%M ]Hox!qDgcx/dȬ;>s|͖=[L6?pvrPrfSo>h mAIuirEyХIѕ&t"kd=`dr*39 w!e,*gv ;P,k5j`׵+E A1qc&\\\I$"@u 9ccsb.]sFxoIovrݮiVI+g43XE]K-*@e˟ %% GSB0ޱR)'`«CPU Mj y.n6m9-W=0=y.w6 $A mӛw\C<ؚYMf:W Tk  |GR3tNA&=H !/=DZSռc\=ebNsWN7N[:Q)xs.ZCOF0ߙӺuË/v)S>s?a }k;!ѧ!WLε9!Tٓ!p'u`H4Ǥq'=O~yz?=HAsr6|͹w,88vG6dž`ufD<G0|vs v[@P@!G!@WKO۟[#BKAz!@-MT@192F*`61C,\~ew4E U2W&N:ITS߀1!=Gz+r@^|$&H y>}/~ikr۶/pi_H?zXN{.ۊv)٤ pzK]6H[$p3^<[2\*QTjU ٤hq$|"}eHG@Rp&`13Y d 4Ie$ 9XH64:  *x:=uz4H.\9˖y70d ~ m[:xؑv9 fFoڙޠF_E2s } f5 38`R" 82xlՂ-_#-23IʧER# sWaɪOu!WCQS+`R0y #$Qb`K~}ST!@$JЃZPЁ>;2XwQ"XVCw_@t!VYͿ3¯+ou^3yۙ ;atս@! qF`+S 4$<"vrZFK=Ai)YfYL3i,C_=?$.M\桹o #t@_ߣР40@qk -hk`wم rLTl^n+s _ (pd ](=`UJ ͼk*82}ᢪ*'aw5];yĴq[ Zpj6z'@m tn@gzc% }P`=$l HP4i(-x 7󘧠't7,~*ЕLr>sA!_Q"␀|!*A >8xL5V K,]3RRT nA40A?# EN K*otyI]y 666;%A7>]RMJR}@hsmA'c>)in}&gX?TrU윶,xpq4r$AX«P}9<l~5_ӶrPg'ׂcژ>0ғ6%C!ذ؝.*.ȏ3*i~b0Etb(P ? y dAoU*3e*0|ZVKh5A4 g WP@Z4HC ~߂+ oE['3֙ ܸqW 2{;M]$H|>|^bS@JuiKEA1=#^MhF мπ  БV^/|,hЍN,꧑P@ Xfx~!K}qL&øO1{yk@*'#ldn Rە`u~#8ǁV^T}ׇ\AH=[tVt.s{gD ̀%!aNy`?s'Gw0 2H}Nxky1foU\r>Hp|1LE U*T̀2QA (#J;76ըk{]b{k ٤&ӏ٠Q 4Y)+0 AV?ptp-|Ks\0@C X©F)hiE؁թ7` 8d\)z?l W͛#Ƹ>w}σS:vC|tj9,e#HlH y]zIю& 8E Old2`P4Pthf9|GN DGBjL-L{;Wb|Ɓ5cMыA QRDbB;ЍZwzYo'qk<& 4Z:H30 W?^t C)Zfu&A7:]9i63yj'yyWԙUVY9Gt%VڂԕR=&y/x796%)Y~ p7{6xvzvZ dp J1J%٬H[G 6)H%оEѕ~@`cȏ@,}^k`=,hț"E&^,oUo\Xr`JXJXL0_Q`&1f8;F8a2Sߴ3G f7A~:@C5\#AZd_8 !W107@jSڴ0e3_~|@^߼ ZdHK`>n/@Sg%g%g%kգz [E&7]zvi^w~}!b U/BL6rY:Dq:v=8Q!w@CISORk5nnKz;ݯ[t%hyrOnj7^QQ-;\R ' Mab-A^c5ښoh[sKQR@a9A ( f4_NО:x3`1oW35`3̧s38IN%lKSUjݱ΁l} t9 )ɠ?az_/}[O@A;iҞmZlRtLK( Pu~AusC.۟ݼz{G:+uFGhE+ZgP:B'6/Zb(ڢ;E[7 Oq)'Zd$swMW.Lqst~kԓxfVUU)bY*gphIv`5@ *R6>>9(A' xNf?0nr`؝[< J&ͫdL@s /!B-,0q&դ*R!PZR5NRxHXV90qfEY9k_QGʂ2W7Chr5bk.Ilp2YBƞA-k+? j*x~1im^ԓf˗ͭ[Nݴ1eGVh;mg$c9hi-%@Q3 d,X2 tfX i**CtMvV&\{1kc4a)~~ Q"`5h (u(pā֖tvׁprJSQ) 3sEpޢz]T$x"FnUL9L9(|5g` }m+ B^\ўk+vg.?-5" 7ۻi}q09|n^!\24*3 $/|L?ٛ\Y$?4"xgE2d;kZ,2Zfqz]xyy1//o9t>q,N͌\ w@O) el<L!}#} Li Z\j dӊZ Wְ Ai"' +3¼= ,DFg X? 6kϿep)ak܁|˽3kc]d~V5D`V-k<.,Y~5/sNrNvNDP`,c+AKu e A*H#)rTEc_/ CDc-+mR٢ 9*#'b+BXq`3[8 ZQk8%үHNbߪ9ngx1cSƺM%m :JԣG|@$фL'yGK{[O+@j{ <#G?L#;T>he5AB﻾=_PjQߑroF=:[_@oCrge9p#|ė@j^< t&MgMg=кZEK,keȇ2PnrMޣ'o_b$H+(6y \vZ\PR6]+}ϗvmpܗ_d+h> S_OϿq8Ө[;27q='=7Y&kd9EpAOsK14+Q:3٠a!*dnh$Ѳ m)jr+ {,;7fPPq6jC a!)(h 6{=pdzss+O~.|d楙E |ڎT_>sXyk͡`z|. yr89oig&B3^ {e|`>aXjqε >[o|9tB `}.m "V/>@! ׋`zD)i \&>e+V>D]N rNnwH&.iK*w*iU p mFp} g{B^k=]K\ ]?^i|xUGem&2$N|klRHf3A$RB7Tރ@a=;%La`CEUjPrvtvC*砧uhE2Ա?c @\=iLj`UW_cwuX>[~3/|c7[]T[O[>Q1XAhB@nH`k_8v:6Oc?x* [>>0,V^=zn1{; OiO_!IУC/B`ҁفӺY(Ks8'OAIoyny!q H"Aw# A9 g@IeKzJ`0s"]@OAIbN PZ0O}}}֝lۿ?~w?s:惘Oc>[y"}DG9 CҘ@H2XH'nqK<Y0qeݟ172+5YyB Ԅ<{u,̨wq^Z4LvLH= Ds+>A^PX6B ~7j߫}d"!lD˿ 4+54-<\ =օ̞{oܛ~w9Y؅2KChx*=ysYzO_yw@d.3Z:m%l`>u D()ăvVZ>wܓ+t,da~# Y$iY7D򍌁/=9<٘gV_f>Pm-n*S=sL:N@J@Jo ? SeL%h: &2Pt/+ei^zKsh"Y+Ak-C-2>5+f!Z&FS@c ǁN$L|HZJ{'m >qw׃A+hԀ'jπ.r 8K`6(;rWDGu :% @j)ېpϳ!3701t{LJ  gY $ }[ClO7uJe 7P$pYlЖY2xFP +_"З~: dd A&hmuArqJ3 `\&AiӾq';eD5I; g!l?3 ݣt'PY,W d"@I Xt ~fp<B% !h$zY.CfŲ zUχ| E] \3ψ!/L-iakZN6Nwa@̾K p]ȏ`)CZiu Lܕ[=v_&y1#z;3bZ_CŰa; W;!<ȷX~p y%V"h0E?'@`5m'ik/`&LZ xwMM~Gc;&'h9G!P@źt`ؖYg6I)V2 AhqHI?E#ؑ'Hz.p7eH]C|-CиA?t;g#M`l] S VԚG k.>(#AV+DzUo4u [TRO6r(Hh!e@B%\ ^c}BDŽ4i}ҶL⊆(cb~}qwR3RSSݹ)+8990-@"џE#%ISfRU2 yT)!("vU>\3VG=Rk*vl$?HD\RCs $B'5^;WgGQu[<_N3)' kٷ>0)lqϵ((8o; G9o.9>=y!+]yIdprrH~!pLo~ʱ1'< YA=[uHx$}S͔.`+ZE+iY3zjJF7G~@*Hi)U#4C T ƇTrT`s8F'@]ҒKr@F'ԓR{nI] ,e=NΉcp%Ջkr!5( nRpkH UCF!JMX Rp_0!@:,BSD/ ~6K qit6(w@5|HBd R:w3o6U %P* d$I~?-ڍ캚IӠ?Q4$g>ZT (p^Tt),At>i.J+@JeƖL7oSC5h}$UNkVۙI FNJU>Yd _va r[Xv0r_Y7Yn*IـRr'@GI!bR35.9#  pYku> 9=Y=V2,<Pҁ[tԅ <P@aj4ԚDT֕ {ހ AX3P )nx˅4AK((-zKI~ $'xS>S@"؀F,ݕ|>J\] \nFUpR)[S**V56h@8>Ā>{z@~rR#݁$`pJPRv:T6Lf2-@Q t np Vk(v=ǀ,c3y,.0w<(Y$$h.8 S6`9 |wLPt4 NoJZJ@3>dfdZS3Ýf^X0.r-&.O\3!'@'\ 79 fC~z;cl@=RH@ ]_2 ״"7Ay,\<'ýɧ )! aR kI_ !0BUOWK/ >S7XG$pr9.u v{2N>-@ycu:0oZ" rP71P[L &"X_ 5A1mAjHaQwZ(*ӀҔ Pz/d \-e]gA $G0DdR ԣ"@jRAC %_Jܿh/^\[v怘z7 " 8 wkL8XbaY@ q{C01<7A2.5) 7%Xih߾G m/Y!@2/ zxgA<xfm75 ]9,.O fu/g`{2zĀ:cPRnVoi ZO+j]OJ*ڔKb a ASh:R. Çx*}CRrN%:d,}@ - di=2d!h-@:yC&hO]*@`#;YV1$?2~X*a/z{q{3I+-?biҚ5DbF!fحUNr4N'`pV=Axr|dgL8EM>@|جwAQr,>@HJS@^ HI\x ^gVj > _܉O P c"ONtNd`mYA~#24Fk:0) {}/"Ǹq '<3 e=[$F kt :Z.d h?4zUOoӎ7@b$"t.ѵ~.%@MP5hRrK+ZZ%KNOs 2F&l`;{>?Xb-d؞<ӻs?E+R23(u:QJOn <&LGkaȑ'5󎎪ZgJ $ ME@*J^)JcTz%@$$!aig?3{E$k֙3g?>{P}+됞Qji.c-!(ȷ= h.Ap+lCxތ`;MЦ~}Ƣ|@,=AJ)|d~@C(hO$'_qLQxaGdW4m@[1 1j"I:W_)`04Pԗj" }WTS_lcE@IiQ(PUU<6N(= LWA=QD 9d M1 ޢ _[Ej@Cy;{^.3deFQ( n_jQjVj/A! 7(Xdz w%ERxw߃:STxPVx8|b|`1!sd0@76oK3@6:ٜDߺ%L?cZqBKQ1PLPя ]z9ULLk k ǂ;_j,[MJPMֱ:$H5yYޠ<0,-[,9H%fNqH(5=ieu 2@#( JH`$cdqДr4P꨺b)+;Dy_zH T` #/Z # $ZK5`G,fc{_Aj>V!?-?+?2f9lsֽ[xϣQ:oأ#To-pdDd0X{[߶9>|Z22ϲ ,-,ׁŞhlt ce;_]06CRȄu^YԹ -Ӏ PE!xM`ާ*a= 9l w3kW"@[ tЩњ |Ia1vV 31DX2d'9g+[@ũDY#3@T}rQ.@ 7#2wpU(̗d> IC^1P2GUTZT* (Nm2rluTzNFȨQ-*b]]eOP$fkT^>xu&˞DF9=r>7׻꣺7 C3(: z.+T_UxH-Rݭ!72HKmrAH@qBx8T%Y ,}&>$J?BzG. $/>@B$Xz'xkF t%JPR 5$ZʁI<r2V1RV&o@E)J0L\@@īa^UoH@ *Sd̓MVP_vm2K@V<Z,kd(UD $v,n46-iE9i>p̿f̼ \>vG}6q~/W<:k,׶wl] 3%jy0Ϛ{]{>z̪f [ҁ [d,ޣ7A${y0N;g4gGSҴ}y ~.XVMj?s ~ ] fAw]{f5[ t1y:+ 3quC`y8MGZ~;@!KRYA% K#.q.c0hC'T1) uGY)@C5qyӘ#0>|z]) 0@R Ocj9e5H1M@>8t 0򁇤@z{~ ppVr'<7׳ו1v]|ܣYYG33nzs><>Gesڜ]Rw":Etn>|g8ncT(&jRt[ XK:$W1Xp4=)̏8;\7sjblR!n~0$IX5:0,I(@ V1jQt;| !l_ tf[e`sܐӠ( (5\T6_8!UP G ]$!pF1*RE(Еt.`&@E)@UrxOTӾվQ[ptrޔ=;3>ʟ)qȣ6We5|Q?p` ?Rc h0rK>|m\/6¹;\~0ގy ]ς/72yKA&E^ Z*VU. \vq"#l~@PV@i/} R@7@v^9 ʦ2TU0 R8M:AQ|f-Gr_d)Oh]?ts 'Ѝy%5H(r+;HRw"Lyl4>K+8y';{/g};S"{ko}ƏYX~o6.RRD ^fCtE 93r(Ag[1i̡å^ !nFĂdד v/N9>P*WiA . G"$ЛtNqD`<4\ 0@&T#:Tڂ2d66 Txg PD!G6 P5PU*B/T`!,N6w|נJR*e HUx=dP4HT0f ,@_'`Y/Rzֆ֖7z!_ <5ʂ<,ZA+0q|G>j,%G)Li ?\@eQ Hjz!%[s {쁐:M~[`$#]"ƣz}zh;&fU8kߚ]sH$u Pe!gl%g~=WU?<g*>\Npf;SN`,g ȏ,AmV=*j:RFjI Pr NUb@еXU!0uK]m|nj ڮu&^) 1RB*ڮ ZgJ`Z·SpRւkjZfD0$AI} _|@WZgE} rs C΅39c19>\uGeog3YdVP^]O :#> y1yy1]$;";r ]SNr{ ~Om)ϊn$;ywk$tkw[F&2 u&m\JO+ws?̶e{7f4 'OSv>M@-TKVpt:07AxV. @e`F$HX%Tr>R_` SfH#-ň%*Uiz&%wswS?%2غg ggYe #eGz5k#usDX-u=~/Gzq*}Q" nwOwl!7zԆQUT;6ľk[lty;vZgѲٲXEK[| ~C&X;X Pꤺ.hDe.u ]z1z{>/+S3 M}Y'>ThEc7]M hH:J;z+?urMG&5kW':ɗuo:ӓn[Vx6Ns Z 5W=9pn}=Ei fů [g, %JUrS`N;9W[{{^[ Je+o`T h`32T5}s|{7&XXYuKqh$ Ҙ6:AWh Fid^%@8f{*q;\\.p3C#::: R^*J]r7/ѭ?yt`<{g/DO|`O Lgktԧxȵ#kbDڣǹ"K|sh^1oQ"; @DDےFAR;wϼnkV|'"#m#1rEN3|]H~ X,0hN\}Aۂ6FPkrAU*|0(`3D''EBc{$P{̏y&|)~}8-׆<_ŖnfV%_ _fgJ"Ӌ}U!R~ilVMp5̨6~HV;ݰG{xm'roћsX= ܯl,1{Y҅lizEj]m^٠Ì~lYhI_眇bu*~oz?;qvϬӵ΅k}2q"% M>qlmmR!KUUUr QSSwq?Sg<Ϟ=S3gpM4440 S)\.WO²=!!4 `P`0B! Jd眬Z;w`vv3,_%6u?xIΝ;, @ `0-c,~ `rrҋ4 ˲Ҿ puOZZZ H֧ {iǎC[[^~\.L,kij|SSSl8F8ΟS%D(~ɨi~HHX'nF۷q+sShy,ݹ6QmСCbd2x`eYcJHWzqVTTQԒ @  cffKO:wtt@4 ;%QC֦# ^ D)N~?Sٲr@ TTTHYJ@*Vp._?VTx*XȠIW]]ɤ zd PZ׮]˺.A*0L&T0P@TW_tI$:7%#G'BRj$ B3P(x'ǻ*BLrY/7HP,}zT:: D#t$Qz9}t8 ګ$rZ5 J]7KB!ض]0zq1Q2ueH=TJp8Ij_[`Y>!SLI~B$`OZ4֢-%{a^C|*ӑ֖T* m]OFUi HP)cW,--W1ɷ*TTd{{[;nr٥lɚ: ]^X* 7*٬2jWW…#7\^;WNTاL ߿` )2:Y*?9XNKSHлwF d2?%)ZMd$~-lʚQ۶*4*[|h\iL;)eAU]"ömk@G80::Dv*{ԣAh=]G:7fRGvkb۶fMɪƒ1::2:k-Jm|ʀ Y`f;^ɓu>i d"@cT F}Q2uP+iTMeyKU$Y__t=2]+>b߼t#^x:u*rCh*E Yjr /_zYW=q™8q"?L,>xUTGpx4cnQeZqv6>|Eoz5k:W}j,z}*L)2e _UOrD]]>&,/f|>,&,//?c.ieY5M3+r9y[[[hnn.&t.UK'&&×/_ Kr+͡G-u!S N/{hE]]]D" mcssLccHz#;Yx""}mm L~NYl(8Ԥ-&VVV0??˲i|.K*,-b1TTT 666Dt/Vd\"qp{_Ji7n󝁧-wq^,׹wߚi|esߑpRBD_:[~^#|UX_kOWQ&0 V֋9d1vIENDB`idjc-0.8.16/artwork/mic_on.png0000644000175000017500000001065012630014515013102 00000000000000PNG  IHDRE!fesRGBbKGD pHYs  tIME ;y!iTXtCommentCreated with The GIMPmIDAThCݚy]U7WIU* LT"qA ""aFmm[lleHDQDTdA˜ !TP;WTWۍ~ku:{ϾWx )Д95Ȍl/lBraQbCLfgI7;_7"()uGY`l;$+B54IeyAさ 6K.}3oŎuL`K~7Ծ2t}ۼgVX|H*`^<,7cѶ!\.^R"B%E`a1"֢bD2chd5bo!}bgѢv}m/W;:=xn:~pӘHIlǧh.솱[a3neRIA-G'MTful~W+RzOzo`3qgeDVd2RZ)JEqiILtUUbkcZkk+1F5ƈ1ej!VԈc7bFu)cA9sd$z2Mt-@QQp,rDSUS$nE;g)όL֑Iv#8vEv Aug2+AAJE*Q1U4+/ὢ^QEAA X+bJ\ȫȫ`bQc5=xЭ+ձw,Ze@s&6;u5)^x<س|-޵ǯs N}3r8lR###89D"!QN4JΉ8A!^@F15VVXbkD1T O!b#R=k(WR";hnw=G˝+CD8\LcV_ u<<-N1\'>pg:ۈ_Z?njsW@АWU}*"\1ytX(Nޫ;E=8;pju1 րC^UZݚQc쨑vT]bLUHc_%[]c|Oec2b8lwY]V̚(9-VSyN8Йg9+'aj8Z+ ڒ^UUGUM88x^:x_ uFֈ1` XƈZ+Xrfɚj$P!i"ཆO=S5Lv]MXM< + d%ܸ$c>܏yA֏~'ƚ&\S*2cj$ ľ(Lmu.~twpTf2keU$UCꨚT{bU~/B UUx cdihmd^U/`MXc;rwJ@12;};rE! ܰGxteȍ-θysLTQ}Fٱ}^.xEWV00w~u {뺚لL ZiMͨީxNjN'S$ckEEZG~16sOD9|02Ah?wϘ?>e@Jpz(&$oq@?ЮʵjSr%~|.HVQ3ZbU* )^;EQ'UN5j|;MkfjF^CG puwrӂ+9blv,P3c[@!j@ZB:f+28Kyex{a*PߞҰ8؅p(yTޫuN{;)Q8JuA0լ}PcHiwSkF6OuIy 9pLV&Էa_>6LX vy<#L֑)A\ Eo!ρ끵l2(bEYߟT?%12ZimүQSUQ^r꽊^9Uňawc:ܼ?g/c?KpʀɿaѸX, \qx2l Vc,#}'Zn5=̺v&5I"YI 53w!Sfq|wUQ4[VElV pIzN Tc8jZ Ehtjsꝯw| #pYCI7UaU L1|8KT+ޠ[`6IYj l\'S1caP{!C޳xF'\Qkqdp0Nؤ+L.4EC֒QOr^GN\5ۡ^9eۓbjrMo/t' ԍ އMFKm'4Q DCyF=@'̯~&3Ej5^v}#S1ρx[Z8&hM 0f's4^.׉qy s6 M)Ylc^z# ٱcTkL3b6::qL+?:Ćsxu ^${ בBmrA&rs^Uqr# {𧿎44Ec~ϝK ,lɘ*'czo;9Db ml^mu6&6>O"Qww)CղII~ꛞD WJ᪀1gqSغM4fvbCz֓u0:8zX{;礫_L͐Ǹ*aL RY=4ԾL&5x[jbkέ%Xy MRb8fw0w'nR 1IENDB`idjc-0.8.16/artwork/led_lit_amber_black_border_64x64.png0000644000175000017500000000577412630014515017777 00000000000000PNG  IHDR@@iqbKGD pHYsaa?itIME.tEXtCommentCreated with The GIMPd%n `IDATx[]lfvֻf؍cd\dSB"j7I+U`vFT(}iHQ!{U0lYAZ{%8tDhw{`e u }{C+tuW@:n yҰAWнs01ϒl2F,za]WlΎ<1йmmm^&OF[qj\eͮ"y K`=tu-oP"$HaT+Nbsc%-E-$hk aߛ¾gV@ӭĘ <Ypv7הmd em-Nk5Ppnz{27 A-2t ?}J5F5@.B + jy`\ s!-vr?=%_3ߺUk1l Xa!d<>֖tKUKW4FY~ xC^Rɹ8=j[@W"G'#5Ȩ FXxext:Z;0FWve T]zB=oHKǷm)`T T h_q,Ѷ^%:"{?h!b9Y:{T K'ߙ"NhA O\u8#Q9 )`OՃgdk< ,е|"VMnAfܠ;|Luv)7XhdYK "V/6B {('o fyPA+UC3* @Wuk2#%ASy!*Լ*Q<6`-y4\GC!8XuAwhwԀ.s1=,۲13jVR;:R-$1Re&@:0>WUT5rSG䯑(Ev#*OBh9p = Yb q#X],H,=D/%V kW5vJ: t`J9`zlM,mXn`'{2Cej&=@+8"C@-֠(.!V1\bf2eqɨ.Qk[:$d?ܢ(/U N{ҢLH')>鑺љi#mN|HR-(6{[ET4c<ήb %c:{lEHk{>8!CdDY$$8>%y0b  l,kVꁁ0{5Uy7WQƱ<(j^\Xy 8 $4qIH$mc25ˆ$`/0yI2/HX"OJߕג'Sٞ)jyAWZa!'m@Ha$)|FG4* m CcV45k~mej*`(}SL"%Xu",]O%ISV`Q[X9xǹF FҌD'?hl+8')xF10t*za1.{ mbzkQ~ij_ۣ2UIƂ?NrXPw?>On  xnRS5Ϸ&[^|RUTYxe\.1Ms(HrV tU{!=*Ƞ\EN,K%9qwũo ~/GuadԄ9V%ޒ'sV  T"%|cm7I9I*͚9` EGǩn£`.UåR_ H%lE+^QX',}X#l齧>A d2Y?Q 4@f@)LASL&[5EXnB=Ŧ3UoxS*! OHؑC@ȡU.&hX9Nytz!vJs~[ j!IENDB`idjc-0.8.16/artwork/greenphone.png0000644000175000017500000000460512630014515013773 00000000000000PNG  IHDRdO`bKGD pHYs  tIME/ IDATx\MW=U#,> 360 bᎥX`ft~ldC%qHzEWgWOwMwuK*WwջsѶʸ/o @R`!g1fHACPppQH U +:Yy[ ȏ9A,W?xĄH(H 7}GD$)˝/ IrQB9JG,7QSYkv>2gID&H wP1B˅H\T:mA)ɜ90 r2`"SLfXݥ7bV.G"[}tHs)  &oGKj!EVO@R kD  H1ȔF tMĦ3 sp y-W_ܑd_rc@%9-OG.O\ܜ#F8. 'YIq@*ud.2`N ,,($ժeK 8gNѱ? Sjm|b{"ЋtD=$.xqi@^ GOa|o@ YXXYwvk2E}68ݹ$bP$ad 3Rf;(0 c?Ɨ5K$?4YmM7{ ; AleͿ@g ^ĐჾL' aAc>NhgJAxx.Uo !1;!b2me z2n ޒ'k L緕*$Hpz\ a"&>7[%l6̇me'b,נӇmˡX")rK2XMxFixaB0bhKnVPlhz݄knOX7\P fi .-@hd܏|} tuxV`!a/\%Ntr:}7.AKڃk' >1(ږ WyW_|k=%AR.\@d'%% @|A˰ UAn *}H"̎"*| Ӻ#kOH" YVޡ q@dak$T|kwv% /V,uZGr^}'4 WI6o(!ťABGp -GNO\v F Z+| ίO^6~?~R-hcqz^ז,1JPuPV֫}+d{sM0;x],rͿB?#W8û<+wݻ@twm|:?qӒ-|a$l*9Z]syQoO@~^m sx̮vِr'7ζjcme~w _^#۴\h'. ƮPr< 0ږJZ0U[Eu2dTd06jpm 72 YWvyY|2 ǟM̱FPVgHֺwk2n%&@~ ` ]]vfo Y`\rxcl=UWr1M 2X. ѧ74d5hcRmddF@FN;qd{db ;2h]?u8dQ IENDB`idjc-0.8.16/artwork/play2.png0000644000175000017500000000075612630014515012673 00000000000000PNG  IHDRddpTbKGD pHYs  tIME cd{IDATxݻu1 EAζի0;qȩ/y%p~<_|>%7(((((((((((((((((f4F#@6H0GL2 ='LQ2ZƂ 345 ì¬mmZ;Hr$tKBXR}}b3ign@@lw$ݭo@@e|4xIENDB`idjc-0.8.16/artwork/mk2_cross.png0000644000175000017500000000070312630014515013536 00000000000000PNG  IHDRbKGDtIME4 g#pn%XPM3M M^eyj;S! i\pDGҒyWO=ϫܑ"n䆤}}jn-/nL'L$'(] cOZsDM2&f d,"훠ATI.iHfA5+!9Հ)=TgIhX9 fYוK0sD$57Ƙߌb ]=։=91:oq~;P,(y([kGrN0H^Zs`i}IENDB`idjc-0.8.16/artwork/jack2.png0000644000175000017500000001172312630014515012632 00000000000000PNG  IHDRd;bKGD pHYs  tIME*<`IDATx]o\]jcIZ  ~!BVHUBK+P@}-I+ZJL@8HDq\r̜={{3xfVdf$}kod}E[ k?ARCŘ&.Y]F4MLMM|\.A"(L&˲fBnܸAvzoH uEjYr,˂<Z mhl"ɀVd`& @V4M)VUUQQ9&(, |I,zꩧhx'p4M癦 M@pFFR UUa<,FGG (򭕵\\.cvvN(@TBTB>ض;w\.Z<躎|>RJ%~ReK.Qp-l޼ϟ4fffe PTP8a0x/hY7$fHJʀ!֭[ÇcvvsssxwpaPJ9:\y.eA4AzΙ*nYb]|u4 h\.B18i\~ld0P,Q*P(`&Ecrd@Y.\@]ER(, B\iGytz-`tts.f6:0~0NLMMQqPA)i( |}uEر333ᅬ'|BP4&,i=7ޠjBUU `xxbqeܹsZ 6m}J)&''177RAh|^y{CCCظq#<!p]z fH6l؀ׯ_۷ocB#MHL rzQl߾CCC|}8*ܹƐa``bׯ۷qUcppR mc֭+ZnHOiلmC=y8sСC <(E.C6a8|0pUlQ.QTPV9J%۷]Z${hD\aDm$ؖR;vʕ+y& c֭( uZ\.qAEQiǿvJjrreA0"d]7l;i&ٳ.*&&&w^ r#RVa6|߇0 X4!k>3h4xŤ"4M,& eY(J,QTd~zضw`Y ޽{W5C*p օ yT*β, 4.lfo<`g7q5ضSNaEلi, wF2<&V c(1\8p9L&^ɀ}e ܉'Dd1,mVczzmʕ+xǾr u9~!gVhq` 'jF `6NONNRf :`a4}|R]0Pi~'oF)" |?Ӳs|Ǯd2d2 hK1A22{-fBTUƜ4!!4O|cvuy\!lUJn6l ɀw  =]A>Wqc>_SSSu]~x[u~E*%Uʍ{`mۨT*<۷osɀ <`h_Y$ ",8==yApgF*ݲCBj{A ϣX,rifgj q.vJ 5]1`@G<H?~L3÷00g( gjɔRhLy|iطo_WKcR+_\(VlE1[i2v 0 4eYBh4\n5M?RWzZ ÇJ)q.6mmR!al`-' 8vo$ƃwLY]8N$`fb"ʬÏ0Y@.χϙ0nN:gvcsx0g %*at}'{a2(Dw+kE 6e~`_c+308UU6qPT`6 u]_ q -LvӨTz g}s>B ~5+ n'"Npq h4IT,TVTpȭ^gn䶥ﻋmׅ݊^۸%vn$6Ju!mH46)*v$n(R-MFߧMBxCZl˺X_fw$s^# (s3i{rnyL(&2K[J)\ōlm.SjmmŽ6 `iNVn%'N6bǸen3zmvC\IB&%]0y%nsZ0Y[tCTc -uMbxit+"vI/ӴMFڬar].Q29%֠ yi%*$9Ir4I[꒘27FoI0&i"$a.HX:K#ZxK-U$ze/8w{ȭ^3/PJuLN_;ک2HMە\sTmZTJz@nEF@&.mI&#v$Rm1z}Ғ˹NwIO^z=ƀG](a$4`Ircv[r 55&'+WdIӤnݭxJݦɭt}g.N6Mn %6dD$/~TRh4me;82!!׃''|>&[~E!8Xcu!xx>z*BRi6./g4(x}Ro #\dĹNuD:aR?K|}:G?Cdo7+?u>?. 31,Y~SAxd1L r+KV[sto~A%,YzܲlS.IENDB`idjc-0.8.16/artwork/mic_unshown.png0000644000175000017500000000525412630014515014173 00000000000000PNG  IHDRE!fesRGBbKGD pHYs  tIME 1\!iTXtCommentCreated with The GIMPm IDAThCݚ{pT?}&M60$ B@uՊ:uZ>Ԫ!uZmnoѪAA@$K Ɇd7d޻j`O}{^ Eq A|[Qj5L*5JS8@`D1O, >܋Cq{~əIpC$v h֓Mg8=ƳT=ߊ6Xo,U)wsa2ЛGAC*H ~h=v _'ω\ӧxu}:뗴훅4@v _~6J|)17}Q2(= V UԮ~y 2MF|irE\!J*#xT[ҁཱྀ e"[&R{377( b}o ˄J^86>V7:'W<gl!o](i;"  % g.4u}6hMW|;27xObb6KɲZdxά%dY l! 4T,pe1y]T[Qo[OuH&6#cQf0Uјv` I- vᩊOG!%B0ӅAf쵈)!B) MԄsX:aMxb3;o҃hz"l4ś̩Og8P3|n=;բ欃`-?wc2*3s+l'«X\9}ፒ)gII6P(`zn2?@x?W 5ߥqcB+<׌Mw6gt8j8[xqSrk_Z'T*,4ugnsni*/p z#li ? <9(I+y*X(O&GoaR!8Xa#v"w9HAg:o2Bاxy$G]dh MJ:7߁PDp 3V%J !Eam8''PBxBG P%/oKK*65↖9Ȏ5ʇ0U@BHi:H<.?2 ,#S!0 AK1M!.%~E-%F5WoO)4)Rly5Ji"+GRj TzH-1aD> N1Qїa`;P'%z]gB牗ׅ/U+yays\z`Z:FRLJ^J]UtF A$p`T#nvt8chE2΢Q62{7b,|&29i앒@γq~ig}yVV`tWPpT{ 'z$^$8ݲ D{-&%cvB+b\j%zCd8p)}"LFFJ6*[z?eIie3ȱ1ZE?+;)>/qtq'ۏZ #h \= t 8y4@@Uu8NYq*"kQnHʱt.eJben%`3@ VX"t5By3@IJJI4ܖH7%^=ˎ70a`2kjL*/ T tbFElX.IENDB`idjc-0.8.16/artwork/Makefile.in0000644000175000017500000004507512711167210013207 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = artwork ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_pkgdata_DATA) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__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)$(pkgdatadir)" "$(DESTDIR)$(pixmapsdir)" DATA = $(dist_pkgdata_DATA) $(nodist_pixmaps_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ COPYRIGHT_YEAR = @COPYRIGHT_YEAR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DYLIB_EXT = @DYLIB_EXT@ DYN_LAME = @DYN_LAME@ DYN_LDFLAGS = @DYN_LDFLAGS@ DYN_LIBS = @DYN_LIBS@ DYN_MPG123 = @DYN_MPG123@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXT = @EXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GIT_PROG_EXISTS = @GIT_PROG_EXISTS@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ HAVE_AVCODEC = @HAVE_AVCODEC@ HAVE_AVFORMAT = @HAVE_AVFORMAT@ HAVE_AVUTIL = @HAVE_AVUTIL@ HAVE_FLAC = @HAVE_FLAC@ HAVE_OGGFLAC = @HAVE_OGGFLAC@ HAVE_OPUS = @HAVE_OPUS@ HAVE_SHOUT_TLS = @HAVE_SHOUT_TLS@ HAVE_SPEEX = @HAVE_SPEEX@ HAVE_SWRESAMPLE = @HAVE_SWRESAMPLE@ HAVE_TWOLAME = @HAVE_TWOLAME@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@ LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@ LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@ LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@ LIBAVUTIL_CFLAGS = @LIBAVUTIL_CFLAGS@ LIBAVUTIL_LIBS = @LIBAVUTIL_LIBS@ LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@ LIBFLAC_LIBS = @LIBFLAC_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBJACK_CFLAGS = @LIBJACK_CFLAGS@ LIBJACK_LIBS = @LIBJACK_LIBS@ LIBM = @LIBM@ LIBMP3LAME = @LIBMP3LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSAMPLERATE_CFLAGS = @LIBSAMPLERATE_CFLAGS@ LIBSAMPLERATE_LIBS = @LIBSAMPLERATE_LIBS@ LIBSNDFILE_CFLAGS = @LIBSNDFILE_CFLAGS@ LIBSNDFILE_LIBS = @LIBSNDFILE_LIBS@ LIBSPEEX_CFLAGS = @LIBSPEEX_CFLAGS@ LIBSPEEX_LIBS = @LIBSPEEX_LIBS@ LIBSWRESAMPLE_CFLAGS = @LIBSWRESAMPLE_CFLAGS@ LIBSWRESAMPLE_LIBS = @LIBSWRESAMPLE_LIBS@ LIBTOOL = @LIBTOOL@ LIBVORBISENC_CFLAGS = @LIBVORBISENC_CFLAGS@ LIBVORBISENC_LIBS = @LIBVORBISENC_LIBS@ LIBVORBIS_CFLAGS = @LIBVORBIS_CFLAGS@ LIBVORBIS_LIBS = @LIBVORBIS_LIBS@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPG123 = @MPG123@ MPG123_CFLAGS = @MPG123_CFLAGS@ MPG123_LIBS = @MPG123_LIBS@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OPUS_CFLAGS = @OPUS_CFLAGS@ OPUS_LIBS = @OPUS_LIBS@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYGTK_CFLAGS = @PYGTK_CFLAGS@ PYGTK_LIBS = @PYGTK_LIBS@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SHOUTIDJC_CFLAGS = @SHOUTIDJC_CFLAGS@ SHOUTIDJC_LIBS = @SHOUTIDJC_LIBS@ STRIP = @STRIP@ TWOLAME_CFLAGS = @TWOLAME_CFLAGS@ TWOLAME_LIBS = @TWOLAME_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ idjcpkgpythondir = @idjcpkgpythondir@ idjcpythondir = @idjcpythondir@ 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@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ dist_pkgdata_DATA = add3.png advance.png control_c.png control_k.png control_n.png control_p.png greenphone.png interlude2.png jack2.png led_lit_amber_black_border_64x64.png led_lit_green_black_border_64x64.png led_lit_red_black_border_64x64.png led_unlit_clear_border_64x64.png next.png note.png pass.png pause.png pbphone.png play2.png play3.png prev.png rec.png redphone.png stop.png volume2.png logo.png icon.png speedicon.png crossout.png classic_cross.png mk2_cross.png listenerphones.png mic_on.png mic_off.png mic_unshown.png mic4.png pat3.png headroom.png repeat.png nodist_pixmaps_DATA = ${PACKAGE_NAME}.png pixmapsdir = ${prefix}/share/pixmaps all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu artwork/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu artwork/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-dist_pkgdataDATA: $(dist_pkgdata_DATA) @$(NORMAL_INSTALL) @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \ done uninstall-dist_pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgdatadir)'; $(am__uninstall_files_from_dir) install-nodist_pixmapsDATA: $(nodist_pixmaps_DATA) @$(NORMAL_INSTALL) @list='$(nodist_pixmaps_DATA)'; test -n "$(pixmapsdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pixmapsdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pixmapsdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pixmapsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pixmapsdir)" || exit $$?; \ done uninstall-nodist_pixmapsDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_pixmaps_DATA)'; test -n "$(pixmapsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pixmapsdir)'; $(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)$(pkgdatadir)" "$(DESTDIR)$(pixmapsdir)"; 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 clean-local 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-dist_pkgdataDATA install-nodist_pixmapsDATA 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-dist_pkgdataDATA uninstall-nodist_pixmapsDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ clean-local 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-dist_pkgdataDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man \ install-nodist_pixmapsDATA 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-dist_pkgdataDATA \ uninstall-nodist_pixmapsDATA .PRECIOUS: Makefile ${PACKAGE_NAME}.png: icon.png @cp $? $@ clean-local: rm -f ${PACKAGE_NAME}.png # 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: idjc-0.8.16/artwork/listenerphones.png0000644000175000017500000000155212630014515014701 00000000000000PNG  IHDR* dX=sRGBbKGD pHYs  tIME $tEXtCommentCreated with GIMPWIDATXKHTar'C!̙ AHD`YX"A`-)UX{(U2pЃ @ݤIyj"bL3S΄=~;\X*W",3uUZP\TZ/)]l\h3पK*"u bSq9l@8b#Тϗ TD̓qU}Wdlm@ 8% pݪx9nപ^ɶޝcn,$ @,"+{ݵiGDqXUog ͳ Uq *"~R'sUkZ )ģgm<焍-n>JQZ>{ Z?ũ7Mpj~-MVZӚ,Q7jjj#0T__? *t_ٚ9gt]8UeQrPSSz`w**[L&ڑL&bq&ºI+~١r}o˫x< cccmP(Wv 5_DG"[y¤l>Zx0v𨲲2<77ӽhW"@ T8Чl:ep8ܙJ<p^ZJIm/IENDB`idjc-0.8.16/artwork/play3.png0000644000175000017500000000076312630014515012672 00000000000000PNG  IHDRddpTbKGD pHYs  tIME4󹰅IDATxݻu1 EA65e؉GN} +C>_O>!7(((((((((((((((((f4F#@6H0GL2 9'LQ2ZƂ 345 ì¬imZ;Hr$tKBXR}}b3ign@@lw$ݭo@@e|^hUIENDB`idjc-0.8.16/artwork/add3.png0000644000175000017500000000073412630014515012453 00000000000000PNG  IHDRddpTbKGD pHYs  tIME:MiIDATxA0@2L`0yCGaᲮm a r1J !őm[%Q7uk#_SB3D!f5u-,1CZAHb[Dž%fH: QBqXJҪD!m /uϩB3d:i%9#+u8C7rwr;yH" @!e7UvA QG]!*QHM_BQOJRfD V:QBo QG~!*QHMD!"D% I )jB:W D% #;,!$WҭP!*QHaA !s!* u&;@! Bi,8IENDB`idjc-0.8.16/artwork/led_lit_red_black_border_64x64.png0000644000175000017500000000632512630014515017454 00000000000000PNG  IHDR@@iqbKGD pHYsaa?itIME+htEXtCommentCreated with The GIMPd%n 9IDATx[]lWǻon$KjuېBI_.qxiA" x HPBJx8P+ʏkDv&i{owgw~x{fܝcHWsgvvfsνoF jiNQ8)pP`4͙ w0I]pY4Jqk 3i+_DiG+N.mpHrJXܾv8ks[BnV [-L~ێ=OV*gZ J1gL\4Dr1+fGMm HrpVÇ0$( ~q%|mi  A==P@4 TRomP`I]H|Dˈ+ ]n Zֿ x}ǯ\Pq]@iUQϑpTA8r:\I$G,պ Cݳy*Ù'n 0 ' j a~  D`H8hY֙T >} <0C'Prd$U_&iZ7 HXM=na\FG Te-},\lHReIB(=A}:OoD]*Ls5h}5Z]ň4i@$=.i_(ĝL&G:G4mfJU0.Y(k!5U;4/RiPHn69Y* H !V9iW?IMYw\8dQiR uBp⩥%Odp4fL qo$A.eS۶-yn:~|@Bf33KI(|:v&qp K1/ǽD4ԾӉE$Pcg'>]mM2&[M\Użz#*aDLC"IݸT` |aк@9p#]sf ̤My_+1nǦtW3rݸyWrv޹x<ߏoW*y!s'Tپ+;N |$xуID੟0,XoSzm*FDбyPH%]+J<Fe-ˤNb1I4,߆a6ؿ+sv*)/^JI@s ۧ)2@_ٓEi/ɡ_qqՋBܣNCzѰǏ{PՓ-MٳDr3Ykz |T酹s'9 eYqT̩',/JbI$1G&5C]I])}2m4eg뉉\}^vMA l ̓~ܠeY3aO+,j ٢嬑 $=? kWfc ySYwx01l`[Ȯ ~{| Bsdu௔]SL!c{ >BRK4|?XA95W2+D.Lyb؊Pjˮ'`\04'9)6MǶ~+_LNaJ\$eY֪a;wbGZ35~~BJ-$}ٜBeǰ%4_]*1˲0 c׽RP^NێQ娜'UuE\Zmu Ֆ/m ./cobI˘{hkmߎw*kl ]F>8 86M8K36 nJẍǦL0qTPKfIENDB`idjc-0.8.16/artwork/repeat.png0000644000175000017500000001244212630014515013117 00000000000000PNG  IHDR>agAMA a AiCCPICC ProfilexwTSϽ7" %z ;HQIP&vDF)VdTG"cE b PQDE݌k 5ޚYg}׺PtX4X\XffGD=HƳ.d,P&s"7C$ E6<~&S2)212 "įl+ɘ&Y4Pޚ%ᣌ\%g|eTI(L0_&l2E9r9hxgIbטifSb1+MxL 0oE%YmhYh~S=zU&ϞAYl/$ZUm@O ޜl^ ' lsk.+7oʿ9V;?#I3eE妧KD d9i,UQ h A1vjpԁzN6p\W p G@ K0ށiABZyCAP8C@&*CP=#t] 4}a ٰ;GDxJ>,_“@FXDBX$!k"EHqaYbVabJ0՘cVL6f3bձX'?v 6-V``[a;p~\2n5׌ &x*sb|! ߏƿ' Zk! $l$T4QOt"y\b)AI&NI$R$)TIj"]&=&!:dGrY@^O$ _%?P(&OJEBN9J@y@yCR nXZOD}J}/G3ɭk{%Oחw_.'_!JQ@SVF=IEbbbb5Q%O@%!BӥyҸM:e0G7ӓ e%e[(R0`3R46i^)*n*|"fLUo՝mO0j&jajj.ϧwϝ_4갺zj=U45nɚ4ǴhZ ZZ^0Tf%9->ݫ=cXgN].[7A\SwBOK/X/_Q>QG[ `Aaac#*Z;8cq>[&IIMST`ϴ kh&45ǢYYF֠9<|y+ =X_,,S-,Y)YXmĚk]c}džjcΦ浭-v};]N"&1=xtv(}'{'IߝY) Σ -rqr.d._xpUەZM׍vm=+KGǔ ^WWbj>:>>>v}/avO8 FV> 2 u/_$\BCv< 5 ]s.,4&yUx~xw-bEDCĻHGKwFGEGME{EEKX,YFZ ={$vrK .3\rϮ_Yq*©L_wד+]eD]cIIIOAu_䩔)3ѩiB%a+]3='/40CiU@ёL(sYfLH$%Y jgGeQn~5f5wugv5k֮\۹Nw]m mHFˍenQQ`hBBQ-[lllfjۗ"^bO%ܒY}WwvwXbY^Ю]WVa[q`id2JjGէ{׿m>PkAma꺿g_DHGGu;776ƱqoC{P38!9 ҝˁ^r۽Ug9];}}_~imp㭎}]/}.{^=}^?z8hc' O*?f`ϳgC/Oϩ+FFGGόzˌㅿ)ѫ~wgbk?Jި9mdwi獵ޫ?cǑOO?w| x&mf&" pHYs+ wIDATxy]5ԖVksݿ_>wZ뷾^{9?"fe`Pun=&`8ヘ&3P`8ヘ&3P`8ヘ&3P`8ヘ&3P`8ヘ&3PQ+1lؔ !EAV'ؠ6Q r2TDOSڰB`90л`@ש~1MFu =d(^Dw`'@`BsVwC+, 7u V֮PG̯ӹ!`50~ik@Qw}Ct[ Ŏ`g)CY6s84<H!Xp-Om%?_\/QBP5$0 h8748(T$)΋uɾ w #@p<"DuԻl:?܏-`lO;R&ϔ|쬏Ávu͏%@NX'> p%>Z5>$I_lȏ=7' E&=~@6uy맓4ZÙ@O$+Fu^=TAki cF@'Af;* +gرpsWLb2@r#[3[u\O>[*GptWWaMeϦS7QGK''m[Mš`h( u9Wسt0ժNgh3.ʩC/,_bzMGÕNY?VGٛެ6z" W=q"kz/x6cGd +.ʭ>pGSR`2N}þv{-o aۧ+v$[rxT (|8*֧9ܛv]#mVz=MT\РafVopc>%;l:8u="E(,כHMxVr>51yoۺӣY0G_LGAN'=+0BxѣVG0y< UڏI4Fye6>J\d)+teBc@OfuV'ZU#$m<{ܛ` yZ` @o\MzŬ=ВZoxAu~ /Zg֞ ,CXCf` L }<#ѤLv쬳c=>}2sSд}ޓ]#A*;ST[ĖOTNj G@:G.ۑ:zuȁQ֓8 :><ıb9/F42@*1ta02GC3z3ԲFMdu&[> VH9ۯh0{(2 cf5 '΅.萞_j,]7%S;m`DlG7p3]g\||A9uyg@ /24VF̓^ #9ٯxgh 1r0$# o4`(X5QgEy bpJf$~@,J_DO5N=AE|Y6n@\&*' OW·|Pѣ%6vJN@iɏ&~鿙ʩkv`\wO/dW9K~Q|.CzgT$`>Q/,pF́Kj4F]&0hJRfqmALCWŁZ %7.\ hݚ. ͼPUݔOϑfQX6Y6YdJ@qJn$:Ţ @AkG-!Zm_xx ̌8, H D4tO`b @E] "m:Z"ugq"vӣzhd> tU2fhWDL`"X1Q<&~ jk0V%Ňla0tJYLKY؀Ma,]m&ҥ,l&|6@R6`@X>KW t)  ,P f(]lgj3.ea6tJYLKY؀Ma,]mcsCԎIENDB`idjc-0.8.16/artwork/pass.png0000644000175000017500000000031412630014515012600 00000000000000PNG  IHDR5~bKGD pHYs  tIME!IYIDAT8R9 a:ƳRF*)L20yeFTU95&_5-jy19pEKZq“< ҳ2 IENDB`idjc-0.8.16/artwork/headroom.png0000644000175000017500000000037112630014515013433 00000000000000PNG  IHDR-sRGBbKGD"y pHYs  tIME 6*U7iTXtCommentCreated with GIMPd.eTIDAT(c@`b`2Ft#3RR[L;8ӄ3YncD2vcDXlbU!rL0b*"2N@ҚIENDB`idjc-0.8.16/artwork/led_lit_green_black_border_64x64.png0000644000175000017500000000642112630014515017777 00000000000000PNG  IHDR@@iqbKGD pHYsaa?itIME. )tEXtCommentCreated with The GIMPd%n uIDATx[]Wgmgn7iv[mh /& /-PTCSUBT<>A<O%)@H-OTjv)6̈́:fͺx~.s̙뙱ws5؞;9sh[:mۧgv!p@-pi۶?2Hm2m{ja8a)ۨͰ]p4>j; ɭE8uXZ3;΀VU&OظsOv\E m?#H7 ts_pouOB 8@VL1۶׷ * `T-FpݻS4fpZFB N?48Հ8 h)?c+X Z͏DC &ۍ 4ӄkk[AжO{ K!u&6@$@T,oշߖe>玞7"HFkдd5k1S8`z _~v$p84r{|0+k`B`f@5]6~AAI A= {-9= T]8ݳ3mGF$c@(B0""2D}.VqL3/(/_H7סc0YM=%R Q3feOtpl? 2Q=^(^Bu)0``1SɦAb giig^٫hi˲.83 r/E6OO05mHpҰ%R f??PDCb]e,RqN`Y<;=xKO- {zI{D,$ ]3dwT4Mh:zUTW1<* TDhυ'&%PF9>tN7ÙbŒta8?<ɀVuu+zDy3M}4 _P2`Ґ )5!՞b ]^(-:8βʀ' =+`K+Xj2w$+$a-Oj\ /C@IJ,XA@؀r n B)}־M}GZ.+mv6MߏC,ҡsPH§?FpS־]mqA"  |ƒA|!L1;(:hA4 b L]-0O MxV?s8C$ͫ1J$*`v ?w|&zzo9rX߷>+im^DLJ/fC~ #HĂAA}B3l!OT5"4I.0>iJ1PJ:tOݛ'I*3S; @5 Ғӝajea@e~>!-@p|"?jf uR:yy=7WGpPJD2-5OKG3XU^"2,[&SPt**%5uonH,E:0IۢFo}w Lť」C*:sC=pc~O^1`PaA8'SVN Q̺Z >XX& $Tx4`~|? ԲY L:VFeLJY! >L19 oP c\"T.WN(cp-Έ3<%rm:*f`s0YzLY,SV@uvk:?Rkh_5`r|TF&}ζW7Jq7,˚)*꾎=󪉵{s"纗qn{6=4OzKJ +?6Q{o,{g7IhLa9 }w˘{isc/|,"Cm\{xLjV`!Dt~7Ru7R`w,kFp.T:P^-yƟН xv~X;Qxk`jo0iLw,#Z.?֛f[yaGm}v~Gr2Ge}W`0 J qm쟮奩DKj}ȂV_܎!Z{wXƇ܇čd:[Fm~x_c}ZcJ(fmć%IENDB`idjc-0.8.16/artwork/logo.png0000644000175000017500000003361112630014515012600 00000000000000PNG  IHDR FaibKGD'"\ pHYs  tIME  !aGtEXtCommentCreated with The GIMPd%n IDATxyeug==18 PhL;1-'J',e*dˉ\R$IdIR @A8O`zFw{c:ީz{^^÷e86%;?!̶?^l\֍cxV ? ?f2ށ0_q7Žc/ WaQ ?,{G̭o=x}7[co >{?XoHF\ |p]/W @1e@@(&ˢ!1] JD]<(x#`A#XgL#,u5*qˡ6yxޟ$`w49c(27np6CH( $)$Z[LQr1cqSI$@⯄mw_qoFFc2O= iǿzJ8ʢV)\cx1FYǃ8> [BK0Kʒ"EqGO =Z6eiFסj`Ϣ8Zxxd+kյ n&Wb(&*EagUȺHTZ@x ĠLB*#㓮:SX/5qaeg_u{y ,D(總L&CRw˼:UF CFQ >.6>Bυ$T8pPT@Ls?$|s$d'79oNWoLUUp  |xGģ,K~,[5dԶ/S"N.!!kcЏ벛<,P3^1Զ.54O/29[aJ(s+AQހm}x$JעC _ 1B1 Mp̾:1¨IdyȌp%;/+xV(-yx갋{nIZ2UJ+Z@'ZIedyfOj!0q٦:i)3  $VC;eS|b1.ѨC_HJ^U I-5C2bJoNYY0.}z C"G#x%'avb=9c(KQ! ڋFeAU5 of3oysw4vS߆eT[)=UOkk%pR?.ɽWPe)"YmiKap8duuhUzKπ З$2.vy ~^?$|+!$$]6YXUUQEXdNbXڗ\G= e#6bꝦ*ZH?C-H=4'x2%1jWqLi5&B*<t/eqfY\au>ys@}<$ Lʅ?GÙae3T13kǨd{kz,g4[!>w%ƎH]{ggI"WO|ɇUUKgHw{~i d~PUu+Yؐ|쬫Athֱlls玂۷gl5!:exj28+\LIW Dj_=^Ȓ(Jirn߾TDW^\G |TN'2M.$1kՑ)5x DU6kHt$ qE@aEe0===ai,AiHPw>ʃ .YHib):]d.7bW5|!ݶ~ 3ʌs?2#޾2gP改gƱm`E|uq~}в!`R{BU6]h$t-~&hK[^^fyy9]Ge_)}-^@}7A* '~.B\ AoA)Fuo:i.\tݟ*ڶrWW`Ghқ7o$CiNd2$oxanuuRpEN>"ϩT_h4j5P@z z%oݻٵk' .sv_l߶)6oF^dy{Sϳ©S8q8Ga3pzqq,-QB 7[rA+ ]t|-O/:3.jX:aiHWRv5 4IVVIC7or̙.H>6m ƥL.sqHpNKsm()f }B$=Čp¹ .PHҀ&Y׸4mڪcKpJ.7\ś>q _΅v^v&yZF+طG}<{O}K?}:vK#9ǖ^';ϥ9lM\O{EPm֗it`pS:o\āQ"2844w3ڵCVrZ1l*SmutH+i22V7B¹V;Ҥ|3gΰ^/BHWxѢP233._jIi_CӼ"` U? )JDEZh]BfA 繧 cVVVY[[]w\[沝y~o0w+<>|Q9x߲0׊qI%skNZ>y2K-7D.tikAykA.eN(bv kL 69Ѧ- lmY^IX? VྔJ= غuʘzO"EtgO7M8J9]Mw.KS%0]QYIN+++\א9x'xϦm lǙGmkV%葵{C|yOX<֎o]qIn*L OW4 d4ϬfzYI6Q*՛>n̙3]Q~^ǖ-[Mwi= ]4X&)ain]H]ȉ+v%4uKormm 5E-?n>o%+z(p>9,OO]㯞[G dFIZX49' La!Ngp-U[~oᚄ(;h,?mYfd\;f.<[1% Ta)7`\)ܪ\XOUEQG:]!E4VM]Ri1EVWW{W?oTy gNQs 8cXt. ٯ6L˻m  9-,֎ec[@#^eCs8WO%Fql6l" ZhlR^魣Ng$%\ 33K#x_<)Fnkeew͵+neiO:VnOYێh}qRJ`*6`45[iWY\\LOWDtM2R(7 b=ْs7& 7.AJq'5tzʡ;3?LG5Z)ȅ9/G_Ww~{~kkkkveeLUU:\y4 ?0n4McM'>?7cee߯,K  O5*I)xZHkQaJ]WlEԹWzZr@lTdx4S݂F^{PyP;5^@Zl*xUgAdɀ9!/av=0Z9A^9s1h4V{}?0{ G`Cؓ|_IcdRq;7{G:Zz$t$Ѳ6ڔm9(t.۲5t_0}/:&L_6mr~y( 8Lpit *RلVO_Hb9EFjiRcߴŠ8L;*p,VCnUKxJ'l8U'2Ga୛zgw39,HF IDAT-g ^}c|/+Ol𛛛k];:큠΀Dz7m}EЖ-i]Ҵ{MVgBFqZZZJ>,HsG*ױTT333%؋u?7P/r}T趣N$#xUu(ڍ,Eҟ%|Hi&FKKK-[س{秸m[(Ѿb@o*}ig凊`nn^hib)[.a#m km8N ѢZԪ_ζ4]l-&JSJƣ[7qe9%ﹸu{1R.Վ`,wyYO}O>8~%7==Moukћ '~I7gJJ #wJw.HCoA)& ~$z@繯)Xld*J': O^P_:T%{s8Q;"hALK%JHiM9־Ͱgᖭ[wqvIx9?vPLOMqݵouo;_=_} E5 5<<<ÎųFͮxSWRڭY̍ϗg6k`ώ[4 ItX&bq Cޱe37^7]ڹۮ{;;癚݄.ȼEN?We|_/6\뚋yA@(uf iLԘ=lHzK΄[C{ &=ߗE˪Z*yzQ+++/U*FG iӦ kˤI#%c XO6>%]PU'i)~ݤ Ո-=Í[yía{"Т3܈Oу'6)m墹t{nvť^ʥ.p饗}v6*HlM5X>sǼ:Ç9x =ggrqbuu]^YeA]T}Rl [*Tѓzu4JUIKTRobBqTy57&=%H&u>?ܧg4?-M7+P'fcL|A<'JjjTӱfp4y Ƌ 7p8[2z48t_}jѸk :d{YLlߺ ;wef6of,ӳsRc6^^h81(C^rBO0'`qyNcY\'5KK-!,#-9mMWB*mz($6Y]s4ms Uq)H;p$tסxC|z17-X?wy\^2^/ayF.I4B 1Y<*k"M 0t5 M.$azr >Qxذ=R؍UUދc !Ffu\dkcYhUUEIxj\h#q۳`@b&<XHBxLfU[1Ù teBUZDY4xtTZP;Tma_Xшhp8L++ Kl!f5 x'>~$e11:KF0ޭK^0"}{g_/ڹUHBWr<|>84ĤQu\eYk Iې@^cke4c]7"߯5"h@^ )S祃=]+ /d6tm*KFZY[e(wvuZHvq(T$10eB'DW 4jEnjŮxTO+Jw@\sq?k<8äIdzøq<|cڙ`Y p6D3f]YֽGR ^{eUJ!ԡ"hdh 2pƒx%T:IÚZ`WbãiդڪzDz+!n@$M6+#9c{^xj(z uA zEa_L-8n.YEQDi^wiZj8w>C!skB?< y^dv~uJZ ͌! =ek:ѥlj)9%&+ I8r}p R؉)tL>gYz^藞꺎ãE%>yXϿ 4J "x{B2 wK(on N؎J&݃^wE=| b1 8 }^WcIJ٥/+=u'K܉`p"c<,@jc*u3M tDu[{BϤsi[[bg1#'>web~MkBXIKcs'/Fa !? !d:Wp܃^܎-P/k^}NM7:^)ٞJYE'Pj8Zp{6>cϪlHpxpa/86u?8}z^Y0 xEYpO8.R4U[_CqƱq^@ SX>Tľ<{|f͇No\֍cxĉ//w;ǯ؉8>7p}7 'Pb8:m\cxy=CIENDB`idjc-0.8.16/artwork/redphone.png0000644000175000017500000000366512630014515013452 00000000000000PNG  IHDRdO`bKGD pHYs  tIME5RBIDATx[]oJY[PJ፴Z^?$xj o^ H P{Cvdލ&;Ugxw9_TڰϞ k^]{(GD~V JѿF@8,ϧNs/~6 7Xq XΛvpt= OieN;X_wX*& @\|{ȏhy)99eY_nL:TL1(xFrD-w$zጨc2S*@:752EF%PunA 廔T 0IB/:?JQ[r;*W)3Pg̑i x㆗U>"Wb'|xG5 rA-2 3 pm 6^`@.>%>"*ɏaCؒކpPKEƫWF @9o%Q` U129!;lIgXF : w ",+U΁4#`CA|\pH+$؂\3j}6޼A/䗗ET%ΥɃ(]pv5`$B]EUhM^5ۣ"ً7ĒOFDfВ1 x8$b2.BU=)>ehNu ;_Jc#ƞZq<}#z%u+ Ʋ΀`_4dRV[TJh>!}BD,}FO NJka-1kZ u Hjb\AEݰɼJ!o>n&pN@Rpߧu14"`vgˇ!m"ӷeYmgIdSKbɍ{h!~۽*0Dc!_$dk (a4f83S7!W8uvŕ7[Plll̕*6r_ڏ9Qn} o[򰃍P>;Cshv%lAnf-k%3`\l0Ud> E(HmmGa(ܲۖQHa92η3婠$eFؠg._UQa2 [[w1O$9lA[NjIzݳ3COSw+1͸bv%Z.l4usGG0+rDة(k|إumՋ="e:b!}`gfDŽz/Ė-KzCIkjPtr!tҀFutfQ"$:7t*YL-sc9G U&k{!]$(`׳g\&@∫ n@9dU&"Cjl"6暩:{+5썶$ F!FK| ӠUׅ|# HL !hhHH$ZC ^K'!Ѣ-E?IENDB`idjc-0.8.16/artwork/mic_off.png0000644000175000017500000000441412630014515013241 00000000000000PNG  IHDRE!fesRGBbKGD pHYs  tIME e/!iTXtCommentCreated with The GIMPm_IDAThC[]uƿo}f:CB2ZRD|X $"*% Obcc)1B(ZB*5(i(4Btz%v.eo|g2vD+i˷u",ȹ 07*'Ջ5ti_K|݆/zBbAQn@y.RzOOwFʁ4-Flu=˭[_?xgG'~:3.\ni8h45U[i^|lc^{|+i22yv⸲l]uU^zi,=;X&4ք<ϑ)ܝ!uZ-EJwcp[nU6]U}/,|f^QnHyCDB`$$IhTUjb#qIZW5^<rZNM+W(B!c&IBhZ똜@U^opb YZd]koA-=zj,(055E4M1|M|`o4H^ ".R"tR"$ncq>,"ωPVMFe۶fsnͽUb ! LkETEQet2eM KQ0U%)Naш.+9?p}{4}oks( &"2T*l^V$ &@IQ@E p )8EDsЅ*^,"jztuǯѡdvWĹf>exxkB>ەJ8]U1ZC)&7QF*8TQ*UuPq."N ;PBPDT܌pfvtz=/¼lٲe%$y̲<#sF{apsgB@E)\sΊs . ""e4sᐹ5+q,,*GFNf;?=ol4 !h$6==C03DQ>tfJeQcNUc?!pp kU:rpQ `\Ep `i=(R$QBN!:;WMo~ӷ%w$ʹ+HQ [F`̷6`43tBCaaXp8,Ά=N䦲z yo=].ٸ֋>VkrG&ܫf!-8CQf@@ Ag[p:;uWAnBjM*U^jST:*fN3wЩrTKPp('܉gQN[vEwwe>$#}-N`(C-6C/۟[s繠DMK_ɓE%|Vյ"XO򋪨;aPV;_=|_,M7 տl$.{ûd̵2f2YJ^bLQUX7FKJP00tIENDB`idjc-0.8.16/artwork/pat3.png0000644000175000017500000000111112630014515012475 00000000000000PNG  IHDRbKGDIDATH哿kA8ۙ7{{6P`@,1  APANlCP%*F%'GB!Kmf>>ɛQ$I$0Ɯ')$qPɏ$Z{X îR1䘠{ x`a>\n3sGzƘ${GNgZZ{ {Rzq@XnZJ%?ӻT[ϐ\ZF 9?&!yp߼Jr+ -h4vqq۷f[k/Z^ko>0-E_e=]ֳ8&"]$"g 8$"p?;+[ iQՌZ4MV)l$Ij )}j,\YZ97`BJ#295 $i;`'βs{shYJ"9ZWQ76:nU~ԂJbIENDB`idjc-0.8.16/artwork/crossout.png0000644000175000017500000000103712630014515013516 00000000000000PNG  IHDR((mbKGD3'| pHYs  tIME mKtEXtCommentCreated with The GIMPd%nIDATX헽n0D'`D:VE %6J"bS*3EͽobHJJJJ:[5/$k0˕Zc)7>cc*Rba 0Nlܲ$J(lE 2Ԫ[@&h~pA/{Fpz< \[n@ap:/,8;yHv> X7H#@.bKNlLEWsn0 9go|oU8SWhǃ,^x Y~(P%@I?! (W]í[DoiDž>GBN%R(ń@P DХƕ+ڧ>N~Zb͛$D(h!r"r:AJ "R nEQ=n " ;6ߧ(98D(@D0Z )z1B@9&r(P8ZO|~I`49k4юۭx1 AEȲ A8=uD}ZkY7׶·cye^i( 'fiq^yAkN5$AN~^GGGֺ>|G$hb &>1 J|W$_Rfxv Tc q҉))4ϢW@_?[?bdQk&y4i uF\EʲDQQA)4M!D "cWPJ!I:#,`8R X+j^JI|KcßT$IgYn&˲DYzAQ s}o(G#a^w $ h_J( )?ߦ5f) C7;o(՛>)aի.h^9:FJ'x¡B{Úϫ.Ĥ^XT=ʏ A}[?=Yf%cagqFE1Ǯi=::BeSI.b>!|w$T+(9n^/RU6M1$ogED"Ak&! a;Yq3XrsʢBI&aHOBq|7MSyn烂}s3{ՙDx5XCJGmHw?5.x"ڭ!@HUa_~˙ɓ$ֺ1@$כ1^YJ)WYY(ϬrS>n( #$J3b,wcbu"(0:!PWVN쯼 r\9(Z2W8ې=r>C03lleRF@}UkP5V_t,zmwT(/< r!eulaGUݳ,kX}W^EQ8::Bɧ<GuSxV}1T>~< BU@W&VCo7`^a/|pHq;'MLj!vwt J؇}0'6$toLuݭ>MnUd{9[/f&Y^`U>MSװrLZ4 WPXN+U]neqZܾ/Tz )z73|Yk ˲ *Wwnfٶ&RJt!vwSᯡd9#t4lc :`f x<.Nn45{ͼ:Z!MS'<AӁ1A x,tjUfd3xޟFE |Ab׍J& 9N ;5D䰅/챳*[fb^u)d3X ϊWBLsT5| sׯ_'΢p\V888pn 7}qA t:by%4۴ؗ _%M*iF68 g?9c\s7/|x#^h8 =l3غd7wc۲y?n|0◈_SQqMVqa0ƩM\zWδ8Hwim~$$V<|`T7BQ Ql8BfZtD3¼,S .o^xd}* &˰Ĝ.yȲ a"#XaDAP:ɱgHxZ{{# ͟+}鴰ȡ/ '걿ӑrr,2ya]N!"O7^k!&y9xH3E^{5J]k]O)m~^RӀ*yG ®'ռO {ٔZGO+o> d8ɭSyg}|??-f]֞ # 3HifDNki-g:]g|1ydsYFpIx㔒zZnb#(/f1U"^Lda ۂZ@YLQ7S@i%^]X;mK$QwKlάc[ 4To~{SUZo+hRGhyQ" Q0o3ъ];HG8QϺD+3nv-OH"\c0ZuK n5"JﮉXsx["4c YVc]N?p}ccagmV>9+eop_DuΎ."7HgZh0]R\._!tr4!mYU]!V"2A-*Gt'͞;6 n`NNDdovεg>`H ϧ&zdMDц"rL_N,Ժn` f{&"KiY7=;4EDz=/a݈ԺBE`GD6MUƺ|V,)7׳_ŒHלp2184F_>HWͶfu+ccp 18V![lX28cp cp 1818GL6 oYnUSYs8#dp:Yf 'fI 9)$y.c1Sc1kj(~siSLNOӶbϘf8ok+7s /69S+{|ÂZT>)@xqk.P,e71EIENDB`idjc-0.8.16/artwork/pbphone.png0000644000175000017500000000171212630014515013270 00000000000000PNG  IHDRdO`bKGD pHYs  tIMEBYWIDATx훿n1ǖ m((U(#6JgHDַYJwc{}e7A$>mvs#$b M`yrp熈( oBj DCO~^_}Pk 3 imOws4#\& fuM3Ib;qNл4z\,tC}k(oRҏ锾ftyp@K}n;=:d]OVy\ $mPoWJ>үɄ>%v3Թ~u8!6\=m4C Jj)yn 1C:mbhشO6f<ϪNaYTs|ܜUGYqj?=Oe.t23>y*BAR)\+' $6p Zvpm;ٴ*Z$6e}Bdk Fvǯ^TӚ^Ujs^76*҄.ʒ^'>ymȊ aZ[:*zwG Vػ[h\N1Ap M}OP}á #'"f> Ñ1yl mmS)@0]YQI®?c+.,-pS:1tC1vo(ʇ#H@v.ߡKqsĦɶ) Eem&kllI.0R ]Q@b,+R&0xI/T&\RjR) @ry&CW 646ccDpW  rȘr4|!o!@ ! @  @.rкIENDB`idjc-0.8.16/artwork/Makefile.am0000644000175000017500000000134312630014515013163 00000000000000dist_pkgdata_DATA = add3.png advance.png control_c.png control_k.png control_n.png control_p.png greenphone.png interlude2.png jack2.png led_lit_amber_black_border_64x64.png led_lit_green_black_border_64x64.png led_lit_red_black_border_64x64.png led_unlit_clear_border_64x64.png next.png note.png pass.png pause.png pbphone.png play2.png play3.png prev.png rec.png redphone.png stop.png volume2.png logo.png icon.png speedicon.png crossout.png classic_cross.png mk2_cross.png listenerphones.png mic_on.png mic_off.png mic_unshown.png mic4.png pat3.png headroom.png repeat.png nodist_pixmaps_DATA = ${PACKAGE_NAME}.png pixmapsdir = ${prefix}/share/pixmaps ${PACKAGE_NAME}.png: icon.png @cp $? $@ clean-local: rm -f ${PACKAGE_NAME}.png idjc-0.8.16/artwork/prev.png0000644000175000017500000000030412630014515012605 00000000000000PNG  IHDRH-bKGD pHYs  tIMEUrQIDAT(ϝA ߋsvפZ(v|F 3 ^E+CوWQSοVޢ0B-TIENDB`idjc-0.8.16/artwork/speedicon.png0000644000175000017500000000461412630014515013612 00000000000000PNG  IHDR=$ pHYs  tIME35UtEXtCommentCreated with The GIMPd%n IDATx]E۝$ $bBP!$&{UCkKD+Z55- `M1*j[V[jѶw0k<}vgvg}H)Fg=Zp")aS(Rmux:Ap/"^L}M ?hi.}?"^cjk4/}a>+Xr F!!ĝ+VmZzX91 ȅC/jOa8Xؾ|YizۛQ x 3Z8*k+8j!@ ]9AVz7sbd9Sxw|aWq3"rrNV,+zs>n=fy{✟4:vNVrΟXV.<"+ f5D|8AcD| D^[.+/Fą#[~?s~=!*-z.h;^vy>nDEщ B+KN3ƶ A4fw9\'^N'GD6kQ!چva˲ ++j_O Zrd0eٴR{Z5RJetG`TxTV>":uR*/#$/.)yjv.S9sNu mN1_ !8duf? !"ђU!>Ùkv, ~\\'o4ro=V9!W16iIEkP|Nw1690#"..xUm\Q߽~[?R}mfsmBVn^[[y&׉#97V!7VaUƨryͬ2_f? }B#&vi]jcd| |Z'l`%dC؍86NنTd0-LNn[^u)G86Dt:1Riӹ!IŞQ$GR˥;r4cRUaDoZ#쫘βl}[JsdGzU1ږϕRudq(mZ(0[xJ4MJ)blTi~6IսM<ٔRie[R+-qon;Y.qov1Wx,˲kN1d3{Rk֫-HY[[5lO6&JwK)O"[eh&)1[vݶYiv"e$$IʓM)EYImR_Yԥ,ѥN68Ph%fd⳦P+v{}YEydh&"TlDtVJ"[qn3}#XRC%Gkw$pw$blzv;*3,-e7ɲqRv$y'vZR mH.NlERN&#*Cu&zS[h $RJ_R y2rxZ7Hefd"[kLJ1JnғX7֩ąd5Q RJԔzU-ֺJ^6;li=+7Ud#ORˆydcN*k(7fSOr)&r Sbc,˲CY]^td3..upq N#F&radqnfSOפs0ջyAr!یoTgQ}܅Cdc.nDwaP&٘dhnw$ÅCecn"/FS.(M qf~!?x9eIENDB`idjc-0.8.16/artwork/control_n.png0000644000175000017500000000057412630014515013637 00000000000000PNG  IHDRa pHYsod.IDATxj@(6I.UH'} L@1TybHC;,hVfgs{9gaA(n$Im~,+K:R%hPenTM x p]A=M ߞ=:Cл? 0CM[@7GS5d$i?nELz0`YK,`B#A <&B몪m Ŭ(ƿ,F4Y\a@MaƮav纍D屟~#;oIENDB`idjc-0.8.16/artwork/stop.png0000644000175000017500000000021612630014515012620 00000000000000PNG  IHDRH-bKGD pHYs  tIMEm4FIDAT(c@`b j8T4~ҭj\IENDB`idjc-0.8.16/artwork/classic_cross.png0000644000175000017500000000126412630014515014471 00000000000000PNG  IHDRbKGDtIME2 gTVIDATHkAǿo7&5t3o'=6؋XPgzOыR^LIJMIݘ/ ,3~潙7Q."T~ gDHDjleYMyGDh7f%ɨd2yQD "2GDc&׽֧1E)Q:@HV-*AT*_2 |ҁFGGu*/"׉(ZxvJ<;uݫm/(1消?BDK|\(4MLR>9l68`jq=Z1f `) lyK)55(0"o( k*&{ؽEևt7Ҥ ^'a}J0gf\orbcMG-"f#"9i5_d(H8IENDB`idjc-0.8.16/artwork/control_p.png0000644000175000017500000000064312630014515013636 00000000000000PNG  IHDRa pHYsodUIDATxc`3JJJGFF\\\YXXځr|4 lٲO}}l!o'((x@|6(Q~IENDB`idjc-0.8.16/artwork/note.png0000644000175000017500000000060312630014515012600 00000000000000PNG  IHDRGHbKGD pHYs  tIME [IDATx 0 Pe.gKB <iRUz\dWF*psj7Xa봕 YrGC 8pG8pQp6"o@V>1#ʎ5Y&9q"%NPu(Hk(OҲokń$'Cjz}_GD!#kZ{P3dIINdzeFU#@YOr \oq^Y|DVIENDB`idjc-0.8.16/artwork/control_k.png0000644000175000017500000000047012630014515013627 00000000000000PNG  IHDRa pHYsodIDATx= 0'{zO x/ Y/vl=6;MG&`a^d Dyy0x2 cx&qGD"MS4MS{A dѓnfY,-t Bay;pSut& qm^@uq|P.uMӠeY8ϳ"/^#o%\ @)<ϵ(96 6ۑ^ض}nL_4{ +IENDB`