an/man1/* .
    fi
    if test -d $TETEXDIR/man/man5 && test -w $opt_symlinks_man/man5; then
        cd $opt_symlinks_man/man5
        rm -f `ls $TETEXDIR/man/man5`; ln -s $TETEXDIR/man/man5/* .
    fi
    if test -d $TETEXDIR/man/cat1 && test -w $opt_symlinks_man/cat1; then
        cd $opt_symlinks_man/cat1
        rm -f `ls $TETEXDIR/man/cat1`; ln -s $TETEXDIR/man/cat1/* .
    fi
    if test -d $TETEXDIR/man/cat5 && test -w $opt_symlinks_man/cat5; then
        cd $opt_symlinks_man/cat5
        rm -f `ls $TETEXDIR/man/cat5`; ln -s $TETEXDIR/man/cat5/* .
    fi
    if test -d $TETEXDIR/info && test -w "$opt_symlinks_info"; then
        cd $opt_symlinks_info
        rm -f `ls $TETEXDIR/info`; ln -s $TETEXDIR/info/*info* .
    fi
    if test "$opt_symlinks" = X; then
        if test ! -z "$this_platform_bin"; then
          if test -w "$opt_symlinks_bin"; then
            cd $opt_symlinks_bin
            rm -f `ls $this_platform_bin`; ln -s $this_platform_bin/* .
            echo 'Done.'
          fi
        else
          cls
          echo '                              WARNING!                              '
          echo
          echo 'teTeX binaries for this platform are not installed. If you install'
          echo 'them later, you can create symbolic links to $opt_symlinks_bin'
          echo 'with a command like:'
          echo
          echo "  ln -s $TETEXDIR/bin/PLATFORM/* $opt_symlinks_bin"
          echo
          echo 'PLATFORM needs to be replaced by the name of the subdirectory that'
          echo 'contains the binaries for this platform.'
          echo
          readln
        fi
    fi
}

locate_binaties()
{
    this_platform_bin=
    lb_dir=$TETEXDIR/bin/$this_platform_d
    test -x "$lb_dir/initex" && this_platform_bin=$lb_dir
    test -x "$TETEXDIR/bin/initex" && this_platform_bin=$TETEXDIR/bin
    test ! -d $lb_dir && rm -f $lb_dir 2>/dev/null
    test -z "$this_platform_bin" && return
    PATH="${this_platform_bin}:${PATH}"; export PATH
}

untgz()
{
    cd $TMPDIR
    for u_series in $S_all_la; do
        eval selected=\$s_${u_series}_ls
        for u_package in $selected; do
          eval file=\$p_${u_package}_fn
          list=`basename $file| sed 's@.tar.gz$@@'`
          package_showinfo $u_package
          echo
          $echon "Testing integrity of file $file... "
          gzip --test $file
          if test $? = 0; then
            echo "Ok."
          else
            warn "Integrity of file $file is void."
            continue
          fi
          $echon "Extracting package $p_current_n... "
          gzip -dc < $file | tar -xvf - >$ERRLOG 2>&1
          if test $? = 0; then
            echo 'Done.'
            sed /$tetex_prefix/'!d; s@[^/]*'$tetex_prefix'/*@@; s/[,/]*[ 	].*//; /^$/d' $ERRLOG > $TEXMF/lists/$list
            if test -s $TEXMF/lists/$list; then
              chmod 755 $TEXMF/lists/$list
            else
              rm -f $TEXMF/lists/$list
            fi
          else
            show_error
            continue
          fi
        done
    done
    rmdir $TEXMF/lists 2>/dev/null
}

prepare_errorlog()
{
    trap 'cd /; rm -f "$ERRLOG" 2>/dev/null; trap '' 0; exit 0' 0 1 2 15
    touch "$ERRLOG"
    test -w "$ERRLOG" || fatal "cannot write to file '$ERRLOG'"
}

locate_binaries()
{
    require_binaries touch sed awk gzip ln rm ls tar tr mkdir cat `echo $PAGER | sed 's@ .*@@'` pwd
}

init()
{
    bad_sh
    prepare_errorlog
    locate_binaries
    find_echo
    unset_vars
    this_platform=`platform_guess`
    series_init
    nobin_stat    
}

linux_which_x()
{
    test -f $TETEXDIR/bin/i486-linuxaout/xdvi-X11R6 || return
    test -f $TETEXDIR/bin/i486-linuxaout/xdvi-X11R5 || return
    test -f $TETEXDIR/bin/i486-linuxaout/virmf-X11R5 || return
    test -f $TETEXDIR/bin/i486-linuxaout/virmf-X11R6 || return

    echo 'The a.out binaries for Linux contains 2 versions of xdvi and virmf.'
    echo 'One is for X11R5 (XFree86-2.X), the other one for X11R6 (XFree86-3.X).'
    echo
    rm -f $TETEXDIR/bin/i486-linuxaout/xdvi.bin $TETEXDIR/bin/i486-linuxaout/virmf.X
    if yesno 'Do you want to use the R6 versions as default'; then
        ln -s xdvi-X11R6 $TETEXDIR/bin/i486-linuxaout/xdvi.bin
        ln -s virmf-X11R6 $TETEXDIR/bin/i486-linuxaout/virmf.X
        other=X11R5
    else
        ln -s xdvi-X11R5 $TETEXDIR/bin/i486-linuxaout/xdvi.bin
        ln -s virmf-X11R5 $TETEXDIR/bin/i486-linuxaout/virmf.X
        other=X11R6
    fi
    if yesno "Remove the binaries for $other"; then
        rm -f $TETEXDIR/bin/i486-linuxaout/xdvi-$other
        rm -f $TETEXDIR/bin/i486-linuxaout/virmf-$other
    fi
}

fixperm()
{
    $echon 'Fixing permissions... '
    cd $TEXMF
    files=`find . -perm -2 \( -type d -o -type f \) -print`
    test -z "$files" || chmod go-w $files
    cd $TETEXDIR
    files=`find . -perm -2 \( -type d -o -type f \) -print`
    test -z "$files" || { chmod go-w $files 2>$ERRLOG; show_error; }
    dirs=`find $TEXMF/fonts/tfm $TEXMF/fonts/pk -type d -print 2>$ERRLOG`
    test -z "$dirs" || { chmod 1777 $dirs 2>$ERRLOG; show_error; }
    test -f $TEXMF/ls-R && { chmod 666 $TEXMF/ls-R 2>$ERRLOG; show_error; }
    echo 'Done.'
}

install_now()
{
    umask 022
    cls; sanity_checks
    cls; prepare_directories
    umask 0
    cls; untgz
    cls; fixperm
    umask 022
    cls; linux_which_x
    cls; locate_binaties
    cls; man_fix_texmf
    cls; opt_do_symlinks
    cls; texmfcnf_fix_texmf
    cls; texmfcnf_fix_tetexdir
    cls; update
    cls; init_tetex
    cls
    if test ! -z "$this_platform_bin"; then
        if test -z "$opt_symlinks_bin"; then
          bin=$this_platform_bin
        else
          bin=$opt_symlinks_bin
        fi

        cat <<eof
We are done with install.sh. Please run texconfig by entering

    texconfig

at your shell prompt to complete the installation. You may need to add  
the directory $bin to your PATH first.
eof
    else
        echo '                         WARNING!                              '
        echo
        echo 'Binaries for this platform are not installed. Your installation'
        echo 'is not complete. If you install the missing binaries later, make'
        echo 'sure to run texconfig to create the bases for Metafont and the'
        echo 'format files for TeX.'
    fi
    cat<<eof

There is a mailing list for discussion about the teTeX distribution:
    tetex@informatik.uni-hannover.de

If you want to subscribe to the list, send a message containing the line:   
    subscribe tetex

to majordomo@informatik.uni-hannover.de. Have fun!
eof

    exit
}

tetex_dump()
{
    test "$opt_varfonts" = X && ln -s $opt_varfonts_dir/ls-R $TEXMF
    $echon "Building filename database... "
    echo '% This is file ls-R. Maintained by texhash and append_db.' > $TEXMF/ls-R
    (cd $TEXMF; ls -LAR ./ /dev/null 2>$ERRLOG) >> $TEXMF/ls-R
    show_error
    chmod 666 $TEXMF/ls-R
    echo 'Done.'

    if test ! -z "$this_platform_bin"; then
        test "$debug" = true && { set; sleep 5; }
        $echon 'Creating mf.base and tex format files... '
        eval TEXMF=$TEXMF $this_platform_bin/texconfig init >$ERRLOG 2>&1
        show_error
        echo 'Done.'
    fi
}

init_tetex()
{
    tetex_dump
    maketex_setopt
}

update()
{
    test "$opt_update" = X || return
    echo "locating files for update option... "
    update_get_texmf
    if test -d "$opt_update_oldtexmf"; then
        echo "  old TEXMF: $opt_update_oldtexmf"
    else
        echo "  old TEXMF: not found"
    fi
    update_get_xdvi_ad
    if test -f "$opt_update_xdviad"; then
        echo "  old app-defaults file for xdvi: $opt_update_xdviad"
        rm -f $TEXMF/xdvi/XDvi
        cp "$opt_update_xdviad" $TEXMF/xdvi/XDvi
    else
        echo "  old app-defaults file for xdvi: not found"
    fi
    if test -d "$opt_update_oldtexmf/dvips"; then
        echo "  old dvips config files: $opt_update_oldtexmf/dvips"
        (cd $TEXMF/dvips && rm -f `cd "$opt_update_oldtexmf/dvips"; ls config.*`)
        cp $opt_update_oldtexmf/dvips/config.* $TEXMF/dvips
    else
        echo "  old dvips config files: not found"
    fi
}

update_get_texmf()
{
    opt_update_oldtexmf=`sed -n '/^TEXMF[ 	]*=/!d; s/.*=[ 	]*//; s/[ 	].*//; s@\$TETEXDIR@'$opt_update_olddir'@; p' $opt_update_olddir/texmf.cnf 2>/dev/null`
    test ! -d "$opt_update_oldtexmf" && opt_update_oldtexmf="$opt_update_olddir/texmf"
}

update_get_xdvi_ad()
{
    opt_update_xdviad=`find $opt_update_olddir/xdvi* $opt_update_oldtexmf \( -name XDvi -o -name XDvi.ad \) -print | sed q 2>/dev/null`
    test ! -f "$opt_update_xdviad" && opt_update_xdviad=
}

################################################################
# menus:
################################################################
menu_main()
{
    while true; do
        cls
        opt_savespace_man=X
        test "$opt_savespace_man_rm" = X || test "$opt_savespace_man_gzip" = X ||
          opt_savespace_man=' '
        textvar_show screen_1; echo
        case `getopt PSDOIHQ 'Enter command'` in
          P) menu_platform;;
          S) menu_series;;
          D) menu_directories;;
          O) menu_options;;
          I) install_now;;
          H) help help_1;;
          Q) exit_on_confirm;;
        esac
    done
}

# NEW PLATFORM: change getopt call and add a new case.
menu_platform()
{
    while true; do
        cls
        textvar_show screen_5; echo
        case `getopt N123456789ABCDRQ 'Select the platform you are currently on'` in
          N) this_platform_set '';;
          1) this_platform_set $platform_1;;
          2) this_platform_set $platform_2;;
          3) this_platform_set $platform_3;;
          4) this_platform_set $platform_4;;
          5) this_platform_set $platform_5;;
          6) this_platform_set $platform_6;;
          7) this_platform_set $platform_7;;
          8) this_platform_set $platform_8;;
          9) this_platform_set $platform_9;;
          A) this_platform_set $platform_A;;
          B) this_platform_set $platform_B;;
          C) this_platform_set $platform_C;;
          D) this_platform_set $platform_D;;
          R) return;;
          Q) exit_on_confirm;;
        esac
    done
}

menu_directories()
{
    while true; do
        cls
        textvar_show screen_2; echo
        case `getopt 12RQ 'Enter command'` in
          1) gets TETEXDIR; TETEXDIR=`dirname "$TETEXDIR/x" | sed 's@//*@/@g'`
             TEXMF=`echo $TETEXDIR/texmf | sed 's@//*@/@g'`;;
          2) gets TEXMF; TEXMF=`dirname "$TEXMF/x" | sed 's@//*@/@g'`;;
          R) return;;
          Q) exit_on_confirm;;
        esac
    done
}

menu_options()
{
    while true; do
        cls
        textvar_show screen_3; echo
        case `getopt ASMCRQ 'Enter command'` in
          A) toggle opt_varfonts
             if test "$opt_varfonts" = X; then
               cls; textvar_show screen_3; echo
               opt_varfonts_dir=$opt_varfonts_dir_last
               test -z "$opt_varfonts_dir" && opt_varfonts_dir=/var/texfonts
               gets opt_varfonts_dir 'alternate directory'
             else
               opt_varfonts_dir_last=$opt_varfonts_dir
               opt_varfonts_dir=''
             fi
             ;;
          S) toggle opt_symlinks
             if test "$opt_symlinks" = X; then
               cls; textvar_show screen_3; echo
               opt_symlinks_bin=$opt_symlinks_bin_last
               test -z "$opt_symlinks_bin" && opt_symlinks_bin=/usr/local/bin
               gets opt_symlinks_bin 'binary directory'
               opt_symlinks_man=$opt_symlinks_man_last
               test -z "$opt_symlinks_man" && opt_symlinks_man=`dirname $opt_symlinks_bin`/man
               gets opt_symlinks_man 'man directory   '
               opt_symlinks_info=$opt_symlinks_info_last
               test -z "$opt_symlinks_info" && opt_symlinks_info=`dirname $opt_symlinks_bin`/info
               gets opt_symlinks_info 'info directory  '
             else
               opt_symlinks_bin_last=$opt_symlinks_bin
               opt_symlinks_man_last=$opt_symlinks_man
               opt_symlinks_info_last=$opt_symlinks_info
               opt_symlinks_bin=''; opt_symlinks_man=''; opt_symlinks_info=''
             fi
             ;;
          M) cls; textvar_show screen_3; echo
             opt_savespace_man=' '
             opt_savespace_man_rm=' '
             opt_savespace_man_gzip=' '
             yesno 'remove nroff sources' &&
                 { opt_savespace_man_rm=X; opt_savespace_man=X; }
             yesno 'compress preprocessed manpages with gzip' &&
                 { opt_savespace_man_gzip=X; opt_savespace_man=X; }
             ;;
          C) toggle opt_update
             if test "$opt_update" = X; then
               cls; textvar_show screen_3; echo
               opt_update_olddir=$opt_update_olddir_last
               test -z "$opt_update_olddir" && test -f /usr/local/tex/texmf.cnf &&
                 opt_update_olddir=/usr/local/tex
               gets opt_update_olddir 'old TETEXDIR'
               test -f $opt_update_olddir/texmf.cnf && continue
               echo "File $opt_update_olddir/texmf.cnf does not exist."
               readln
               opt_update=' '
               opt_update_olddir=''
             else
               opt_update_olddir_last=$opt_update_olddir
               opt_update_olddir=''
             fi
             ;;
          R) return;;
          Q) exit_on_confirm;;
        esac
    done
}

menu_series()
{
    while true; do
        cls
        textvar_show screen_4; echo
        menu_series_ans=`getopt PBGFDRQ 'Enter command'`
        case "$menu_series_ans" in
          P) series=bin;;
          B) series=base;;
          G) series=goodies;;
          F) series=fonts;;
          D) series=doc;;
        esac
        case "$menu_series_ans" in
          [PBGFD])
             cls; textvar_show screen_4;
             textvar_show s_${series}_h; echo
             case `getopt ANSLC "install series $series ([A]ll, [N]o, [S]elect, [L]ist, [C]ancel)"` in
               A) series_select_all $series; nobin_stat;;
               N) series_deselect_all $series; nobin_stat;;
               S) series_usersetup $series; nobin_stat;;
               L) series_list $series;;
               C) : ;;
             esac;;
          R) return;;
          Q) exit_on_confirm;;
        esac
    done
}

package_showinfo()
{
    p=$1
    cls
    eval p_current_du=\$p_${p}_du
    eval p_current_n=\$p_${p}_n
    eval p_current_l=\$p_${p}_l
    eval p_current_v=\$p_${p}_v
    echo "Package:          $p_current_n"
    echo "Series:           $series"
    if [ ! -z "$p_current_v" ] ; then
      echo "Version:          $p_current_v"
    fi
    echo "Status:           $p_current_l"
    echo "Disk space:       $p_current_du"
    textvar_show p_${p}_h
}

series_usersetup()
{
    su_series=$1
    eval all_packages=\"\$s_${su_series}_lf\"
    for p in $all_packages; do
        package_showinfo $p
        echo
        p_current_s=false
        yesno "install package $p_current_n" && p_current_s=true
        eval p_${p}_s=$p_current_s
    done
    series_stat $su_series
}

exit_on_confirm()
{
    cls
    yesno 'Really quit' && exit
}

################################################################
# global variables
################################################################
VERSION=0.3.3
# prefix in the archives:
tetex_prefix=teTeX
TETEXDIR=/usr/local/$tetex_prefix
TEXMF=$TETEXDIR/texmf
man_texmf_old_fallback=$TEXMF
man_tetexdir_old_fallback=$TETEXDIR
TMPDIR=${TMP-/tmp}/inst.tmp.$$
ERRLOG=${TMP-/tmp}/inst.errlog.$$
: ${PAGER=more}
mt_site_loc=maketex/maketex.site
here=`pwd`

envvars='
BIBINPUTS BSTINPUTS DVIPSHEADERS GFFONTS GLYPHFONTS MFBASES MFINPUTS
MFPOOL PKFONTS TEXCONFIG TEXFONTS TEXFORMATS TEXINPUTS TEXMFCNF TEXPICTS
TEXPKS TEXPOOL TFMFONTS VFFONTS DVIPSFONTS XDVIVFS XDVIFONTS DVILJFONTS
'

opt_varfonts=' '
opt_varfonts_dir=''
opt_varfonts_dir_last=''
opt_symlinks=' '
opt_symlinks_bin=''
opt_symlinks_man=''
opt_symlinks_info=''
opt_symlinks_bin_last=''
opt_symlinks_man_last=''
opt_symlinks_info_last=''
opt_savespace_man=' '
opt_savespace_man_rm=' '
opt_savespace_man_gzip=' '
opt_update=' '
opt_update_olddir=''
opt_update_olddir_last=''

this_platform=

S_nobin_la='base goodies fonts doc'
S_all_la="$S_nobin_la bin"

#############################################################################
# The supported binaries. Add new platforms to the s_bin_la list and create
# a p_PLATFORM st structure with the following variables:
#       _d: the directory name below bin for this platform
#      _du: disk usage
#       _n: name of the package
#       -h: help text
#############################################################################

# NEW PLATFORM: add identifier.
platform_1=i486_linux
platform_2=i486_linuxaout
platform_3=m68k_linux
platform_4=m68k_linuxaout
platform_5=mips_irix53
platform_6=rs6000_aix32
platform_7=sparc_solaris24
platform_8=sparc_sunos413
platform_9=hppa11_hpux901
platform_A=alpha_osf20
platform_B=alpha_osf32
platform_C=mips_ultrix_44
platform_D=i386_netbsd10

# NEW PLATFORM: add entry in s_bin_la variable.
s_bin_la='i486_linux i486_linuxaout m68k_linux m68k_linuxaout
mips_irix53 rs6000_aix32 sparc_solaris24 sparc_sunos413 hppa11_hpux901
alpha_osf20 alpha_osf32 mips_ultrix_44 i386_netbsd10
'
s_bin_n=binaries
s_bin_d=binaries
s_bin_h='
This series contains the binaries for teTeX. There is one binary package
for each supported platform containing all teTeX binaries for that
platform.
'

# NEW PLATFORM: add p_*_{l,d,du,n,h} variables.
p_i386_netbsd10_l='optional'
p_i386_netbsd10_d='i386-netbsd1.0'
p_i386_netbsd10_du='2780'
p_i386_netbsd10_n='NetBSD 1.0 (Intel)'
p_i386_netbsd10_h='
This package contains all binaries for NetBSD 1.0 (Intel) platforms.
'
p_mips_ultrix_44_l='optional'
p_mips_ultrix_44_d='mips-ultrix4.4'
p_mips_ultrix_44_du='7920'
p_mips_ultrix_44_n='Mips ULTRIX 4.4 (RISC)'
p_mips_ultrix_44_h='
This package contains all binaries for Mips ULTRIX 4.4 (RISC) platforms.
'
p_m68k_linuxaout_l='optional'
p_m68k_linuxaout_d='m68k-linuxoldld'
p_m68k_linuxaout_du='2780'
p_m68k_linuxaout_n='Linux 68k (a.out)'
p_m68k_linuxaout_h='
This package contains all binaries for Linux 68k (a.out) platforms.
'
p_m68k_linux_l='optional'
p_m68k_linux_d='m68k-linux'
p_m68k_linux_du='2720'
p_m68k_linux_n='Linux 68k (ELF)'
p_m68k_linux_h='
This package contains all binaries for Linux 68k (ELF) platforms.
The binaries are in ELF format and need ld.so version 1.7.3 or higher and
libc version 5.0.9 or higher.
'
p_alpha_osf32_l='optional'
p_alpha_osf32_d='alpha-osf3.2'
p_alpha_osf32_du='6150'
p_alpha_osf32_n='DEC OSF/1 V3.2 Alpha-AXP'
p_alpha_osf32_h='
This package contains all binaries for DEC OSF/1 V3.2 Alpha-AXP platforms.
'
p_alpha_osf20_l=optional
p_alpha_osf20_d=alpha-osf2.0
p_alpha_osf20_du=6251
p_alpha_osf20_n='DEC OSF/1 V2.0 Alpha'
p_alpha_osf20_h='
This package contains all binaries for DEC OSF/1 V2.0 Alpha platforms.
'
p_hppa11_hpux901_l=optional
p_hppa11_hpux901_d=hppa1.1-hpux9.01
p_hppa11_hpux901_du=5767
p_hppa11_hpux901_n='HP-UX 9.01 9000/710'
p_hppa11_hpux901_h='
This package contains all binaries for HP-UX 9.01 9000/710 platforms.
'
p_i486_linux_l=optional
p_i486_linux_d=i486-linux
p_i486_linux_du=2976
p_i486_linux_n='Linux Intel x86 (ELF)'
p_i486_linux_h='
This package contains all binaries for Linux on x86 machines.
The binaries are in ELF format and need ld.so version 1.7.3 or higher and
libc version 5.0.9 or higher.
'
p_i486_linuxaout_l=optional
p_i486_linuxaout_d=i486-linuxaout
p_i486_linuxaout_du=3295
p_i486_linuxaout_n='Linux Intel x86 (a.out)'
p_i486_linuxaout_h='
This package contains all binaries for Linux on x86 machines.
The binaries are in the old a.out format and need version 4 of the
C library (e.g. libc-4.6.26).
'
p_mips_irix53_l=optional
p_mips_irix53_d=mips-irix5.3
p_mips_irix53_du=7038
p_mips_irix53_n='SGI Irix 5.3'
p_mips_irix53_h='
This package contains all binaries for SGI Indigo machines running
Irix-5.3.
'
p_rs6000_aix32_l=optional
p_rs6000_aix32_d=rs6000-aix3.2
p_rs6000_aix32_du=4604
p_rs6000_aix32_n='IBM RS6000 AIX 3.2'
p_rs6000_aix32_h='
This package contains all binaries for IBM RS600 machines running
AIX 3.2.
'
p_sparc_solaris24_l=optional
p_sparc_solaris24_d=sparc-solaris2.4
p_sparc_solaris24_du=4078
p_sparc_solaris24_n='SUN Sparc Solaris 2.4'
p_sparc_solaris24_h='
This package contains all binaries for SUN Sparcs running Solaris 2.4.
'
p_sparc_sunos413_l=optional
p_sparc_sunos413_d=sparc-sunos4.1.3
p_sparc_sunos413_du=4435
p_sparc_sunos413_n='SUN Sparc SunOS 4.1.3'
p_sparc_sunos413_h='
This package contains all binaries for SUN Sparcs running SunOS 4.1.3.
'

s_base_n=base
s_base_d=base
s_base_h='
This series contains the most basic packages that are needed for the
basic functionality of teTeX and a minimal LaTeX system.
'
s_base_la='tetex_base latex_base'

s_goodies_n=goodies
s_goodies_d=goodies
s_goodies_la='latex_extra amstex bibtex xtexsh pictex'
s_goodies_h='
This series contains some additional packages: XTeXShell, AMSTeX, PiCTeX,
BibTeX and LaTeX-extra. Note that most LaTeX add-ons are contained in the
LaTeX-extra package of this series.
'

s_fonts_n=fonts
s_fonts_d=fonts
s_fonts_la='dc_fonts gothic_fonts pandora_fonts urw_fonts wasy_fonts adobe_fonts ams_fonts bitstrea_fonts concrete_fonts'
s_fonts_h='
This series contains font packages: DC, oldgerman, pandora, wasy, AMS, concrete
and support for PostScript fonts from URW, Bitstream and Adobe.
'

s_doc_n=documentation
s_doc_d=doc
s_doc_la='dcfonts_doc eplain_doc general_doc german_doc fontname_doc latex_doc oldgerman_doc texdraw_doc ams_doc programs_doc babel_doc bibtex_doc makeindex_doc'
s_doc_h='
This series contains a lot of documentation about teTeX and the packages
it contains. The whole series contains over 100 dvi files plus TeX-FAQ
and some other documentation.
'

#############################################################################
# packages:
#############################################################################

p_latex_base_l=required
p_tetex_base_l=required
p_ams_doc_l=optional
p_babel_doc_l=optional
p_bibtex_doc_l=optional
p_dcfonts_doc_l=optional
p_eplain_doc_l=optional
p_fontname_doc_l=optional
p_general_doc_l=recommended
p_german_doc_l=optional
p_programs_doc_l=recommended
p_latex_doc_l=recommended
p_makeindex_doc_l=optional
p_oldgerman_doc_l=optional
p_texdraw_doc_l=optional
p_adobe_fonts_l=optional
p_ams_fonts_l=recommended
p_bitstrea_fonts_l=optional
p_concrete_fonts_l=optional
p_dc_fonts_l=recommended
p_gothic_fonts_l=optional
p_pandora_fonts_l=optional
p_urw_fonts_l=optional
p_wasy_fonts_l=recommended
p_amstex_l=optional
p_pictex_l=optional
p_bibtex_l=recommended
p_latex_extra_l=recommended
p_xtexsh_l=optional

p_latex_base_d=latex-base
p_latex_base_du=1360
p_latex_base_n='LaTeX base'
p_latex_base_v='<1995/06/01> patch level 3'
p_latex_base_h='
This package contains a minimal set of macros to use the LaTeX format.
If you really want to use LaTeX regularly, you should install the LaTeX
extra package as well.
'
p_tetex_base_d=tetex-base
p_tetex_base_du=4315
p_tetex_base_n='teTeX base'
p_tetex_base_h='
This package contains the most basic input files for teTeX: runtime
configuration files, hyphenation tables, manpages and the computer
modern fonts.
'
p_ams_doc_d=ams-doc
p_ams_doc_du=675
p_ams_doc_n='AMS documentation'
p_ams_doc_h='
This package contains documentation for the AMS (= american mathematical
society) fonts, AMSLaTeX and AMSTeX. A good thing, if you need lots of
math in your documents.
'
p_babel_doc_d=babel-doc
p_babel_doc_du=805
p_babel_doc_n='Babel documentation'
p_babel_doc_h='
This package contains documentation for the babel system. Babel is a
package to support multiple languages in plain TeX and LaTeX.
'
p_bibtex_doc_d=bibtex-doc
p_bibtex_doc_du=165
p_bibtex_doc_n='BibTeX documentation'
p_bibtex_doc_h='
This package contains documentation for the BibTeX programm. BibTeX is
a tool to make a bibliography for (La)TeX.
'
p_dcfonts_doc_d=dcfonts-doc
p_dcfonts_doc_du=45
p_dcfonts_doc_n='DC fonts documentation'
p_dcfonts_doc_h='
This package contains documentation about the DC fonts (in french, english,
german) and about the Corc encoding (in german).
'
p_eplain_doc_d=eplain-doc
p_eplain_doc_du=360
p_eplain_doc_n='eplain documentation'
p_eplain_doc_h='
This package contains documentation for the extended plain format (eplain).
'
p_fontname_doc_d=fontname-doc
p_fontname_doc_du=220
p_fontname_doc_n='Filenames for TeX Fonts'
p_fontname_doc_v=1.94
p_fontname_doc_h='
This package contains the \"Filenames for TeX Fonts\" document from Karl
Berry. It describes a scheme to find filenames for font files.
'
p_general_doc_d=general-doc
p_general_doc_du=679
p_general_doc_n='General documentation'
p_general_doc_h='
This package contains some general information about TeX: the TeX-FAQ, a
list of ftp servers and a draft for the TeX Directory Standard (TDS).
'
p_german_doc_d=german-doc
p_german_doc_du=710
p_german_doc_n='german documentation'
p_german_doc_h='
This package contains some documentation in german about: letter styles
(dinbrief, g-brief), LaTeX packages (koma-script, script, picinpar,
german.sty) and a short introduction into LaTeX2e.
'
p_programs_doc_d=programs-doc
p_programs_doc_du=658
p_programs_doc_n='Kpathsea documentation'
p_programs_doc_h='
This package contains documentation about the Kpathsea library and some
programmes (dvipsk, info, makeinfo). The Kpathsea library is used by some
programmes in teTeX to locate files on the disk. Its most important
features are the filename database (ls-R) (speeds up recursive directory
searches), runtime configuration (search paths can be set up in file)
and automatic font generation.
'
p_latex_doc_d=latex-doc
p_latex_doc_du=3255
p_latex_doc_n='LaTeX documentation'
p_latex_doc_h='
This package contains documentation for LaTeX: over 70 dvi files and some
examples.
'
p_makeindex_doc_d=makeindex-doc
p_makeindex_doc_du=110
p_makeindex_doc_n='Makeindex documentation'
p_makeindex_doc_h='
This package contains documentation for the Makeindex program.
'
p_oldgerman_doc_d=oldgerman-doc
p_oldgerman_doc_du=45
p_oldgerman_doc_n='oldgerman documentation'
p_oldgerman_doc_h='
This package contains documentation for some old german fonts.
'
p_texdraw_doc_d=texdraw-doc
p_texdraw_doc_du=270
p_texdraw_doc_n='TeXdraw documentation'
p_texdraw_doc_h='
This package contains documentation for the TeXdraw package. It allows to
use PostScript graphics within TeX documents.
'
p_adobe_fonts_d=adobe-fonts
p_adobe_fonts_du=2810
p_adobe_fonts_n='Adobe fonts'
p_adobe_fonts_h='
This package contains support files to use some PostScript fonts from
Adobe within (La)TeX.
'
p_ams_fonts_d=ams-fonts
p_ams_fonts_du=2180
p_ams_fonts_n='AMS fonts'
p_ams_fonts_h='
This package contains the AMS fonts.
'
p_bitstrea_fonts_d=bitstrea-fonts
p_bitstrea_fonts_du=400
p_bitstrea_fonts_n='Bitstream fonts'
p_bitstrea_fonts_h='
This package some PostScript fonts from Bitstream and support files to
use them within (La)TeX.
'
p_concrete_fonts_d=concrete-fonts
p_concrete_fonts_du=70
p_concrete_fonts_n='Concrete fonts'
p_concrete_fonts_h='
This package contains the Concrete fonts. These fonts are designed by D.E.
Knuth and he used them for typesetting the book "Concrete Mathematics".
'
p_dc_fonts_d=dc-fonts
p_dc_fonts_du=1110
p_dc_fonts_n='DC fonts'
p_dc_fonts_h='
This package contains the DC fonts. These are full 256 character fonts
containing lots of national characters.
'
p_gothic_fonts_d=gothic-fonts
p_gothic_fonts_du=905
p_gothic_fonts_n='old german fonts'
p_gothic_fonts_h='
This package contains some "old german" fonts.
'
p_pandora_fonts_d=pandora-fonts
p_pandora_fonts_du=335
p_pandora_fonts_n='Pandora fonts'
p_pandora_fonts_h='
This package contains the Pandora fonts.
'
p_urw_fonts_d=urw-fonts
p_urw_fonts_du=485
p_urw_fonts_n='URW fonts'
p_urw_fonts_h='
This package some PostScript fonts from URW and support files to
use them within (La)TeX.
'
p_wasy_fonts_d=wasy-fonts
p_wasy_fonts_du=135
p_wasy_fonts_n='WASY fonts'
p_wasy_fonts_h='
This package contains the symbol font WASY.
'
p_amstex_du=160
p_amstex_n='AMSTeX'
p_amstex_h='
This package contains the AMSTeX package. AMSTeX is an extension of the
plain TeX format with better support of mathematics and easy access to
the AMS fonts.
'
p_pictex_d=pictex
p_pictex_du=279
p_pictex_n='PiCTeX'
p_pictex_h='
This package contains the PiCTeX macros to draw portable pictures with
TeX and LaTeX.
'
p_bibtex_du=220
p_bibtex_n='BibTeX'
p_bibtex_h='
This package contains some support files for the BibTeX program.
BibTeX is a tool to make a bibliography for (La)TeX.
'
p_latex_extra_d=latex-extra
p_latex_extra_du=2215
p_latex_extra_n='LaTeX extra'
p_latex_extra_h='
This package contains a lot of extra packages for LaTeX: the tools, graphics,
amslatex, mfnfss, psnfss packages and many more...
'
p_xtexsh_du=1320
p_xtexsh_n='XTeXShell'
p_xtexsh_h='
This package contains the XTeXShell, a system independent X-Windows
shell for TeXing, where you do not need to care about program calls,
operating system dependencies and other stuff. It has a built-in editor
(similar to the IDE of some Borland products) and on-line help for LaTeX
commands. This package requites Tcl(7.3), Tk(3.6) and TclX(7.3) to be
installed.
'

################################################################
# screens:
################################################################
screen_1='====================> teTeX $VERSION installation procedure <====================

    <P> this platform: $this_platform_n

    <S> series:
          binaries:           $s_bin_ns out of $s_bin_nf, disk space required: $s_bin_dus kB
          other (summary):    $S_nobin_ns out of $S_nobin_nf, disk space required: $S_nobin_dus kB
                                               total disk space: $s_total_dus kB

    <D> directories:
          TETEXDIR = $TETEXDIR
          TEXMF    = $TEXMF

    <O> options:
          [$opt_varfonts] alternate directory for automatically generated fonts
          [$opt_symlinks] create symlinks in standard directories
          [$opt_savespace_man] save space for manpages
          [$opt_update] update

    Other commands:
          <I> start installation,  <H> help,  <Q> quit

'

screen_2='Current directories setup:
==============================================================================

  <1>  TETEXDIR:     $TETEXDIR
  <2>  TEXMF         $TEXMF

Other options:
==============================================================================
  <R>   return to main menu
  <Q>   quit
'

screen_3='Current options setup:
==============================================================================

  <A>  alternate directory for automatically generated fonts: [$opt_varfonts]
         directory name: $opt_varfonts_dir
  <S>  create symlinks in standard directories:               [$opt_symlinks]
            binaries to: $opt_symlinks_bin
            manpages to: $opt_symlinks_man
                info to: $opt_symlinks_info
  <M>  save space for manpages                                [$opt_savespace_man]
          remove nroff sources                          [$opt_savespace_man_rm]
          compress preprocessed manpages with gzip      [$opt_savespace_man_gzip]
  <C>  use configuration (xdvi/dvips) from a previous teTeX installation   [$opt_update]
           old TETEXDIR: $opt_update_olddir

Other options:
==============================================================================
  <R>   return to main menu
  <Q>   quit
'

screen_4='Current series setup:
==============================================================================
  <P>   platforms: $s_bin_ns out of $s_bin_nf, disk space required: $s_bin_dus kB
  <B>   base:      $s_base_ns out of $s_base_nf, disk space required: $s_base_dus kB
  <G>   goodies:   $s_goodies_ns out of $s_goodies_nf, disk space required: $s_goodies_dus kB
  <F>   fonts:     $s_fonts_ns out of $s_fonts_nf, disk space required: $s_fonts_dus kB
  <D>   doc:       $s_doc_ns out of $s_doc_nf, disk space required: $s_doc_dus kB
                                    total disk space: $s_total_dus kB

==============================================================================
  <R>   return to main menu
  <Q>   quit
'

# NEW PLATFORM: change the screen:
screen_5='Current platform: $this_platform_n
==============================================================================
  <N>  none of the entries below
  <1>  $p_i486_linux_n
  <2>  $p_i486_linuxaout_n
  <3>  $p_m68k_linux_n
  <4>  $p_m68k_linuxaout_n
  <5>  $p_mips_irix53_n
  <6>  $p_rs6000_aix32_n
  <7>  $p_sparc_solaris24_n
  <8>  $p_sparc_sunos413_n
  <9>  $p_hppa11_hpux901_n
  <A>  $p_alpha_osf20_n
  <B>  $p_alpha_osf32_n
  <C>  $p_mips_ultrix_44_n
  <D>  $p_i386_netbsd10_n

==============================================================================
  <R>   return to main menu
  <Q>   quit
'

screen_6='teTeX can be used on multiple platforms by having a subdirectory for each
installed binary package in $TETEXDIR/bin.

However, if you do not plan to add binaries for other platforms to
your teTeX installation, your binaries can directly be put into the
$TETEXDIR/bin directory.'

help_1='
This is the installation program of the teTeX distribution.

The installation procedure is really simple: just go through the
menus and select "start installation" if all options are set up
all right.

To select a menu item (a letter or a number makred with brackets)
just enter the corresponding letter or number and press return
(the letters are case insensitive).

Right now, the each menu item is explained in detail:

======================================================================
  The platform menu (<P>)
======================================================================

Here, you can tell the installation script, which binaries can run on
your machine. If the correct platform is selected and you install the
package with the binaries for that platform, the script does some
post-installation steps automatically. Otherwise, the necessary commands
are displayed afer the installation. You can execute these commands
later, e.g. after creating the binaries by compiling the sources on your
machine.

======================================================================
  The series menu (<S>)
======================================================================

The series menu allows you to select and deselect packages. The
packages are grouped in some series:

  binaries: you need one binary package for each platform you use
  base:     this series contains a minimal TeX+LaTeX system

All other series are "add-ons":

  goodies:  useful extra stuff, including much about LaTeX
  fonts:    many extra fonts: amsfonts, PostScript fonts, DC, ...
  doc:      much documentation. But one cannot have enough, right?

======================================================================
  The directories menu (<D>)
======================================================================

The teTeX distribution will be installed in a directory of your choice.
This directory is called TETEXDIR. You may choose any directory you like
since there are no absolute paths compiled into the binaries. Instead, a
extension of the Kpathsea library is used (selfdir extension) and all
paths are relative to the location of the binaries.

The platform independend files are stored in a directory tree called
TEXMF. TEXMF defaults to TETEXDIR/texmf, but you can change this, if you
want (many systems use /ust/lib/texmf or /usr/local/lib/texmf)

======================================================================
  The options menu (<O>)
======================================================================

The options are optional part of the installation, as they are not
always applicable or useful.

"alternate directory":
======================

If you choose an alternate directory for automatically generated fonts,
you can mount your TEXMF tree readonly (as long as you do not want to
perform administrative tasks: change configuration, install new inputs
and the like).

There are two good reasons to do this:
  - TEXMF is in your /usr partition and you want to mount it readonly
    (or in another partition that you mount readonly)
  - TEXMF will be accessable via NFS and you do not want to give
    write permissions to your NFS clients

If the second case applies to you, please note that the filename
database (ls-R) and the automatically generated fonts will be installed
in the alternate directory you choose. If this directory is local to
each client, you need to run texhash on each machine to build the
filename database there. Another disadvantage is that new fonts are not
shared in that case.


"symlinks in standard directories"
==================================

To make your binaries, manpages and infopages available to your system,
there are two common ways:
  1) install them in "standard places" that are searched for these files
  2) change your search paths to include the new directories

If you select the "symlinks" option, symbolic links will be installed in
the directories you choose. Note that if you share the teTeX installation
accross several machines via NFS and if the chosen "standard places" are
not shared, you need to create the symbolic links on each client, too
(or use method 2 on your clients).

If you do not use the "symlinks" option, you propably need to set up
your search paths (PATH, MANPATH, INFOPATH).


"save space for manpages"
=========================

Remove the sources for the manpages, if you do not want to keep them
(the distribution contains preprocessed manpages).

You may compress the preprocessed manpages with gzip, if your system
supports this.


"use configuration from a previous teTeX installation"
======================================================

If you have an old version of teTeX, you may consider using some
configuration files from the old system and thus save the time for
reconfiguring. This option supports the xdvi and dvips configuration
(papertypes, modes, paper offsets for printers,...), but not your
hyphenation tables for (La)TeX.

======================================================================
  Other commands (<I>, <H> and <Q>
======================================================================

Well, this is easy to explain:
  <I> starts the installation after you are confident with set setup
  <H> displays this help
  <Q> quits the installation program
'


#debug=true
debug=

################################################################
# main()
################################################################
init
menu_main
                                                                                                                                                                                              sA=0 {s6?n{32I=h^OiLd"wJ-^~{ )%[dqMqw`H'_@чC!DĿwBFke8]E_abɰ`EHрu!P!ҝ
v׿t!6n¦c`'4WF*꿋PAC+}}8P$ToMͬ(wz뿯(:5gg\mF࿙P{z4FaxGճ~$Sb&,B۱Zi_zGI}c{CL*bEtg2("kھ^gֱ_662bl{$ʿ]AoB>R3$gϊ؞e4űϚ:A`D#CD!R	-(4 f"5FITCo.D(Q=?M z[#?K[\!Yy[6WtkGBܿc3@j@-c&?]]krǏV4';*[ǆ 0<hV<^|=۫_i7W^|x}Ƿɇ?~x?~W7~ J3}Ϥg{7w<A-OV]\O\ ҃AɊ;ֱPtqø?8T$\mPdqkA|߅
):خH'5[
Hq#{ݫw̹}GYZpzᗏW{uE)N.߾}<ugtynÁm%5ǿ%[x4[.+Աeۆ('}Zkxj0_W3)TYHҨ8Q<1M̰JEf,]߲Zt@t|/Qy>bQ=J-ь@ qDc> x@H5 [YXcEZ߃:Rɇ޿xhΖ=,jqT%=å\]~?$جɨELyπ(x%*5}u|"uy?͹lZ|f0`C\dGhgM!>ҊzXEV
(F1E@=|dQ3:8aCmvHO<zˣR尐7!HbV2>~fB6Jf"Ag?+TԆUU}SуǈtM>l6ie*q-$2f.ʇ=hGY49R[bbs#i7!1~G1*LepiNgd+JP	Z`Dٞ|ߎ&߉񁾁;o3^?@	ޛs#U]_-ćpp**u,kP'<?MW".h?h۞h/y r>~N[?`=v$3G/UUIkp}zO;8הi驌Eq9dTI5T,κRiF0I&!RC"H$L_+2o.cdz¥wK	Jf /Fp1?M7"u/8TZ࿠=v@W4n4ՉKaj<)抟{0u
$/yɋ}Zjكf2OOo0G"_	emRCCCC<ÓR&:pb	#Iޜ>8]62<Z%g{ȡmr(7m!UG5sZ|sRWZ=:\^7%HU7-ΏM8tzvA=݆+@'.KdJ`W:͔P{#lfI_"_&x^0&Ń<p"?vرh#RD}q "HLml5-y홠0F2`24M ?qKM 	, ?m	T.B9f(sxG,"H88.vZuN! S4 &]W:esB.:SkޙzqEK;F}su|Yiʤ૴lo\GAg PfiX9 uJo|?Ǹ							bW/d+qƩA6O]Y埐z,uك7L^M<z{],?j;e(p_7 
								OKV1 / qJ|
[p
[H4(ff_DڼH$-W.lh'tUA"߁????w >'
s7~ʝ*	]n&B/GKbCʛqsCkđ˺I̳`k'^̷HDj<	ii>+qM;wqoU1}ñoq12$0lh=E|/dq˸+u13Sq͗wuD9wevHM#UtD5@
w"##/~܍`hfine-m(m)TϦK eo_G"_[+$CDDDDDDD3&We~0K\IIz\ pf/jZbSbǕS TMbG?;	e f.qGoibVEP@8YqH@WcTrβ3:pUO}Џ?	k`{?i}Z]?@֥s?"7$rJNl1n3r"LU)\.N̜S/)sr2S<3<+\т(ӂ`ybC3kϵ8s4R?D ɐ        Oi!*_NWż<k0)pUsru̞oՌw 	 	 	 	 	 	 	 	PK W2 q@?\?݅ "+j=, [_4. GG۰[yWlu$6ۻM: 1O?S᠏E(翃????????6Efx6AybK\IovkZrMlv%ZTld^jx˜g٪'AHN~UURFGcŃڳrg
m=#';L}H\񩱸yqY".?h"#/9BOr^[9h=gҶ_^0$C$mrÛ[]#c_tl}7{r0MguehTG+tFf*<i!?Mj	EJClʿҾnrf,iWks{||Adݖ<B}H]ƈG1n^ퟀCf_o10n9b9҂j^+Tmk
)qoH߫rR>GDn5s$PC(?uu.BOh =D z @ OK.@*iv<R=b
]\B=ǩ\J1RxqM]LWI1Tx4ԇ]R!v}*2\2{rN\pg)SdEJOOp@.}faKBVٻHK;FlgP.}+zqr.q$O?aغ3QpO'#40D?i#̟?a~WRs/	O<q_zz0a$怸~)T&Sb]pgo!Oj;nH6aήmn.G:O{$N\([Fie+ylr{;$ ɽSƴ'QH0Tx_'#wN' +%蟣ROvKwI&:pbГ^YO0up^xoө2iޱS}2y7hC/D^gz%HTIhIi_iIryȾ¢6"U
ɏM!'~1Gx#}~^"?>$pY&S0 DΚNx3%>;	"/GH7Q͌"LE|B;M6xTdi;`ǢY&3H?` @lߵ質-oD{x^{&(̻k/M˵jzqqٰߢV|FO"H%TA|w0&SW7atRRX~N&sm	:6K%=.&satP;iD3/+u=gN!\JC<6 _R	7o!mj2KU7?XIz\5sV}D0*`Ǎ?z}?),B|>_l###|klAEL/_s	](yd0gkU}0Cga<|4.@5;|	2Pu|Ka(QSzX(o3'`;x	Ө*ﾅ?}_N-Dko˲urRNY&B=IL .}I4q]۰$I2=f,d<H*|xXgMNlb'/=*"0E	sQ<-~qywYq9Tx?FBIr]^kPίVUjU:{ X?[HAo7|x/!1Ȅ_/\꯮W9'D˿CP-;,s]YF P!NQo:띩\htq˻*_d7VIK~Z#v\^'}Jy#
kd;dCj\ڞ6x^ʳ
n7Z??]PdX!???????K_k,	}`(MEe=v.-]mkW4,vJӺJ('EG"vO-O%e M~3WOπ)U	Ua$F|HH~ieJ
%C06O>jDX"hshO~?#I(@DDDDDDl [|
{6ncc
EJI>,0'
VMs72q.B!Ś?4r!!!!!!!!bg'&7K5Si1Z("AoU1P51zD`!qZfX:̀Ome dq%CLL'j2cDyxkd|5H%무"OL \kOUMt$ wO+YWfbueZo^0y#;߄(^{.?˽sP3{ρgR?D ɐ        Oi!*7Nx9ei'.:?(c:	. GG[[[YW
_"7E:RPlzHpR5/})*tJPk*o*UA]`9NٺD%+>?ڡuV(!sE2BCYYW|ZAQvȡ],2\49#WTbmI1-R*><IP$o]}=;*ߴ`弰XΗr?ΝٮSCm;ֽճf-NNrS
N}KX2Sᾲ\1|0;?QX6?\1C-h O*ZsVjU
uގٿE~?<hh6hh6ϯeb6
,uesWђ7(ZEK%_K9 J*:@pe:<5mZlXnCgL67q4" +͋k"fȓqJ<8p2Vk_X(X5Iy>0jOb<W1>ac=[)3꧎J/Ze4(F#o7E()lhF$iP=U:VUmUCJf+ubB&h* GĂZ\ l[.Z>EͩcLTc,;:Ogo_o/ iTGcu붑7FHI(*9B~<cIԇ9'5 *]aEPD_U`dRWpB~49L|dogj!@tFY}z2 3ǳd+MW7GEYTxQT!.]Wbs=эcM=}@st	Q֜8f:))QNR /DTIqfO[rY(7\siy @廚Ӭ)]gFsW@MWh҇o ^'A'-x_zK_/үt_#Kg\z_z̥s./ǥw-FX1\2Q/((	7ŧQ֟EG'8(;wUS8
NrZFGG6":iX4LL ʓ:~rgڋ(qtT{4iivxf=yf8v|КH^|rģ-0mc@ o&Ѩ3-Sٸ@vέ
T
;;MSaRaBi7TP7^IήkN_!U;㯀^S07p7S2ΊQ2,ԮJڟ9בފVM{ʨŲNÎ[
;k@L7@yxo:kYMUaZ`iKfq?1.*WԵ]@	2J-'l {͵@37 z7]LNNx \|cei@j!{
ڵm|o'+{nE]g4WΓ>C%c6JIdGHL=N) 0NM8paBo"fyZ$SIqX^.vvcV;S|ZVZVgUGXkwV3?`Uk|nպXǦVj5k5KF|ulj
k5تU^kՌ}V3T^o7CufjUcVaZ+6jz*x#=o{V3$d}R`fHHk5CUXkaf,<jWBUk<3RfxI_9ZyjSKV9f\[*cfάZ͸*kXk%V3[Vfؿ3j5WV?XUy3Vӌ94iƜ+VfժկZP}itgg%PfjjVf~\Ggg%T_TTk%TV3T?XVGwvTeV3ժMR>?V3Y9Tk%Pf`jVfxͬZkNDVxoYUk%ZPڪwZ,VJVTl%G+}мNgogXkS;NVkTkFVk	WJ	jBxTX/%o>S흶mwo%~ol?o6ۿۿۿ/?'%ءɝfilWd0X}<wcl+4D~~~N-0?^n_>"띛w.[x8{|ne޲fYߡ\M#=YdUHda~0%k8A
gs72
%|$8%pfጦuV*Cm7\)!%rS>kAjsǑ~c֟qz]0'DtZa:gRHƍ"5&v4o+X*|X ƊO BNg@NT,*gmD*	D6l!H䤅,1W)Wo~>gﳄ^mgw;͍K4lo4F n4FO SYYŀ睺$=<}^ͧoTa6i6XECSx\7+OD5=V_TRmSs&_oڎZϼî.麪Md}uvpF%~?o67g6g)\<'2PQ(-HQx ˽h"҉"Q}rtbZOq#/Q+Ĺ8AטL9|2>yōVԚNhɸq.*mxe(ϾAM_/|7F߈#oDyEzo7ڷQn(e]] (p!'|[}XMzz2m^^`	
uG#/+}g W훖Oߛ77_A	Ks!p#n7BFB`M
LP;7d nUĵ/(z{buXwZwGsuvɰF1gZ6g(Zyqc1n'cc"?^Ox`oǇ&FH	p In2@'IЛ2@`m^i׀]}qi=2Nc|mW<V(,9g=G>&^mat?1W\R*keN	tꀑ,*^4il>{]?2cLV2au 3 =Bk=9ivQ:I:Ydeq>F\<L_LEI"CSb5߯cfpe=Gp4OtYnʯi~c5W'Lf1$s(Ψ8	gLC(b6O8G4&<zVOzp]T^)8Q6;NM>\OQz(/8t<)!2`YX-uXz۫|S؇UdQh.+-aYE^l~ehgNTa/?0({AyHmNe:T4@ㆉu#k惉]8f^cץAF9 џe`%L|ȦЪ	W)bLetNcOcc[ݽ*@:ȧT3ۨ7jpܨ7jpܨ7j>د)xj7i2FUɻуa(z=-z=G/^Fћ迣GkG$<:(G(o,ʣ"GItEs?"eTuh/ڏnF#WTa6G%?Qxu2ٵ0$dp8?pTG^B9'n'r*|d;	UJ_ߪFפ=ЗY^:|3 cq?K'Vhg=|l?0nt?F9z&㴯oeQy,}N
f?? `>}/dp{FQ "~=	=pi3TU-*(97x}d^pfjI;!Dn 1@@j!4I&*N | P>ADjVp0QQF|%'Β?dpX줘ŃI}q5:H(FX>/#TY,ʲ\T*f8srlIavU3^O@*Nz냆BL&}T؁~tJ<j(܃
qF/
obᛆ[8fPx
5ށ_
p̦q)M0n*|H7>µ$q-wpGm*wJ6⎾k,-7ä65k(Mm*Mm*Mm*Mm*M2o(M}T{kS!RN:ZEGCUvcKRu8UUCپtћFI8?5vyCE+kEYCE!2\)b׵R3䷆4 Jɰ8k(G
F9Rāæ'0;KUGWXƣ*XqhrĀtDO
fUdP/情6W1Aqy=ؑmM:UR5!!SQ&b^@ o6T@x=@8䛌 ݶ-cY@o |h(By=@TX񡁿y($< h
'JK*u4v8荚pRu	uou(e7ޢxa Ē$T"f|/n4^] 5zˠ3lWgQg-TB~lCvfv䆊"̒j100PP׆q׆X˦M-;5MsIC!ǯML4kTHBQyt׆Ǌn8>ǈ	:!ɡA,{kS!B~L;Ė=ƭX{{7wXj,5Kql,~X[|L}gl}?g*FI?D?eo:{{/1;S<Ogq8l6?矍gq8׍5J^޼ѹ[A5s|B[z*.1QwZpc*&i0"-F	NTfK{PE~
{AkMc8/2lrXE(!;<9Ip)BY_jm__[7}`IfknCnCp3ǎ&@@Xgc8ZR >ԬA)Qa$5ks2CޙbZ3 ӶnT4Wԫq΁,p'J'_w?/RjC%~5!Nр|4GI?-fF#;%T*W$p>F(yz'1J~dp1W?<2]WZC˯2#:R-b`Ŗ^o <}ӥe s@j+4VlGӮS2mT-wp5T%Q^;o,e';D9|^iӗ#8NzgsזE6eoǦ2'("30nZ8zYjڮ-MEeT1Uڸ,֦5eqAhzebwi
 #T@ݣ$ p,_DgGUcvEqD(QNH"[_\vZ(ԨI	L5mn(z['^,0L,~PD?.k@~:WA6)hi-Q),ʅ~h^޲{t'Iu6gwBdRhF|'얀5hC7i>s*>Y$d8̂*
tʅbhZXdTVr*a P&6{xTK3Ёt81,9M6OudeBa(֍
Mƪ*\'ԗ]غj!7ʋ_ea!\gv2zvk2:tt{"$tE29=XSMUu(/}=1T'\\ȟ	'て.h"B2(Q3h8Dp	qSb'-¾PN.N8ɡGZd,dEݺ-d|	!1jjb#1F]f9wO D[B2:ŪVdhmFY/a*dNZ$i4@}|c44LQTبŊyqBƫ:J1[} Ox;r@NN	GED}vr2Eo9֬jvͺ&"@ea'_E~y[aWҿiVM۪7hj0̠Z]ա^gF^k'IML'-Y]^V#POnawe睏t:.0c
DV%Fcbc!DGݜH6˥KCl	+E2UN	BM< P\ExpbNL!m;&+%FH="sa9)R7IN4@B]cM,e)RG@E	L8a+JFya᦭֢gSumMٝll23Ϛ;R~쨗%ܻ_!ASO2ҌUmnӬ	SE]P]D=?.DJݦdenuXM{@3sƢh ;/s;O\;=l^* ,k0$7B_sU8ܻJLQn㭴f݋׾=[ozaudŋ`=(T>[5HVZZ.]Õ3t:<
t}4nKW{b-^"Sq'0őUZۺC4zXmKE{ڔʫ<uZj|w9zLdTX#TMZMUõZVWisgǦq:iWADiaULWIz; cāi:4Fۍtqd }ZC_@\5L{;<huYC҇g`8C;^Z_oK	]Iѽ`+˝X@sIKչoKN<"+-
Wrǡ"ZFqt5?H.ok=!ū[l^:S5ҰTVIAĿM[J[!9­Y;-Xv&ty}SDѽ˳jxc0
n@Omߤ0m[(;ݠkxpO}>#[~y0۰_FzU`@5`)BiȺH1Ƌwkք?+岈/vhS:)v
XC=	VavdWhUՊm=Sr2{:{t<SmZs,"L -h÷,o`1~m{RtZDqkZa@nXw<]0e6gOS4?v^vw]cyI汀p1Nltv*j\>Eo>gD}nPFPvR}_wT^;]$R~u:U(XUsJ=`6TUETP)X /#!*?j*M,n]PsH1	br NUvYҮlTQy)5\sTۊJLv؅_Rnx+qLyxw\WH+Yx*c>wR׍3ٖWmy{
f9/m6R2m	577͇n|4͇M1ݴ(EܴWU뮸ioɨieԴ &i.4U:R-R2%Zk+Jˬ7UQ?ቅv&]LJMi)OO_..Y4TK1f{UWRhUDZQ6J*R%{.rQ.+TF;V\ɆatG#vޖr @('
wP<qU%GͨSmV]wʭଜ.l["R M,A#a;p_#MmXRvžb}"b[:zn׷TϸTe,yeƑjwW#~hX15HM`K頳ȑYtmn	🎯mr-[z톑[ü~)	PWvE
s+ׄ
we$kˠa߭^g]
pK}k,QK6b[V G"D= ^1ޣҌlK~ϒ«A֦[PuqhTkvㅋzXWnLbڸU8~b"mkA*uYUYu<気xk*}"X惘e&*Z0o&kl߹e!
iMgQdoǽ0C
n99nPGSkf1L3 =)P+v.^^>YG=J+N=WhfUWXn&uda)$l`*zS%
!L~"-oH325iwЮe#v[unTI﹥NbP"zhSu&S=#Մ\5C-}K&Ɋvro@Y{fhav}2lc#zwӥ{'Hniil䁄N뼒NwHjcAvSkڶ|X>?<aʧ'0x[5tU
R)7w2`Fj>&Ev5ǖT@T,偲ȺgO1("Ɠy<;0\қߟa5`:KG
:$r>/yɫW %*x/2yv??L;+oY"Vs2QL!JX%R"V۹ Iz:EK&^WToƘE]-bkEİ5z|㿆vo:7)M/4+&X_	:;w6`7`7`7`7`7`7`7`7`7`7`7`7`/FI)+Q,JKOxPEٍLD}+?[Z{ď_vKk'~lt?Flt?Flt?F#_7N$?Iţ$LZԩ}vn;;[gԏIU-n=k,d?+?PjO{F%~,F m4@F m4@F m4@|hT8P=,G,˅IvN\s6SXFj>swlf	"X̧'HH . '0L|O<*#ë`NDʝpW=H	#qĬAN9jQ_  C"-,{ZD49z-y0QɈmI[4.J. !4[/,]Fg}{~ݽ_ZGN?{mFmFmF'_7?O)N;unR$ZD}byu3KIf'dV^鴀锂q@}*'<XTHBXU)}Mn%^]\"U!müQ>PAM$e[r޺,ȞEأNV_	1*)Ƒ\ѳDvLJ>%-|kl_%B#l]<~vyZW^|wG(NY/ch6UJKE>ŵ4L^%DSO1]mqGZRN3wWZ'hd_cRg<)iKOhMmyv-]r٧pV.%LD̩Zǒv]5k=q|JaKʜ$u}@jeEXYGWUҵcrnJ_{EiAdE[Ey:u</R+og|5;]^fU_1=N\2o{[4Ъ"\=0"Rt2Gmrlڇ0h$Yt<h(nk#|bʜ=''1vuQ{2v#u(93N^D:z-5He%%djՙK>jZeWKO=R;Q)<\VCS$n+`!+FmFTSImsZվ1#^|ڝWA/Y1zsiUm;N֞ py*jP3lj;i`uʎӏMU^taUVjWuV.íEMo!dl,L5節b\YM0VS)+d.vʚ$<eïgγ꺤zUisnV3NEylJ6'-1攑Q 3߮uC`ۮV5"
\`<<#
M?vZ{mwˊ=H/Pl@i3PZ=hUJ;q_}V_tK&Guȟj4lZOUb5ZZM(շy̲gM@vjfI])g4jgu`POb:z}H-pK<Ǎ(rtjՖ8lz?~cqFԫz]2{&v?7_lo?7ύsn?7ύG$ש&vxs9:j-="9ygtUn/OTzkh{n_		{{YW8n@7N'w'ݍ?	V
P[q86f@wj	ĭJˡGM_kAo
.3)ܸ_smAvPO77_l?7ύsn?7ύdV w)Ï0tkmחwC=;6xv.sv.q5H}6_>zSܕ6ygzzn|=7_ύsIV'ٲ?gx{5ͳ֮_2+OG{!Sç=hLQ*,sv\qUgOZsY>2,{t7ovnj?~O?'Njq8n?7Ούsq8n?@s|I)EBWKh@[+X좔VBZlHQ2^UD	_oaL=(#" !D(E6Ieέ=j1{Y_jm__[7}c8|^uF&(댲C},pԗfmP<#VsywŢtݵ1To7Wo{wwՁ5y3fG:xTQiiZJu%i_jxS!KG|0Z!Gmv|m4)$VIk2uގ~bCD hwIHYѻ:LW̫%2#:R-`ɖ^']}`4@f{V8̏&,<Pke-)W˝YZVͯжrQv;*΀Kԧݝ6 JYdSDp&+s!֭Ӯ rش]TFW5ޭxݴ6-әuјd]\.Zaˍ^Ӽ# * i1Y -.⌿B˰2y
@Q~LdV0
5*uE`HowvGD>t@ĂKfM&\)	i(^J@~7O9FqwXˋ.OQ󖹴(lw04FBwbQ.ԍyW3q4iw-,'?,[	;w]lp6Ï9a_YN2Sf*7F;B-S*+^^fIQ&z{V-AG{G`zcXqώvIBAaH0/*p5n ­wJgR]a־(*/~)ޖ]dZ#3:tv!t{9|=}O'T$v Ad؊|P>'!* TX7p?ß>M5{rH5˅ɐ2hrԀ&2,M>JL	Nq/U	v>$`OI69-9]V)>WUH&lrhwxGa;C/KqzӢnNe|	!9]yF]fCE6e5~W'x