geexbox-generator-1.1rc1.i386/0000755000175000017500000000000010561133355014172 5ustar benbengeexbox-generator-1.1rc1.i386/iso/0000755000175000017500000000000010561133267014766 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/0000755000175000017500000000000010561133343016062 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/sbin/0000755000175000017500000000000010561133275017021 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/sbin/init0000755000175000017500000000126110561133267017713 0ustar benben#!/bin/sh /bin/busybox test ! -e /proc/cpuinfo && /bin/busybox mount -t proc none /proc /bin/busybox test ! -e /sys/kernel && /bin/busybox mount -t sysfs none /sys /bin/busybox test ! -e /bin/cp && /bin/busybox --install -s progress() { if test -f /proc/splash; then echo "show $1" > /proc/splash fi } count=0 for script in /etc/init.d/*; do grep -q -e "^# runlevels:.*$1" $script && count=$(($count+1)); done pos=47000 step=$(((65535-$pos)/$count)) RET=0 for script in /etc/init.d/*; do if grep -q -e "^# runlevels:.*$1" $script; then pos=$(($pos+$step)) progress $pos /bin/sh $script S_RET=$? test $S_RET -ge $RET && RET=$S_RET fi done exit $RET geexbox-generator-1.1rc1.i386/iso/GEEXBOX/sbin/installator0000755000175000017500000007532410561133275021316 0ustar benben#!/bin/sh # Detect whether partition ($1) mounted at ($2) with type ($3) is microsoft. detect_os_microsoft () { local longname if [ "$3" != ntfs -a "$3" != vfat -a "$3" != msdos ]; then return fi if [ -e "$2/ntldr" -a -e "$2/NTDETECT.COM" ]; then longname="Windows NT/2000/XP" elif [ -e "$2/windows/win.com" ]; then longname="Windows 95/98/Me" elif [ -d "$2/dos" ]; then longname="MS-DOS 5.x/6.x/Win3.1" else return fi echo "$1:$longname:chain" } detect_os () { local partname partition type mpoint mkdir -p tmpmnt for partname in `sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *[0-9][0-9][0-9]*\ \([a-z]*[0-9][0-9]*\)/\1/p" /proc/partitions`; do partition="/dev/$partname" if ! grep -q "^$partition " /proc/mounts; then if mount -o ro $partition tmpmnt >/dev/null 2>&1; then type=$(grep "^$partition " /proc/mounts | cut -d " " -f 3) detect_os_microsoft $partition tmpmnt $type umount tmpmnt >/dev/null || return fi else mpoint=$(grep "^$partition " /proc/mounts | cut -d " " -f 2) type=$(grep "^$partition " /proc/mounts | cut -d " " -f 3) detect_os_microsoft $partition $mpoint $type fi done rmdir tmpmnt } # Usage: convert os_device # Convert an OS device to the corresponding GRUB drive. # This part is OS-specific. # -- taken from `grub-install` convert () { local tmp_drive tmp_disk tmp_part if test ! -e "$1"; then echo "$1: Not found or not a block device." 1>&2 exit 1 fi tmp_disk=`echo "$1" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%'` tmp_part=`echo "$1" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%'` tmp_drive=`grep -v '^#' $device_map | grep "$tmp_disk *$" \ | sed 's%.*\(([hf]d[0-9][a-g0-9,]*)\).*%\1%'` if [ -z "$tmp_drive" ]; then echo "$1 does not have any corresponding BIOS drive." 1>&2 exit 1 fi if [ -n "$tmp_part" ]; then # If a partition is specified, we need to translate it into the # GRUB's syntax. echo "$tmp_drive" | sed "s%)$%,$(($tmp_part-1)))%" else # If no partition is specified, just print the drive name. echo "$tmp_drive" fi } # Configure network interface and parameters before installing GeeXboX to disk. setup_network () { local title phy_type wifi_mode wifi_enc wifi_key wpa_drv wifi_essid host_ip subnet gw_ip dns_ip smb_user smb_pwd val f title="$BACKTITLE : Network Configuration" f="$1/etc/network" # Get type of physical interface val=`grep PHY_TYPE $f | cut -d'"' -f2` phy_type=`$DIALOG --no-cancel --aspect 15 --default-item $val --stdout --backtitle "$title" --title "Network Physical Interface" --menu "\nGeeXboX can only use one network physical interface at a time. If you have more than one NIC, GeeXboX will use the first one. If you have both a traditional Ethernet adapter and a Wireless card, GeeXboX will use the wireless card by default. It is recommended to keep physical interface auto-detection but you may also want to force the use of one kind of interface.\n" 0 0 0 auto "Auto detection (recommended)" ethernet "Force using Ethernet card" wifi "Force using Wireless card"` || exit 1 # Get wireless settings only if required if [ $phy_type = "auto" -o $phy_type = "wifi" ]; then wifi_mode=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi Mode" --menu "\nAs you seem to be using your wireless adapter to connect this computer to your network, you will have to setup the networking mode.\n Are you connected to an access point (recommended) or directly to another computer ?\n" 0 0 0 managed "Connected to an access point (recommended)" ad-hoc "Direct Connection"` || exit 1 wifi_enc=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi Encryption" --menu "\nAs you seem to be using your wireless adapter to connect this computer to your network, you will have to setup the security mode.\n Are you using no ecnryption, WEP encryption or WPA encryption ?\n" 0 0 0 none "no encryption" WEP "WEP" WPA "WPA (experimental)"` || exit 1 val=`grep WIFI_ESSID $f | cut -d'"' -f2` wifi_essid=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi ESSID" --inputbox "\nAs you seem to be using your wireless adapter to connect this computer to your network, you probably are using an SSID. If so, please fill in the following input box with your SSID identifier or leave it blank if you do not have one (open network).\n" 0 0 "$val"` || exit 1 if [ $wifi_enc = WEP -o $wifi_enc = WPA ]; then val=`grep WIFI_KEY $f | cut -d'"' -f2` wifi_key=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WEP/WPA key" --inputbox "\nAs you have selected to use encryption for your wireless connection, please fill in the following input box with your access point WEP/WPA key.\n" 0 0 "$val"` || exit 1 fi if [ $wifi_enc = WPA ]; then wpa_drv=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi WPA Driver" --menu "\nSince you are connecting to your network using WPA encryption, you will have to select the driver interface. Most native linux drivers can use wext, but atmel drivers might have to use atmel.\n" 0 0 0 wext "Wireless Extensions" atmel "atmel"` || exit 1 fi fi # get GeeXboX IP address val=`grep HOST $f | cut -d'"' -f2` host_ip=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX IP" --inputbox "\nGeeXboX needs to be allocated an IP address to be present on your network. Please fill in the following input box or leave it as it is for using DHCP autoconfiguration\n" 0 0 "$val"` || exit 1 # do not get more settings if DHCP if [ ! -z $host_ip ]; then val=`grep SUBNET $f | cut -d'"' -f2` subnet=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX Subnet" --inputbox "\nYou may want to connect GeeXboX to the Internet. Please fill in the following input box with your network Subnet mask or leave it blank if you do not want to set a subnet mask for this computer.\n" 0 0 "$val"` || exit 1 val=`grep GATEWAY $f | cut -d'"' -f2` gw_ip=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX GateWay" --inputbox "\nYou may want to connect GeeXboX to the Internet. Please fill in the following input box with your gateway IP address or leave it blank if you do not want to set a gateway for this computer.\n" 0 0 "$val"` || exit 1 val=`grep DNS_SERVER $f | cut -d'"' -f2` dns_ip=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX DNS Server" --inputbox "\nYou may want to connect GeeXboX to the Internet. Please fill in the following input box with your DNS Server IP address used for name resolving or leave it blank if you do not want to resolve names with this computer.\n" 0 0 "$val"` || exit 1 fi # get samba user name val=`grep SMB_USER $f | cut -d'"' -f2` smb_user=`$DIALOG --no-cancel --stdout --backtitle "$title" --title "Set Samba User name" --inputbox "\nWhen accessing to remote Samba shares, you may need to be authenticated. Most of Microsoft Windows computers let you anonymously access to remote shares using the guest account (SHARE). Please fill in the following input box with your user name for accesing to remote Samba shares or leave it blank if you do not have one.\n" 0 0 "$val"` || exit 1 # get samba password val=`grep SMB_PWD $f | cut -d'"' -f2` smb_pwd=`$DIALOG --no-cancel --stdout --backtitle "$title" --title "Set Samba Password" --inputbox "\nIf user needs to be authenticated through a password, please fill in the following input box with it or leave it blank if you do not have one.\n" 0 0 "$val"` || exit 1 sed -i "s%^PHY_TYPE=\".*\"\(.*\)%PHY_TYPE=\"$phy_type\"\1%" $f sed -i "s%^WIFI_MODE=\".*\"\(.*\)%WIFI_MODE=\"$wifi_mode\"\1%" $f sed -i "s%^WIFI_ENC=\".*\"\(.*\)%WIFI_ENC=\"$wifi_enc\"\1%" $f sed -i "s%^WIFI_KEY=\".*\"\(.*\)%WIFI_KEY=\"$wifi_key\"\1%" $f sed -i "s%^WIFI_ESSID=\".*\"\(.*\)%WIFI_ESSID=\"$wifi_essid\"\1%" $f sed -i "s%^WPA_DRV=\".*\"\(.*\)%WPA_DRV=\"$wpa_drv\"\1%" $f sed -i "s%^HOST=.*%HOST=\"$host_ip\"%" $f sed -i "s%^SUBNET=.*%SUBNET=\"$subnet\"%" $f sed -i "s%^GATEWAY=.*%GATEWAY=\"$gw_ip\"%" $f sed -i "s%^DNS_SERVER=.*%DNS_SERVER=\"$dns_ip\"%" $f sed -i "s%^SMB_USER=.*%SMB_USER=\"$smb_user\"%" $f sed -i "s%^SMB_PWD=.*%SMB_PWD=\"$smb_pwd\"%" $f } # Configure TV card and scan for channels. setup_tvscan () { MPTVSCAN=/usr/bin/mptvscan title="$BACKTITLE : Analog TV Channels Scanner" for i in `$MPTVSCAN -i`; do INPUTS="$INPUTS $i ''" done for i in `$MPTVSCAN -s`; do NORMS="$NORMS $i ''" done for i in `$MPTVSCAN -c`; do CHANLISTS="$CHANLISTS $i ''" done while [ -z "$DONE" ]; do INPUT=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "TV Input Selection" --menu "\nBelow is the list of your TV card's available inputs. Please select the one you want to use for channels scan (should be Television)." 0 0 0 $INPUTS` NORM=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "TV Norm Selection" --menu "\nBelow is the list of your TV card's supported video standards. Please select the one you want to use, according to your localization." 0 0 0 $NORMS` CHANLIST=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "TV Chanlist Selection" --menu "\nBelow is the list of pre-configured chanlists for scan. Select the one corresponding to your location." 0 0 0 $CHANLISTS` $MPTVSCAN -a "-i$INPUT" "-s$NORM" "-c$CHANLIST" -p 2>/tmp/chans | $DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Scanning Channels" --gauge "\nGeeXboX is currently scanning your channels. This operation may take a while. Please wait while processing ..." 0 0 CHANNELS=`sed -e 's/CHAN=//g' -e 's/:/ - /g' -e 's/\"//g' -e 's/$/\\\\n/g' /tmp/chans` $DIALOG --aspect 12 --stdout --yes-label "Accept" --no-label "Retry" --backtitle "$title" --title "Scan Done ..." --yesno "\nCongratulations, the TV channels scan is done. The following channels has been discoverd (if no channel has been found, you can then try again with new card/tuner/norm/chanlist settings).\n\n$CHANNELS" 0 0 && DONE=true done if [ -s /tmp/chans ]; then cat /tmp/chans >> $1/etc/tvcard fi rm -f /tmp/chans sed -i "s/^TVIN_STANDARD=.*/TVIN_STANDARD=$NORM/" $1/etc/tvcard sed -i "s/^CHANLIST=.*/CHANLIST=$CHANLIST/" $1/etc/tvcard } # Configure DVB card and scan for channels. setup_dvbscan () { DVB_LIST=/usr/share/dvb DVBSCAN=/usr/bin/dvbscan SCAN_ARGS="-x 0" # Scan FreeToAir channels only TITLE="$BACKTITLE : Digital TV Channels Scanner" CHANNELS_CONF="$1/etc/mplayer/channels.conf" if [ -f /usr/share/dvb.tar.lzma -a ! -d $DVB_LIST ]; then tar xaf /usr/share/dvb.tar.lzma -C /usr/share fi if [ -f /usr/share/dvb.tar.gz -a ! -d $DVB_LIST ]; then tar xzf /usr/share/dvb.tar.gz -C /usr/share fi DVB_TYPE=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "DVB Card Type Selection" --menu "\nBelow is the list of available DVB card types. Please select the one you want to use for channels scan." 0 0 0 dvb-s "DVB Sattelite" dvb-t "DVB Terrestrial" dvb-c "DVB Cable" atsc "ATSC (US)"` # DVB Terrestrial cards if [ $DVB_TYPE = "dvb-t" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do COUNTRIES="$COUNTRIES $i ''" done COUNTRY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "Country Selection" --menu "\nBelow is the list of countries with known DVB-T transponders frequencies. Please select the one where you live." 0 0 0 $COUNTRIES` for i in `ls $DVB_LIST/$DVB_TYPE/$COUNTRY`; do CITIES="$CITIES $i ''" done CITY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "City Selection" --menu "\nBelow is the list of locations from your country with known DVB-T transponders frequencies. If you live in place not present in this list, please contact your DVB provider, asking for your local transponders frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the town nearest to where you live." 0 0 0 $CITIES` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$COUNTRY/$CITY > $CHANNELS_CONF elif [ $DVB_TYPE = "dvb-s" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do SATS="$SATS $i ''" done SAT=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "Satellite Selection" --menu "\nBelow is the list of known DVB-S satellite transponders you may be able to be connected to. If you are using another transponder which is not present in this list, please contact your DVB provider, asking for your transponder frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the one that fits your needs." 0 0 0 $SATS` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$SAT > $CHANNELS_CONF elif [ $DVB_TYPE = "dvb-c" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do COUNTRIES="$COUNTRIES $i ''" done COUNTRY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "Country Selection" --menu "\nBelow is the list of countries with known DVB-C transponders frequencies. Please select the one where you live." 0 0 0 $COUNTRIES` for i in `ls $DVB_LIST/$DVB_TYPE/$COUNTRY`; do CITIES="$CITIES $i ''" done CITY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "City Selection" --menu "\nBelow is the list of locations from your country with known DVB-C transponders frequencies. If you live in place not present in this list, please contact your DVB provider, asking for your local transponders frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the town nearest to the place you live." 0 0 0 $CITIES` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$COUNTRY/$CITY > $CHANNELS_CONF elif [ $DVB_TYPE = "atsc" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do ATSC="$ATSC $i ''" done FREQ=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "ATSC Transponder Selection" --menu "\nBelow is the list of known ATSC transponders you may be able to be connected to. If you are using another transponder which is not present in this list, please contact your ATSC provider, asking for your transponder frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the one that fits your needs." 0 0 0 $ATSC` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$FREQ > $CHANNELS_CONF fi if [ -s $CHANNELS_CONF ]; then # remove non-coherent detected channels grep -v "^\[.*\]:" $CHANNELS_CONF > /tmp/channels.conf mv /tmp/channels.conf $CHANNELS_CONF fi } /bin/busybox mount -t proc none /proc /bin/busybox mount -t sysfs none /sys /bin/busybox --install -s if [ "$1" = geexbox ]; then DIALOG=/usr/bin/dialog CFDISK=/usr/bin/cfdisk SFDISK=/usr/bin/sfdisk MKDOSFS=/usr/bin/mkdosfs MKE2FS=/sbin/mke2fs GRUB=/usr/bin/grub SYSLINUX=/usr/bin/syslinux else DIALOG=`which dialog` CFDISK=`which cfdisk` SFDISK=`which sfdisk` MKDOSFS=`which mkdosfs` MKE2FS=`which mke2fs` GRUB=`which grub` SYSLINUX=`which syslinux` fi VERSION=1.1rc1 BACKTITLE="GeeXboX $VERSION installator" if [ "$UID" != "0" ]; then echo "" echo "**** You need to be root to install GeeXboX ****" echo "" exit 1 fi if [ -z "$SFDISK" -o -z "$GRUB" -o -z "$DIALOG" ]; then echo "" echo "**** You need to have sfdisk, grub and dialog installed to install GeeXboX ****" echo "" exit 1 fi if [ ! -d "/sys/block" ]; then echo "" echo "**** You need to have a mounted sysfs at /sys. try executing: mount -t sysfs none /sys ****" echo "" exit 1 fi # disable kernel messages to avoid screen corruption echo 0 > /proc/sys/kernel/printk title="$BACKTITLE : Keymap selection" KEYMAPS="qwerty qwerty" for i in `ls /etc/keymaps` do KEYMAPS="$KEYMAPS $i $i" done KEYMAP=`$DIALOG --no-cancel --stdout --backtitle "$title" --title "Choose Keymap" --default-item qwerty --menu "Which keymap do you want to use ?" 0 0 0 $KEYMAPS` || exit 1 test -f "/etc/keymaps/$KEYMAP" && loadkmap < "/etc/keymaps/$KEYMAP" while true; do if [ -e /dev/.devfsd ]; then DISKS=`cat /proc/partitions | sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *\([0-9][0-9]*\)\ \([a-z0-9/]*disc\).*$/\2 (\1_blocks)/p"` else DISKS=`cat /proc/partitions | sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *\([0-9][0-9]*\)\ \([a-z]*\)$/\2 (\1_blocks)/p"` fi if [ -z "$DISKS" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --yesno "\nNo disks found on this system.\nCheck again ?" 0 0 || exit 1 else DISKS="$DISKS refresh list" DISK=`$DIALOG --stdout --backtitle "$BACKTITLE" --title "Installation device" --menu "\nYou are going to install GeeXboX. For this you will need an empty partition with about 8 MB of free space.\nBe careful to choose the right disk! We won't take responsibility for any data loss." 0 0 0 $DISKS` || exit 1 [ $DISK != refresh ] && break fi done if [ "`cat /sys/block/$DISK/removable`" = 1 ]; then BOOTLOADER=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Linux partition type" --menu "Which type of boot loader you want ? " 0 0 0 grub "GNU GRUB - Doesn't work with oldest BIOS" syslinux "Syslinux - For oldest BIOS compatbility"` || exit 1 TYPE=REMOVABLE else BOOTLOADER=grub TYPE=HDD fi if [ $BOOTLOADER = syslinux ]; then PART_MSG="FAT partition (type=06)" elif [ $BOOTLOADER = grub ]; then PART_MSG="FAT partition (type=0B) or Linux ext2/3 partition (type=83)" fi if [ -z "$CFDISK" ]; then CFDISK_MSG="As you don't have cfdisk installed, the installator won't be able to create the partition for you. You'll have to create it yourself before installing." else CFDISK_MSG="Please edit your partition table to create a $PART_MSG with about 8 MB of free space.\nRemember to write the changes when done. We won't take responsibility for any data loss." fi $DIALOG --stdout --backtitle "$BACKTITLE" --title "Installation device" --msgbox "$CFDISK_MSG" 0 0 || exit 1 if [ -n "$CFDISK" ]; then $CFDISK /dev/$DISK || exit 1 fi while [ ! -b "$DEV" ]; do DISKS="" for i in `$SFDISK -l /dev/$DISK | grep ${DISK%disc} | cut -f1 -d' '`; do case `$SFDISK --print-id ${i%%[0-9]*} ${i#${i%%[0-9]*}}` in 1|11|6|e|16|1e|b|c|1b|1c) #FAT12/16/32 are supported both in syslinux and grub. S=`$SFDISK -s "$i" | sed 's/\([0-9]*\)[0-9]\{3\}/\1/'` DISKS="$DISKS $i ${S}MB" ;; 83) #Linux is supported only in grub. if [ $BOOTLOADER = grub ]; then S=`$SFDISK -s "$i" | sed 's/\([0-9]*\)[0-9]\{3\}/\1/'` DISKS="$DISKS $i ${S}MB" fi ;; esac done if [ -z "$DISKS" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\nYou don't have any $PART_MSG partition on your system. Please create a partition first using for example cfdisk.\n" 0 0 exit 1 else DEV=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Installation device" --menu "Where do you want to install GeeXboX ?" 0 0 0 $DISKS` || exit 1 fi if [ ! -b "$DEV" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\n'$DEV' is not a valid block device.\n" 0 0 fi done DEVNAME="${DEV#/dev/}" case `$SFDISK --print-id ${DEV%%[0-9]*} ${DEV#${DEV%%[0-9]*}}` in 1|11|6|e|16|1e|14|b|c|1b|1c) SUPPORTED_TYPES="vfat" PART_TYPE="FAT" ;; 83) # Linux SUPPORTED_TYPES="ext3 ext2" PART_TYPE="Linux" ;; esac mkdir di # Try to guess current partition type. MKFS_TYPE= for type in vfat ext3 ext2 auto; do if mount -o ro -t $type "$DEV" di; then MKFS_TYPE=`grep "^$DEV " /proc/mounts | cut -d " " -f 3` umount di break fi done NEED_FORMAT=yes if [ -z "$MKFS_TYPE" ]; then FORMAT_MSG="Partition is not formated. " else for type in $SUPPORTED_TYPES; do [ $type = $MKFS_TYPE ] && NEED_FORMAT=no done if [ "$NEED_FORMAT" = yes ]; then FORMAT_MSG="Partition format type ($MKFS_TYPE) is not supported in your partition type ($PART_TYPE). " else FORMAT_MSG="Partition is already formated. " fi fi $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Formatting" --defaultno --yesno "$FORMAT_MSG\nDo you want to format '$DEV' ?\n" 0 0 && FORMAT=yes if [ "$FORMAT" = yes ]; then case `$SFDISK --print-id ${DEV%%[0-9]*} ${DEV#${DEV%%[0-9]*}}` in 1|11|6|e|16|1e|14) # FAT12 and FAT16 MKFS=$MKDOSFS MKFS_OPT="-n GEEXBOX" MKFS_TYPE=vfat MKFS_TYPENAME="FAT" ;; b|c|1b|1c) # FAT32 MKFS=$MKDOSFS MKFS_OPT="-n GEEXBOX -F 32" MKFS_TYPE=vfat MKFS_TYPENAME="FAT" ;; 83) # Linux MKFS_TYPE=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Linux partition type" --menu "Which type of Linux partition you want ?" 0 0 0 ext2 "Linux ext2" ext3 "Linux ext3"` || exit 1 case $MKFS_TYPE in ext2) MKFS=$MKE2FS MKFS_OPT="-L GEEXBOX" MKFS_TYPENAME="Linux ext2" ;; ext3) MKFS=$MKE2FS MKFS_OPT="-L GEEXBOX -j" MKFS_TYPENAME="Linux ext3" ;; esac ;; esac if [ -z "$MKFS" -o ! -x $MKFS ]; then if [ "$NEED_FORMAT" = yes ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\n'$DEV' must be formated. As you don't have formatting tool installed, I won't be able to format the partition.\n" 0 0 rmdir di exit 1 else $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Warning" --msgbox "\n'$DEV' needs to be a $MKFS_TYPENAME partition. As you don't have formatting tool installed, I won't be able to format the partition. Hopefully it is already formatted.\n" 0 0 fi else $MKFS $MKFS_OPT "$DEV" fi elif [ "$NEED_FORMAT" = yes ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\n'$DEV' needs to be a formatted.\n" 0 0 rmdir di exit 1 fi mount -t $MKFS_TYPE "$DEV" di if [ $? -ne 0 ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\nFailed to mount '$DEV' as $MKFS_TYPENAME partition.\n" 0 0 rmdir di exit 1 fi if [ -d disk ]; then cp -a disk/* di 2>/dev/null else if [ -n "$NFS" ]; then GEEXBOX="$NFS" else GEEXBOX="$CDROM/GEEXBOX" fi cp -a "$GEEXBOX" di/GEEXBOX 2>/dev/null cd di/GEEXBOX/boot mv vmlinuz initrd.gz isolinux.cfg boot.msg help.msg splash.rle ../../ cd ../../../ rm -rf di/GEEXBOX/boot fi # Setup network is only available when booting from GeeXboX. if [ "$1" = geexbox ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Configure Network ?" --yesno "\nDo you want to configure your network parameters before installing GeeXboX to disk ?\n" 0 0 && setup_network "di/GEEXBOX" fi # Configure TV card and scan for channels. # (only available when booting from GeeXboX). if [ "$1" = geexbox ]; then if grep -q -e '0400: 109e:' \ -e '0480: 1131:' \ -e '0480: 14f1:88' \ /tmp/pci; then # Only scan if a TV card is detected /usr/bin/mptvscan -i >/dev/null 2>&1 if [ `echo $?` = 0 ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Scan for Analog TV Channels ?" --yesno "\nDo you want to configure your analog tv card and scan for channels before installing GeeXboX to disk ?\n" 0 0 && setup_tvscan "di/GEEXBOX" fi fi fi # Configure DVB card and scan for channels. # (only available when booting from GeeXboX). if [ "$1" = geexbox ]; then # Only scan if a DVB card is detected if [ -f /var/dvbcard ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Scan for Digital (DVB) TV Channels ?" --yesno "\nDo you want to configure your digital (DVB) tv card and scan for channels before installing GeeXboX to disk ?\n" 0 0 && setup_dvbscan "di/GEEXBOX" fi fi VESA_MODE_OLD=`grep vga= di/isolinux.cfg | head -1 | sed "s%.*vga=\([^ ]*\).*%\1%"` VESA_RES=$((($VESA_MODE_OLD - 784) / 3)) VESA_DEPTH=$((($VESA_MODE_OLD - 784) % 3)) if [ $VESA_DEPTH != 0 -a $VESA_DEPTH != 1 -a $VESA_DEPTH != 2 ] || [ $VESA_RES != 0 -a $VESA_RES != 1 -a $VESA_RES != 2 -a $VESA_RES != 3 ]; then VESA_RES=1 VESA_DEPTH=2 fi VESA_RES=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Screen Resolution" --default-item $VESA_RES --menu "Select from options below" 000 0 0 0 "640x480" 1 "800x600" 2 "1024x768" 3 "1280x1024" 4 "1600x1200"` VESA_DEPTH=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Screen Color Depth" --default-item $VESA_DEPTH --menu "Select from options below" 000 0 0 0 "15 bit" 1 "16 bit" 2 "24 bit"` VESA_MODE=$((784 + VESA_RES*3 + VESA_DEPTH)) [ $VESA_MODE -ge 796 ] && VESA_MODE=$((VESA_MODE + 1)) REMOTES=`ls di/GEEXBOX/etc/lirc/lircrc_* | sed -e 's/.*lircrc_//g'` for r in $REMOTES; do LREMOTES="$LREMOTES $r $r" done REMOTE=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Remote" --menu "Select the remote to use" 000 0 0 $LREMOTES` RECEIVERS=`ls di/GEEXBOX/etc/lirc/lircd_* | grep -v ".conf" | sed -e 's/.*lircd_//g'` for r in $RECEIVERS; do LRECEIVERS="$LRECEIVERS $r $r" done RECEIVER=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Receiver" --menu "Select the receiver to use" 000 0 0 $LRECEIVERS` if grep -q "splash=silent" di/isolinux.cfg; then SPLASH_ARGUMENT="" SPLASH_OLD="silent" else SPLASH_ARGUMENT="--defaultno" SPLASH_OLD="0" fi $DIALOG --aspect 15 --backtitle "$BACKTITLE" --defaultno --title "Bootsplash" $SPLASH_ARGUMENT --yesno "\nDo you want to disable bootsplash ?\n" 0 0 && SPLASH="0" || SPLASH="silent" grubprefix=/boot/grub grubdir=di$grubprefix device_map=$grubdir/device.map rm -rf $grubdir mkdir -p $grubdir [ -f "di/GEEXBOX/usr/share/grub-i386-pc.tar.lzma" ] && tar xaf "di/GEEXBOX/usr/share/grub-i386-pc.tar.lzma" -C $grubdir [ -f "di/GEEXBOX/usr/share/grub-i386-pc.tar.gz" ] && tar xzf "di/GEEXBOX/usr/share/grub-i386-pc.tar.gz" -C $grubdir if [ -f "di/GEEXBOX/usr/share/grub-splash.xpm.gz" ]; then cp -f "di/GEEXBOX/usr/share/grub-splash.xpm.gz" $grubdir || exit 1 disable_splashimage= else disable_splashimage="#" fi splashimage="$grubprefix/grub-splash.xpm.gz" if [ $BOOTLOADER = syslinux ]; then cp "di/GEEXBOX/usr/share/ldlinux.sys" di sed -e "s/boot=cdrom/boot=${DEV#/dev/}/" -e "s/vga=$VESA_MODE_OLD/vga=$VESA_MODE/" -e "s/splash=$SPLASH_OLD/splash=$SPLASH/" -e "s/keymap=.*/keymap=$KEYMAP/" di/isolinux.cfg > di/syslinux.cfg rm di/isolinux.cfg elif [ $BOOTLOADER = grub ]; then cp $grubdir/stage2 $grubdir/stage2_single rm di/isolinux.cfg di/boot.msg di/help.msg di/splash.rle fi if [ $TYPE = HDD ]; then echo "quit" | $GRUB --batch --no-floppy --device-map=$device_map elif [ $TYPE = REMOVABLE ]; then echo "(hd0) ${DEV%%[0-9]*}" > $device_map fi rootdev=$(convert $DEV) if [ -z "$rootdev" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\nCouldn't find my GRUB partition representation\n" 0 0 umount di rmdir di exit 1 fi if [ $BOOTLOADER = syslinux ]; then umount di $SYSLINUX "$DEV" mount -t $MKFS_TYPE "$DEV" di elif [ $BOOTLOADER = grub ]; then if [ $TYPE = HDD ]; then rootdev_single=$rootdev fake_device= elif [ $TYPE = REMOVABLE ]; then rootdev_single="(fd0)" fake_device="device $rootdev_single $DEV" fi $GRUB --batch --no-floppy --device-map=$device_map < $grubdir/single.lst < $grubdir/menu.lst <> $grubdir/menu.lst <> $grubdir/menu.lst <> $grubdir/menu.lst <> $grubdir/menu.lst < /etc/img_ext; sed -i 's/.*set_menu view_img_timeout.*//' /etc/mplayer/menu.conf ) # build a single file extensions filter cat /etc/file_ext > /etc/extensions cat /etc/list_ext >> /etc/extensions cat /etc/img_ext >> /etc/extensions # add partitions space informations in menu for i in `mount | sed -n 's%/dev/\(disk[0-9]*\(part[0-9]*\)*\).*%\1%p'`; do MENU_DF="$MENU_DF " done # do the same for cdrom drives for i in `ls /dev/cdrom* | sed -n 's%/dev/\(cdrom[0-9]\).*%\1%p'`; do MENU_DF="$MENU_DF " done [ -n "$MENU_DF" ] && sed -i "s%property=\"MAC\"/>%property=\"MAC\"/> $MENU_DF%" /etc/mplayer/menu.conf # do not load geexbox OSD menu at movie playback if running through Freevo if [ -f /usr/bin/freevo ]; then mp_set_option menu-startup "no" fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/72_mp-audio0000755000175000017500000000402410561133267022000 0ustar benben#!/bin/sh # # configure MPlayer's audio settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's audio settings ###" # include audio configuration file . /etc/audio echo $ALSA_CARD | grep -q ".." || ALSA_CARD="0$ALSA_CARD" case $SOUNDCARD_MODE in SPDIF) ALSA_REAL_MODE=IEC958 ;; analog) ALSA_REAL_MODE=DAC ;; esac ALSA_DEVICE=`sed -n "s/^$ALSA_CARD-\(..\): .*$ALSA_REAL_MODE.*/\1/p" /proc/asound/pcm | tail -n 1` [ -z "$ALSA_DEVICE" ] && ALSA_DEVICE=`grep -iv Modem /proc/asound/pcm | sed -n "s/^$ALSA_CARD-\(..\): .*playback.*/\1/p" | tail -n 1` [ -z "$ALSA_DEVICE" ] && ALSA_DEVICE=`sed -n "s/^$ALSA_CARD-\(..\): .*playback.*/\1/p" /proc/asound/pcm | tail -n 1` [ -n "$ALSA_DEVICE" ] && AO_DEVICE=":device=hw=$ALSA_CARD.$ALSA_DEVICE" # set alsa as audio output isn't forced already. mp_set_option ao "alsa$AO_DEVICE" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_AO_DEV "alsa$AO_DEVICE" fi # enable hardware AC3 output via S/PDIF if audio codec isn't forced already. if [ "$SOUNDCARD_MODE" = SPDIF ]; then if [ "$AC3_DECODER" = ac3 ]; then mp_set_option ac "hwac3," elif [ "$AC3_DECODER" = dts ]; then mp_set_option ac "hwdts," elif [ "$AC3_DECODER" = ac3dts ]; then mp_set_option afm "hwac3" fi fi # don't use Master mixer channel when not available if [ -z "`amixer -c $ALSA_CARD simple | grep "'Master'"`" ]; then sed -i 's/mixer-channel=Master//' /etc/mplayer/mplayer.conf fi # set number of playback channels if isn't forced already. mp_set_option channels "$CHANNELS" # set DVD default language echo "alang=`sed 's/^\(..\).*/\1/' /etc/lang | head -n 1`,en" >> /etc/mplayer/mplayer.conf # Set suitable background movie when playing audio-only. for i in background-audio.avi background.avi; do if [ -f /usr/share/mplayer/$i ]; then mp_set_option bgvideo "/usr/share/mplayer/$i" break fi done # set softvol for VIA 8235 rev80 and SiS SI7012 rev16 cards if grep -q -e '0401: 1106:3059 (rev 80)' -e '0401: 13f6:0111 (rev 16)' /tmp/pci; then mp_set_option softvol "yes" fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/74_mp-video0000755000175000017500000000356710561133267022022 0ustar benben#!/bin/sh # # configure MPlayer's video settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's video settings ###" # include tvout configuration file . /etc/tvout # set mplayer resolution when using offb if [ -e /dev/fb0 ]; then RES=`/usr/sbin/fbset | sed -n 's/mode "\(.*\)-.*"/\1/p'` RESX=`echo $RES | cut -f1 -dx` RESY=`echo $RES | cut -f2 -dx` mp_set_option screenw "$RESX" mp_set_option screenh "$RESY" else mp_set_option screenw 800 mp_set_option screenh 600 fi # set double to no for nvidia, sis and Kyro cards and VMWare for i in '0300: 10de:' '0300: 1039:' '0300: 104a:0010' '0300: 15ad:'; do if grep -q "$i" /tmp/pci; then # except if we want to try nvidia vidix if [ "$i" = '0300: 10de:' -a ! -f /etc/mplayer/no_nvidia_vidix ]; then mp_set_option vf "format=yuy2" concat # nvidia card on powerpc elif [ "$i" = '0300: 10de:' -a "`cat /etc/arch`" = ppc ]; then mp_set_option vo "directfb:noinput" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "directfb:noinput" fi else mp_set_option vo "vesa" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "vesa" fi mp_set_option double "no" mp_set_option vf "expand=-1:-1:-1:-1:1" concat fi fi done # Force -vo vesa for some ATI Mobility Radeons if grep -q '0300: 1002:4c59' /tmp/pci; then mp_set_option vo "vesa" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "vesa" fi fi # do not use VESA Direct Graphic Access on Intel i855, i865, i910 and # i915 cards if grep -q -e '0300: 8086:3582' -e '0300: 8086:2572' -e '0300: 8086:2592' -e '0300: 8086:2582' /tmp/pci; then mp_set_option vo "vesa:nodga" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "vesa:nodga" fi fi # set the tvout aspect mp_set_option monitoraspect "$TVOUT_ASPECT" exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/75_mp-tvcard0000755000175000017500000000556310561133267022176 0ustar benben#!/bin/sh # # configure MPlayer's v4l2 settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's v4l2 support ###" if [ -f /var/tvcard -a -c /dev/video0 ]; then . /etc/tvcard . /var/tvcard # configure mplayer v4l2 driver if [ -n "$TV_WIDTH" -a -n "$TV_HEIGHT" ]; then TV_OPTIONS=":width=$TV_WIDTH:height=$TV_HEIGHT" fi if [ -n "$TV_BRIGHTNESS" ]; then TV_OPTIONS="$TV_OPTIONS:brightness=$TV_BRIGHTNESS" fi if [ -n "$TV_CONTRAST" ]; then TV_OPTIONS="$TV_OPTIONS:contrast=$TV_CONTRAST" fi if [ -n "$TV_HUE" ]; then TV_OPTIONS="$TV_OPTIONS:hue=$TV_HUE" fi if [ -n "$TV_SATURATION" ]; then TV_OPTIONS="$TV_OPTIONS:saturation=$TV_SATURATION" fi if [ `grep -c ^CHAN /etc/tvcard` -gt 0 ]; then for CHAN in `sed -n 's/^CHAN="\(.*\):\(.*\)"/\1-\2/p' /etc/tvcard | sed 'y/ /_/' `; do mp_set_option tv=channels "$CHAN" concat done else sed "s/.*set_menu tv_chan.*//" /etc/mplayer/menu.conf fi echo "tv=driver=v4l2:norm=$TVIN_STANDARD:chanlist=$CHANLIST$TV_OPTIONS" >> /etc/mplayer/mplayer.conf IFS=' ' # set mplayer TV channels list echo "" >> /etc/mplayer/menu.conf for CHNAME in `sed -n 's/^tv=channels=//p' /etc/mplayer/mplayer.conf | sed -e 's/,/\n/g' -e 's/_/ /g' | sed 's/\(.*\)-\(.*\)/\2/'`; do echo "" >> /etc/mplayer/menu.conf done echo "" >> /etc/mplayer/menu.conf else # remove tv options from menu sed -i 's/.*ok="set_menu tv_settings".*//' /etc/mplayer/menu.conf sed -i 's/.*ok="set_menu tv_norm".*//' /etc/mplayer/menu.conf fi [ -f /var/digimatrix ] && sed -i 's/set_menu radio_settings/set_menu digimatrix_radio/' /etc/mplayer/menu.conf [ -f /etc/radio ] && . /etc/radio if [ "$RADIO" = yes ]; then # set mplayer menu radio stations list if [ `grep -c ^CHAN /etc/radio` -gt 0 ]; then for CHAN in `sed -n 's/^CHAN="\(.*\):\(.*\)"/\1-\2/p' /etc/radio | sed 'y/ /_/' `; do mp_set_option radio=channels "$CHAN" concat done else sed "s/.*set_menu radio_chan.*//" /etc/mplayer/menu.conf sed -i 's/^radio=.*//' /etc/mplayer/menu.conf fi # set mplayer Radio channels list n=0 echo "" >> /etc/mplayer/menu.conf for CHNAME in `sed -n 's/^radio=channels=//p' /etc/mplayer/mplayer.conf | sed -e 's/,/\n/g' -e 's/_/ /g' | sed 's/\(.*\)-\(.*\)/\2/'`; do echo "" >> /etc/mplayer/menu.conf done echo "" >> /etc/mplayer/menu.conf else # no supported radio card specified sed -i 's/.*ok="set_menu radio_settings".*//' /etc/mplayer/menu.conf sed -i 's/^radio=.*//' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/76_mp-dvbcard0000755000175000017500000000143710561133267022315 0ustar benben#!/bin/sh # # configure MPlayer's DVB settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's DVB support ###" CHANNELS_CONF=/etc/mplayer/channels.conf if [ -f /var/dvbcard ]; then . /var/dvbcard # build DVB channels configuration file if [ ! -f $CHANNELS_CONF ]; then if [ -f /etc/dvb.conf ]; then dvbscan -x 0 /etc/dvb.conf > $CHANNELS_CONF if [ -s $CHANNELS_CONF ]; then # remove non-coherent detected channels grep -v "^\[.*\]:" $CHANNELS_CONF > /tmp/channels.conf mv /tmp/channels.conf $CHANNELS_CONF fi fi fi fi # no DVB card or no configured channels if [ ! -f /var/dvbcard -o ! -s $CHANNELS_CONF ]; then # remove DVB options from menu sed -i 's/.*ok="set_menu dvb_sel".*//' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/77_mp-dxr30000755000175000017500000000166410561133267021573 0ustar benben#!/bin/sh # # configure DXR3/Hollywood+ cards for MPlayer # # runlevels: geexbox, debug # include audio configuration file . /etc/audio # include tvout configuration file . /etc/tvout # set ao, vo and vf for DXR3/Hollywood+ cards and upload microcode. if [ -e /var/use_dxr3 ]; then echo "### Configuring DXR3/Hollywood+ cards for MPlayer ###" mp_set_option vo "dxr3:sync:norm=0" mp_set_option ao "oss:/dev/em8300_ma-0" mp_set_option vf "expand=-1:-1:-1:-1:1" concat sed -i "s%play_dvd.*%quit 167\"/>%" /etc/mplayer/menu.conf em8300setup -p -a -o >/dev/null 2>&1 # TVOut standard (default is PAL) if [ "$TVOUT_STANDARD" = "ntsc" ]; then em8300setup -n >/dev/null 2>&1 fi # set display to WideScreen format (default is 4:3) if [ "$TVOUT_ASPECT" = "16:9" ]; then em8300setup -w >/dev/null 2>&1 fi # use SPDIF output ? if [ "$SOUNDCARD_MODE" = SPDIF ]; then em8300setup -d >/dev/null 2>&1 fi fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/78_mp-pvr0000755000175000017500000000113510561133267021514 0ustar benben#!/bin/sh # # configure PVR (mostly IVTV based) cards for MPlayer # # runlevels: geexbox, debug # set pvr arguments for PVR cards. if [ -e /var/use_pvr ]; then echo "### Configuring PVR cards for MPlayer ###" # include PVR configuration file . /etc/pvr mp_set_option pvr "aspect=$PVR_ASPECT:arate=$PVR_AUDIO_RATE:alayer=$PVR_AUDIO_LAYER:abitrate=$PVR_AUDIO_BITRATE:amode=$PVR_AUDIO_MODE:vbitrate=$PVR_VIDEO_BITRATE:vmode=$PVR_VIDEO_MODE:vpeak=$PVR_VIDEO_PEAK_BITRATE:fmt=$PVR_VIDEO_FORMAT" else # remove pvr from menu sed -i 's%.*ok="loadfile pvr://".*%%' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/79_mp-utils0000755000175000017500000000074010561133267022047 0ustar benben#!/bin/sh # # start MPlayer's utilities # # runlevels: geexbox, debug echo "### Starting MPlayer's utilities ###" # create the mplayer control pipe for external programs mkfifo /var/mp_control # start the autolaunching script . /etc/autoplay [ $AUTOPLAY == "yes" ] && echo -n "" > /var/autoplay /usr/bin/autoplay 8 > /var/mp_control & # proceed to dvdnav setting . /etc/dvd [ $DVDNAV == "yes" ] && echo -n "" > /var/dvdnav # start the file copy daemon /usr/bin/cpd & exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/82_mplayer0000755000175000017500000000242010561133267021735 0ustar benben#!/bin/sh # # configure and launch mplayer # # runlevels: geexbox, debug # do not start if Freevo is present if test -x /usr/bin/freevo; then exit 0 fi echo "### Starting MPlayer ###" # disable console blanking and cursor blinking for a proper MPlayer start echo -e "\033[9;0]" echo -e "\033[?25l" # disable kernel messages to avoid MPlayer screen corruption echo 0 > /proc/sys/kernel/printk # default directory echo -n /mnt/ > /var/mp_current_path # tty used for the video display and commands input TTY=4 RET=0 # start mplayer with gdb when built with debugging options if test -f /etc/debug; then echo "r /usr/share/mplayer/background.avi -loop 0" > /gdb_cmd gdb -x /gdb_cmd /usr/bin/mplayer else echo "0" > /tmp/mp_result # disable fbdev cursor echo -e "\033[?1;;c" >/dev/tty$TTY chvt $TTY ( # start mplayer or fbi and keep them launched while true; do if [ -n "`pidof lircd`" ]; then irpty /etc/lircrc -- mp_wrapper else mp_wrapper fi test `cat /tmp/mp_result` -eq 165 -a -x /usr/bin/fbi && fbi_wrapper test `cat /tmp/mp_result` -eq 166 && return 0 test `cat /tmp/mp_result` -eq 167 && mplayer dvd://1 > /dev/null 2>&1 test `cat /tmp/mp_result` -eq 168 && return 64 done ) /etc/asound.conf mixer() { parm=${3:-on} amixer -c $ALSA_CARD sset "$1" "$2" $parm >/dev/null 2>&1 amixer -c $ALSA_CARD sset "$1" $parm >/dev/null 2>&1 } # set alsa channel mode (6ch, 4ch, 2ch) mixer 'Channel Mode' "${CHANNELS}ch" # set common mixer params mixer Master 90% mixer Front 90% mixer PCM 90% mixer Synth 90% # mute CD, since using digital audio instead mixer CD 0% mute # Only unmute Line and Aux if they are possibly used. if [ -e /var/use_dxr3 -o -e /var/tvcard -o -e /var/dvbcard -o -e /var/digimatrix ]; then mixer Line 90% mixer Aux 90% else mixer Line 0% mute mixer Aux 0% mute fi # mute mic mixer Mic 0% mute # ESS 1969 chipset has 2 PCM channels mixer PCM,1 90% # Trident/YMFPCI/emu10k1 mixer Wave 100% mixer Music 100% mixer AC97 100% mixer Surround 90% mixer 'Surround Digital' 90% mixer 'Wave Surround' 90% if [ "$CHANNELS" = 6 ]; then mixer 'Duplicate Front' 0% off else mixer 'Duplicate Front' 90% fi mixer 'Sigmatel 4-Speaker Stereo' 90% # CS4237B chipset: mixer 'Master Digital' 90% # DRC mixer 'Dynamic Range Compression' 90% # Envy24 chips with analog outs mixer DAC 90% mixer DAC,0 90% mixer DAC,1 90% # some notebooks use headphone instead of master mixer Headphone 90% mixer 'Internal Speaker' 75% mixer Playback 100% mixer Center 90% mixer LFE 90% mixer Center/LFE 90% # Required for either Analog or Digital output mixer 'SB Live Analog/Digital Output Jack' $SBL_AUDIGY mixer 'Audigy Analog/Digital Output Jack' $SBL_AUDIGY # set SPDIF mixer params if [ "$SOUNDCARD_MODE" = SPDIF ]; then mixer 'IEC958' 90% mixer 'IEC958 Output' 90% mixer 'IEC958 Playback AC97-SPSA' $AC97_SPSA mixer 'IEC958 Coaxial' 90% mixer 'IEC958 LiveDrive' 90% mixer 'IEC958 Optical Raw' 90% mixer 'SPDIF Out' 90% mixer 'SPDIF Front' 90% mixer 'SPDIF Rear' 90% mixer 'SPDIF Center/LFE' 90% else mixer 'SPDIF Out' 0% off mixer 'Analog Front' 90% mixer 'Analog Rear' 90% mixer 'Analog Center/LFE' 90% fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/54_ftp0000755000175000017500000000040510561133267021055 0ustar benben#!/bin/sh # # start ftp server # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$FTP_SERVER" = "yes" -a -f /etc/bftpd.conf; then echo "### Starting FTP server ###" bftpd -d -c /etc/bftpd.conf & fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/10_eject0000755000175000017500000000156610561133267021357 0ustar benben#!/bin/sh # # eject CD if booted from cdrom and their is no media files on it # # runlevels: geexbox, debug if test -n "$CDROM"; then echo "### Eject CDROM ###" ( # add recognized files extension to the EXTS list for i in `cat /etc/file_ext`; do if [ -z "$EXTS" ]; then EXTS="$i" else EXTS="$EXTS\|$i" fi done # add recognized images extension to the EXTS list if [ -x /usr/bin/fbi -a -e /dev/fb0 ]; then for i in `cat /etc/img_ext`; do EXTS="$EXTS\|$i"; done fi # add recognized playlists extension to the EXTS list for i in `cat /etc/list_ext`; do EXTS="$EXTS\|$i"; done # check if their is recognized media files on the CD if [ -z "`find "$CDROM" | grep -v /GEEXBOX/ | grep -i "\.\($EXTS\)\$"`" ]; then # eject the CD (except when started with make exec) [ -e /dev/cdrom -a ! -f /EXEC ] && eject fi )& fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/52_telnet0000755000175000017500000000043510561133267021560 0ustar benben#!/bin/sh # # start telnet daemon # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$TELNET_SERVER" = "yes" -a -f /etc/issue; then echo "### Starting telnet daemon ###" /usr/sbin/telnetd -f /etc/issue >/dev/null 2>&1 & fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/53_httpd0000755000175000017500000000055610561133267021415 0ustar benben#!/bin/sh # # start http daemon # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$HTTP_SERVER" = "yes"; then echo "### Starting http daemon ###" if test -x /usr/bin/freevo-webserver; then /usr/bin/freevo-webserver >/dev/null 2>&1 & else /usr/sbin/httpd -h /var/www >/dev/null 2>&1 & fi fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/80_debug0000755000175000017500000000044110561133267021351 0ustar benben#!/bin/sh # # start a debugging shell # # runlevels: debug # give a shell to MPlayer in debug mode echo "### Starting debugging shell ###" sed -i 's%ok=\"quit 166\"/>%ok=\"quit 166\"/> %' /etc/mplayer/menu.conf # start shell /bin/sh exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/80_nodebug0000755000175000017500000000015710561133267021712 0ustar benben#!/bin/sh # # removes kernel modules from ramdisk # # runlevels: geexbox, install rm -rf /lib/modules exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/90_umount0000755000175000017500000000064410561133267021620 0ustar benben#!/bin/sh # # umount all mounted disks # # runlevels: geexbox, debug echo "### Unmounting disks and shares ###" # umount samba shares for DIR in /mnt/shares/*/*; do test -d "$DIR" && umount "$DIR" >/dev/null 2>&1 && rmdir "$DIR" done # when started with make exec, umount partitions if test -f /EXEC; then for DIR in /mnt/*; do test -d "$DIR" && umount "$DIR" >/dev/null 2>&1 done umount /proc fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/30_digitools0000755000175000017500000000067510561133267022264 0ustar benben#!/bin/sh # # setup the Digimatrix # # runlevels: geexbox, debug [ -f /proc/acpi/dsdt ] || exit 1 [ `grep -e P4SQ -c /proc/acpi/dsdt` -eq 0 ] && exit 1 echo "### Setting up Digimatrix ###" [ -x /usr/bin/digifan ] && digifan -g 5 -i [ -x /usr/bin/digipanel ] && digipanel -lts [ -x /usr/bin/digiradio ] && echo '' > /var/digimatrix # PAL-I/SECAM requires tda9887 options for audio echo "options tda9887 port2=0" >> /etc/modprobe.conf exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/89_digiwake0000755000175000017500000000041010561133267022054 0ustar benben#!/bin/sh # # setup the Digimatrix Wake-On-CIR # # runlevels: geexbox, debug [ -f /proc/acpi/dsdt ] || exit 1 [ `grep -e P4SQ -c /proc/acpi/dsdt` -eq 0 ] && exit 1 echo "### Setting up Digimatrix Wake-On-CIR ###" [ -x /usr/bin/digiwake ] && digiwake -w exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/59_upnp0000755000175000017500000000051410561133267021254 0ustar benben#!/bin/sh # # mount UPnP VFS # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$UPNP" = "yes" -a -f /usr/bin/djmount; then echo "### Mounting UPnP VFS ###" # Build UPnP VFS directory mkdir -p /tmp/UPnP # Mount UPnP VFS djmount -f /tmp/UPnP >/dev/null 2>&1 & fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/36_dxr30000755000175000017500000000063010561133267021144 0ustar benben#!/bin/sh # # setup tv cards # # runlevels: geexbox, debug, install if grep -q '0480: 1105:8300' /tmp/pci; then echo "### Setting up DXR3 card ###" # include module modprobe options . /etc/dxr3 # Drivers for DXR3/Hollywood+ cards modprobe bt865 2>&1 >/dev/null modprobe adv717x $ADV717X_OPTS 2>&1 >/dev/null modprobe em8300 $EM8300_OPTS 2>&1 >/dev/null echo '' > /var/use_dxr3 fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/82_freevo0000755000175000017500000000063110561133267021554 0ustar benben#!/bin/sh # # launch freevo # # runlevels: geexbox, debug echo "### Starting Freevo ###" # disable console blanking and cursor blinking echo -e "\033[9;0]" echo -e "\033[?25l" # disable kernel messages echo 0 > /proc/sys/kernel/printk # tty used for the video display and commands input TTY=4 # disable fbdev cursor echo -e "\033[?1;;c" >/dev/tty$TTY chvt $TTY ( freevo ) &1 >/dev/null echo '' > /var/use_pvr fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/11_lcddisplay0000755000175000017500000000070710561133267022412 0ustar benben#!/bin/sh # # start lcd display # # runlevels: geexbox, debug # get options test -f /etc/lcddisplay || exit 1 . /etc/lcddisplay CONFIG=/etc/lcd4linux.conf if test "$LCD_ENABLED" = "yes" -a -f $CONFIG; then echo "### Starting LCD Display ###" # create the fifo for mplayer mkfifo /tmp/mp_streaminfo sed -i -e "s/LCD_WIDTH/$LCD_WIDTH/g" -e "s/LCD_HEIGHT/$LCD_HEIGHT/g" $CONFIG /usr/bin/lcd4linux -c "Display='$LCD_MODEL'" -f $CONFIG fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/20_modules0000755000175000017500000000033310561133267021725 0ustar benben#!/bin/sh # # load modules # # runlevels: geexbox, debug, install echo "### Loading kernel modules ###" IFS=' ' for module in `cat /etc/modules|grep "^[^#]"`; do eval "modprobe $module" >/dev/null 2>&1 done exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/32_tvcard0000755000175000017500000000444610561133267021554 0ustar benben#!/bin/sh # # setup tv cards # # runlevels: geexbox, debug, install echo "### Setting up TV card ###" if ! grep -q -e '0400: 109e:' \ -e '0480: 1131:' \ -e '0480: 14f1:88' \ /tmp/pci; then # No supported TV card found exit 1 fi . /etc/tvcard [ -f /etc/radio ] && . /etc/radio CARD= test "$TV_CARD" != "AUTO" && CARD="card=$TV_CARD" TUNER= test "$TV_TUNER" != "AUTO" && TUNER="tuner=$TV_TUNER" RADIO_OPT= test "$RADIO" = yes && RADIO_OPT="radio=1" if grep -q '0400: 109e:' /tmp/pci; then # BT8x8 Card modprobe bttv $CARD $TUNER $RADIO_OPT >/dev/null 2>&1 if test "$TV_CARD" = "AUTO" \ -a -z "`dmesg | grep 'bttv0: detected'`"; then # Not autodetected test -z "$TUNER" && TUNER="tuner=3" rmmod bttv modprobe bttv card=1 $TUNER $RADIO_OPT >/dev/null 2>&1 fi echo "TV_WIDTH=768" > /var/tvcard echo "TV_HEIGHT=576" >> /var/tvcard elif grep -q '0480: 1131:' /tmp/pci; then # SAA7134 Card modprobe saa7134 $CARD $TUNER >/dev/null 2>&1 echo -n "" > /var/tvcard elif grep -q '0480: 14f1:88' /tmp/pci; then # Conexant BT881/CX88 Card modprobe tveeprom >/dev/null 2>&1 modprobe cx88xx $CARD $TUNER >/dev/null 2>&1 modprobe cx8800 >/dev/null 2>&1 # cx8800 module tries to autodetect/force tuner model according to eeprom. # It fails if eeprom is corrupted so force tuner module loading before cx8800 if test "$TV_CARD" != "AUTO" \ -a -n "`dmesg | grep 'tveeprom: Encountered bad packet header'`"; then rmmod cx8800 cx88xx tuner modprobe cx88xx $CARD $TUNER >/dev/null 2>&1 modprobe tuner >/dev/null 2>&1 modprobe cx8800 >/dev/null 2>&1 fi echo "TV_WIDTH=768" > /var/tvcard echo "TV_HEIGHT=576" >> /var/tvcard # CX88 driver reset color values to 0, so need to be forced. echo "TV_BRIGHTNESS=50" >> /var/tvcard echo "TV_CONTRAST=50" >> /var/tvcard echo "TV_HUE=100" >> /var/tvcard echo "TV_SATURATION=75" >> /var/tvcard fi TVIN_OPT= if test -n "$TVIN_STANDARD" -a -n "$TVIN_SUB_STANDARD"; then TVIN_OPT="$TVIN_STANDARD=$TVIN_SUB_STANDARD" fi modprobe tuner $TVIN_OPT >/dev/null 2>&1 modprobe tvaudio >/dev/null 2>&1 modprobe msp3400 >/dev/null 2>&1 modprobe tda7432 >/dev/null 2>&1 modprobe tda9875 >/dev/null 2>&1 modprobe tda9887 $TVIN_OPT >/dev/null 2>&1 modprobe tlv320aic23b >/dev/null 2>&1 exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/34_dvbcard0000755000175000017500000000302610561133267021671 0ustar benben#!/bin/sh # # setup dvb cards # # runlevels: geexbox, debug, install echo "### Setting up DVB card ###" # DVB frontends drivers are auto-loaded by main device drivers # PCI DVB Devices if grep -q '0400: 109e:' /tmp/pci; then # BT8x8 Card modprobe dvb-bt8xx >/dev/null 2>&1 modprobe dst >/dev/null 2>&1 elif grep -q '0480: 1131:' /tmp/pci; then # SAA7134 Card modprobe mt352 >/dev/null 2>&1 modprobe saa7134-dvb >/dev/null 2>&1 # SAA7146 Cards modprobe saa7146 >/dev/null 2>&1 modprobe saa7146_vv >/dev/null 2>&1 modprobe dvb-ttpci >/dev/null 2>&1 modprobe budget >/dev/null 2>&1 modprobe budget-ci >/dev/null 2>&1 modprobe budget-av >/dev/null 2>&1 elif grep -q '0280: 13d0:' /tmp/pci; then # B2C2 Cards modprobe budget >/dev/null 2>&1 modprobe b2c2-flexcop-pci >/dev/null 2>&1 modprobe b2c2-flexcop >/dev/null 2>&1 elif grep -q '0480: 14f1:88' /tmp/pci; then # Conexant CX88 Card modprobe cx88-blackbird >/dev/null 2>&1 modprobe cx88-dvb >/dev/null 2>&1 elif grep -q '0480: 0432:' /tmp/pci; then # SCM Pluto2 Card modprobe pluto2 >/dev/null 2>&1 fi # allow cold USB DVB devices time to load firmware if test -n "`dmesg | grep 'dvb-usb.*cold state'`"; then for I in 1 2 3 4 5; do # Loaded firmware, or failed to load firmware, so exit test -n "`dmesg | grep -e 'dvb-usb.*warm state' -e 'dvb-usb.*did not find firmware'`" && break sleep 1 done fi # ensure that DVB card has been discovered if test -n "`dmesg | grep 'DVB: registering new adapter'`"; then echo -n "" > /var/dvbcard fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/48_lirc0000755000175000017500000000212510561133267021221 0ustar benben#!/bin/sh # # setup lirc # # runlevels: geexbox, debug echo "### Starting LIRC daemon ###" # check for remote: if not found or invalid, use default remote REMOTE=`sed -n "s/.*remote=\([^ ]*\).*/\1/p" /proc/cmdline` if test -z "$REMOTE" \ -o ! -f "/etc/lirc/lircrc_$REMOTE" \ -o ! -f "/etc/lirc/lircd_$REMOTE.conf"; then REMOTE="atiusb" fi # check for receiver: if not found or invalid, use default receiver RECEIVER=`sed -n "s/.*receiver=\([^ ]*\).*/\1/p" /proc/cmdline` if test -z "$RECEIVER" \ -o ! -f "/etc/lirc/lircd_$RECEIVER"; then RECEIVER="atiusb" fi cp -f "/etc/lirc/lircrc_$REMOTE" /etc/lircrc cp -f "/etc/lirc/lircd_$RECEIVER" /etc/lircd cp -f "/etc/lirc/lircd_$REMOTE.conf" /etc/lircd.conf . /etc/lircd # insert needed modules IFS='|' for module in $LIRC_MODULES; do eval "modprobe $module" >/dev/null 2>&1 done if [ $LIRC_DRIVER = "dev/input" ]; then EVENT=`cat /proc/bus/input/devices |grep -e ^[PH] |grep -e ^P:.*ir -A1|grep -e ^H:.*event|cut -d' ' -f3` LIRC_DEVICE=/dev/$EVENT fi # start lircd lircd --driver=$LIRC_DRIVER --device=$LIRC_DEVICE exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/38_ndiswrapper0000755000175000017500000000061610561133267022630 0ustar benben#!/bin/sh # # Load ndiswrapper # # runlevels: geexbox, debug DIR=/etc/ndiswrapper if [ `ls $DIR | grep -c -e ".*"` -gt 0 ]; then echo "### Loading NdisWrapper drivers ###" for DRVDIR in $DIR/*; do [ ! -f "$DRVDIR/ndiswrapper" ] && continue cat "$DRVDIR/ndiswrapper" | while read FILE LN; do ln -s "$DRVDIR/$FILE" "$DRVDIR/$LN" done done modprobe ndiswrapper fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/50_networking0000755000175000017500000000447610561133267022463 0ustar benben#!/bin/sh # # setup the network # # runlevels: geexbox, debug echo "### Setting up network ###" wpa_config_gen() { cat > /etc/wpa_supplicant.conf <&1 | grep '^[^\ ]' | grep -v '^lo' | cut -f1 -d' '`; do ifconfig $i up >/dev/null 2>&1 done WIFI=`iwconfig 2>&1 | grep '^[^\ ]' | grep -v "no wireless extensions" | cut -f1 -d' ' | head -n 1` ETH=`iwconfig 2>&1 | grep '^[^\ ]' | grep -v '^lo' | grep "no wireless extensions" | cut -f1 -d' ' | head -n 1` else ETH=eth0 fi if test -x /usr/bin/freevo; then # bring lo up and add a route for MBUS ifconfig lo 127.0.0.1 up route add -net 224.255.222.240 netmask 255.255.255.255 lo fi # select device if test $PHY_TYPE = wifi -o $PHY_TYPE = auto; then DEV=$WIFI if test -n "$DEV"; then test -n "$WIFI_MODE" && iwconfig "$DEV" mode "$WIFI_MODE" test -n "$WIFI_ESSID" && iwconfig "$DEV" essid "$WIFI_ESSID" if test $WIFI_ENC = WEP; then test -n "$WIFI_KEY" && iwconfig "$DEV" key "$WIFI_KEY" elif test $WIFI_ENC = WPA -a -x /usr/bin/wpa_supplicant; then if test ! -f /etc/wpa_supplicant.conf; then wpa_config_gen "$WIFI_ESSID" "$WIFI_KEY" fi wpa_supplicant -B -w -i $DEV -c /etc/wpa_supplicant.conf -D $WPA_DRV fi fi fi if test $PHY_TYPE = ethernet -o $PHY_TYPE = auto -a -z "$DEV"; then DEV=$ETH fi test -n "$DEV" || exit 1 [ -n "$SUBNET" ] && NETMASK="netmask $SUBNET" # bring interface up if ifconfig $DEV $HOST $NETMASK >/dev/null 2>&1; then if test $HOST = 0.0.0.0; then udhcpc -H geexbox -n -i $DEV >/dev/null 2>&1 && NET=yes test "$NET" != yes && ifconfig $DEV 192.168.0.54 netmask 255.255.255.0 && NET=yes else metric=0 for i in $GATEWAY; do route add default gw $i dev $DEV metric $((metric++)) done NET=yes fi fi if test "$UPNP" = "yes"; then # bring lo up and add UPnP multicast route ifconfig lo 127.0.0.1 route add -net 239.0.0.0 netmask 255.0.0.0 $DEV fi # adding DNS server if [ "$NET" = yes ]; then for i in $DNS_SERVER; do echo "nameserver $i" >> /etc/resolv.conf done fi test "$NET" = yes || exit 1 exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/56_nfs0000755000175000017500000000066710561133267021066 0ustar benben#!/bin/sh # # mount nfs shares # # runlevels: geexbox, debug IFS=' ' if test -f /etc/nfs; then echo "### Mounting NFS shares ###" ( for MOUNTS in `grep -v "^#" /etc/nfs | grep -v "^$"`; do SRV=`echo $MOUNTS | sed 's/[ ]*\([^ ]*\)[ ]*.*/\1/'` DIR=`echo $MOUNTS | sed 's/[ ]*[^ ]*[ ]*\([^ ]*\)/\1/'` mkdir -p /mnt/nfs/$DIR mount -t nfs -o ro,nolock,nfsvers=2 $SRV /mnt/nfs/$DIR >/dev/null 2>&1 done )& fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/79_mp-netstream0000755000175000017500000001000010561133267022677 0ustar benben#!/bin/sh # # Network Stream Setting # # runlevels: geexbox, debug CONF=/etc/netstream TMP=/tmp/streamtmp [ -f /etc/network -a -f $CONF ] || exit 1 . /etc/network # Disable streams if not utilized. test "$SHOUTCAST" = "no" -a "$SHOUTCASTTV" = "no" -a "$ICECAST" = "no" -a `grep -c ^STREAM $CONF` -eq 0 -a `grep -c ^EXTM3U $CONF` -eq 0 && exit 1 echo "### Network Stream Configuration ###" DAY=`date '+%d'` MONTH=`date '+%m'` YEAR=`date '+%Y'` year=`date '+%y'` BASEDIR="/mnt/Network Streams" # network stream for I in `grep "^STREAM" $CONF | sed "s# #%20#g"`; do DIR="$BASEDIR" [ ! -d "$DIR" ] && mkdir -p "$DIR" URL="$(echo $I |sed -e "s#^STREAM=\"\(.*\)\":.*#\1#" -e "s#%DD#$DAY#g" -e "s#%MM#$MONTH#g" -e "s#%YY#$YEAR#g" -e "s#%yy#$year#g")" FILE="$(echo $I |sed -e "s#^STREAM=\"\(.*\)\":\(.*\)#\2#" -e "s#%20# #g" -e "s#/# #g")" echo "$URL" > "$DIR/$FILE.pls" done SC_TUNE=$(sed -n -e "s#^SHOUTCASTTUNE_URI=\"\(.*\)\"#\1#p" $CONF) ( if [ "$ICECAST" = "yes" ]; then # icecast radio unset FILE URL wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^ICECAST_URI=\"\(.*\)\"#\1#p" $CONF` || echo "" > $TMP DIR="$BASEDIR/Icecast Radio" for I in `sed -n -e "s#.*\(.*\).*#\1#p" -e "s#.*\(.*\).*#\1#p" $TMP | sed "s# #_#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" [ `echo $I | grep -c -e "://"` -gt 0 ] && URL="$I" [ `echo $I | grep -c -e "://"` -eq 0 ] && FILE="$(echo $I | sed "s#[_/]# #g")" if [ -n "$FILE" -a -n "$URL" ]; then echo "$URL" > "$DIR/$FILE.pls" unset FILE URL fi done fi if [ "$SHOUTCAST" = "yes" ]; then # shoutcast radio wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^SHOUTCAST_URI=\"\(.*\)\"#\1#p" $CONF` || echo "" > $TMP for I in `sed "s#\&#\&#g" $TMP |sed -n "s#.*name=\"\([^\"]*\)\".*id=\"\([0-9]*\)\".*#\1_TAG_\2#p"| sed -e "s#\ #_#g"`; do DIR="$BASEDIR/SHOUTcast Radio" [ ! -d "$DIR" ] && mkdir -p "$DIR" FILE="$(echo $I | sed -e "s#\(.*\)_TAG_[0-9]*#\1#" | sed -e "s#[_/]# #g" -e "s#://##g")" URL="$SC_TUNE?id=$(echo $I | sed -e "s#.*_TAG_\([0-9]*\)#\1#")" echo "$URL" > "$DIR/$FILE.pls" done fi if [ "$SHOUTCASTTV" = "yes" ]; then # SHOUTcast TV content filter if [ -n "$BLACKLIST" ]; then BL="-v" for I in $BLACKLIST; do BL="$BL -e genre=\"[^\"]*$I[^\"]*\"" done else # Accept all Genre BL="-e genre=\"[^\"]*\"" fi if [ -n "$WHITELIST" ]; then for I in $WHITELIST; do WL="$WL -e genre=\"[^\"]*$I[^\"]*\"" done else # Accept all Genre WL="-e genre=\"[^\"]*\"" fi # SHOUTcast TV wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^SHOUTCASTTV_URI=\"\(.*\)\"#\1#p" $CONF` || echo "" > $TMP for I in `grep -i $BL $TMP | grep -i $WL | sed "s#\&#\&#g" | sed -n "s#.*name=\"\([^\"]*\)\".*id=\"\([0-9]*\)\".*#\1_TAG_\2#p"|sed "s#\ #_#g"`; do DIR="$BASEDIR/SHOUTcast TV" [ ! -d "$DIR" ] && mkdir -p "$DIR" FILE="$(echo $I | sed -e "s#\(.*\)_TAG_[0-9]*#\1#" | sed -e "s#[_/]# #g" -e "s#://##g")" URL="$SC_TUNE?id=$(echo $I | sed -e "s#.*_TAG_\(.*\)#\1#")" echo "$URL" > "$DIR/$FILE.pls" done fi # extended m3u playlists unset FILE URL for J in `grep "^EXTM3U" $CONF | sed "s# #%20#g"`; do DIR="$BASEDIR/$(echo $J | sed -e "s#^EXTM3U=\".*\":\(.*\)#\1#" -e "s#%20# #g")" M3UURL="$(echo $J | sed "s#^EXTM3U=\"\(.*\)\":.*#\1#")" wget -q -T $TIMEOUT -t $TRIES -O $TMP "$M3UURL" || continue for I in `sed -n -e "s/#EXTINF:[-]*[0-9]*,\(.*\)/\1/p" -e "s#\(.*\)://\(.*\)#\1://\2#p" $TMP | sed "s# #_#g"`; do [ -n "$FILE" ] || FILE="$(echo $I | sed -e "s#[_/]# #g")" [ -n "$URL" ] || URL="$(echo $I | sed -n -e "s#\(.*\)://\(.*\)#\1://\2#p" | sed -e "s#%DD#$DAY#g" -e "s#%MM#$MONTH#g" -e "s#%YY#$YEAR#g" -e "s#%yy#$year#g")" if [ -n "$FILE" -a -n "$URL" ]; then [ ! -d "$DIR" ] && mkdir -p "$DIR" echo "$URL" > "$DIR/$FILE.pls" unset FILE URL fi done done )& exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/05_lspci0000755000175000017500000000013110561133267021366 0ustar benben#!/bin/sh # # cache pci devices # # runlevels: geexbox, debug, install lspci > /tmp/pci geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/78_powernow0000755000175000017500000000036510561133267022157 0ustar benben#!/bin/sh # # powernow deamon # # runlevels: geexbox, debug if [ -x /usr/bin/powernowd \ -a -f /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq ]; then echo "### Starting PowerNow! daemon ###" powernowd >/dev/null 2>&1 fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/58_samba0000755000175000017500000000132510561133267021355 0ustar benben#!/bin/sh # # mount samba shares # # runlevels: geexbox, debug if test -x /usr/bin/smbmount -a -f /etc/network; then echo "### Mounting Samba shares ###" ( . /etc/network OPT="-N" test -n "$SMB_USER" && OPT="-U$SMB_USER%$SMB_PWD" saveifs=$IFS smbtree "$OPT" | while read mounts; do ( IFS=/ set $mounts name=$1 ip=$2 shift 2 while [ $# -gt 0 ]; do dir="/mnt/shares/$name/$1" mkdir -p "$dir" mount "//$ip/$1" "$dir" -t cifs -o "ro,user=$SMB_USER,pass=$SMB_PWD" || \ smbmount "//$name/$1" "$dir" -o "ro,ip=$ip,username=$SMB_USER,passwd=$SMB_PWD" || \ rmdir -p "$dir" shift done IFS=$saveifs )& done )>/dev/null 2>&1 & fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/60_sleeptimer0000755000175000017500000000023510561133267022433 0ustar benben#!/bin/sh # # start sleeptimer script # runlevels: geexbox echo "0" > /var/downtime echo "### starting sleeptimer daemon ###" /usr/bin/sleeptimer & exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/init.d/30_tvout0000755000175000017500000000106010561133267021435 0ustar benben#!/bin/sh # # setup the tvout # # runlevels: geexbox, debug, install test -f /etc/tvout || exit 1 echo "### Setting up TV-Out ###" . /etc/tvout atitvout $TVOUT_STANDARD auto >/dev/null 2>&1 test "`atitvout active 2>/dev/null | sed -n 's/TV.*/TV/p'`" = "TV" && echo "" > /var/tvout # nvidia and s3 cards cannot detect tv devices, and disable vga when enabled. if [ $TVOUT_ENABLE = yes ]; then nvtv $NVTV_ON >/dev/null 2>&1 s3switch -q tv $TVOUT_STANDARD >/dev/null 2>&1 i810tvout $I810_TVON >/dev/null 2>&1 echo "" > /var/tvout fi exit 0 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/ndiswrapper/0000755000175000017500000000000010561133267021200 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/file_ext0000644000175000017500000000022510561133267020363 0ustar benbenavi divx asf wmv mpeg mpg mpe vob m1v m2v m4v ts mp4 mp4v m4a m4p ogm mkv mka rm ra rmvb mov qt bin mp3 mp2 ogg wav wma y4m dat iso ifo flac mpc vro geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/list_ext0000644000175000017500000000002510561133267020415 0ustar benbenpls m3u asx ram smil geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/modules0000644000175000017500000000232010561133270020224 0ustar benben# Drivers for Wireless cards ipw2100 ipw2200 rt2400 rt2500 ieee80211softmac bcm43xx acx ath_pci atmel atmel_pci zd1201 zd1211 # Drivers for DVB cards ttusb_dec dvb-ttusb-budget dvb-usb-vp7045 dvb-usb-vp702x dvb-usb-umt-010 dvb-usb-nova-t-usb2 dvb-usb-ttusb2 dvb-usb-dtt200u dvb-usb-digitv dvb-usb-dibusb-mc dvb-usb-dibusb-mb dvb-usb-dib0700 dvb-usb-cxusb dvb-usb-a800 cinergyT2 b2c2-flexcop-usb pvrusb2 # Drivers for PnP ISA sound cards snd-interwave-stb snd-sb16 snd-sbawe snd-sscape # These are modules of some ISA non-PnP devices. # If some of these modules are needed uncomment the line and add correct # parameters for the module. # Drivers for ISA network adapter # wd mem_end=0xca000 mem=0xc8000 irq=5 io=0x2a0 # smc-ultra io=0x2a0 irq=7 # Drivers for ISA sound cards # Some ISA PnP cards may work fine, for other ones you need to add the # correct modules parameters. # snd-tea6330t # snd-ad1816a # snd-ad1848 # snd-cs4231 # snd-cs4232 # snd-cs4236 # snd-es1688 # snd-gusclassic # snd-gusextreme # snd-gusmax # snd-interwave # snd-opti92x-ad1848 # snd-opti92x-cs4231 # snd-opti93x # snd-es968 # snd-sb8 # snd-als100 # snd-azt2320 # snd-cmi8330 # snd-dt019x # snd-es18xx # snd-opl3sa2 # snd-sgalaxy # snd-wavefront geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/tvcard0000644000175000017500000000250110561133270020040 0ustar benben# # TV Card Options # # TV card model (AUTO for autodetection or look at the following urls) # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.bttv;filenode=-1;style=raw # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.cx88;filenode=-1;style=raw # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.saa7134;filenode=-1;style=raw TV_CARD=AUTO # TV tuner (AUTO for autodetection or look at the following url) # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.tuner;filenode=-1;style=raw TV_TUNER=AUTO # TV Input Standard (ntsc/ntsc-m/ntsc-jp/pal/pal-bg/pal-dk/pal-i/pal-m/pal-n/ # pal-nc/pal-60/secam/secam-l/secam-dk) # Some card (SAA7134) need a special way to set the sub-mode. # Example for using secam-dk #TVIN_STANDARD=secam #TVIN_SUB_STANDARD=d # TVIN_STANDARD=pal # TV Channels # Syntax : CHAN="Channel Frequency:Channel Title" # Example: #CHAN="29:France 2" #CHAN="K08:Canal +" # TV Channels List # Available : us-bcast, us-cable, us-cable-hrc, japan-bcast, japan-cable, # europe-west, europe-east, italy, newzealand, australia, # ireland, france, china-bcast, southafrica, argentina, # australia-optus, russia CHANLIST=europe-west geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/audio0000644000175000017500000000144210561133271017662 0ustar benben# Soundcard Configuration File # Soundcard's ID (0 for first card, 1 for second, ...) ALSA_CARD="0" # Output mode (SPDIF or analog) SOUNDCARD_MODE="analog" # AC3 decoder mode (none, ac3, dts or ac3dts) # note: in analog mode this option is ignored and defaults to none. AC3_DECODER="none" # IEC958 Playback AC97-SPSA Mode: # 0. PCM1 # 1. PCM2,PCM1 (rear) # 2. Centre and LFE # 3. PCM3,Modem,Dedicated S/PDIF # For SPDIF most users will want 0, but some users may need 3. AC97_SPSA="0" # Playback channels # 2 - Stereo # 4 - Surround # 6 - Full 5.1 # note: in SPDIF and hardware AC3 decoder mode this option is ignored. CHANNELS="2" # SB Live/Audigy Analog/Digital Output Mode: # 0: Suitable for some older SB Live! cards # 1: Suitable for newer SB Live! and all Audigy cards SBL_AUDIGY="1" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/tvout0000644000175000017500000000256110561133272017746 0ustar benben# TVOut Configuration File # # Generic Options # # TV Output for cards that cannot autodetect (nvidia/s3) TVOUT_ENABLE=no # TV Output Standard (ntsc/pal/secam) TVOUT_STANDARD=pal # TV Output Aspect (4:3 or 16:9) TVOUT_ASPECT="4:3" # # NvTV Options - For n'Vidia cards ONLY # # Connector's Type (auto/composite/svideo/both/convert) CTR=convert # TV Resolution (pixels) TV_RES="800,600" # Monitor's Resolution (pixels / frequency) MONITOR_RES="800x600@75" # Scan Size (Tiny/Small/Normal/Large/Huge) SCAN=Large # Image Position (TVPositionX/Y:+/-x,y) POSITION="TVPositionX:0,0" # Command line NVTV_ON="-t -c -S $TVOUT_STANDARD -r $TV_RES -s $SCAN -C $CTR --set $POSITION" NVTV_OFF="-m -s $MONITOR_RES" # # i810tvout Options - For Intel i810/i815 cards ONLY # # TV Format (NTSC_M, NTSC_M_J, PAL_B, PAL_D, PAL_G, PAL_H, PAL_I, PAL_M, PAL_N) I810_FORMAT="PAL_M" # TV Mode (see output of --list-modes in debug) I810_MODE=6 # Horizontal position, valid range is from -50 to 50. I810_H=0 # Vertical position, valid range is from -50 to 50. I810_V=0 # Brightness (black level), valid range is from -50 to 50. I810_BRIGHT=0 # Contrast, valid range is from -50 to 50. I810_CONTRAST=0 # Command line I810_TVON="--tv_enable --tv_mode $I810_MODE --tv_format $I810_FORMAT --h_position $I810_H --v_position $I810_V --tv_brightness $I810_BRIGHT --tv_contrast $I810_CONTRAST" I810_TVOFF="--crt_enable" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/0000755000175000017500000000000010561133272017567 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_D-100000644000175000017500000000546210561133272021460 0ustar benbenbegin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = EJECT config = run /usr/bin/eject end begin prog = mplayer button = ANGLE config = run /usr/bin/tvswitch end begin prog = mplayer button = INDEX config = set_menu jump_to end begin prog = mplayer button = A-B config = osd end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 1 config = seek -10 end begin prog = mplayer button = 2 repeat = 1 config = seek 10 end begin prog = mplayer button = 4 repeat = 3 config = seek -60 end begin prog = mplayer button = 5 repeat = 3 config = seek 60 end begin prog = mplayer button = 7 repeat = 1 config = sub_delay -0.2 end begin prog = mplayer button = 8 repeat = 1 config = sub_delay +0.2 end begin prog = mplayer button = 3 repeat = 1 config = brightness 1 end begin prog = mplayer button = 6 repeat = 1 config = brightness -1 end begin prog = mplayer button = 0 repeat = 1 config = sub_visibility end begin prog = mplayer button = MENU config = set_menu main end begin prog = mplayer button = TITLE config = set_menu open_file end begin prog = mplayer button = SUBTITLE config = set_menu sub_sel end begin prog = mplayer button = AUDIO config = set_menu audio_sel end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = ACTIVE_MENU repeat = 0 config = menu toggle end begin prog = mplayer button = EXIT config = menu cancel end begin prog = mplayer button = LEFT_RW repeat = 2 config = volume -1 end begin prog = mplayer button = RIGHT_FW repeat = 2 config = volume 1 end begin prog = mplayer button = UP_FW repeat = 3 config = menu up end begin prog = mplayer button = DOWN_RW repeat = 3 config = menu down end begin prog = mplayer button = OK_PLAY config = menu ok end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = SKIP_BACK repeat = 2 config = pt_step -1 end begin prog = mplayer button = SKIP_FORWARD repeat = 2 config = pt_step 1 end begin prog = fbi button = EXIT config = q end begin prog = fbi button = RIGHT_FW config = n end begin prog = fbi button = LEFT_RW config = b end begin prog = fbi button = UP_FW config = + end begin prog = fbi button = DOWN_RW config = - end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = ANGLE config = h end begin prog = fbi button = INDEX config = i end begin prog = fbi button = A-B config = v end begin prog = fbi button = MUTE config = a end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_LG0000644000175000017500000000313510561133272021354 0ustar benbenbegin prog = mplayer button = red repeat = 0 config = seek -60 end begin prog = mplayer button = green repeat = 0 config = seek 60 end begin prog = mplayer button = ok repeat = 0 config = PAUSE end begin prog = mplayer button = mute repeat = 0 config = quit end begin prog = mplayer button = blue repeat = 1 config = VOLUME +1 end begin prog = mplayer button = yellow repeat = 1 config = VOLUME -1 end begin prog = mplayer button = vol+ repeat = 0 config = menu ok end begin prog = mplayer button = vol- repeat = 0 config = menu cancel end begin prog = mplayer button = pr+ repeat = 0 config = menu up end begin prog = mplayer button = pr- repeat = 0 config = menu down end begin prog = mplayer button = sleep repeat = 1 config = menu toggle end begin prog = mplayer button = time repeat = 1 config = osd end begin prog = mplayer button = tv config = run /usr/bin/tvswitch end begin prog = irpty button = psm config = p: end begin prog = irpty button = picture config = l: end begin prog = fbi button = ok config = p end begin prog = fbi button = vol+ config = n end begin prog = fbi button = vol- config = b end begin prog = fbi button = mute config = q end begin prog = fbi button = sleep config = v end begin prog = fbi button = pr+ config = + end begin prog = fbi button = pr- config = - end begin prog = fbi button = tv config = a end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_Medion-X100000644000175000017500000001064610561133272022640 0ustar benbenbegin prog = mplayer button = channel_list config = set_menu tv_chan end begin prog = mplayer button = vcr config = set_menu record end begin prog = mplayer button = radio config = set_menu radio_chan end begin prog = mplayer button = setup config = run /usr/bin/tvswitch end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -10 end begin prog = mplayer button = fast_forward repeat = 3 config = seek 10 end begin prog = mplayer button = previous repeat = 3 config = seek -120 end begin prog = mplayer button = next repeat = 3 config = seek 120 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = chan-down repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = chan-up repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = video_desktop config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = dvd_menu config = menu toggle end begin prog = mplayer button = dvd config = menu hide\nplay_dvd end begin prog = mplayer button = photo config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = right repeat = 2 config = menu ok end begin prog = mplayer button = left repeat = 2 config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = red repeat = 3 config = sub_pos -1 end begin prog = mplayer button = green config = set_menu view_sleeptimer end begin prog = mplayer button = blue repeat = 3 config = sub_pos +1 end begin prog = mplayer button = txt repeat = 3 config = sub_select end begin prog = mplayer button = dvd_audio repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = rec config = record end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = fullscreen config = set_menu aspect end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = delete config = d end begin prog = irpty button = ch_search config = o end begin prog = irpty button = rename config = d end begin prog = irpty button = snapshot config = c end begin prog = irpty button = acquire_image config = p end begin prog = irpty button = edit_image config = u end begin prog = fbi button = power config = q end begin prog = fbi button = right config = n end begin prog = fbi button = next config = n end begin prog = fbi button = left config = b end begin prog = fbi button = previous config = b end begin prog = fbi button = up config = + end begin prog = fbi button = down config = - end begin prog = fbi button = fullscreen config = a end begin prog = fbi button = dvd_menu config = h end begin prog = fbi button = tv config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = setup config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_RM-S60000644000175000017500000000256510561133272021664 0ustar benbenbegin prog = mplayer button = TAPE config = run /usr/bin/tvswitch end begin prog = mplayer button = CD_PAUSE config = pause end begin prog = mplayer button = CD_STOP config = quit end begin prog = mplayer button = CD_PLAY config = mute end begin prog = mplayer button = CD_PREV_TRACK repeat = 1 config = seek -120 end begin prog = mplayer button = CD_NEXT_TRACK repeat = 1 config = seek 120 end begin prog = mplayer button = SLEEP repeat = 1 config = seek -10 end begin prog = mplayer button = CD repeat = 1 config = seek 10 end begin prog = mplayer button = AMP_VOL_DOWN repeat = 2 config = volume -1 end begin prog = mplayer button = AMP_VOL_UP repeat = 5 config = volume 1 end begin prog = mplayer button = CD_EJECT config = osd end begin prog = mplayer button = AMP_POWER config = quit 166 end begin prog = mplayer button = TUNER config = menu toggle end begin prog = mplayer button = TUNER_SHIFT config = set_menu open_file end begin prog = mplayer button = VIDEO/AUX config = menu ok end begin prog = mplayer button = PHONO config = menu cancel end begin prog = mplayer button = TUNER_PRESET_+ repeat = 5 config = menu up end begin prog = mplayer button = TUNER_PRESET_- repeat = 5 config = menu down end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_RX-V8500000644000175000017500000000265410561133272022050 0ustar benbenbegin prog = mplayer button = F_TV config = run /usr/bin/tvswitch end begin prog = mplayer button = CD_PLAY config = pause end begin prog = mplayer button = CD_PAUSE/STOP repeat = 1 config = seek -120 end begin prog = mplayer button = CD_SEARCH_FWD repeat = 1 config = seek 120 end begin prog = mplayer button = TAPE_DIR_A repeat = 1 config = seek -10 end begin prog = mplayer button = TAPE_DIR_B repeat = 1 config = seek 10 end begin prog = mplayer button = CD_SEARCH_REV repeat = 1 config = volume -1 end begin prog = mplayer button = CD_SKIP_FWD repeat = 1 config = volume 1 end begin prog = mplayer button = TUNER_+ repeat = 1 config = volume 1 end begin prog = mplayer button = 8 repeat = 1 config = volume -1 end begin prog = mplayer button = CD_SKIP_REV config = osd end begin prog = mplayer button = CD_DISK_SKIP config = quit 166 end begin prog = TAPE_PLAY button = Info config = menu toggle end begin prog = mplayer button = TAPE_STOP config = set_menu open_file end begin prog = mplayer button = TAPE_FFWD config = menu ok end begin prog = mplayer button = TAPE_REWIND config = menu cancel end begin prog = mplayer button = TAPE_REC/PAUSE repeat = 1 config = menu up end begin prog = mplayer button = TAPE_DECK_A/B repeat = 1 config = menu down end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_animax0000644000175000017500000000267010561133272022332 0ustar benbenbegin prog = mplayer button = TV_DOWN config = run /usr/bin/tvswitch end begin prog = mplayer button = MENU_DOWN config = pause end begin prog = mplayer button = STOP_DOWN config = quit end begin prog = mplayer button = MUTE_DOWN config = mute end begin prog = mplayer button = 1_DOWN repeat = 1 config = seek -120 end begin prog = mplayer button = 3_DOWN repeat = 1 config = seek 120 end begin prog = mplayer button = REWIND_DOWN repeat = 1 config = seek -10 end begin prog = mplayer button = FORWARD_DOWN repeat = 1 config = seek 10 end begin prog = mplayer button = VOLUME_DOWN_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VOLUME_UP_DOWN repeat = 1 config = volume 1 end begin prog = mplayer button = BLUE_BUTTON_DOWN config = osd end begin prog = mplayer button = POWER_DOWN config = quit 166 end begin prog = mplayer button = RED_BUTTON_DOWN config = menu toggle end begin prog = mplayer button = GREEN_BUTTON_DOWN config = set_menu open_file end begin prog = mplayer button = LEFT_MOUSE_BUTTON_TOUCH_DOWN config = menu ok end begin prog = mplayer button = MOUSE_S repeat = 0 config = menu cancel end begin prog = mplayer button = LEFT_MOUSE_BUTTON_DOWN config = menu up end begin prog = mplayer button = RIGHT_MOUSE_BUTTON_DOWN config = menu down end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_askey0000644000175000017500000000340510561133272022166 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 5 config = pause end begin prog = mplayer button = FREEZE config = pause end begin prog = mplayer button = 8 repeat = 1 config = seek -120 end begin prog = mplayer button = 2 repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = seek 10 end begin prog = mplayer button = 1 repeat = 1 config = volume 1 end begin prog = mplayer button = 7 repeat = 1 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 1 config = volume 1 end begin prog = mplayer button = VOL_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VIDEO config = osd end begin prog = mplayer button = PREVIEW config = menu toggle end begin prog = mplayer button = PLAY config = set_menu open_file end begin prog = mplayer button = RECORD config = menu ok end begin prog = mplayer button = STOP config = menu cancel end begin prog = mplayer button = CH_UP repeat = 2 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 2 config = menu down end begin prog = mplayer button = FINE_UP(PLUS) repeat = 2 config = menu down end begin prog = mplayer button = FINE_DOWN(MINUS) repeat = 2 config = menu up end begin prog = mplayer button = 3 config = audio_delay 0.1 end begin prog = mplayer button = 9 config = audio_delay -0.1 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = ZOOM config = vo_fullscreen end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_atiusb0000644000175000017500000001126710561133272022346 0ustar benbenbegin prog = mplayer button = launch_setup config = run /usr/bin/tvswitch end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -120 end begin prog = mplayer button = fast_forward repeat = 3 config = seek 120 end begin prog = mplayer button = c repeat = 3 config = seek -10 end begin prog = mplayer button = d repeat = 3 config = seek 10 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = chan-down repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = chan-up repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = tv_on_demand config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = dvd-root_menu config = menu toggle end begin prog = mplayer button = web config = set_menu open_file end begin prog = mplayer button = dvd config = menu hide\nplay_dvd end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = drag config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = cursor-right config = menu ok end begin prog = mplayer button = mouse-right config = menu ok end begin prog = mplayer button = cursor-left config = menu cancel end begin prog = mplayer button = mouse-left config = menu cancel end begin prog = mplayer button = cursor-up repeat = 2 config = menu up end begin prog = mplayer button = mouse-up repeat = 6 config = menu up end begin prog = mplayer button = cursor-down repeat = 2 config = menu down end begin prog = mplayer button = mouse-down repeat = 6 config = menu down end begin prog = mplayer button = a repeat = 3 config = sub_pos -1 end begin prog = mplayer button = b repeat = 3 config = sub_pos +1 end begin prog = mplayer button = e repeat = 3 config = sub_select end begin prog = mplayer button = f repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = record config = record end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = max_window config = set_menu aspect end begin prog = mplayer button = media_library config = set_menu jump_to end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = irpty button = mouse-button_left config = set_menu properties end begin prog = fbi button = power config = q end begin prog = fbi button = cursor-right config = n end begin prog = fbi button = mouse-right config = n end begin prog = fbi button = fast_forward config = n end begin prog = fbi button = cursor-left config = b end begin prog = fbi button = mouse-left config = b end begin prog = fbi button = rewind config = b end begin prog = fbi button = cursor-up config = + end begin prog = fbi button = mouse-up config = + end begin prog = fbi button = cursor-down config = - end begin prog = fbi button = mouse-down config = - end begin prog = fbi button = max_window config = a end begin prog = fbi button = dvd-root_menu config = h end begin prog = fbi button = tv_on_demand config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_atiusb20000644000175000017500000000712510561133272022426 0ustar benbenbegin prog = mplayer button = hand config = run /usr/bin/tvswitch end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -120 end begin prog = mplayer button = ffwd repeat = 3 config = seek 120 end begin prog = mplayer button = c repeat = 3 config = seek -10 end begin prog = mplayer button = d repeat = 3 config = seek 10 end begin prog = mplayer button = chan-down config = seek -10 end begin prog = mplayer button = chan-up config = seek 10 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = info config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = timer config = menu toggle end begin prog = mplayer button = ati config = set_menu open_file end begin prog = mplayer button = dvd config = menu hide\nplay_dvd end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = check config = sub_visibility end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = cursor-right config = menu ok end begin prog = mplayer button = mouse-right config = menu ok end begin prog = mplayer button = cursor-left config = menu cancel end begin prog = mplayer button = mouse-left config = menu cancel end begin prog = mplayer button = cursor-up repeat = 2 config = menu up end begin prog = mplayer button = mouse-up repeat = 6 config = menu up end begin prog = mplayer button = cursor-down repeat = 2 config = menu down end begin prog = mplayer button = mouse-down repeat = 6 config = menu down end begin prog = mplayer button = e repeat = 3 config = sub_pos -1 end begin prog = mplayer button = f repeat = 3 config = sub_pos +1 end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = max_window config = set_menu aspect end begin prog = mplayer button = a config = set_menu jump_to end begin prog = mplayer button = b config = set_menu audio_sel end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = fbi button = power config = q end begin prog = fbi button = cursor-right config = n end begin prog = fbi button = mouse-right config = n end begin prog = fbi button = fast_forward config = n end begin prog = fbi button = cursor-left config = b end begin prog = fbi button = mouse-left config = b end begin prog = fbi button = rewind config = b end begin prog = fbi button = cursor-up config = + end begin prog = fbi button = mouse-up config = + end begin prog = fbi button = cursor-down config = - end begin prog = fbi button = mouse-down config = - end begin prog = fbi button = max_window config = a end begin prog = fbi button = dvd-root_menu config = h end begin prog = fbi button = tv_on_demand config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_avermedia0000644000175000017500000000324410561133272023010 0ustar benbenbegin prog = mplayer button = DISPLAY config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = CH_DOWN repeat = 3 config = seek -60 end begin prog = mplayer button = CH_UP repeat = 3 config = seek 60 end begin prog = mplayer button = VOL_DOWN repeat = 2 config = volume -2 end begin prog = mplayer button = VOL_UP repeat = 2 config = volume 2 end begin prog = mplayer button = TELETEXT config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = TV/FM config = menu toggle end begin prog = mplayer button = 0 config = set_menu open_file end begin prog = mplayer button = VIDEO config = menu hide\nplay_dvd end begin prog = mplayer button = TV/FM config = set_menu tv_settings end begin prog = mplayer button = PREVIEW config = set_menu view_img end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = 6 config = menu ok end begin prog = mplayer button = 4 config = menu cancel end begin prog = mplayer button = 2 repeat = 4 config = menu up end begin prog = mplayer button = 8 repeat = 4 config = menu down end begin prog = mplayer button = GREEN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = RED repeat = 3 config = sub_pos +1 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = FULLSCREEN config = set_menu aspect end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_cinergy14000000644000175000017500000000655610561133272023031 0ustar benbenbegin prog = mplayer button = KEY_GREEN config = run /usr/bin/tvswitch end begin prog = mplayer button = KEY_PAUSE config = pause end begin prog = mplayer button = KEY_PREVIOUS repeat = 3 config = seek -120 end begin prog = mplayer button = KEY_NEXT repeat = 3 config = seek 120 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = KEY_SELECT config = osd end begin prog = mplayer button = KEY_POWER config = quit 166 end begin prog = mplayer button = KEY_INFO config = menu toggle end begin prog = mplayer button = KEY_TEXT config = set_menu open_file end begin prog = mplayer button = KEY_RED config = menu hide\nplay_dvd end begin prog = mplayer button = KEY_EPG config = set_menu view_img end begin prog = mplayer button = KEY_PLAY config = seek 0 end begin prog = mplayer button = KEY_OK config = menu ok end begin prog = mplayer button = KEY_RIGHT config = menu ok end begin prog = mplayer button = KEY_LEFT config = menu cancel end begin prog = mplayer button = KEY_UP repeat = 2 config = menu up end begin prog = mplayer button = KEY_DOWN repeat = 2 config = menu down end begin prog = mplayer button = KEY_BLUE repeat = 3 config = sub_select end begin prog = mplayer button = KEY_YELLOW repeat = 3 config = switch_audio end begin prog = mplayer button = KEY_MUTE config = mute end begin prog = mplayer button = KEY_RECORD config = record end begin prog = mplayer button = KEY_STOP config = quit end begin prog = mplayer button = KEY_VIDEO config = set_menu aspect end begin prog = mplayer button = KEY_REFRESH config = set_menu jump_to end begin prog = mplayer button = KEY_8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = KEY_2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = KEY_4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = KEY_6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = KEY_0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = KEY_5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = KEY_7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = KEY_9 repeat = 2 config = pt_step +1 end begin prog = irpty button = KEY_3 config = p end begin prog = irpty button = KEY_1 config = l end begin prog = fbi button = KEY_POWER config = q end begin prog = fbi button = KEY_RIGHT config = n end begin prog = fbi button = KEY_NEXT config = n end begin prog = fbi button = KEY_LEFT config = b end begin prog = fbi button = KEY_PREVIOUS config = b end begin prog = fbi button = KEY_UP config = + end begin prog = fbi button = KEY_DOWN config = - end begin prog = fbi button = KEY_PLAY config = p end begin prog = fbi button = KEY_PAUSE config = p end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_creative0000644000175000017500000000240710561133272022655 0ustar benbenbegin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = rrev repeat = 1 config = seek -120 end begin prog = mplayer button = ffwd repeat = 1 config = seek 120 end begin prog = mplayer button = last repeat = 1 config = seek -10 end begin prog = mplayer button = next repeat = 1 config = seek 10 end begin prog = mplayer button = vol- repeat = 1 config = volume -1 end begin prog = mplayer button = vol+ repeat = 1 config = volume 1 end begin prog = mplayer button = 1 config = osd end begin prog = mplayer button = shift config = quit 166 end begin prog = mplayer button = start config = menu toggle end begin prog = mplayer button = eject config = set_menu open_file end begin prog = mplayer button = 6 config = menu ok end begin prog = mplayer button = 4 config = menu cancel end begin prog = mplayer button = 2 repeat = 1 config = menu up end begin prog = mplayer button = 8 repeat = 1 config = menu down end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_digimatrix0000644000175000017500000001030610561133272023211 0ustar benbenbegin prog = mplayer button = 0 config = dvdnav 5 end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = pre repeat = 2 config = seek -120 end begin prog = mplayer button = next repeat = 2 config = seek 120 end begin prog = mplayer button = step- repeat = 2 config = seek -10 end begin prog = mplayer button = step+ repeat = 2 config = seek 10 end begin prog = mplayer button = ch+ repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = ch- repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = vol- repeat = 2 config = volume -1 end begin prog = mplayer button = vol+ repeat = 2 config = volume 1 end begin prog = mplayer button = ui_on_off config = osd end begin prog = mplayer button = os_start config = quit 166 end begin prog = mplayer button = rec config = set_menu recorder end begin prog = mplayer button = menu config = menu toggle end begin prog = mplayer button = dvd_vcd config = menu hide\nplay_dvd\nplay_vcd end begin prog = mplayer button = music config = menu hide\nplay_cdda end begin prog = mplayer button = photo config = set_menu open_file end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = enter config = menu ok end begin prog = mplayer button = right config = menu ok end begin prog = mplayer button = left config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = 1 repeat = 2 config = set_menu options end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 3 repeat = 2 config = sub_select end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 7 repeat = 2 config = set_menu controls end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 9 repeat = 2 config = set_menu properties end begin prog = mplayer button = subtitle repeat = 2 config = sub_visibility end begin prog = mplayer button = dvd_audio repeat = 2 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = ui_size config = set_menu aspect end begin prog = mplayer button = home config = set_menu jump_to end begin prog = irpty button = 1 repeat = 2 config = p end begin prog = irpty button = 4 repeat = 2 config = l end begin prog = irpty button = back config = u end begin prog = fbi button = stop config = q end begin prog = fbi button = up config = u end begin prog = fbi button = down config = d end begin prog = fbi button = left config = < end begin prog = fbi button = right config = > end begin prog = fbi button = next config = n end begin prog = fbi button = step+ config = n end begin prog = fbi button = pre config = b end begin prog = fbi button = step- config = b end begin prog = fbi button = ch+ config = + end begin prog = fbi button = vol+ config = + end begin prog = fbi button = ch- config = - end begin prog = fbi button = vol- config = - end begin prog = fbi button = enter config = a end begin prog = fbi button = ui_size config = a end begin prog = fbi button = menu config = h end begin prog = fbi button = ui_on_off config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = subtitle config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_digimatrixmk20000644000175000017500000000733210561133272023630 0ustar benbenbegin prog = mplayer button = 0 config = set_menu controls end begin prog = mplayer button = tv_dvr config = set_menu tv_settings end begin prog = mplayer button = dvd_menu config = menu hide\nplay_dvd end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rew repeat = 3 config = seek -120 end begin prog = mplayer button = fwd repeat = 3 config = seek 120 end begin prog = mplayer button = step- repeat = 3 config = seek -10 end begin prog = mplayer button = step+ repeat = 3 config = seek 10 end begin prog = mplayer button = ch+ repeat = 3 config = tv_step_channel +1 end begin prog = mplayer button = ch- repeat = 3 config = tv_step_channel -1 end begin prog = mplayer button = vol- repeat = 2 config = volume -1 end begin prog = mplayer button = vol+ repeat = 2 config = volume 1 end begin prog = mplayer button = ui_size config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = back_fwd config = menu toggle end begin prog = mplayer button = fm config = set_menu open_file end begin prog = mplayer button = music config = play_cdda end begin prog = mplayer button = pictures config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = right config = menu ok end begin prog = mplayer button = left config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = 1 repeat = 3 config = sub_pos -1 end begin prog = mplayer button = 4 repeat = 3 config = sub_pos +1 end begin prog = mplayer button = 2 repeat = 3 config = sub_select +1 end begin prog = mplayer button = 5 repeat = 3 config = sub_select end begin prog = mplayer button = 8 repeat = 3 config = sub_select -1 end begin prog = mplayer button = 3 repeat = 3 config = vobsub_lang +1 end begin prog = mplayer button = 6 repeat = 3 config = vobsub_lang -1 end begin prog = mplayer button = 7 repeat = 3 config = panscan -0.1 end begin prog = mplayer button = 9 repeat = 3 config = panscan +0.1 end begin prog = mplayer button = pc repeat = 3 config = sub_visibility end begin prog = mplayer button = repeat repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = ui_size config = set_menu aspect end begin prog = mplayer button = video config = play_vcd end begin prog = irpty button = step- config = p end begin prog = irpty button = step+ config = l end begin prog = fbi button = stop config = q end begin prog = fbi button = right config = n end begin prog = fbi button = step+ config = n end begin prog = fbi button = left config = b end begin prog = fbi button = step- config = b end begin prog = fbi button = up config = + end begin prog = fbi button = down config = - end begin prog = fbi button = ui_size config = a end begin prog = fbi button = menu config = h end begin prog = fbi button = tv_dvr config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = 0 config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_flytv-prime0000644000175000017500000000341710561133272023333 0ustar benbenbegin prog = mplayer button = ZOOM config = run /usr/bin/tvswitch end begin prog = mplayer button = 7 config = pause end begin prog = mplayer button = AGAIN repeat = 3 config = seek -120 end begin prog = mplayer button = ENTER repeat = 3 config = seek 120 end begin prog = mplayer button = VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = TUNER config = menu toggle end begin prog = mplayer button = 1 config = seek 0 end begin prog = mplayer button = VIDEO config = menu ok end begin prog = mplayer button = MODE config = menu cancel end begin prog = mplayer button = AUDIO repeat = 2 config = menu up end begin prog = mplayer button = LANGUAGE repeat = 2 config = menu down end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 9 config = record end begin prog = mplayer button = 3 config = quit end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_hauppauge0000644000175000017500000000234410561133272023032 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 5 config = pause end begin prog = mplayer button = 8 repeat = 1 config = seek -120 end begin prog = mplayer button = 2 repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = seek 10 end begin prog = mplayer button = 1 repeat = 1 config = volume 1 end begin prog = mplayer button = 7 repeat = 1 config = volume -1 end begin prog = mplayer button = FULL_SCREEN config = osd end begin prog = mplayer button = MINIMIZE config = menu toggle end begin prog = mplayer button = SOURCE config = set_menu open_file end begin prog = mplayer button = VOL+ config = menu ok end begin prog = mplayer button = VOL- config = menu cancel end begin prog = mplayer button = CH+ repeat = 2 config = menu up end begin prog = mplayer button = CH- repeat = 2 config = menu down end begin prog = mplayer button = 3 config = audio_delay 0.1 end begin prog = mplayer button = 9 config = audio_delay -0.1 end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_imonknob0000644000175000017500000001200210561133272022657 0ustar benbenbegin prog = mplayer button = MyTV config = run /usr/bin/tvswitch end begin prog = mplayer button = AppExit config = run /usr/bin/eject end begin prog = mplayer button = Eject config = run /usr/bin/eject -T end begin prog = mplayer button = Pause config = pause end begin prog = mplayer button = Rewind repeat = 3 config = seek -120 end begin prog = mplayer button = FastForward repeat = 3 config = seek 120 end begin prog = mplayer button = Backspace repeat = 3 config = seek -10 end begin prog = mplayer button = SelectSpace repeat = 3 config = seek 10 end begin prog = mplayer button = VolDown repeat = 2 config = volume -1 end begin prog = mplayer button = VolUp repeat = 2 config = volume 1 end begin prog = mplayer button = KnobVolDown repeat = 2 config = volume -1 end begin prog = mplayer button = KnobVolUp repeat = 2 config = volume 1 end begin prog = mplayer button = ChDown repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = ChUp repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = Bookmark config = osd end begin prog = mplayer button = Power config = quit 166 end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = Open config = set_menu open_file end begin prog = mplayer button = MyDVD config = menu hide\nplay_dvd end begin prog = mplayer button = Bookmark config = set_menu tv_settings end begin prog = mplayer button = MyPhoto config = set_menu view_img end begin prog = mplayer button = MyMusic config = play_cdda end begin prog = mplayer button = MyMovie config = play_vcd end begin prog = mplayer button = Play config = seek 0 end begin prog = mplayer button = Enter config = menu ok end begin prog = mplayer button = Esc config = menu cancel end begin prog = mplayer button = CursorUp repeat = 1 config = menu up end begin prog = mplayer button = CursorDown repeat = 1 config = menu down end begin prog = mplayer button = WindowsKey repeat = 1 config = menu up end begin prog = mplayer button = MouseMenu repeat = 1 config = menu down end begin prog = mplayer button = MouseLeftClick repeat = 3 config = sub_pos -1 end begin prog = mplayer button = MouseRightClick repeat = 3 config = sub_pos +1 end begin prog = mplayer button = Language repeat = 3 config = sub_select end begin prog = mplayer button = TaskSwitcher repeat = 3 config = switch_audio end begin prog = mplayer button = AppLauncher config = u end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Record config = record end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = AspectRatio config = set_menu aspect end begin prog = mplayer button = MultiMon config = set_menu jump_to end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = irpty button = mouse-button_left config = set_menu properties end begin prog = fbi button = Power config = q end begin prog = fbi button = CursorRight config = n end begin prog = fbi button = MouseRight config = n end begin prog = fbi button = FastForward config = n end begin prog = fbi button = CursorLeft config = b end begin prog = fbi button = MouseLeft config = b end begin prog = fbi button = Rewind config = b end begin prog = fbi button = CursorUp config = + end begin prog = fbi button = WindowsKey config = + end begin prog = fbi button = CursorDown config = - end begin prog = fbi button = MouseMenu config = - end begin prog = fbi button = FullScreen config = a end begin prog = fbi button = Menu config = h end begin prog = fbi button = MyTV config = i end begin prog = fbi button = Play config = p end begin prog = fbi button = Pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_leadtek0000644000175000017500000000245210561133272022464 0ustar benbenbegin prog = mplayer button = TV/FM config = run /usr/bin/tvswitch end begin prog = mplayer button = 9 config = pause end begin prog = mplayer button = 8 config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 6 config = seek -120 end begin prog = mplayer button = 3 repeat = 6 config = seek 120 end begin prog = mplayer button = 4 repeat = 6 config = seek -10 end begin prog = mplayer button = 6 repeat = 6 config = seek 10 end begin prog = mplayer button = FINE_DOWN repeat = 6 config = volume -1 end begin prog = mplayer button = FINE_UP repeat = 6 config = volume 1 end begin prog = mplayer button = SCAN config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = ENTER config = menu toggle end begin prog = mplayer button = FULLSCREEN config = set_menu open_file end begin prog = mplayer button = VOL_UP config = menu ok end begin prog = mplayer button = VOL_DOWN config = menu cancel end begin prog = mplayer button = CH_UP repeat = 6 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 6 config = menu down end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_leadtek-pvr20000000644000175000017500000000574710561133272023605 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = FM config = set_menu radio_settings end begin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = SLEEP config = set_menu view_sleeptimer end begin prog = mplayer button = REPLAY config = seek -120 end begin prog = mplayer button = SKIP config = seek 120 end begin prog = mplayer button = BACK config = seek -10 end begin prog = mplayer button = FORWARD config = seek 10 end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = MENU config = menu toggle end begin prog = mplayer button = DVD config = menu hide\nplay_dvd end begin prog = mplayer button = ENTER config = menu ok end begin prog = mplayer button = VOL_UP repeat = 2 config = menu ok end begin prog = mplayer button = VOL_DOWN repeat = 2 config = menu cancel end begin prog = mplayer button = CH_UP repeat = 2 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 2 config = menu down end begin prog = mplayer button = OSD config = sub_select end begin prog = mplayer button = LANGUAGE config = switch_audio end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = REC config = record end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = FULLSCREEN config = set_menu aspect end begin prog = mplayer button = DISPLAY config = osd end begin prog = mplayer button = 8 config = dvdnav 2 end begin prog = mplayer button = 2 config = dvdnav 1 end begin prog = mplayer button = 4 config = dvdnav 3 end begin prog = mplayer button = 6 config = dvdnav 4 end begin prog = mplayer button = 0 config = dvdnav 5 end begin prog = mplayer button = 5 config = dvdnav 6 end begin prog = mplayer button = 1 config = sub_delay -0.1 end begin prog = mplayer button = 3 config = sub_delay +0.1 end begin prog = mplayer button = 7 config = pt_step -1 end begin prog = mplayer button = 9 config = pt_step +1 end begin prog = irpty button = RED config = p end begin prog = irpty button = GREEN config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = VOL_UP config = n end begin prog = fbi button = SKIP config = n end begin prog = fbi button = VOL_DOWN config = b end begin prog = fbi button = REPLAY config = b end begin prog = fbi button = CH_UP config = + end begin prog = fbi button = CH_DOWN config = - end begin prog = fbi button = FULLSCREEN config = a end begin prog = fbi button = DVD config = h end begin prog = fbi button = TV config = i end begin prog = fbi button = PLAY config = p end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_logitech0000644000175000017500000000245310561133272022652 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 1 config = seek -120 end begin prog = mplayer button = 3 repeat = 1 config = seek 120 end begin prog = mplayer button = SEEK- repeat = 1 config = seek -10 end begin prog = mplayer button = SEEK+ repeat = 1 config = seek 10 end begin prog = mplayer button = VOL- repeat = 1 config = volume -1 end begin prog = mplayer button = VOL+ repeat = 1 config = volume 1 end begin prog = mplayer button = HELP config = osd end begin prog = mplayer button = CLOSE config = quit 166 end begin prog = mplayer button = ENTER config = menu toggle end begin prog = mplayer button = GDE config = set_menu open_file end begin prog = mplayer button = BUTTONL_DOWN config = menu ok end begin prog = mplayer button = BUTTONR_DOWN config = menu cancel end begin prog = mplayer button = CH+ repeat = 1 config = menu up end begin prog = mplayer button = CH- repeat = 1 config = menu down end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_mceusb0000644000175000017500000000551710561133272022336 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = Pause config = pause end begin prog = mplayer button = Rewind repeat = 1 config = seek -10 end begin prog = mplayer button = Forward repeat = 1 config = seek 10 end begin prog = mplayer button = Replay repeat = 3 config = seek -120 end begin prog = mplayer button = Skip repeat = 3 config = seek 120 end begin prog = mplayer button = VolUp repeat = 1 config = volume 1 end begin prog = mplayer button = VolDown repeat = 1 config = volume -1 end begin prog = mplayer button = More config = osd end begin prog = mplayer button = Home config = menu toggle end begin prog = mplayer button = Play config = set_menu open_file end begin prog = mplayer button = Enter config = menu ok end begin prog = mplayer button = OK config = menu ok end begin prog = mplayer button = Right config = menu ok end begin prog = mplayer button = Left config = menu ok end begin prog = mplayer button = Up repeat = 2 config = menu up end begin prog = mplayer button = Down repeat = 2 config = menu down end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = ChanUp repeat = 3 config = sub_pos +1 end begin prog = mplayer button = ChanDown repeat = 3 config = sub_pos -1 end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = DVD config = menu hide\nplay_dvd end begin prog = mplayer button = Guide config = set_menu view_img end begin prog = mplayer button = LiveTV config = set_menu tv_settings end begin prog = mplayer button = Record config = record end begin prog = mplayer button = Two repeat = 2 config = dvdnav 1 end begin prog = mplayer button = Eight repeat = 2 config = dvdnav 2 end begin prog = mplayer button = Four repeat = 2 config = dvdnav 3 end begin prog = mplayer button = Six repeat = 2 config = dvdnav 4 end begin prog = mplayer button = Zero repeat = 2 config = dvdnav 5 end begin prog = mplayer button = Five repeat = 2 config = dvdnav 6 end begin prog = mplayer button = Power config = quit 166 end begin prog = irpty button = Star config = p end begin prog = irpty button = Hash config = l end begin prog = fbi button = Power config = q end begin prog = fbi button = Right config = n end begin prog = fbi button = Left config = b end begin prog = fbi button = Up config = + end begin prog = fbi button = Down config = - end begin prog = fbi button = Play config = p end begin prog = fbi button = Pause config = p end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_nova-s-plus0000644000175000017500000001006410561133272023235 0ustar benbenbegin prog = mplayer button = KEY_TV config = set_menu tv_settings end begin prog = mplayer button = KEY_PAUSE config = pause end begin prog = mplayer button = KEY_REWIND repeat = 3 config = seek -10 end begin prog = mplayer button = KEY_FORWARD repeat = 3 config = seek 10 end begin prog = mplayer button = KEY_PREVIOUS repeat = 3 config = seek -120 end begin prog = mplayer button = KEY_NEXT repeat = 3 config = seek 120 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = KEY_GUIDE config = osd end begin prog = mplayer button = KEY_POWER config = quit 166 end begin prog = mplayer button = KEY_MENU config = menu toggle end begin prog = mplayer button = KEY_GO config = set_menu open_file end begin prog = irpty button = KEY_RADIO config = p end begin prog = irpty button = KEY_TEXT config = l end begin prog = mplayer button = KEY_PLAY config = seek 0 end begin prog = mplayer button = KEY_OK config = menu ok end begin prog = mplayer button = KEY_RIGHT config = menu ok end begin prog = mplayer button = KEY_LEFT config = menu cancel end begin prog = mplayer button = KEY_UP repeat = 2 config = menu up end begin prog = mplayer button = KEY_DOWN repeat = 2 config = menu down end begin prog = mplayer button = KEY_GREEN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = KEY_YELLOW repeat = 3 config = sub_pos +1 end begin prog = mplayer button = KEY_BLUE repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = KEY_RED repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step +1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step -1 end begin prog = mplayer button = KEY_SUB repeat = 3 config = sub_select end begin prog = mplayer button = KEY_PREV repeat = 3 config = switch_audio end begin prog = mplayer button = KEY_MUTE config = mute end begin prog = mplayer button = KEY_RECORD config = record end begin prog = mplayer button = KEY_STOP config = quit end begin prog = mplayer button = KEY_VIDEO config = set_menu aspect end begin prog = mplayer button = KEY_EXIT config = set_menu jump_to end begin prog = mplayer button = KEY_8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = KEY_2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = KEY_4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = KEY_6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = KEY_0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = KEY_5 repeat = 2 config = dvdnav 6 end begin prog = fbi button = KEY_POWER config = q end begin prog = fbi button = KEY_STOP config = q end begin prog = fbi button = KEY_RIGHT config = n end begin prog = fbi button = KEY_LEFT config = b end begin prog = fbi button = KEY_UP config = + end begin prog = fbi button = KEY_DOWN config = - end begin prog = fbi button = KEY_NEXT config = n end begin prog = fbi button = KEY_PREVIOUS config = b end begin prog = fbi button = KEY_FORWARD config = + end begin prog = fbi button = KEY_REWIND config = - end begin prog = fbi button = KEY_OK config = a end begin prog = fbi button = KEY_0 config = h end begin prog = fbi button = KEY_GUIDE config = i end begin prog = fbi button = KEY_RECORD config = p end begin prog = fbi button = KEY_PREV config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_packard_bell0000644000175000017500000000522310561133272023455 0ustar benbenbegin prog = mplayer button = Aux3 config = run /usr/bin/tvswitch end begin prog = mplayer button = Enter config = pause end begin prog = mplayer button = Display config = set_menu aspect end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Hash config = sub_visibility end begin prog = mplayer button = One config = sub_delay 0.25 end begin prog = mplayer button = Three config = sub_delay -0.25 end begin prog = mplayer button = Left config = menu cancel end begin prog = mplayer button = Right config = menu ok end begin prog = mplayer button = CHDown repeat = 3 config = sub_pos -0.25 end begin prog = mplayer button = CHUp repeat = 3 config = sub_pos +0.25 end begin prog = mplayer button = VolDown repeat = 1 config = volume -1 end begin prog = mplayer button = VolUp repeat = 1 config = volume 1 end begin prog = mplayer button = Help config = osd end begin prog = mplayer button = SRS config = quit 166 end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = CD config = set_menu open_file end begin prog = mplayer button = RMB repeat = 1 config = seek 120 end begin prog = mplayer button = LMB repeat = 1 config = seek -120 end begin prog = mplayer button = Up repeat = 2 config = menu up end begin prog = mplayer button = Down repeat = 2 config = menu down end begin prog = mplayer button = Two repeat = 2 config = dvdnav 1 end begin prog = mplayer button = Four repeat = 2 config = dvdnav 3 end begin prog = mplayer button = Five repeat = 2 config = dvdnav 6 end begin prog = mplayer button = Six repeat = 2 config = dvdnav 4 end begin prog = mplayer button = Eight repeat = 2 config = dvdnav 2 end begin prog = mplayer button = Zero repeat = 2 config = dvdnav 5 end begin prog = irpty button = Phone config = p end begin prog = irpty button = Message config = l end begin prog = fbi button = Enter config = q end begin prog = fbi button = RMB config = n end begin prog = fbi button = LMB config = b end begin prog = fbi button = VolUp config = + end begin prog = fbi button = VolDown config = - end begin prog = fbi button = CD config = a end begin prog = fbi button = Help config = h end begin prog = fbi button = Aux1 config = i end begin prog = fbi button = Display config = p end begin prog = fbi button = Aux2 config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_pctv0000644000175000017500000000574410561133272022036 0ustar benbenbegin prog = mplayer button = F_TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 0/AV repeat = 1 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 1 config = dvdnav 6 end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = undo repeat = 1 config = seek -120 end begin prog = mplayer button = redo repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = dvdnav 3 end begin prog = mplayer button = Rewind repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = dvdnav 4 end begin prog = mplayer button = FForward repeat = 1 config = seek 10 end begin prog = mplayer button = vol- repeat = 1 config = volume -1 end begin prog = mplayer button = vol+ repeat = 1 config = volume 1 end begin prog = mplayer button = 2 repeat = 1 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 1 config = dvdnav 2 end begin prog = mplayer button = Fullscreen config = osd end begin prog = mplayer button = Power config = quit 166 end begin prog = mplayer button = Info config = menu toggle end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = Chan_Last config = set_menu open_file end begin prog = mplayer button = Preview config = set_menu open_file end begin prog = mplayer button = Vol+FF config = menu ok end begin prog = mplayer button = Vol-Rew config = menu cancel end begin prog = mplayer button = Chan+Play repeat = 1 config = menu up end begin prog = mplayer button = Chan-Stop repeat = 1 config = menu down end begin prog = mplayer button = channel- repeat = 1 config = sub_pos -1 end begin prog = mplayer button = channel+ repeat = 1 config = sub_pos +1 end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = Zoom config = set_menu aspect end begin prog = mplayer button = middle config = set_menu jump_to end begin prog = mplayer button = Record config = record end begin prog = irpty button = F_RADIO config = p end begin prog = irpty button = F_TELETEXT config = l end begin prog = fbi button = Power config = q end begin prog = fbi button = Vol+FF config = n end begin prog = fbi button = Vol-Rew config = b end begin prog = fbi button = Chan+Play config = + end begin prog = fbi button = Chan-Stop config = - end begin prog = fbi button = Fullscreen config = a end begin prog = fbi button = 0 config = h end begin prog = fbi button = Info config = i end begin prog = fbi button = Record config = p end begin prog = fbi button = Preview config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_realmagic0000644000175000017500000000536610561133272023006 0ustar benbenbegin prog = mplayer button = VGA config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = PLAY config = seek 0 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = PREV repeat = 1 config = seek -120 end begin prog = mplayer button = NEXT repeat = 1 config = seek 120 end begin prog = mplayer button = REV repeat = 1 config = seek -10 end begin prog = mplayer button = FF repeat = 1 config = seek 10 end begin prog = mplayer button = VOL- repeat = 1 config = volume -1 end begin prog = mplayer button = VOL+ repeat = 1 config = volume 1 end begin prog = mplayer button = TITLE config = set_menu view_img end begin prog = mplayer button = OSD config = osd end begin prog = mplayer button = PRG config = set_menu tv_settings end begin prog = mplayer button = SUB config = sub_select end begin prog = mplayer button = LANG config = switch_audio end begin prog = mplayer button = ANGLE config = set_menu aspect end begin prog = mplayer button = QUIT config = quit 166 end begin prog = mplayer button = MENU config = menu toggle end begin prog = mplayer button = EJECT config = set_menu open_file end begin prog = mplayer button = SELECT config = menu ok end begin prog = mplayer button = LEFT config = menu cancel end begin prog = mplayer button = UP repeat = 1 config = menu up end begin prog = mplayer button = DOWN repeat = 1 config = menu down end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = irpty button = ENTER config = p end begin prog = irpty button = L-R config = l end begin prog = fbi button = QUIT config = q end begin prog = fbi button = RIGHT config = n end begin prog = fbi button = FF config = n end begin prog = fbi button = LEFT config = b end begin prog = fbi button = REV config = b end begin prog = fbi button = UP config = + end begin prog = fbi button = DOWN config = - end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_streamzap0000644000175000017500000000522710561133272023064 0ustar benbenbegin prog = mplayer button = RED config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = << repeat = 3 config = seek -10 end begin prog = mplayer button = >> repeat = 3 config = seek 10 end begin prog = mplayer button = |<< repeat = 3 config = seek -120 end begin prog = mplayer button = >>| repeat = 3 config = seek 120 end begin prog = mplayer button = VOL_DOWN repeat = 2 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 2 config = volume 1 end begin prog = mplayer button = GREEN config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = MENU config = menu hide end begin prog = mplayer button = YELLOW config = set_menu open_file end begin prog = mplayer button = BLUE config = play_dvd hide_menu end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = OK config = menu ok end begin prog = mplayer button = RIGHT config = menu ok end begin prog = mplayer button = LEFT config = menu cancel end begin prog = mplayer button = UP repeat = 2 config = menu up end begin prog = mplayer button = DOWN repeat = 2 config = menu down end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = RECORD config = record end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = irpty button = CH_UP config = p end begin prog = irpty button = CH_DOWN config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = RIGHT config = n end begin prog = fbi button = >> config = n end begin prog = fbi button = LEFT config = b end begin prog = fbi button = << config = b end begin prog = fbi button = UP config = + end begin prog = fbi button = DOWN config = - end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = MENU config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_tosh-vt76f0000644000175000017500000000573510561133272023011 0ustar benbenbegin prog = mplayer button = TV/VCR config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = FAST_REW repeat = 3 config = seek -120 end begin prog = mplayer button = FAST_FORW repeat = 3 config = seek 120 end begin prog = mplayer button = SHIFT<- repeat = 3 config = seek -10 end begin prog = mplayer button = SHIFT-> repeat = 3 config = seek 10 end begin prog = mplayer button = CLEARNESS_IMG- repeat = 2 config = volume -1 end begin prog = mplayer button = CLEARNESS_IMG+ repeat = 2 config = volume 1 end begin prog = mplayer button = A.SELECT config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = ZERO_BACK config = menu hide end begin prog = mplayer button = 1 config = set_menu open_file end begin prog = mplayer button = TIME_SEARCH config = play_dvd hide_menu end begin prog = mplayer button = TIME_LEFT/CLOCK config = set_menu tv_settings end begin prog = mplayer button = DT config = set_menu view_img end begin prog = mplayer button = PLAY config = seek 0 end begin prog = mplayer button = IMMEDIATE_REC config = menu ok end begin prog = mplayer button = OSP config = menu ok end begin prog = mplayer button = DISPLAY config = menu cancel end begin prog = mplayer button = CH+ repeat = 2 config = menu up end begin prog = mplayer button = CH- repeat = 2 config = menu down end begin prog = mplayer button = ALIGN_DOWN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = ALIGN_UP repeat = 3 config = sub_pos +1 end begin prog = mplayer button = A.DUB config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = SP/LP config = set_menu aspect end begin prog = mplayer button = INDEX config = set_menu jump_to end begin prog = irpty button = SHIFT<- config = p end begin prog = irpty button = SHIFT-> config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = OSP config = n end begin prog = fbi button = SHIFT-> config = n end begin prog = fbi button = FAST_FORW config = n end begin prog = fbi button = DISPLAY config = b end begin prog = fbi button = FAST_REW config = b end begin prog = fbi button = SHIFT<- config = b end begin prog = fbi button = CH+ config = + end begin prog = fbi button = CH- config = - end begin prog = fbi button = SP/LP config = a end begin prog = fbi button = ZERO_BACK config = h end begin prog = fbi button = A.SELECT config = i end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = TV/VCR config = v end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircrc_twinhan0000644000175000017500000000406110561133272022521 0ustar benbenbegin prog = mplayer button = FULLSCREEN config = run /usr/bin/tvswitch end begin prog = mplayer button = TIMESHIFT config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = REWIND repeat = 1 config = seek -10 end begin prog = mplayer button = FORWARD repeat = 1 config = seek 10 end begin prog = mplayer button = VOL_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 1 config = volume 1 end begin prog = mplayer button = EPG config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = RECALL config = menu toggle end begin prog = mplayer button = PREVIEW config = set_menu open_file end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = CANCEL repeat = 0 config = menu cancel end begin prog = mplayer button = CH_UP config = menu up end begin prog = mplayer button = CH_DOWN config = menu down end begin prog = mplayer button = CAPTURE config = set_menu recorder end begin prog = mplayer button = RECORDLIST config = set_menu dvb_sel end begin prog = mplayer button = TAB config = set_menu netstream_sel end begin prog = mplayer button = TELETEXT config = set_menu tv_chan end begin prog = mplayer button = FAVORITE config = menu cancel end begin prog = mplayer button = RECORD config = record end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end # DVD NAV begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_D-10.conf0000644000175000017500000000432710561133272022222 0ustar benben# # contributed by Bernardo Santos # # brand: Gradiente # model: D-10 # supported devices: Remote control for gradiente's D-10 DVD player. # # Automatic generation didn`t work well so I had to # figure out the protocol myself. It is similar to the one # on the generic RECS80.conf config file. # begin remote name D-10 bits 11 flags SPACE_ENC eps 25 aeps 100 one 270 7310 zero 270 4800 ptrail 270 toggle_bit 2 gap 49000 begin codes POWER 0x000000000000075E EJECT 0x0000000000000766 ANGLE 0x000000000000076E INDEX 0x000000000000075A A-B 0x000000000000075F MUTE 0x0000000000000758 1 0x0000000000000775 2 0x000000000000076D 3 0x0000000000000765 4 0x000000000000075D 5 0x0000000000000774 6 0x000000000000076C 7 0x0000000000000764 8 0x000000000000075C 9 0x0000000000000773 0 0x000000000000076B MENU 0x0000000000000767 TITLE 0x0000000000000776 SUBTITLE 0x0000000000000763 AUDIO 0x0000000000000760 PAUSE 0x0000000000000759 ACTIVE_MENU 0x000000000000076F EXIT 0x0000000000000770 UP_FW 0x0000000000000768 LEFT_RW 0x0000000000000771 OK_PLAY 0x0000000000000769 RIGHT_FW 0x0000000000000761 DOWN_RW 0x000000000000076A STOP 0x0000000000000762 SKIP_BACK 0x0000000000000777 SKIP_FORWARD 0x0000000000000772 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_LG.conf0000644000175000017500000000472110561133272022121 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.6.6(irman) on Fri May 14 17:48:53 2004 # # contributed by bufa # # brand: LG # model no. of remote control: # devices being controlled by this remote: # begin remote name LG bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0xFFFF post_data_bits 32 post_data 0x0 gap 25000 min_repeat 2 toggle_bit 0 begin codes power 0x000000000000FE60 mute 0x000000000000FE40 1 0x000000000000FFC0 2 0x000000000000FFA0 3 0x000000000000FF80 4 0x000000000000FF60 5 0x000000000000FF40 6 0x000000000000FF20 7 0x000000000000FF00 8 0x000000000000FEE0 9 0x000000000000FEC0 menu 0x000000000000F880 0 0x000000000000FFE0 tv 0x000000000000F8E0 red 0x000000000000F900 green 0x000000000000F920 yellow 0x000000000000F9A0 blue 0x000000000000F960 vol+ 0x000000000000FDE0 vol- 0x000000000000FDC0 pr+ 0x000000000000FBE0 pr- 0x000000000000FBC0 ok 0x000000000000FB40 text 0x000000000000F860 size 0x000000000000FA80 hold 0x000000000000FAC0 sleep 0x000000000000F820 update 0x000000000000FA40 time 0x000000000000FAA0 reveal 0x000000000000FA60 psm 0x000000000000FE20 ssm 0x000000000000FD20 picture 0x000000000000FD80 sound 0x000000000000FB60 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_Medion-X10.conf0000644000175000017500000000570510561133272023403 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(atiusb) on Sat Oct 21 14:49:15 2006 # # contributed by Michail Pappas # # brand: Medion (X10 OEM'd) bundled remote # lirc kernel module: lirc_atiusb # Geexbox receiver: atiusb # model no. of remote control: P/N 20017670 # devices being controlled by this remote: FCC ID: B4S20016398 # Receiver needed: lirc_atiusb begin remote name Medion-X10 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x14 post_data_bits 16 post_data 0x0 gap 219969 toggle_bit 0 begin codes tv 0x012C vcr 0x022D dvd 0xD904 music 0xDB06 radio 0x032E photo 0xDA05 tv_preview 0x042F channel_list 0x0530 setup 0xF01B video_desktop 0x0631 chan-up 0xE00B chan-down 0xE10C vol-up 0xDE09 vol-down 0xDD08 mute 0xD500 red 0x0732 green 0x0833 yellow 0x0934 blue 0x0A35 txt 0xEB16 1 0xE20D 2 0xE30E 3 0xE40F 4 0xE510 5 0xE611 6 0xE712 7 0xE813 8 0xE914 9 0xEA15 0 0xEC17 ch_search 0xF11C delete 0xF520 rename 0x0B36 snapshot 0xED18 up 0xEF1A down 0xF722 left 0xF21D right 0xF41F ok 0xF31E acquire_image 0x0C37 edit_image 0x0D38 rewind 0xF924 play 0xFA25 fast_forward 0xFB26 rec 0xFC27 stop 0xFD28 pause 0xFE29 previous 0xF621 fullscreen 0x0E39 next 0xF823 dvd_menu 0xEE19 dvd_audio 0x0F3A power 0xD702 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_RM-S6.conf0000644000175000017500000000357010561133272022424 0ustar benben# # this config file was NOT automatically generated. # it was made using lirc-0.5.5pre8 on Sat Jun 12 1999 # # contributed by Luis Sousa # # brand: SONY # model: RM-S6 # supported devices: this remote has the basic functions for # almost all Sony HiFi Sytems # begin remote name RM-S6 bits 12 flags SPACE_ENC eps 30 aeps 100 header 2500 590 one 1210 590 zero 610 590 ptrail 0 plead 0 foot 0 0 repeat 0 0 pre_data_bits 0 pre_data 0 post_data_bits 0 post_data 0 pre 0 0 post 0 0 gap 25000 repeat_bit 0 min_repeat 2 begin codes SLEEP 0x0000000000000061 AMP_POWER 0x0000000000000A81 CD 0x0000000000000A41 CD_PLAY 0x00000000000004D1 CD_PAUSE 0x00000000000009D1 CD_STOP 0x00000000000001D1 CD_EJECT 0x0000000000000691 CD_PREV_TRACK 0x00000000000000D1 CD_NEXT_TRACK 0x00000000000008D1 TAPE 0x0000000000000C41 PHONO 0x0000000000000041 VIDEO/AUX 0x0000000000000441 TUNER 0x0000000000000841 TUNER_SHIFT 0x0000000000000CD6 TUNER_PRESET_- 0x0000000000000896 TUNER_PRESET_+ 0x0000000000000096 AMP_VOL_UP 0x0000000000000481 AMP_VOL_DOWN 0x0000000000000C81 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_RX-V850.conf0000644000175000017500000000625010561133272022607 0ustar benben# # This config file has been automatically converted from a device file # found in the 06/26/00 release of the Windows Slink-e software # package. # # Many thanks to Colby Boles of Nirvis Systems Inc. for allowing us to # use these files. # # The original filename was: "yamaha rx-v850 rs rx-v850 receiver_amp.cde" # # The original description for this device was: # # yamaha rx-v850 rs rx-v850 receiver/amp # begin remote name RX-V850 bits 32 flags SPACE_ENC eps 20 aeps 200 header 8800 4400 one 550 1650 zero 550 550 ptrail 550 repeat 8800 2200 gap 38500 toggle_bit 0 frequency 38000 begin codes POWER 0x000000005EA1F807 PHONO 0x000000005EA128D7 CD 0x000000005EA1A857 TUNER 0x000000005EA16897 TAPE_1/DAT 0x000000005EA19867 TAPE_2/VCR_2 0x000000005EA118E7 LD_V 0x000000005EA1E817 VCR_1 0x000000005EA1F00F CD_PLAY 0x000000005EA110EF CD_PAUSE/STOP 0x000000005EA1906F CD_SEARCH_FWD 0x000000005EA130CF CD_SEARCH_REV 0x000000005EA1B04F CD_SKIP_FWD 0x000000005EA150AF CD_SKIP_REV 0x000000005EA1D02F CD_DISK_SKIP 0x000000005EA1F20D TAPE_PLAY 0x000000005EA100FF TAPE_STOP 0x000000005EA1C03F TAPE_FFWD 0x000000005EA140BF TAPE_REWIND 0x000000005EA1807F TAPE_REC/PAUSE 0x000000005EA120DF TAPE_REC_MUTE 0x000000005EA1A05F TAPE_DECK_A/B 0x000000005EA1609F TAPE_DIR_A 0x000000005EA1E01F TAPE_DIR_B 0x000000005EA102FD TUNER_+ 0x000000005EA108F7 TUNER_A/B/C/D/E 0x000000005EA148B7 DSP_TEST 0x000000005EA1A15E DSP_CENTRE_MODE 0x000000005EA121DE DSP_PRO_LOGIC 0x000000005EA111EE DSP_PRO_LOGIC_ENH. 0x000000005EA1916E DSP_CNCT_VIDEO 0x000000005EA151AE DSP_MONO_MOVIE 0x000000005EA1D12E DSP_ROCK 0x000000005EA131CE DSP_HALL 0x000000005EA1B14E DSP_EFFECT_ON/OFF 0x000000005EA16A95 FRONT_LEVEL_+ 0x000000005EA101FE FRONT_LEVEL_- 0x000000005EA1817E CENTRE_LEVEL_+ 0x000000005EA141BE CENTRE_LEVEL_- 0x000000005EA1C13E REAR_LEVEL_+ 0x000000005EA17A85 REAR_LEVEL_- 0x000000005EA1FA05 DELAY_TIME_+ 0x000000005EA14AB5 DELAY_TIME_- 0x000000005EA1CA35 MUTING 0x000000005EA138C7 VOLUME_UP 0x000000005EA158A7 VOLUME_DOWN 0x000000005EA1D827 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_animax.conf0000644000175000017500000001561410561133272023077 0ustar benben # # This is a space encoded remote control from AnimaX. # You need at least lirc-0.5.4 to use this config file # # contributed by Karsten Scheibler # # brand: AnimaX # model: Anir Remote Control # supported devices: This remote control comes with some TV Tuner cards from # Hauppauge. # begin remote name ANIMAX bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 2500 2500 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_gap 102937 repeat_bit 0 begin codes CD_DOWN 0x000000000000DB24 CD_UP 0x0000000000005BA4 TV_DOWN 0x000000000000DC23 TV_UP 0x0000000000005CA3 PHONE_DOWN 0x000000000000DD22 PHONE_UP 0x0000000000005DA2 RADIO_DOWN 0x000000000000DE21 RADIO_UP 0x0000000000005EA1 VIDEO_DOWN 0x000000000000DF20 VIDEO_UP 0x0000000000005FA0 AUX1_DOWN 0x000000000000E01F AUX1_UP 0x000000000000609F MAIL_DOWN 0x000000000000E11E MAIL_UP 0x000000000000619E AUX2_DOWN 0x000000000000E21D AUX2_UP 0x000000000000629D POWER_DOWN 0x000000000000E31C POWER_UP 0x000000000000639C LEFT_MOUSE_BUTTON_TOUCH_DOWN 0x000000000000E41B LEFT_MOUSE_BUTTON_TOUCH_UP 0x000000000000649B REWIND_DOWN 0x000000000000E51A REWIND_UP 0x000000000000659A PLAY_DOWN 0x000000000000E619 PLAY_UP 0x0000000000006699 FORWARD_DOWN 0x000000000000E718 FORWARD_UP 0x0000000000006798 SKIP_BACKWARD_DOWN 0x000000000000E817 SKIP_BACKWARD 0x0000000000006897 STOP_DOWN 0x000000000000E916 STOP_UP 0x0000000000006996 SKIP_FORWARD_DOWN 0x000000000000EA15 SKIP_FORWARD_UP 0x0000000000006A95 CHANNEL_UP_DOWN 0x000000000000EB14 CHANNEL_UP_UP 0x0000000000006B94 MENU_DOWN 0x000000000000EC13 MENU_UP 0x0000000000006C93 VOLUME_UP_DOWN 0x000000000000ED12 VOLUME_UP_UP 0x0000000000006D92 BLUE_BUTTON_DOWN 0x000000000000EE11 BLUE_BUTTON_UP 0x0000000000006E91 MUTE_DOWN 0x000000000000EF10 MUTE_UP 0x0000000000006F90 VOLUME_DOWN_DOWN 0x000000000000F00F VOLUME_DOWN_UP 0x000000000000708F RED_BUTTON_DOWN 0x000000000000F10E RED_BUTTON_UP 0x000000000000718E GREEN_BUTTON_DOWN 0x000000000000F20D GREEN_BUTTON_UP 0x000000000000728D CHANNEL_DOWN_DOWN 0x000000000000F30C CHANNEL_DOWN_UP 0x000000000000738C 1_DOWN 0x000000000000F40B 1_UP 0x000000000000748B 2_DOWN 0x000000000000F50A 2_UP 0x000000000000758A 3_DOWN 0x000000000000F609 3_UP 0x0000000000007689 4_DOWN 0x000000000000F708 4_UP 0x0000000000007788 5_DOWN 0x000000000000F807 5_UP 0x0000000000007887 6_DOWN 0x000000000000F906 6_UP 0x0000000000007986 7_DOWN 0x000000000000FA05 7_UP 0x0000000000007A85 8_DOWN 0x000000000000FB04 8_UP 0x0000000000007B84 9_DOWN 0x000000000000FC03 9_UP 0x0000000000007C83 SLASH_DOWN 0x000000000000FD02 SLASH_UP 0x0000000000007D82 0_DOWN 0x000000000000FE01 0_UP 0x0000000000007E81 MINUS_DOWN 0x000000000000FF00 MINUS_UP 0x0000000000007F80 end codes end remote begin remote name ANIMAX_MOUSE_BUTTONS bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 0 0 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_bit 0 begin codes RIGHT_MOUSE_BUTTON_DOWN 0x000000000000C639 RIGHT_MOUSE_BUTTON_UP 0x00000000000046B9 LEFT_MOUSE_BUTTON_DOWN 0x000000000000CE31 LEFT_MOUSE_BUTTON_UP 0x0000000000004EB1 end codes end remote begin remote name ANIMAX_MOUSE_PAD bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 2500 2500 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_gap 8437 repeat_bit 0 begin codes MOUSE_NNW 0x000000000000906F MOUSE_NW 0x000000000000D02F MOUSE_NWW 0x000000000000916E MOUSE_W 0x000000000000D12E MOUSE_SWW 0x000000000000926D MOUSE_SW 0x000000000000D22D MOUSE_SSW 0x000000000000936C MOUSE_S 0x000000000000D32C MOUSE_SSE 0x000000000000946B MOUSE_SE 0x000000000000D42B MOUSE_SEE 0x000000000000956A MOUSE_E 0x000000000000D52A MOUSE_NEE 0x0000000000009669 MOUSE_NE 0x000000000000D629 MOUSE_NNE 0x0000000000009768 MOUSE_N 0x000000000000D728 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_askey.conf0000644000175000017500000000461010561133272022730 0ustar benben# # this config file was automatically generated # using lirc-0.6.0 on Thu Apr 27 12:27:04 2000 # # contributed by Claas Langbehn # Please read the documentation, faq etc. # before sending me mails. # # brand: ASKEY # model: AS-218 / AS-220 # supported devices: ASKEY MagicTV # # comment: repeated keys are recognized, now. # begin remote name AS-218 bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9087 4424 one 629 1617 zero 629 495 ptrail 632 repeat 9088 2182 pre_data_bits 16 pre_data 0x61D6 gap 107905 repeat_bit 0 begin codes 0 0x00000000000000FF 1 0x000000000000807F 2 0x00000000000040BF 3 0x000000000000C03F 4 0x00000000000020DF 5 0x000000000000A05F 6 0x000000000000609F 7 0x000000000000E01F 8 0x00000000000010EF 9 0x000000000000906F LOOP 0x00000000000050AF # unused FINE_UP(PLUS) 0x00000000000030CF ZOOM 0x000000000000B04F RECORD 0x000000000000708F PREVIEW 0x000000000000F00F SCAN 0x00000000000008F7 VIDEO 0x0000000000008877 POWER 0x00000000000048B7 MUTE 0x000000000000C837 COLOR 0x00000000000028D7 #unused FREEZE 0x0000000000006897 100 0x000000000000E817 FINE_DOWN(MINUS) 0x00000000000018E7 PLAY 0x0000000000009867 CH_UP 0x00000000000058A7 VOL_UP 0x000000000000D827 TV 0x00000000000038C7 STOP 0x000000000000B847 CH_DOWN 0x0000000000007887 VOL_DOWN 0x000000000000F807 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb.conf0000644000175000017500000000572110561133272023107 0ustar benben# Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(atiusb) on Wed Oct 25 22:34:25 2006 # # contributed by Michail Pappas # # brand: atiusb # model no. of remote control: 5000015900A # 5000023600 # probably 5000022000 # devices being controlled by this remote: ATI USB Receiver (X10) # begin remote name atiusb bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x14 post_data_bits 16 post_data 0x0 gap 235966 min_repeat 1 toggle_bit 0 begin codes a 0xD500 b 0xD601 power 0xD702 tv 0xD803 dvd 0xD904 web 0xDA05 media_library 0xDB06 drag 0xDC07 mouse-button_left 0x4D78 mouse-button_right 0x517C mouse-up 0x4772 mouse-down 0x4873 mouse-left 0x4570 mouse-right 0x4671 mouse-left_up 0x4974 mouse-right_up 0x4A75 mouse-left_down 0x4C77 mouse-right_down 0x4B76 vol-up 0xDD08 vol-down 0xDE09 mute 0xDF0A chan-up 0xE00B chan-down 0xE10C 1 0xE20D 2 0xE30E 3 0xE40F 4 0xE510 5 0xE611 6 0xE712 7 0xE813 8 0xE914 9 0xEA15 0 0xEC17 dvd-root_menu 0xEB16 launch_setup 0xED18 c 0xEE19 d 0xF01B tv_on_demand 0xF11C max_window 0xF520 cursor-up 0xEF1A cursor-down 0xF722 cursor-left 0xF21D cursor-right 0xF41F ok 0xF31E e 0xF621 f 0xF823 rewind 0xF924 play 0xFA25 fast_forward 0xFB26 record 0xFC27 stop 0xFD28 pause 0xFE29 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb2.conf0000644000175000017500000000566110561133272023174 0ustar benben# this config file was automatically generated # using lirc-0.7.0(atiusb) on Sat Feb 12 13:22:29 2005 # # contributed by Steffen # # brand: ATI Sapphire Remote Bob II USB # model no. of remote control: 5000024400 # devices being controlled by this remote: ASUS Digimatrix MythTV PVR # modified for Geexbox by: JTS # fixed by flynn 01/14/06 begin remote name 5000024400 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x0 post_data_bits 16 post_data 0x0 gap 299851 toggle_bit 0 begin codes aux1 0x023F aux2 0x023F aux3 0x023F aux4 0x023F leftmouse 0x02A9 rightmouse 0x02AA a 0x0278 b 0x0279 power 0x020C dvd 0x0238 tv 0x0239 help 0x02BE pc 0x023F resize 0x02D5 hand 0x02D0 ati 0x028E vol-up 0x0210 vol-down 0x0211 mute 0x020D chan-up 0x0220 chan-down 0x0221 mouse-up 0x013F mouse-down 0x013F mouse-left 0x013F mouse-right 0x013F 1 0x0201 2 0x0202 3 0x0203 4 0x0204 5 0x0205 6 0x0206 7 0x0207 8 0x0208 9 0x0209 0 0x0200 max_window 0x0254 check 0x0282 info 0x02F9 timer 0x0296 cursor-up 0x0258 cursor-left 0x025A cursor-right 0x025B cursor-down 0x0259 ok 0x025C c 0x027A d 0x027B play 0x022C e 0x027C f 0x027D rewind 0x0229 record 0x0237 stop 0x0231 pause 0x0230 ffwd 0x0228 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_avermedia.conf0000644000175000017500000001326610561133272023560 0ustar benben# # this config file was automatically generated # using lirc-0.5.5 on Thu May 25 18:00:24 2000 # # contributed by Michal Kochanowicz & Jesus Bravo Alvarez # # brand: AVerMedia # model: ? # supported devices: some TVCapture98 (ID 0x00021461) and # some TVPhone98 (ID 0x00011461) cards begin remote name TVCapture98 bits 6 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 # pre_data_bits 16 # pre_data 0x40BF repeat 9080 2189 gap 108056 repeat_bit 0 begin codes TV/FM 0x0000000000000023 CD 0x0000000000000022 # TELETEXT 0x000000000000C03F POWER 0x0000000000000027 1 0x0000000000000018 2 0x0000000000000010 3 0x0000000000000008 VIDEO 0x0000000000000000 4 0x0000000000000019 5 0x0000000000000011 6 0x0000000000000009 AUDIO 0x0000000000000001 7 0x000000000000001A 8 0x0000000000000012 9 0x000000000000000A FULLSCREEN 0x0000000000000002 0 0x000000000000001B DISPLAY 0x0000000000000013 COLOR 0x000000000000000B LOOP 0x0000000000000003 UNLABELED 0x000000000000001C LEFT 0x0000000000000014 RIGHT 0x000000000000000C PREVIEW 0x0000000000000004 AUTOSCAN 0x000000000000001D FREEZE 0x0000000000000015 CAPTURE 0x000000000000000D MUTE 0x0000000000000005 RED 0x000000000000001E VOL_DOWN 0x0000000000000016 VOL_UP 0x000000000000000E YELLOW 0x0000000000000006 GREEN 0x000000000000001F CH_DOWN 0x0000000000000017 CH_UP 0x000000000000000F BLUE 0x0000000000000007 end codes end remote # # this config file was automatically generated # using lirc-0.6.1 on Tue Apr 25 14:31:21 2000 # # contributed by Christoph Bartelmus # # brand: AVerMedia # model: ? (36 buttons) # supported devices: TVPhone98 card (ID 0x00031461) # TVCapture98 card (ID 0x00041461) # # This config file does work with both homebrew receivers and # original AVerMedia TV cards !!! # begin remote name TVPhone98 bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 repeat 9080 2189 pre_data_bits 16 pre_data 0x40BF gap 108056 repeat_bit 0 begin codes POWER 0x00000000000000FF TV/FM 0x000000000000807F CD 0x00000000000040BF TELETEXT 0x000000000000C03F VIDEO 0x00000000000020DF 1 0x000000000000A05F 2 0x000000000000609F 3 0x000000000000E01F AUDIO 0x00000000000010EF 4 0x000000000000906F 5 0x00000000000050AF 6 0x000000000000D02F FULLSCREEN 0x00000000000030CF 7 0x000000000000B04F 8 0x000000000000708F 9 0x000000000000F00F PREVIEW 0x00000000000008F7 0 0x0000000000008877 DISPLAY 0x00000000000048B7 LOOP 0x000000000000C837 MUTE 0x00000000000028D7 AUTOSCAN 0x000000000000A857 FREEZE 0x0000000000006897 CAPTURE 0x000000000000E817 PLAY 0x00000000000018E7 RECORD 0x0000000000009867 PAUSE 0x00000000000058A7 STOP 0x000000000000D827 YELLOW 0x00000000000038C7 RED 0x000000000000B847 VOL_DOWN 0x0000000000007887 VOL_UP 0x000000000000F807 end codes end remote begin remote name TVPhone98_ext bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 repeat 9080 2189 pre_data_bits 16 pre_data 0xC03F gap 108056 repeat_bit 0 begin codes BLUE 0x00000000000000FF GREEN 0x000000000000807F CH_DOWN 0x00000000000040BF CH_UP 0x000000000000C03F end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_cinergy1400.conf0000644000175000017500000000417710561133272023571 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) on Fri May 12 18:28:46 2006 # # contributed by Laurent Peltier # # brand: Terratec # model no. of remote control: # devices being controlled by this remote: Cinergy 1400 DVB-T # begin remote name Terratec bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 135894 toggle_bit 0 begin codes KEY_POWER 0x0074 KEY_1 0x0002 KEY_2 0x0003 KEY_3 0x0004 KEY_4 0x0005 KEY_5 0x0006 KEY_6 0x0007 KEY_7 0x0008 KEY_8 0x0009 KEY_9 0x000A KEY_0 0x000B KEY_VIDEO 0x0189 KEY_REFRESH 0x00AD KEY_SELECT 0x0161 KEY_EPG 0x016D KEY_UP 0x0067 KEY_LEFT 0x0069 KEY_OK 0x0160 KEY_RIGHT 0x006A KEY_DOWN 0x006C KEY_TEXT 0x0184 KEY_INFO 0x0166 KEY_RED 0x018E KEY_GREEN 0x018F KEY_YELLOW 0x0190 KEY_BLUE 0x0191 KEY_CHANNELUP 0x0192 KEY_VOLUMEUP 0x0073 KEY_MUTE 0x0071 KEY_VOLUMEDOWN 0x0072 KEY_CHANNELDOWN 0x0193 KEY_PAUSE 0x0077 KEY_PLAY 0x00CF KEY_RECORD 0x00A7 KEY_PREVIOUS 0x019C KEY_STOP 0x0080 KEY_NEXT 0x0197 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_creative.conf0000644000175000017500000000360410561133272023420 0ustar benben# # this config file was automatically generated # using lirc-0.6.3 on Sat Jan 6 11:38:33 2001 # # contributed by Stephen White # # brand: Creative # model: PC-DVD Remote # supported devices: Creative-Infra-Receiver # begin remote name CREATIVE_INFRA_DVD bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9293 4302 one 771 1494 zero 771 358 ptrail 756 pre_data_bits 16 pre_data 0x8435 gap 108646 toggle_bit 0 begin codes play 0x00000000000005FA stop 0x00000000000016E9 pause 0x00000000000000FF eject 0x00000000000002FD last 0x00000000000017E8 rrev 0x00000000000004FB ffwd 0x00000000000006F9 next 0x00000000000001FE 1 0x00000000000008F7 2 0x00000000000009F6 3 0x0000000000000AF5 shift 0x00000000000014EB 4 0x0000000000000CF3 5 0x0000000000000DF2 6 0x0000000000000EF1 mouse 0x00000000000007F8 7 0x00000000000010EF 8 0x00000000000011EE 9 0x00000000000012ED vol+ 0x0000000000000FF0 start 0x00000000000003FC 0 0x00000000000015EA mute 0x0000000000000BF4 vol- 0x00000000000013EC end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_digimatrix.conf0000644000175000017500000000520510561133272023756 0ustar benben # brand: Asus Digimatrix # model no. of remote control: Model 1 # devices being controlled by this remote: Asus Digimatrix # Contributed by: Members of the http://outertrack.com/digimatrix/ Forum begin remote name digi bits 16 flags SPACE_ENC eps 30 aeps 100 header 8057 4071 one 479 1534 zero 479 531 ptrail 491 pre_data_bits 8 pre_data 0x35 gap 25647 toggle_bit 0 begin codes up 0x000000000000E817 down 0x00000000000018E7 enter 0x000000000000D02F left 0x0000000000009867 right 0x00000000000058A7 1 0x00000000000000FF 2 0x000000000000807F 3 0x00000000000040BF 4 0x000000000000C03F 5 0x00000000000020DF 6 0x000000000000A05F 7 0x000000000000609F 8 0x000000000000E01F 9 0x00000000000010EF 0 0x000000000000906F music 0x000000000000B04F dvd_vcd 0x000000000000F00F tv 0x00000000000008F7 os_start 0x00000000000030CF photo 0x00000000000048B7 home 0x00000000000044BB back 0x000000000000A857 ch+ 0x000000000000B847 stop 0x000000000000946B play 0x000000000000C43B vol+ 0x000000000000F807 ch- 0x0000000000007887 step- 0x000000000000E41B step+ 0x000000000000649B vol- 0x00000000000004FB pause 0x00000000000024DB pre 0x00000000000014EB next 0x000000000000A45B mute 0x000000000000847B rec 0x000000000000D42B subtitle 0x000000000000C837 menu 0x00000000000038C7 dvd_audio 0x00000000000050AF ui_size 0x0000000000008877 ui_on_off 0x00000000000028D7 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_digimatrixmk2.conf0000644000175000017500000000506510561133272024374 0ustar benbenbegin remote name digi_mk2 bits 8 flags SPACE_ENC eps 30 aeps 100 header 2666 1378 one 260 741 zero 260 279 ptrail 251 pre_data_bits 1 pre_data 0x0 post_data_bits 8 post_data 0x3 gap 10826 min_repeat 1 toggle_bit 0 begin codes power 0x0000000000000084 tv_dvr 0x0000000000000044 fm 0x00000000000000C4 os_start 0x0000000000000024 music 0x00000000000000A4 pictures 0x0000000000000064 video 0x00000000000000E4 dvd_menu 0x0000000000000014 up 0x000000000000004C down 0x00000000000000E0 left 0x0000000000000010 right 0x0000000000000040 back 0x00000000000000B4 ok 0x0000000000000088 back_fwd 0x0000000000000074 rew 0x0000000000000094 play_pause 0x0000000000000054 fwd 0x00000000000000D4 step- 0x0000000000000098 stop 0x0000000000000048 step+ 0x0000000000000090 vol+ 0x0000000000000058 vol- 0x00000000000000D8 home 0x00000000000000C8 ch+ 0x0000000000000050 ch- 0x00000000000000D0 mute 0x0000000000000038 rec 0x0000000000000028 pc 0x0000000000000030 1 0x00000000000000B8 2 0x00000000000000A8 3 0x00000000000000B0 4 0x0000000000000078 5 0x0000000000000068 6 0x0000000000000070 7 0x00000000000000F8 8 0x00000000000000E8 9 0x00000000000000F0 0 0x0000000000000018 ui_size 0x0000000000000004 repeat 0x0000000000000008 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_flytv-prime.conf0000644000175000017500000000306410561133272024074 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) # # contributed by # # brand: Lifeview # model no. of remote control: # devices being controlled by this remote: FlyTV Prime/Platinium # begin remote name Lifeview bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 182794 toggle_bit 0 begin codes 0 0x0052 1 0x004F 2 0x0050 3 0x0051 4 0x004B 5 0x004C 6 0x004D 7 0x0047 8 0x0048 9 0x0049 MODE 0x0175 VIDEO 0x0189 AUDIO 0x0188 POWER 0x0074 TUNER 0x0182 ZOOM 0x0174 LANGUAGE 0x0170 MUTE 0x0071 VOLUMEDOWN 0x0072 VOLUMEUP 0x0073 CHANNELDOWN 0x0193 CHANNELUP 0x0192 AGAIN 0x0081 ENTER 0x001C end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_hauppauge.conf0000644000175000017500000001002410561133272023567 0ustar benben# # this config file was automatically generated # using lirc-0.5.5pre8 on Sun Apr 18 11:43:45 1999 # # contributed by Jens Leuschner # # brand: Hauppauge # model: # supported devices: WinTV primo; WinTV pci; WinTV radio # # This config file will work with both homebrew receivers and # original Hauppauge TV cards !!! # begin remote name Hauppauge bits 13 flags SHIFT_ENC eps 30 aeps 100 one 950 830 zero 950 830 plead 960 gap 89584 repeat_bit 2 begin codes TV 0x000000000000100F RADIO 0x000000000000100C FULL_SCREEN 0x000000000000102E CH+ 0x0000000000001020 CH- 0x0000000000001021 VOL- 0x0000000000001011 VOL+ 0x0000000000001010 MUTE 0x000000000000100D SOURCE 0x0000000000001022 1 0x0000000000001001 2 0x0000000000001002 3 0x0000000000001003 4 0x0000000000001004 5 0x0000000000001005 6 0x0000000000001006 7 0x0000000000001007 8 0x0000000000001008 9 0x0000000000001009 0 0x0000000000001000 RESERVED 0x000000000000101E MINIMIZE 0x0000000000001026 end codes end remote # # this config file was automatically generated # using lirc-0.6.6(animax) on Tue Apr 15 19:50:27 2003 # # contributed by # # brand: Hauppauge # model no. of remote control: # devices being controlled by this remote: PVR 2/350 # begin remote name hauppauge_pvr bits 13 flags RC5|CONST_LENGTH eps 30 aeps 100 one 969 811 zero 969 811 plead 1097 gap 114605 toggle_bit 2 begin codes Power 0x00000000000017FD Go 0x00000000000017FB 1 0x00000000000017C1 2 0x00000000000017C2 3 0x00000000000017C3 4 0x00000000000017C4 5 0x00000000000017C5 6 0x00000000000017C6 7 0x00000000000017C7 8 0x00000000000017C8 9 0x00000000000017C9 Back/Exit 0x00000000000017DF 0 0x00000000000017C0 Menu 0x00000000000017CD Red 0x00000000000017CB Green 0x00000000000017EE Yellow 0x00000000000017F8 Blue 0x00000000000017E9 Ch+ 0x00000000000017E0 Ch- 0x00000000000017E1 Vol- 0x00000000000017D1 Vol+ 0x00000000000017D0 Ok 0x00000000000017E5 Mute 0x00000000000017CF Blank 0x00000000000017CC Full 0x00000000000017FC Rewind 0x00000000000017F2 Play 0x00000000000017F5 Forward 0x00000000000017F4 Record 0x00000000000017F7 Stop 0x00000000000017F6 Pause 0x00000000000017F0 Replay 0x00000000000017E4 Skip 0x00000000000017DE end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_imonknob.conf0000644000175000017500000000652310561133272023435 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.7.1pre2(imon) on Tue Mar 1 23:15:44 2005 # # contributed by Venky Raju # # brand: iMON-New # model no. of remote control: iMON-PAD # devices being controlled by this remote: # begin remote name IMON_KNOB bits 32 eps 30 aeps 100 one 0 0 zero 0 0 gap 119990 min_repeat 15 toggle_bit 0 begin codes AppExit 0x288195B7 Power 0x289115B7 Record 0x298115B7 Play 0x2A8115B7 Open 0x29B195B7 KnobVolUp 0x010000FF KnobVolDown 0x010000FF KnobMute 0x000008FF Rewind 0x2A8195B7 Pause 0x2A9115B7 FastForward 0x2B8115B7 PrevChapter 0x2B9115B7 Stop 0x2B9715B7 NextChapter 0x298195BF WindowsKey 0x2B8195B7 Backspace 0x28A115B7 MouseKeyboard 0x299115B7 SelectSpace 0x2A9315B7 MouseMenu 0x28B715B7 MouseRightClick 0x688481B7 Enter 0x28A195B7 MouseLeftClick 0x688301B7 CursorLeft 0x6ABA81B7 CursorUp 0x6902F9B7 CursorRight 0x68A281B7 CursorDown 0x6882A1B7 Esc 0x2BB715B7 Eject 0x299395B7 AppLauncher 0x29B715B7 MultiMon 0x2AB195B7 TaskSwitcher 0x2A9395B7 Mute 0x2B9595B7 VolUp 0x28A395B7 VolDown 0x28A595B7 ChUp 0x289395B7 ChDown 0x288795B7 Timer 0x2B8395B7 1 0x28B595B7 2 0x2BB195B7 3 0x28B195B7 4 0x2A8595B7 5 0x299595B7 6 0x2AA595B7 7 0x2B9395B7 8 0x2A8515B7 9 0x2AA115B7 ShiftTab 0x28B515B7 0 0x2BA595BF Tab 0x29A115B7 MyMovie 0x2B8515B7 MyMusic 0x299195B7 MyPhoto 0x2BA115B7 MyTV 0x28A515B7 Bookmark 0x288515B7 Thumbnail 0x2AB715BF AspectRatio 0x29A595B7 FullScreen 0x2AA395BF MyDVD 0x29A295B7 Menu 0x2BA385B7 Caption 0x298595B7 Language 0x2B8595B7 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek-pvr2000.conf0000644000175000017500000000604310561133272024336 0ustar benben# # this config file was written on Mon Dec 13 23:51:16 MET 2004 # by Thomas Reitmayr (treitmayr@yahoo.com) # # brand: Leadtek # model: Y0400052 (bundeled with Winfast PVR2000 TV-card) # # Only CH_UP, CH_DOWN, VOL_UP and VOL_DOWN will repeat. This seems to be a # limitation of the remote control. # begin remote name PVR2000 bits 8 flags SHIFT_ENC gap 120000 begin codes POWER 0x0000000000000070 TV 0x0000000000000026 FM 0x0000000000000027 DVD 0x0000000000000028 RED 0x000000000000003B GREEN 0x000000000000003C YELLOW 0x000000000000003D BLUE 0x000000000000003E TELETEXT 0x000000000000006F SLEEP 0x0000000000000030 MUTE 0x0000000000000064 BOSS_KEY 0x0000000000000039 CH_UP 0x000000000000007C CH_DOWN 0x0000000000000060 VOL_DOWN 0x0000000000000078 VOL_UP 0x0000000000000074 ENTER 0x0000000000000063 CC 0x0000000000000020 FULLSCREEN 0x0000000000000073 MENU 0x000000000000003F SCAN 0x0000000000000021 REPLAY 0x0000000000000032 PLAY 0x0000000000000033 SKIP 0x0000000000000034 OSD 0x0000000000000022 BACK 0x0000000000000024 STOP 0x0000000000000036 FORWARD 0x0000000000000025 LANGUAGE 0x0000000000000023 1 0x0000000000000075 2 0x0000000000000076 3 0x0000000000000077 4 0x0000000000000079 5 0x000000000000007A 6 0x000000000000007B 7 0x000000000000007D 8 0x000000000000007E 9 0x000000000000007F 0 0x0000000000000062 . 0x0000000000000031 RECALL 0x0000000000000061 VIDEO 0x000000000000006E AUDIO 0x000000000000006B DISPLAY 0x0000000000000066 SNAPSHOT 0x0000000000000038 PIP 0x000000000000003A RECSTOP 0x0000000000000036 REC 0x0000000000000037 TIMESHIFT 0x0000000000000035 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek.conf0000644000175000017500000000627710561133272023240 0ustar benben# # this config file was automatically generated # using WinLIRC 0.6.4 (LIRC 0.6.1pre3) on Sun Nov 03 14:25:14 2002 # # modified by CB # # contributed by Erik Christiansson, aka Sci # www.alphafish.com # erik@alphafish.com # # brand: Leadtek # model: RM-0010 (bundeled with TV2000 TV-card) # # modifications based on the config files from # Juan Toledo and # Markus Lischka begin remote name RM-0010 bits 16 flags SPACE_ENC|CONST_LENGTH eps 40 aeps 100 header 9000 4500 one 563 1687 zero 563 562 ptrail 563 repeat 9000 2250 pre_data_bits 16 pre_data 0xC03F gap 108000 toggle_bit 0 frequency 38000 duty_cycle 33 begin codes POWER 0x00000000000000FF TV/FM 0x00000000000040BF SCAN 0x000000000000A857 DISPLAY 0x0000000000006897 1 0x000000000000A05F 2 0x000000000000609F 3 0x000000000000E01F 4 0x000000000000906F 5 0x00000000000050AF 6 0x000000000000D02F 7 0x000000000000B04F 8 0x000000000000708F 9 0x000000000000F00F 0 0x00000000000048B7 RECALL 0x0000000000008877 ENTER 0x000000000000C837 CC 0x000000000000F807 MTS 0x000000000000D827 FINE_DOWN 0x0000000000009867 FINE_UP 0x00000000000018E7 VIDEO 0x0000000000007887 MUTE 0x00000000000028D7 CH_UP 0x00000000000030CF CH_DOWN 0x00000000000008F7 VOL_DOWN 0x00000000000010EF VOL_UP 0x00000000000020DF FULLSCREEN 0x000000000000C03F # The following are only supported by the remote control bundled with # the WinFast TV 2000 XP Deluxe card. SLEEP 0x00000000000004FB BOSS_KEY 0x000000000000946B RED 0x000000000000D42B GREEN 0x00000000000034CB YELLOW 0x000000000000B44B BLUE 0x000000000000748B PIP 0x00000000000054AB . 0x000000000000847B BACK 0x00000000000044BB PLAY 0x000000000000C43B NEXT 0x00000000000024DB TIMESHIFT 0x000000000000A45B STOP 0x000000000000649B REC 0x000000000000E41B SNAPSHOT 0x00000000000014EB end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_logitech.conf0000644000175000017500000001064510561133272023417 0ustar benben# # # contributed by Isaac Lauer # # brand: Logitech # model: Value Infrared Remote Control # supported devices: # begin remote name Logitech bits 8 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 one 0 833 zero 833 0 pre_data_bits 8 pre_data 0xA0 gap 29858 repeat_bit 0 begin codes POWER 0x0000000000000002 1 0x0000000000000015 2 0x0000000000000016 3 0x0000000000000014 4 0x0000000000000018 5 0x0000000000000019 6 0x0000000000000017 7 0x000000000000001C 8 0x000000000000001B 9 0x000000000000001A 0 0x000000000000001D PAUSE 0x0000000000000013 EJECT 0x0000000000000011 SEEK- 0x000000000000000E PLAY 0x000000000000000F SEEK+ 0x0000000000000010 STOP 0x0000000000000012 HELP 0x0000000000000001 CH- 0x000000000000000D CH+ 0x000000000000000A VOL- 0x000000000000000C VOL+ 0x0000000000000009 * 0x000000000000001F # 0x000000000000001E MUTE 0x000000000000000B BUTTONL_DOWN 0x0000000000000039 BUTTONR_DOWN 0x000000000000003A BUTTON_UP 0x0000000000000038 ENTER 0x0000000000000008 CLOSE 0x0000000000000023 TV 0x0000000000000004 GDE 0x0000000000000005 CD 0x0000000000000006 MSG 0x0000000000000007 PHONE 0x0000000000000003 MOUSE_N 0x0000000000000040 MOUSE_NNE 0x0000000000000041 MOUSE_NE 0x0000000000000042 MOUSE_NEE 0x0000000000000043 MOUSE_E 0x0000000000000044 MOUSE_SEE 0x0000000000000045 MOUSE_SE 0x0000000000000046 MOUSE_SSE 0x0000000000000047 MOUSE_S 0x0000000000000048 MOUSE_SSW 0x0000000000000049 MOUSE_SW 0x000000000000004A MOUSE_SWW 0x000000000000004B MOUSE_W 0x000000000000004C MOUSE_NWW 0x000000000000004D MOUSE_NW 0x000000000000004E MOUSE_NNW 0x000000000000004F MOUSE_N 0x0000000000000050 MOUSE_NNE 0x0000000000000051 MOUSE_NE 0x0000000000000052 MOUSE_NEE 0x0000000000000053 MOUSE_E 0x0000000000000054 MOUSE_SEE 0x0000000000000055 MOUSE_SE 0x0000000000000056 MOUSE_SSE 0x0000000000000057 MOUSE_S 0x0000000000000058 MOUSE_SSW 0x0000000000000059 MOUSE_SW 0x000000000000005A MOUSE_SWW 0x000000000000005B MOUSE_W 0x000000000000005C MOUSE_NWW 0x000000000000005D MOUSE_NW 0x000000000000005E MOUSE_NNW 0x000000000000005F MOUSE_N 0x0000000000000060 MOUSE_NNE 0x0000000000000061 MOUSE_NE 0x0000000000000062 MOUSE_NEE 0x0000000000000063 MOUSE_E 0x0000000000000064 MOUSE_SEE 0x0000000000000065 MOUSE_SE 0x0000000000000066 MOUSE_SSE 0x0000000000000067 MOUSE_S 0x0000000000000068 MOUSE_SSW 0x0000000000000069 MOUSE_SW 0x000000000000006A MOUSE_SWW 0x000000000000006B MOUSE_W 0x000000000000006C MOUSE_NWW 0x000000000000006D MOUSE_NW 0x000000000000006E MOUSE_NWW 0x000000000000006F end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_mceusb.conf0000644000175000017500000000453110561133272023074 0ustar benben# # RC-6 config file # # source: http://home.hccnet.nl/m.majoor/projects__remote_control.htm # http://home.hccnet.nl/m.majoor/pronto.pdf # # used by: Philips # ######### # # Philips Media Center Edition remote control # For use with the USB MCE ir receiver # # Dan Conti dconti|acm.wwu.edu # # Updated with codes for MCE 2005 Remote additional buttons # *, #, Teletext, Red, Green, Yellow & Blue Buttons # Note: TV power button transmits no code until programmed. # Updated 12th September 2005 # Graham Auld - mce|graham.auld.me.uk # # Radio, Print, RecTV are only available on the HP Media Center remote control # begin remote name mceusb bits 16 flags RC6|CONST_LENGTH eps 30 aeps 100 header 2667 889 one 444 444 zero 444 444 pre_data_bits 21 pre_data 0x37FF0 gap 105000 toggle_bit 22 rc6_mask 0x100000000 begin codes Blue 0x00007ba1 Yellow 0x00007ba2 Green 0x00007ba3 Red 0x00007ba4 Teletext 0x00007ba5 # starts at af Radio 0x00007baf Print 0x00007bb1 Videos 0x00007bb5 Pictures 0x00007bb6 RecTV 0x00007bb7 Music 0x00007bb8 TV 0x00007bb9 # no ba - d8 Guide 0x00007bd9 LiveTV 0x00007bda DVD 0x00007bdb Back 0x00007bdc OK 0x00007bdd Right 0x00007bde Left 0x00007bdf Down 0x00007be0 Up 0x00007be1 Star 0x00007be2 Hash 0x00007be3 Replay 0x00007be4 Skip 0x00007be5 Stop 0x00007be6 Pause 0x00007be7 Record 0x00007be8 Play 0x00007be9 Rewind 0x00007bea Forward 0x00007beb ChanDown 0x00007bec ChanUp 0x00007bed VolDown 0x00007bee VolUp 0x00007bef More 0x00007bf0 Mute 0x00007bf1 Home 0x00007bf2 Power 0x00007bf3 Enter 0x00007bf4 Clear 0x00007bf5 Nine 0x00007bf6 Eight 0x00007bf7 Seven 0x00007bf8 Six 0x00007bf9 Five 0x00007bfa Four 0x00007bfb Three 0x00007bfc Two 0x00007bfd One 0x00007bfe Zero 0x00007bff end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_nova-s-plus.conf0000644000175000017500000000472710561133272024011 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) on Mon Mai 8 19:29:37 2006 # # contributed by Jalal Achkoune # # brand: Hauppauge # model no. of remote control: # devices being controlled by this remote: WinTV NOVA-S Plus # begin remote name Hauppauge bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 132784 toggle_bit 0 begin codes KEY_GO 0x0161 KEY_POWER 0x0074 KEY_TV 0x0179 KEY_VIDEO 0x0189 KEY_AUDIO 0x0188 KEY_PICURE 0x016F KEY_GUIDE 0x016D KEY_RADIO 0x0181 KEY_UP 0x0067 KEY_LEFT 0x0069 KEY_RIGHT 0x006A KEY_DOWN 0x006C KEY_OK 0x001C KEY_EXIT 0x00AE KEY_MENU 0x008B KEY_VOLUMEUP 0x0073 KEY_VOLUMEDOWN 0x0072 KEY_CHANNELUP 0x0192 KEY_CHANNELDOWN 0x0193 KEY_PREV 0x019C KEY_MUTE 0x0071 KEY_RECORD 0x00A7 KEY_STOP 0x0080 KEY_REWIND 0x00A8 KEY_PLAY 0x00CF KEY_FORWARD 0x00D0 KEY_PREVIOUS 0x00A5 KEY_PAUSE 0x0077 KEY_NEXT 0x00A3 KEY_1 0x004F KEY_2 0x0050 KEY_3 0x0051 KEY_4 0x004B KEY_5 0x004C KEY_6 0x004D KEY_7 0x0047 KEY_8 0x0048 KEY_9 0x0049 KEY_0 0x0052 KEY_TEXT 0x0184 KEY_SUB 0x0172 KEY_RED 0x018E KEY_GREEN 0x018F KEY_YELLOW 0x0190 KEY_BLUE 0x0191 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_packard_bell.conf0000644000175000017500000000705010561133272024220 0ustar benben# Config file for Packard Bell Remotes (with repeat codes!) # created by Samuel Wood (sjw@umr.edu) # # brand: Packard Bell Remote # model: El Cheapo Packard Bell Remote # # This is a config file for the cheap excess Packard Bell remotes # you sometimes can buy from online auctions like www.onsale.com. # # The receiver that comes with it hooks into the serial port and works # fine with lirc 0.5.4. # # The receiver that comes with the remote is near garbage. If # you don't point almost directly at it, it will not detect. But # it's simpler than building your own. :-) # # Repeat works fine for me. You just have to modify or add the # "repeat=" lines in your .lircrc. # # irrecord was used to generate the file, then I modified and # added repeat codes. # # The button names used are identical to what was printed on the # remote, except for the number pads (using actual numbers like # "1" and so forth did not seem to work. Similarly, '*' is Star # and '#' is Hash. LMB and RMB refer to the two mousepad buttons # on the left and right respectively. # # I still need to modify the gap setting. Right now, if you don't # hold the button down long enough, it may not register, but if # you hold it too long, it will detect a repeat or two. Feel free # to modify this to work better. If you get it to work better, send # me a copy. :-) begin remote name PackBell bits 15 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9065 4500 one 597 532 zero 597 1643 ptrail 597 pre_data_bits 16 pre_data 0xF708 post_data_bits 1 post_data 0x0 gap 107000 repeat_bit 0 repeat 9050 2250 begin codes Help 0x0000000000006F90 Phone 0x0000000000004FB0 Message 0x0000000000006E91 SRS 0x0000000000004EB1 CD 0x0000000000002FD0 Aux1 0x0000000000000FF0 Aux2 0x0000000000002ED1 Aux3 0x0000000000000EF1 LMB 0x00000000000023DC RMB 0x000000000000639C Up 0x00000000000037C8 Down 0x00000000000057A8 Left 0x0000000000007788 Right 0x00000000000017E8 Menu 0x0000000000007B84 Mute 0x0000000000003BC4 Enter 0x00000000000047B8 CHUp 0x00000000000027D8 CHDown 0x0000000000006798 VolUp 0x0000000000005BA4 VolDown 0x0000000000001BE4 Display 0x00000000000007F8 One 0x0000000000005EA1 Two 0x0000000000001EE1 Three 0x0000000000000BF4 Four 0x0000000000007E81 Five 0x0000000000003EC1 Six 0x0000000000004BB4 Seven 0x0000000000005FA0 Eight 0x0000000000001FE0 Nine 0x0000000000002BD4 Zero 0x0000000000003FC0 Star 0x0000000000007F80 Hash 0x0000000000006B94 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_pctv.conf0000644000175000017500000000641510561133272022575 0ustar benben# # contributed by Bart Alewijnse # # brand: Pinnacle Systems # model: PCTV Remote (Perhaps other ones as well) # supported devices: there's only one I know of. (serial) # # Mail me if your remote is only partly supported, or if it has different # buttons than listed below. # begin remote name PinnacleSysPCTVRemote bits 8 eps 30 aeps 100 one 0 0 zero 0 0 gap 180000 begin codes Mute 0x000000000000003C Power 0x000000000000002F Chan+Play 0x000000000000003F Chan-Stop 0x000000000000003E Vol+FF 0x000000000000003B Vol-Rew 0x000000000000003D 1 0x0000000000000031 2 0x0000000000000032 3 0x0000000000000033 4 0x0000000000000034 5 0x0000000000000035 6 0x0000000000000036 7 0x0000000000000037 8 0x0000000000000038 9 0x0000000000000039 Fullscreen 0x000000000000002D 0/AV 0x000000000000003A Info 0x000000000000002B Preview 0x000000000000002E Record 0x0000000000000027 Chan_Last 0x0000000000000025 F_TV 0x0000000000000026 F_TELETEXT 0x0000000000000029 F_RADIO 0x000000000000002A # # here are some extra buttons a new version of the remote seems to have # # contributed by Robbert Monna # # brand: Pinnacle Systems # model: PCTV Remote (newest version?) # supported devices: dongle on serial port (from TV-Card) # L 0x000000000000001F Zoom 0x000000000000001E vol+ 0x000000000000001B vol- 0x000000000000000F channel+ 0x0000000000000017 channel- 0x000000000000001C middle 0x000000000000001A Menu 0x000000000000001D next 0x0000000000000019 undo 0x0000000000000016 pause 0x0000000000000015 redo 0x0000000000000013 Rewind 0x000000000000000E Play 0x000000000000000D Stop 0x000000000000000B FForward 0x0000000000000007 EPG 0x0000000000000018 # here are some more buttons that seem to be mapped differently from # the ones above # contributed by InterCeptor ceptor_7@freemail.hu # # brand: Pinnacle Systems PCTV Pro Remote # model no. of remote control: (I can't find any numbers on it) # supported devices: serial # 9 0x0000000000000082 Zoom 0x00000000000000B2 middle 0x0000000000000014 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_realmagic.conf0000644000175000017500000000615610561133272023547 0ustar benben# # this config file was automatically generated # using lirc-0.6.3 on Fri Nov 10 21:47:32 2000 # # contributed by Stefan Neuwirth & Andreas Lange # # brand: Sigma Designs # model: REALmagic remote control # www.realmagic.com/support.htm#remote # supported devices: # "For Hollywood Plus Version 1.4 or above Driver only" # remote control for the Sigma Designs REALmagic Hollywood Plus DVD card # receiver is connected to the serial port - it does not require the card # # The first byte always is 131. The second and third byte are equal. (CB) # begin remote name REALmagic bits 20 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 10 pre_data 0x183 gap 189974 toggle_bit 0 begin codes 1 0x0000000000062D8B 2 0x0000000000012C4B 3 0x000000000001AC6B 4 0x0000000000072DCB 5 0x000000000000AC2B 6 0x0000000000052D4B # Nicolas Vignal reported that this code is sent for his remote # version (1.5). It should be no problem to just have two entries for # "6" unless you want to send codes what won't work for this receiver # anyway. 6 0x0000000000041505 7 0x0000000000058561 8 0x0000000000044511 9 0x000000000004AD2B 0 0x000000000004C531 VOL+ 0x0000000000022C8B VOL- 0x0000000000032CCB MUTE 0x000000000006ADAB L-R 0x0000000000052549 VGA 0x0000000000054551 ENTER 0x0000000000042509 QUIT 0x0000000000058D63 PRG 0x0000000000038CE3 UP 0x0000000000078DE3 DOWN 0x0000000000064D93 LEFT 0x0000000000044D13 RIGHT 0x000000000003ECFB SELECT 0x0000000000024C93 MENU 0x0000000000014C53 TITLE 0x0000000000054D53 OSD 0x0000000000034CD3 LANG 0x0000000000074DD3 ANGLE 0x000000000000CC33 SUB 0x000000000004CD33 PAUSE 0x000000000002CCB3 STOP 0x000000000006CDB3 PLAY 0x000000000001CC73 EJECT 0x000000000005CD73 REV 0x000000000003CCF3 FF 0x000000000007CDF3 PREV 0x0000000000002C0B NEXT 0x0000000000042D0B end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_streamzap.conf0000644000175000017500000000374610561133272023633 0ustar benben# # this config file was automatically generated # using lirc-0.7.1-CVS(serial) on Fri Feb 4 23:20:56 2005 # # contributed by Christoph Bartelmus # # brand: Streamzap # model no. of remote control: PC Remote # devices being controlled by this remote: USB receiver # begin remote name Streamzap_PC_Remote bits 6 flags RC5|CONST_LENGTH eps 30 aeps 100 one 907 804 zero 907 804 plead 949 pre_data_bits 8 pre_data 0xA3 gap 108344 toggle_bit 2 begin codes 0 0x00 1 0x01 2 0x02 3 0x03 4 0x04 5 0x05 6 0x06 7 0x07 8 0x08 9 0x09 POWER 0x0A MUTE 0x0B CH_UP 0x0C VOL_UP 0x0D CH_DOWN 0x0E VOL_DOWN 0x0F UP 0x10 LEFT 0x11 OK 0x12 RIGHT 0x13 DOWN 0x14 MENU 0x15 EXIT 0x16 PLAY 0x17 PAUSE 0x18 STOP 0x19 |<< 0x1A >>| 0x1B RECORD 0x1C << 0x1D >> 0x1E RED 0x20 GREEN 0x21 YELLOW 0x22 BLUE 0x23 end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_tosh-vt76f.conf0000644000175000017500000000536410561133272023552 0ustar benben# # this config file was automatically generated # using WinLIRC 0.6.5 (LIRC 0.6.1pre3) on Tue Jan 31 23:13:02 2006 # # contributed by Lionel D. # english translation on Thu Feb 02 20:14:00 2006 # # brand: TOSHIBA # model: VT-76F # supported devices: # begin remote name VT-76F bits 16 flags SPACE_ENC eps 25 aeps 100 header 9066 4472 one 603 520 zero 603 1642 ptrail 603 repeat 9068 2236 pre_data_bits 16 pre_data 0xDD22 gap 39980 toggle_bit 0 begin codes POWER 0x000000000000B748 A.SELECT 0x00000000000035CA TV/VCR 0x0000000000007788 1 0x0000000000007F80 2 0x000000000000BF40 3 0x0000000000003FC0 4 0x000000000000DF20 5 0x0000000000005FA0 6 0x0000000000009F60 7 0x0000000000001FE0 8 0x000000000000EF10 9 0x0000000000006F90 0 0x000000000000AF50 CH- 0x00000000000007F8 CH+ 0x00000000000027D8 SHIFT<- 0x000000000000758A SHIFT-> 0x0000000000004DB2 DISPLAY 0x0000000000003EC1 OSP 0x000000000000C53A IMMEDIATE_REC 0x00000000000025DA INPUT 0x00000000000005FA SP/LP 0x00000000000045BA RECORD 0x000000000000B748 FAST_REW 0x0000000000006798 PLAY 0x00000000000057A8 FAST_FORW 0x00000000000037C8 PAUSE 0x000000000000F708 STOP 0x000000000000D728 SLOW 0x0000000000004FB0 INDEX 0x0000000000009D62 TIME_LEFT/CLOCK 0x0000000000009768 ALIGN_DOWN 0x0000000000000FF0 ALIGN_UP 0x0000000000008F70 TIME_SEARCH 0x0000000000005EA1 ZERO_BACK 0x0000000000001EE1 RST_COUNTER 0x0000000000009669 DT 0x000000000000D42B A.DUB 0x000000000000C738 CLEARNESS_IMG+ 0x000000000000906F CLEARNESS_IMG- 0x00000000000010EF end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_twinhan.conf0000644000175000017500000000376310561133272023274 0ustar benben# this config file was automatically generated # using lirc-0.7.1pre1(serial) on Mon Feb 7 21:00:46 2005 # # contributed by Th. Peters # # brand: Twinhan # model: black/silver, 32 Keys, bundled with DTV digital satellite receiver # devices being controlled by this remote: Twinhan DTV Sat (DVB-S) PCI-Card begin remote name TwinhanDTV bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9073 4400 one 654 1590 zero 654 469 ptrail 654 repeat 9076 2150 pre_data_bits 16 pre_data 0xFF gap 107783 toggle_bit 0 begin codes FULLSCREEN 0xB24D POWER 0x6897 1 0xC03F 2 0x807F 3 0x609F 4 0x906F 5 0xB847 6 0xF807 7 0xB04F 8 0x9867 9 0xD827 0 0xA857 RECORD 0x8877 FAVORITE 0xE817 REWIND 0x02FD FORWARD 0x48B7 CH_UP 0xA05F CH_DOWN 0x40BF PLAY 0x28D7 VOL_DOWN 0x50AF VOL_UP 0x7887 RECALL 0x708F STOP 0x58A7 TIMESHIFT 0x32CD MUTE 0x08F7 CANCEL 0x30CF CAPTURE 0x2AD5 PREVIEW 0x12ED EPG 0x38C7 RECORDLIST 0x20DF TAB 0x00FF TELETEXT 0xF00F end codes end remote geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_animax0000644000175000017500000000011410561133272022140 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_serial type=3" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_askey0000644000175000017500000000014210561133272022000 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="videodev|bttv card=38|lirc_dev|lirc_gpio" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb0000644000175000017500000000010510561133272022152 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_atiusb" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb20000644000175000017500000000010510561133272022234 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_atiusb" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_avermedia0000644000175000017500000000012010561133272022615 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=13|lirc_gpio" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_creative0000644000175000017500000000010010561133272022460 0ustar benbenLIRC_DRIVER=creative LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_cx880000644000175000017500000000005310561133272021457 0ustar benbenLIRC_DRIVER=dev/input LIRC_MODULES="evdev" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_digimatrix0000644000175000017500000000014310561133272023026 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_it87 digimatrix=1 it87_freq=36 irq=9" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_hauppauge0000644000175000017500000000011610561133272022644 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=2|lirc_i2c" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_homemade0000644000175000017500000000010510561133272022442 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_serial" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_imonknob0000644000175000017500000000010310561133272022475 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_imon" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_irman0000644000175000017500000000007510561133272021777 0ustar benbenLIRC_DRIVER=irman LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek0000644000175000017500000000012010561133272022271 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=34|lirc_gpio" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek-pvr20000000644000175000017500000000011310561133272023402 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_dev|lirc_i2c" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_logitech0000644000175000017500000000010010561133272022454 0ustar benbenLIRC_DRIVER=logitech LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_mceusb0000644000175000017500000000010510561133272022141 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_mceusb" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_mceusb20000644000175000017500000000010610561133272022224 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_mceusb2" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_pctv0000644000175000017500000000007610561133272021646 0ustar benbenLIRC_DRIVER=pinsys LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_realmagic0000644000175000017500000000010110561133272022603 0ustar benbenLIRC_DRIVER=pixelview LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lirc/lircd_streamzap0000644000175000017500000000011010561133272022665 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_streamzap" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/autoplay0000644000175000017500000000011010561133272020407 0ustar benben# Configure system to autoplay when automounting media. AUTOPLAY="yes" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/mplayer/0000755000175000017500000000000010561133275020312 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/mplayer/mplayer.conf0000644000175000017500000000116510561133274022634 0ustar benbenvo=cvidix,vesa mixer-channel=Master framedrop=yes vsync=yes fs=yes zoom=yes menu=yes menu-startup=yes double=yes fixed-vo=yes nocolorkey=yes cache=4096 cache-min=2 idx=yes lircconf=/etc/lircrc sub-fuzziness=1 #monitor-hfreq=31.5k-50k #monitor-vfreq=50-90 input=file=/var/mp_control menu-utf8=1 menu-flip-hebrew=1 # Set Post Processing (h deblock, v deblock, dering, auto luminance) # Consumes CPU power, disabled for low configs, uncomment to enable it. #vf=pp=hb:a/vb:a/dr:a/al:a # Forces RTSP client's port (usefull for FreeboxTV users in router mode) # Do _NOT_ uncomment the line without LIVE555 support #rtsp-port = 31337 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/mplayer/input.conf0000644000175000017500000000216710561133274022325 0ustar benben## ## GeeXboX MPlayer input control file ## ## Playback p pause SPACE pause f pt_step -1 g pt_step 1 h tv_step_channel 1 l tv_step_channel -1 n tv_step_norm b tv_step_chanlist ## Seeking RIGHT seek +10 LEFT seek -10 DOWN seek -60 UP seek +60 PGUP seek 600 PGDWN seek -600 ## Audio properties - audio_delay 0.100 + audio_delay -0.100 / volume -1 * volume 1 c mute e switch_audio ## Subtitle properties z sub_delay -0.1 x sub_delay +0.1 r sub_pos -1 t sub_pos +1 w sub_select ## DVD Menu Navigation 8 dvdnav 1 # DVDNav UP 2 dvdnav 2 # DVDNav DOWN 4 dvdnav 3 # DVDNav LEFT 6 dvdnav 4 # DVDNav RIGHT 0 dvdnav 5 # DVDNav MENU ENTER dvdnav 6 # DVDNav SELECT ## Miscelaneous a quit q quit ESC quit k halt o osd m menu toggle ; menu toggle s run /usr/bin/tvswitch y play_dvd #i record ## Controls 1 contrast -1 3 contrast 1 7 brightness -1 9 brightness 1 INS hue -1 DEL hue 1 HOME saturation -1 END saturation 1 ## Joystick JOY_RIGHT seek 10 JOY_LEFT seek -10 JOY_UP seek 60 JOY_DOWN seek -60 JOY_BTN1 menu hide JOY_BTN2 pause JOY_BTN3 osd JOY_BTN4 mute JOY_BTN5 volume -1 JOY_BTN6 volume 1 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/mplayer/no_nvidia_vidix0000644000175000017500000000051710561133274023410 0ustar benbenYou can enable nvidia vidix driver simply by removing this file. Vidix should give you better performance especially with low-end hardware. This feature is not very well tested. That's why it is not enabled by default. And that's also why you should help us, testing this feature and reporting your results if you own nvidia hardware. geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/mplayer/codecs.conf0000644000175000017500000015766510561133275022445 0ustar benben;============================================================================= ; Default codecs config file. It replaces the old codecs.c file! ; Before editing this file, please read DOCS/tech/codecs.conf.txt ! ;============================================================================= release 20061022 ;============================================================================= ; VIDEO CODECS ;============================================================================= videocodec ffkmvc fourcc KMVC out BGR8 driver ffmpeg dll "kmvc" videocodec ffzmbv info "FFmpeg Zip Motion-Block Video" status working fourcc ZMBV driver ffmpeg dll "zmbv" out RGB24 videocodec zmbv info "Zip Motion-Block Video" status working fourcc ZMBV driver vfw dll "zmbv.dll" out BGR24,BGR15,BGR8 query,flip ; MPEG-1/2 decoding: ; Note: mpegpes is preferred for hw decoders: videocodec mpegpes info "MPEG-PES output (.mpg or DXR3/IVTV/DVB card)" comment "for hardware decoding" status working format 0x10000001 ; mpeg 1 format 0x10000002 ; mpeg 2 driver mpegpes out MPES videocodec mpeg12 info "MPEG-1 or 2 (libmpeg2)" comment "with postprocessing" status working format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc "DVR " fourcc hdv2 fourcc mpg1 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc mpg2,MPG2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver libmpeg2 ; dll "libmpeg2" out YV12,I420,IYUV out 422P videocodec ffmpeg1 info "FFmpeg MPEG-1" status working format 0x10000001 ; MPEG-1 fourcc mpg1 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc MPEG driver ffmpeg dll "mpeg1video" out YV12,I420,IYUV videocodec ffmpeg2 info "FFmpeg MPEG-2" status working format 0x10000002 ; MPEG-2 fourcc mpg2,MPG2 fourcc "DVR " fourcc hdv2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver ffmpeg dll "mpeg2video" out YV12,I420,IYUV out 422P,444P ; for backward compatibility videocodec ffmpeg12 info "FFmpeg MPEG-1/2" status working format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc mpg1,mpg2,MPG2 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc "DVR " fourcc hdv2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver ffmpeg dll "mpegvideo" out YV12,I420,IYUV out 422P,444P videocodec ffmpeg12mc info "FFmpeg MPEG-1/2 (XvMC)" status buggy format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc mpg1,mpg2,MPG2 fourcc "DVR " fourcc hdv2 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver ffmpeg dll "mpegvideo_xvmc" out IDCT_MPEG2 out MOCO_MPEG2 ; we have only native open source codecs for these: videocodec ffnuv info "NuppelVideo" status working fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC fourcc RJPG driver ffmpeg dll nuv out I420 videocodec nuv info "NuppelVideo" status working fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC fourcc RJPG driver nuv out I420,IYUV videocodec ffpng info "FFmpeg PNG decoder" status working fourcc mpng,MPNG fourcc "png " ; for PNG-encoded QuickTime files driver ffmpeg dll png out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec mpng info "PNG image decoder" status working comment "Gray scaled PNG with Alpha channel not supported" fourcc mpng,MPNG fourcc "png " ; for PNG-encoded QuickTime files dll "libpng" driver mpng out BGR32,BGR24,BGR8,Y800 videocodec mtga info "TGA image decoder" status working comment "Only 24bpp and 32bpp RGB TGA files supported" fourcc mtga,MTGA driver mtga out BGR32,BGR24 videocodec sgi info "SGI image decoder" status working fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC driver sgi out BGR24 videocodec ffindeo3 info "FFmpeg Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver ffmpeg dll indeo3 out YVU9 videocodec fffli info "Autodesk FLI/FLC Animation" status working fourcc FLIC ; FLIC is an internal MPlayer FOURCC driver ffmpeg dll "flic" out BGR16,BGR15,BGR8 query videocodec ffaasc info "Autodesk RLE decoder" status working fourcc AASC driver ffmpeg dll "aasc" out BGR24 videocodec ffloco info "LOCO video decoder" status working fourcc LOCO driver ffmpeg dll "loco" out 422P,YV12,BGR32,BGR24 query videocodec ffqtrle info "QuickTime Animation (RLE)" status working format 0x20656C72 ; "rle " driver ffmpeg dll "qtrle" out BGR32,RGB24,BGR15,BGR8 query videocodec ffrpza info "QuickTime Apple Video" status working fourcc rpza,azpr driver ffmpeg dll "rpza" out BGR15 videocodec ffsmc info "Apple Graphics (SMC) codec" status working format 0x20636d73 ; "smc " driver ffmpeg dll "smc" out BGR8 videocodec ff8bps info "Planar RGB (Photoshop)" status working fourcc 8BPS driver ffmpeg dll "8bps" out BGR32,BGR24,BGR8 query videocodec ffcyuv info "Creative YUV (libavcodec)" status working fourcc cyuv,CYUV driver ffmpeg dll "cyuv" out 411P videocodec ffmsrle info "Microsoft RLE" status working format 0x1 format 0x2 fourcc WRLE driver ffmpeg dll "msrle" out BGR8 videocodec ffroqvideo info "Id RoQ File Video Decoder" status working fourcc RoQV ; RoQV is an internal MPlayer FOURCC driver ffmpeg dll "roqvideo" out YV12 videocodec lzo info "LZO compressed" status working fourcc LZO1 driver lzo dll "liblzo" out YV12,I420 out BGR24 flip videocodec theora info "Theora (free, reworked VP3)" status working fourcc theo,Thra driver theora dll libtheora out YV12 ; prefer native codecs over win32? ; the win32 codecs probably are (better) optimized and support direct ; rendering, so this may be not the best idea... ;WIN32: videocodec cram info "Microsoft Video 1" comment "-vf palette required for 8bpp" status buggy fourcc cram,CRAM CRAM fourcc msvc,MSVC CRAM fourcc wham,WHAM CRAM driver vfw dll "msvidc32.dll" out BGR24,BGR15,BGR8 static,query videocodec ffcvid info "Cinepak Video (native codec)" status working fourcc cvid,CVID driver ffmpeg dll "cinepak" out YV12,BGR8 query videocodec cvidvfw info "Cinepak Video" status working fourcc cvid driver vfw dll "iccvid.dll" ; out YUY2 ; out UYVY out BGR24,BGR15 static videocodec huffyuv info "HuffYUV" status buggy fourcc HFYU driver vfw dll "huffyuv.dll" out YUY2 flip,noflip,query ; out UYVY flip out BGR32,BGR24 flip,query ;NATIVE: videocodec ffvideo1 info "Microsoft Video 1 (native codec)" status working fourcc cram,CRAM fourcc msvc,MSVC fourcc wham,WHAM driver ffmpeg dll "msvideo1" out BGR15,BGR8 query videocodec ffmszh info "AVImszh (native codec)" status working fourcc MSZH driver ffmpeg dll "mszh" out BGR24 videocodec ffzlib info "AVIzlib (native codec)" status working fourcc ZLIB driver ffmpeg dll "zlib" out BGR24 ;XAnim (slow): videocodec cvidxa info "XAnim's Radius Cinepak Video" status buggy fourcc cvid driver xanim dll "vid_cvid.xa" out YV12,IYUV,I420 static ; time to decide what to do with the MPEG-4/DivX variants... ; ff* is fastest... videocodec ffhuffyuv info "FFmpeg HuffYUV" status working fourcc HFYU,FFVH driver ffmpeg dll huffyuv out YUY2,422P,YV12 out BGR32,BGR24 videocodec ffv1 info "FFV1 (lossless codec)" status working fourcc FFV1 driver ffmpeg dll ffv1 out 411P,444P,422P,YV12,I420,IYUV,YVU9 out BGR32 videocodec ffsnow info "FFSNOW (Michael's wavelet codec)" status working fourcc snow,SNOW driver ffmpeg dll snow out YV12 videocodec ffasv1 info "FFmpeg ASUS V1" status working fourcc ASV1 driver ffmpeg dll asv1 out YV12,I420,IYUV videocodec ffasv2 info "FFmpeg ASUS V2" status working fourcc ASV2 driver ffmpeg dll asv2 out YV12,I420,IYUV videocodec ffvcr1 info "FFmpeg ATI VCR1" status working fourcc VCR1 driver ffmpeg dll vcr1 out YVU9 videocodec ffcljr info "FFmpeg Cirrus Logic AccuPak (CLJR)" status working fourcc CLJR driver ffmpeg dll cljr out 411P videocodec ffsvq1 info "FFmpeg Sorenson Video v1 (SVQ1)" status working fourcc SVQ1,svq1 driver ffmpeg dll svq1 out YVU9 videocodec ff4xm info "FFmpeg 4XM video" status working fourcc 4XMV driver ffmpeg dll 4xm out BGR16 videocodec ffvixl info "Miro/Pinnacle VideoXL codec" status working fourcc VIXL fourcc PIXL ; this is Pinnacle one driver ffmpeg dll xl out 411P videocodec ffqtdrw info "QuickDraw native decoder" status working fourcc qdrw driver ffmpeg dll qdraw out RGB24 videocodec ffindeo2 info "Indeo 2 native decoder" status working fourcc RT21 driver ffmpeg dll indeo2 out YVU9 videocodec ffflv info "FFmpeg Flash video" status working fourcc FLV1 driver ffmpeg dll flv out YV12 videocodec fffsv info "FFmpeg Flash Screen video" status working fourcc FSV1 driver ffmpeg dll flashsv out BGR24 videocodec ffdivx info "FFmpeg DivX ;-) (MS MPEG-4 v3)" status working fourcc MPG3,mpg3 div3 fourcc MP43,mp43 div3 ; M$ MPEG-4 v3 (fourcc mapping to div3) fourcc DIV5,div5 div3 ; DivX 3.20 fourcc DIV6,div6 div4 ; -||- fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax) fourcc 3IVD,3ivd ; divxdoctored files (3ivx.com) driver ffmpeg dll msmpeg4 out YV12,I420,IYUV videocodec ffmp42 info "FFmpeg M$ MPEG-4 v2" status working fourcc DIV2,div2 mp42 fourcc MP42,mp42 driver ffmpeg dll msmpeg4v2 out YV12,I420,IYUV videocodec ffmp41 info "FFmpeg M$ MPEG-4 v1" status working fourcc DIV1,div1 mpg4 fourcc MPG4,mpg4 driver ffmpeg dll msmpeg4v1 out YV12,I420,IYUV videocodec ffwmv1 info "FFmpeg M$ WMV1/WMV7" status working fourcc WMV1,wmv1 driver ffmpeg dll wmv1 out YV12,I420,IYUV videocodec ffwmv2 info "FFmpeg M$ WMV2/WMV8" status buggy fourcc WMV2,wmv2 driver ffmpeg dll wmv2 out YV12,I420,IYUV videocodec ffwmv3 info "FFmpeg M$ WMV3/WMV9" status buggy fourcc WMV3,wmv3 driver ffmpeg dll wmv3 out YV12,I420,IYUV videocodec ffvc1 info "FFmpeg M$ WVC1" status buggy fourcc WVC1,wvc1 driver ffmpeg dll vc1 out YV12,I420,IYUV videocodec ffh264 info "FFmpeg H.264" status working fourcc H264,h264 fourcc X264,x264 fourcc avc1 fourcc davc,DAVC format 0x10000005 driver ffmpeg dll h264 out YV12,I420,IYUV videocodec ffsvq3 info "FFmpeg Sorenson Video v3 (SVQ3)" status working fourcc SVQ3 driver ffmpeg dll svq3 out YV12,I420,IYUV videocodec ffodivx info "FFmpeg MPEG-4" status working fourcc FMP4,fmp4 fourcc DIVX,divx fourcc DIV1,div1 divx fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc M4S2,m4s2 fourcc xvid,XVID,XviD,XVIX fourcc DX50,dx50,BLZ0 DX50 fourcc mp4v,MP4V format 0x4 fourcc UMP4 fourcc RMP4 fourcc 3IV2,3iv2 ; 3ivx Delta 4 fourcc DXGM fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110 fourcc SMP4,smp4 ; Samsung SMP4 video codec format 0x10000004 ; mpeg 4 es driver ffmpeg dll mpeg4 ;opendivx out YV12,I420,IYUV videocodec ffwv1f info "WV1F MPEG-4" status working fourcc WV1F driver ffmpeg dll mpeg4 out YV12,I420,IYUV flip videocodec xvid info "XviD (MPEG-4)" status working fourcc DIVX,divx fourcc xvid,XVID,XviD format 0x4 driver xvid out YV12 out I420 out YUY2 out UYVY out YVYU out BGR32,BGR24,BGR16,BGR15 dll "libxvidcore.a" ; is divx4vfw stable enough, working everywhere and faster than divxds? videocodec divx4vfw info "DivX4Windows-VFW" status buggy comment "sig11 with -framedrop" fourcc DIVX,divx ; opendivx / divx4 fourcc DIV1,div1 divx ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! fourcc AP41 DIV3 ; AngelPotion stuff format 0x4 driver vfw dll "divx.dll" ; out YV12 ; buggy out YUY2 out BGR32,BGR24,BGR15 ; the original ones... prefer DShow for postprocessing: videocodec divxds info "DivX ;-) (MS MPEG-4 v3)" comment "with postprocessing" status working fourcc MP43,mp43 div3 ; fourcc mapping to div3 fourcc DIV5,div5 div3 fourcc DIV6,div6 div4 fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff driver dshow dll "divx_c32.ax" guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec divx info "DivX ;-) (MS MPEG-4 v3)" status working fourcc MP43,mp43 div3 ; M$ MPEG-4 v3 (fourcc mapping to div3) fourcc DIV5,div5 div3 ; DivX 3.20 fourcc DIV6,div6 div4 ; -||- fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff driver vfw dll "divxc32.dll" out YUY2 yuvhack out BGR32,BGR24,BGR15 ; hmm. we should check, maybe these are/will be playable with libavcodec: videocodec mpeg4ds info "Microsoft MPEG-4 v1/v2" status working comment "with postprocessing" fourcc DIV2,div2 mp42 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc MPG4,mpg4 fourcc MP42,mp42 driver dshow dll "mpg4ds32.ax" guid 0x82CCD3E0, 0xF71A, 0x11D0, 0x9F, 0xE5, 0x00, 0x60, 0x97, 0x78, 0xEA, 0x66 out YUY2 ; out BGR32,BGR24,BGR16,BGR15 videocodec mpeg4 info "Microsoft MPEG-4 v1/v2" status working fourcc MPG4,mpg4 fourcc MP42,mp42 fourcc DIV2 mp42 driver vfw dll "mpg4c32.dll" out YUY2 yuvhack out BGR32,BGR24,BGR15 videocodec wmv8 info "Windows Media Video 8" status working fourcc WMV2 driver dshow dll "wmv8ds32.ax" guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f out YV12,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16,BGR15 videocodec wmv7 info "Windows Media Video 7" status working fourcc WMV1 driver dshow dll "wmvds32.ax" guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae out YUY2,UYVY ; out BGR32,BGR24,BGR16,BGR15 videocodec wmv9dmo info "Windows Media Video 9 DMO" status working fourcc WMV3 fourcc WMVP driver dmo dll "wmv9dmod.dll" guid 0x724bb6a4, 0xe526, 0x450f, 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11 out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvdmo info "Windows Media Video DMO" status working fourcc WMV1 fourcc WMV2 fourcc WMV3 fourcc WMVP driver dmo dll "wmvdmod.dll" guid 0x82d353df, 0x90bd, 0x4382, 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34 out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvadmo info "Windows Media Video Adv DMO" status working fourcc WMVA fourcc WVP2 driver dmo dll "wmvadvd.dll" guid 0x03be3ac4, 0x84b7, 0x4e0e, 0xa7, 0x8d, 0xd3, 0x52, 0x4e, 0x60, 0x39, 0x5a out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvvc1dmo info "Windows Media Video (VC-1) Advanced Profile Decoder" status working fourcc WVC1 driver dmo dll "wvc1dmod.dll" guid 0xc9bfbccf, 0xe60e, 0x4588, 0xa3, 0xdf, 0x5a, 0x03, 0xb1, 0xfd, 0x95, 0x85 out YV12,YUY2 videocodec wmsdmod info "Windows Media Screen Codec 2" status working fourcc MSS1 fourcc MSS2 driver dmo dll "wmsdmod.dll" guid 0x7bafb3b1, 0xd8f4, 0x4279, 0x92, 0x53, 0x27, 0xda, 0x42, 0x31, 0x08, 0xde out BGR32,BGR24,BGR16 videocodec ubmp4 info "UB Video MPEG-4" comment "black&white" status buggy fourcc mp4v UMP4 ; black&white, sometimes buggy too fourcc UMP4 driver vfw dll "ubvmp4d.dll" out I420 out UYVY ; MJPEG: ; Notes: m3jpeg+mjpeg are MMX optimized. avid is very stable but slow. ; ijpg only decodes JPEG images (no MJPEG), and slow. ; Update: ffmjpeg is almost perfect (and optimized) now, prefer it to others. videocodec zrmjpeg info "Zoran MJPEG passthrough" status buggy fourcc MJPG,jpeg driver zrmjpeg out ZRMJPEGNI,ZRMJPEGIT,ZRMJPEGIB query videocodec ffmjpeg info "FFmpeg MJPEG decoder" status working fourcc MJPG,mjpg fourcc AVRn,AVDJ ; AVID fourcc jpeg ; MOV Photo-JPEG fourcc mjpa ; Apple MJPEG-A (Quicktime) fourcc JFIF ; SMJPEG (Loki) fourcc ijpg,IJPG ; -mf type=jpeg fourcc JPEG ; SGI's AVI Photo-JPEG fourcc JPGL ; lossless JPEG (pegasus codec) fourcc LJPG ; lossless JPEG fourcc dmb1 ; MJPEG by Matrox Rainbow Runner driver ffmpeg dll mjpeg out 444P out 422P out YUY2 ; queried (conversion from yuv422p) out YV12,I420,IYUV out BGR32 ; lossless JPEG out Y800 videocodec ffmjpegb info "FFmpeg MJPEG-B decoder" status working fourcc mjpb ; Apple MJPEG-B (Quicktime) driver ffmpeg dll mjpegb out 444P out 422P out YUY2 ; queryed (conversion from yuv422p) out YV12,I420,IYUV ; slow. usable only for standalone JPEGs, like -mf, avid or Photo-JPEG: videocodec ijpg info "Independent JPEG Group's codec" status working fourcc ijpg,IJPG ; -mf type=jpeg fourcc jpeg ; MOV Photo-JPEG fourcc AVRn,AVDJ ; AVID fourcc CJPG driver ijpg dll libjpeg out RGB24,BGR24,BGR32 ; http://www.morgan-multimedia.com/dev/codec_spec.htm videocodec m3jpeg info "Morgan Motion JPEG Codec" status working fourcc MJPG fourcc mjpa,mjpb,mjpg MJPG ; MOV files fourcc dmb1 MJPG ; MJPEG by Matrox Rainbow Runner driver vfw dll "m3jpeg32.dll" ; out YV12,I420 out YUY2,UYVY out BGR32,BGR24,BGR15 videocodec mjpeg info "MainConcept Motion JPEG" status working fourcc MJPG fourcc mjpa,mjpb,mjpg MJPG ; MOV files ; fourcc AVRn,AVDJ MJPG ; AVID (sometimes buggy) driver vfw dll "mcmjpg32.dll" out YUY2,UYVY out BGR32,BGR24,BGR15 videocodec avid info "AVID Motion JPEG" status working comment "slooooooooow but stable" fourcc AVRn fourcc AVDJ AVRn fourcc MJPG,mjpg AVRn driver vfw dll "AvidAVICodec.dll" out BGR24 flip videocodec LEAD info "LEAD (M)JPEG" status working comment "supports interlaced MJPEG" fourcc MJPG fourcc jpeg MJPG ; MOV Photo-JPEG fourcc LEAD driver vfw dll "LCodcCMP.dll" out BGR24,BGR15 videocodec imagepower info "ImagePower MJPEG2000" status buggy fourcc IPJ2 driver vfw dll "jp2avi.dll" out BGR32,BGR24,BGR15 videocodec m3jpeg2k info "Morgan MJPEG2000" status working fourcc MJ2C driver vfw dll "m3jp2k32.dll" out YV12,I420,IYUV out YUY2,UYVY out BGR32,BGR24,BGR15 ; http://www.morgan-multimedia.com/dev/directshow_dec_spec.htm videocodec m3jpegds info "Morgan MJPEG" status crashing fourcc MJPG mjpg fourcc mjpa,mjpb,mjpg mjpg ; MOV files fourcc dmb1 mjpg ; MJPEG by Matrox Rainbow Runner driver dshow dll "m3jpegdec.ax" guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 out I420 out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec pegasusm info "Pegasus Motion JPEG" status crashing fourcc MJPG driver vfw ; dll "pvmjpg20.dll" ; v2.0 dll "pvmjpg21.dll" ; v2.1 out BGR24 flip videocodec pegasusl info "Pegasus lossless JPEG" status crashing fourcc JPGL fourcc MJPG JPGL driver vfw dll "pvljpg20.dll" out BGR24 flip videocodec pegasusmwv info "Pegasus Motion Wavelet 2000" status crashing fourcc PVW2 driver vfw dll "pvwv220.dll" out BGR24 flip ; h263: - I don't know. comments? videocodec vivo info "Vivo H.263" status working fourcc VIVO,vivo vivo fourcc viv1,viv2 vivo driver vfw dll "ivvideo.dll" out BGR32,BGR24,BGR15 flip in BGR24 videocodec u263 info "UB Video H.263/H.263+/H.263++ Decoder" status working fourcc U263 fourcc vivo,VIVO U263 fourcc viv1 U263 driver dshow dll "ubv263d+.ax" guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0 ; out UYVY ; BGR32,BGR16,BGR15 seems to work too out BGR24 flip videocodec i263 info "I263" status working fourcc I263,i263 ; fourcc I420,i420 fourcc vivo,VIVO I263 fourcc viv1 I263 driver vfw dll "i263_32.drv" out I420 out YUY2 out BGR32,BGR24,BGR15 videocodec ffi263 info "FFmpeg I263 decoder" status working fourcc I263,i263 driver ffmpeg dll h263i out YV12,I420,IYUV videocodec ffh263 info "FFmpeg H.263+ decoder" status working fourcc H263,U263,h263,X263,M263 fourcc viv1 h263 fourcc s263 driver ffmpeg dll h263 out YV12,I420,IYUV videocodec ffzygo info "FFmpeg ZyGo" status untested fourcc ZyGo driver ffmpeg dll h263 out YV12,I420,IYUV flip videocodec h263xa info "XAnim's CCITT H.263" status crashing fourcc H263,h263 fourcc viv1 H263 fourcc VIVO,vivo H263 driver xanim dll "vid_h263.xa" out YV12,IYUV,I420 videocodec ffh261 info "CCITT H.261" status working fourcc H261,h261 driver ffmpeg dll h261 out YV12 videocodec qt261 info "QuickTime H.261 video decoder" status working fourcc H261,h261 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec h261xa info "XAnim's CCITT H.261" status buggy fourcc H261,h261 driver xanim dll "vid_h261.xa" out YV12,IYUV,I420 videocodec m261 info "M261" status untested fourcc m261,M261 driver vfw dll "msh261.drv" out BGR32,BGR24,BGR15 ; Indeo: ; Note: Indeo 3 is buggy, both XAnim (bad decoding) and VfW (fails with DR) ; Prefer win32 ones, they are faster, and 4/5 can DR. For fallback, there are ; Xanim codecs, they provide YV12, useful for YUV display or encoding. videocodec indeo5ds info "Intel Indeo 5" status working fourcc IV50,iv50 driver dshow dll "ir50_32.dll" guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 out YV12,IYUV,I420 out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec indeo5 info "Intel Indeo 5" status working fourcc IV50,iv50 driver vfwex dll "ir50_32.dll" ; out YV12,I420 ; flickering out YUY2 out BGR32,BGR24,BGR15 videocodec indeo4 info "Intel Indeo 4.1" status working fourcc IV41,iv41 driver vfw dll "ir41_32.dll" out IF09 out BGR24,BGR15 in YVU9 videocodec indeo3 info "Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver vfwex dll "ir32_32.dll" out IF09 out BGR24,BGR15 flip,static in YVU9 videocodec indeo5xa info "XAnim's Intel Indeo 5" status working fourcc IV50,iv50 driver xanim dll "vid_iv50.xa" out YVU9 videocodec indeo4xa info "XAnim's Intel Indeo 4.1" status working fourcc IV41,iv41 driver xanim dll "vid_iv41.xa" out YVU9 videocodec indeo3xa info "XAnim's Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver xanim dll "vid_iv32.xa" out YVU9 ; DV: qdv is more stable... libdv is slow, mcdv is unstable videocodec qdv info "Sony Digital Video (DV)" status working fourcc dvsl,dvsd,dvhd ; ???? fourcc DVSD dvsd ; pal .avi fourcc "dvcp" dvsd ; pal .mov fourcc "dvc " dvsd ; ntsc .mov driver dshow dll "qdv.dll" guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 out YUY2 out UYVY out BGR24,BGR16,BGR15 ; BGR32 is buggy, at least with one sample videocodec ffdv info "FFmpeg DV decoder" status working fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc "dvcp" ; PAL DV in .mov fourcc "dvc " ; NTSC DV in .mov fourcc dvpp ; DVCPRO - PAL driver ffmpeg dll dvvideo out 411P,YV12 videocodec libdv info "Raw DV decoder (libdv)" status working fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc "dvcp" ; PAL DV in .mov fourcc "dvc " ; NTSC DV in .mov fourcc dvpp ; DVCPRO - PAL fourcc AVdv ; AVID DV driver libdv dll libdv.so.2 out YUY2 ; note: it crashes with pond.dv :( videocodec mcdv info "MainConcept DV Codec" status working fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc CDVC,cdvc ; ??? fourcc "dvcp" dvsd ; PAL DV in .mov fourcc "dvc " dvcs ; NTSC DV in .mov driver vfw dll "mcdvd_32.dll" out YUY2 out UYVY out BGR32,BGR24,BGR15 ; 3ivx: videocodec 3ivXxa info "XAnim's 3ivx Delta 3.5 plugin" status working fourcc 3IV1 driver xanim dll "vid_3ivX.xa" out YV12,IYUV,I420 videocodec 3ivX info "3ivx Delta 3.5" status crashing fourcc 3IV1 driver dshow dll "3ivxdmo.dll" guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c out YV12 out YUY2 out BGR32,BGR24,BGR16,BGR15 ; RealVideo variants videocodec rv3040 info "Linux RealPlayer 10 RV30/40 decoder" status working fourcc RV30,rv30 fourcc RV40,rv40 driver realvid dll "drvc.so" out I420 videocodec rv40 info "Linux RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drv4.so.6.0" out I420 videocodec rv40win info "Win32 RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drv43260.dll" out I420 videocodec rv40mac info "Mac OS X RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drvc.bundle/Contents/MacOS/drvc" out I420 videocodec rv30 info "Linux RealPlayer 8 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drv3.so.6.0" out I420 videocodec rv30win info "Win32 RealPlayer 8 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drv33260.dll" out I420 videocodec rv30mac info "Mac OS X RealPlayer 9 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drvc.bundle/Contents/MacOS/drvc" out I420 videocodec ffrv20 info "FFmpeg RV20 decoder" status working fourcc RV20,rv20 driver ffmpeg dll rv20 out YV12,I420,IYUV videocodec rv20 info "Linux RealPlayer 8 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.so.6.0" out I420 videocodec rv20win info "Win32 RealPlayer 8 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv23260.dll" out I420 videocodec rv20mac info "Mac OS X RealPlayer 9 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.bundle/Contents/MacOS/drv2" out I420 videocodec ffrv10 info "FFmpeg RV10 decoder" status working fourcc RV10,rv10 fourcc RV13,rv13 driver ffmpeg dll rv10 out YV12,I420,IYUV ; others: videocodec alpary info "Alparysoft lossless codec dshow" status working fourcc ASLC driver dshow dll "aslcodec_dshow.dll" guid 0x7f9de066, 0xbf3d, 0x4c17, 0x86, 0xb7, 0x33, 0xe4, 0x3e, 0xbe, 0xae, 0xf0 out BGR24 flip videocodec alpary2 info "Alparysoft lossless codec vfw" status working fourcc ASLC driver vfw dll "aslcodec_vfw.dll" out BGR24 flip videocodec LEADMW20 info "Lead CMW wavelet 2.0" status working fourcc LCW2 driver dshow dll "LCODCCMW2E.dll"; eval also needs LCMW2.dll guid 0xe2b7dc56, 0x38c5, 0x11d5, 0x91, 0xf6, 0x00, 0x10, 0x4b, 0xdb, 0x8f, 0xf9 out BGR24,BGR8 flip videocodec ffvp3 info "FFmpeg VP3" status untested fourcc VP30,vp30,VP31,vp31 format 0x20335056 ; "VP3 " (used in .nsv files) driver ffmpeg dll "vp3" out YV12 videocodec fftheora info "FFmpeg Theora" status untested fourcc theo fourcc Thra theo format 0xFFFC driver ffmpeg dll "theora" out YV12 videocodec vp3 info "On2 Open Source VP3 Codec" status working comment "For SSE-systems use fixed DLL from ftp://mplayerhq.hu/MPlayer/samples/drivers32/" fourcc VP30,vp30,VP31,vp31 flags align16 driver vfwex dll "vp31vfw.dll" out YUY2 out BGR32,BGR24,BGR15 videocodec vp4 info "On2 VP4 Personal Codec" comment "Decodes also VP3" status working fourcc VP40 fourcc VP31,VP30,vp31,vp30 driver vfwex dll "vp4vfw.dll" out YUY2 out BGR32,BGR24 videocodec ffvp5 info "FFmpeg VP5 decoder" status working fourcc VP50 driver ffmpeg dll "vp5" out YV12 videocodec vp5 info "On2 VP5 Personal Codec" status working fourcc VP50 driver vfwex dll "vp5vfw.dll" out YUY2 out BGR32,BGR24 videocodec ffvp6 info "FFmpeg VP6 decoder" status working fourcc VP62 driver ffmpeg dll "vp6" out YV12 videocodec ffvp6f info "FFmpeg VP6 Flash decoder" status working fourcc VP6F driver ffmpeg dll "vp6f" out YV12 videocodec vp6 info "On2 VP6 Personal Codec" status working fourcc VP60,VP61,VP62 driver vfwex dll "vp6vfw.dll" out YUY2 out BGR32,BGR24 videocodec vp7 info "On2 VP7 Personal Codec" status working fourcc VP70 driver vfwex dll "vp7vfw.dll" out YUY2 out BGR32,BGR24 videocodec mwv1 info "Motion Wavelets" status working fourcc MWV1 driver vfw dll "icmw_32.dll" out BGR24,BGR15 flip videocodec asv2 info "ASUS V2" status working fourcc ASV2 driver vfw dll "asusasv2.dll" out UYVY out BGR32,BGR24,BGR15 flip videocodec asv1 info "ASUS V1" status working fourcc ASV1 driver vfw dll "asusasvd.dll" out UYVY out BGR32,BGR24,BGR15 flip videocodec ffultimotion info "IBM Ultimotion native decoder" status working fourcc ULTI driver ffmpeg dll "ultimotion" out YVU9 videocodec ultimotion info "IBM Ultimotion" status working fourcc ULTI driver vfw dll "ultimo.dll" out YUY2,UYVY out BGR32,BGR24,BGR15 flip videocodec mss1 info "Windows Screen Video" status working fourcc MSS1 driver dshow dll "msscds32.ax" guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24 out BGR32,BGR24,BGR16,BGR15 ; CLRVIDDC.DLL needed too, with uppercase videocodec ucod info "UCOD-ClearVideo" status working fourcc UCOD driver vfw dll "clrviddd.dll" out BGR32,BGR24,BGR15 flip videocodec vcr2 info "ATI VCR-2" status working fourcc VCR2 driver vfw dll "ativcr2.dll" out YV12 out BGR24 videocodec CJPG info "CJPG" status working fourcc CJPG driver vfw dll "CtWbJpg.DLL" out YUY2 out UYVY out BGR24,BGR15 videocodec ffduck info "Duck Truemotion1" status working fourcc DUCK driver ffmpeg dll "truemotion1" out BGR15,BGR16,BGR24,BGR32 query videocodec fftm20 info "FFmpeg Duck/On2 TrueMotion 2.0" status working fourcc TM20 driver ffmpeg dll truemotion2 out YV12 ; our BGR15->BGR32 is bad or the DLL? videocodec tm20 info "TrueMotion 2.0" status working comment "YUV faulting" fourcc TM20 driver dshow dll "tm20dec.ax" guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 out BGR32,BGR24,BGR16 flip videocodec ffsp5x info "SP5x codec - used by Aiptek MegaCam" status working fourcc SP53,SP54,SP55,SP56,SP57,SP58 driver ffmpeg dll "sp5x" out YV12 videocodec sp5x info "SP5x codec - used by Aiptek MegaCam" status working fourcc SP53,SP54,SP55,SP56,SP57,SP58 driver vfw dll "sp5x_32.dll" out BGR24,BGR15 flip videocodec vivd2 info "SoftMedia ViVD V2 codec VfW" status working fourcc GXVE,gxve driver vfw dll "ViVD2.dll" out YUY2,YV12,I420,YVU9 out BGR32,BGR24,BGR15 videocodec winx info "Winnov Videum winx codec" status working fourcc WINX driver vfwex dll "wnvwinx.dll" out BGR32,BGR24,BGR15 videocodec ffwnv1 info "FFmpeg wnv1 native codec" status working fourcc WNV1 driver ffmpeg dll wnv1 out 422P videocodec wnv1 info "Winnov Videum wnv1 codec" status working fourcc WNV1 driver vfwex dll "wnvplay1.dll" out BGR32,BGR24,BGR15 videocodec vdom info "VDOWave codec" status working fourcc VDOM driver vfw dll "vdowave.drv" ; Need also VDODEC32.dll and DECVW_32.DLL out BGR24 videocodec lsv info "Vianet Lsvx Video Decoder" status working fourcc lsvx fourcc lsvm fourcc lsvc driver vfw dll "lsvxdec.dll" out BGR32,BGR24,BGR16 flip videocodec ffvmnc info "FFmpeg VMware video" status working fourcc VMnc driver ffmpeg dll "VMware video" out BGR32,BGR15,BGR8 videocodec vmnc info "VMware video" status working fourcc VMnc driver vfw dll "vmnc.dll" out BGR24,BGR15,BGR8 query,flip videocodec ffsmkvid info "FFmpeg Smacker Video" status working fourcc SMK2 fourcc SMK4 out BGR8 driver ffmpeg dll "smackvid" ; only works with libavformat right now videocodec ffcavs info "Chinese AVS Video" status working fourcc CAVS driver ffmpeg dll "cavs" out I420 ; quicktime codecs: videocodec qt3ivx info "win32/quicktime 3IV1 (3ivx) decoder" status working fourcc 3IV1 driver qtvideo dll "3ivx Delta 3.5.qtx" out YUY2 videocodec qtavui info "Win32/QuickTime Avid Meridien Uncompressed" status working fourcc AVUI driver qtvideo dll "AvidQTAVUICodec.qtx" out YUY2 videocodec qth263 info "Win32/QuickTime H.263 decoder" status crashing fourcc h263 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtrlerpza info "Win32/Quicktime RLE/RPZA decoder" comment "no colorspace accepted" status crashing fourcc rpza format 0x20656C72 ; "rle " driver qtvideo dll "QuickTime.qts" out BGR32,BGR24,BGR15 videocodec qtvp3 info "Win32/QuickTime VP3 decoder" status crashing fourcc VP31 driver qtvideo dll "On2_VP3.qtx" out YUY2 videocodec qtzygo info "win32/quicktime ZyGo decoder" status buggy comment "wrong colors" fourcc ZyGo,zygo,lsvx driver qtvideo dll "ZyGoVideo.qtx" out BGR32,RGB32 videocodec qtbhiv info "Win32/QuickTime BeHereiVideo decoder" comment "sample file wanted!" status untested fourcc bhiv driver qtvideo dll "BeHereiVideo.qtx" out YUY2 videocodec qtcvid info "Win32/QuickTime Cinepak decoder" status working fourcc cvid driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtindeo info "Win32/QuickTime Indeo decoder" status crashing fourcc IV31,iv31 fourcc IV32,iv32 fourcc IV41 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtmjpeg info "Win32/QuickTime MJPEG decoder" status crashing fourcc dmb1 fourcc mjpa fourcc mjpb driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtmpeg4 info "Win32/QuickTime MPEG-4 decoder" status crashing fourcc mp4v driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtsvq3 info "Win32/QuickTime SVQ3 decoder" status working fourcc SVQ3 driver qtvideo dll "QuickTimeEssentials.qtx" out YUY2 videocodec qtsvq1 info "Win32/QuickTime SVQ1 decoder" status buggy fourcc SVQ1 driver qtvideo dll "QuickTime.qts" out YVU9 ; VSS codecs (http://vsofts.com/solutions.html): videocodec vsslight info "VSS Codec Light" status working fourcc VSSV driver vfw dll "vsslight.dll" out BGR24 flip videocodec vssh264 info "VSS H.264 New" status working fourcc VSSH driver dshow dll "vsshdsd.dll" guid 0x6931C7e7, 0x75b7, 0x4729, 0xa1, 0x53, 0xa8, 0xad, 0x99, 0xbd, 0xf7, 0x0b out YV12 videocodec vssh264old info "VSS H.264 Old" status working fourcc VSSH driver vfw dll "vssh264.dll" ; need also vssh264core.dll, vssh264dec.dll out BGR24 flip videocodec vsswlt info "VSS Wavelet Video Codec" status working fourcc VSSW driver vfw dll "vsswlt.dll" out BGR24 flip ; buggy codecs: (any volunteers for native rewrite?) videocodec zlib info "AVIzlib" status working comment "24bpp only" fourcc ZLIB driver vfw dll "avizlib.dll" out BGR24 flip videocodec mszh info "AVImszh" status working comment "24bpp only" fourcc MSZH driver vfw dll "avimszh.dll" ; out YUY2 ; out BGR32,BGR24,BGR15 out BGR24 videocodec alaris info "Alaris VideoGramPiX" ; http://www.alaris.com/movies/toocool.vgm ; Martin Schuster status crashing comment "only produces strange patterns" fourcc VGPX,VTLP VGPX driver vfwex dll "vgpix32d.dll" out UYVY out BGR24 ; non-working codecs: videocodec vcr1 info "ATI VCR-1" status crashing fourcc VCR1 driver vfw dll "ativcr1.dll" out RGB24 flip videocodec pim1 info "Pinnacle Hardware MPEG-1" status crashing comment "no picture. use ffmpeg12!" fourcc PIM1 driver vfw dll "pclepim1.dll" out BGR24 flip ; out I420 ; out YUY2 ; out BGR32,BGR24,BGR16,BGR15 videocodec qpeg info "Q-Team's QPEG (www.q-team.de)" status working comment "BGR8 only!" fourcc Q1.0,QPEG fourcc Q1.1,qpeq driver vfw dll "qpeg32.dll" out BGR8 flip videocodec rricm info "rricm" status crashing fourcc dmb1 driver vfw dll "rricm.dll" out YUY2 out BGR24 flip videocodec ffcamtasia info "TechSmith Camtasia Screen Codec (native)" status working fourcc TSCC,tscc driver ffmpeg dll "camtasia" out BGR32,BGR24,BGR15,BGR8 query ; sample videos: http://www.techsmith.com/products/camtasia/examplevideos.asp videocodec camtasia info "TechSmith Camtasia Screen Codec" status working fourcc TSCC,tscc driver vfw dll "tsccvid.dll" out BGR32,BGR24,BGR15,BGR8 query,flip videocodec ffcamstudio info "CamStudio Screen Codec" status working fourcc CSCD,cscd driver ffmpeg dll "camstudio" out BGR32,BGR24,BGR16 query ; Fraps - Realtime Video Capture - http://www.fraps.com/ videocodec fraps info "FRAPS: Realtime Video Capture" comment "Requires a processor with SSE???" status working fourcc FPS1,fps1 driver vfw dll "frapsvid.dll" out BGR32 flip ; raw formats: (now RGB formats are autodetected) ; these raw codecs are used mostly by TV input ; 0x20776172 is used by Quicktime ('raw ') ; 0x0 is used by AVI ; YV12,RGB|32,RGB|24.. is created by MPlayer videocodec rawrgb32 info "RAW RGB32" status working driver raw format 0x0 format 0x20776172 format 0x52474220 out RGB32 videocodec rawrgb24 info "RAW RGB24" status working driver raw format 0x0 format 0x20776172 format 0x52474218 out RGB24 videocodec rawrgb16 info "RAW RGB16" status working driver raw format 0x0 format 0x20776172 format 0x52474210 out RGB16 videocodec rawbgr32flip info "RAW BGR32" status working driver raw format 0x0 out BGR32 flip videocodec rawbgr32 info "RAW BGR32" status working driver raw format 0x0 format 0x42475220 out BGR32 videocodec rawbgr24flip info "RAW BGR24" status working driver raw format 0x0 out BGR24 flip videocodec rawbgr24 info "RAW BGR24" status working driver raw format 0x0 format 0x20776172 format 0x42475218 out BGR24 videocodec rawbgr16flip info "RAW BGR15" status working driver raw format 0x0 out BGR16 flip videocodec rawbgr16 info "RAW BGR15" status working driver raw format 0x0 format 0x20776172 format 0x42475210 out BGR16 videocodec rawbgr15flip info "RAW BGR15" status working driver raw format 0x0 out BGR15 flip videocodec rawbgr15 info "RAW BGR15" status working driver raw format 0x0 format 0x20776172 format 0x4247520F out BGR15 videocodec rawbgr8flip info "RAW BGR8" status working driver raw format 0x0 out BGR8 flip videocodec rawbgr8 info "RAW BGR8" status working driver raw format 0x0 format 0x20776172 format 0x42475208 out BGR8 videocodec rawbgr1 info "RAW BGR1" status working driver raw format 0x0 format 0x20776172 format 0x42475201 out BGR1 flip videocodec rawyuy2 info "RAW YUY2" status working driver raw format 0x0 0x32595559 format 0x20776172 fourcc yuy2,YUY2 out YUY2 videocodec rawuyvy info "RAW UYVY" status working driver raw format 0x0 0x59565955 format 0x20776172 fourcc uyvy,UYVY out UYVY videocodec raw444P info "RAW 444P" status working driver raw format 0x0 0x50343434 format 0x20776172 fourcc 444p,444P out 444P videocodec raw422P info "RAW 422P" status working driver raw format 0x0 0x50323234 format 0x20776172 fourcc 422p,422P out 422P videocodec rawyv12 info "RAW YV12" status working driver raw format 0x0 0x32315659 format 0x20776172 fourcc yv12,YV12 out YV12 videocodec rawnv21 info "RAW NV21" status working driver hmblck format 0x0 0x3132564E format 0x20776172 fourcc nv21,NV21 out YV12 videocodec rawnv12 info "RAW NV12" status working driver hmblck format 0x0 0x3231564E format 0x20776172 fourcc nv12,NV12 out YV12 videocodec rawhm12 info "RAW HM12" status working driver hmblck format 0x0 0x32314D48 format 0x20776172 fourcc hm12,HM12 out YV12 videocodec rawi420 info "RAW I420" status working driver raw format 0x0 0x30323449 format 0x20776172 fourcc i420,I420 fourcc IYUV,iyuv out I420,IYUV videocodec rawyvu9 info "RAW YVU9" status working driver raw format 0x0 0x39555659 format 0x20776172 fourcc yvu9,YVU9 out YVU9 videocodec rawy800 info "RAW Y8/Y800" status working driver raw format 0x0 format 0x20203859 ; "Y8 " fourcc y800,Y800 out Y800,Y8 ; NULL codec - for testing. videocodec null info "NULL codec (no decoding!)" status crashing comment "for unknown/unsupported codecs or testing" driver null out YV12 out I420 out YUY2 out UYVY out YVU9 out BGR32,BGR24,BGR16,BGR15 ;============================================================================= ; AUDIO CODECS ;============================================================================= audiocodec wma9dmo info "Windows Media Audio 9 DMO" status working format 0x162 format 0x163 driver dmo dll "wma9dmod.dll" guid 0x27ca0808, 0x01f5, 0x4e7a, 0x8b, 0x05, 0x87, 0xf8, 0x07, 0xa2, 0x33, 0xd1 audiocodec wmadmo info "Windows Media Audio DMO" status working format 0x160 format 0x161 format 0x162 format 0x163 driver dmo dll "wmadmod.dll" guid 0x2eeb4adf, 0x4578, 0x4d10, 0xbc, 0xa7, 0xbb, 0x95, 0x5f, 0x56, 0x32, 0x0a audiocodec wma9spdmo info "Windows Media Audio 9 Speech DMO" status working format 0xa driver dmo dll "wmspdmod.dll" guid 0x874131cb, 0x4ecc, 0x443b, 0x89, 0x48, 0x74, 0x6b, 0x89, 0x59, 0x5d, 0x20 audiocodec wma9spdshow info "Windows Media Audio 9 Speech DShow" status buggy format 0xa driver dshow dll "wmavds32.ax" guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad audiocodec ffqdm2 info "FFmpeg QDM2 audio decoder" status working format 0x324D4451 ; "QDM2" driver ffmpeg dll "qdm2" audiocodec qdmc info "QuickTime QDMC/QDM2 audio decoders" status working format 0x324D4451 ; "QDM2" format 0x434D4451 ; "QDMC" driver qtaudio dll "QuickTime.qts" audiocodec qclp info "QuickTime QCLP audio decoder" status working format 0x706C6351 ; "QCLP" driver qtaudio dll "QuickTime.qts" audiocodec qtmace3 info "QuickTime MACE3 audio decoder" status working format 0x3343414D ; "MAC3" driver qtaudio dll "QuickTime.qts" audiocodec qtmace6 info "QuickTime MACE6 audio decoder" status working format 0x3643414D ; "MAC6" driver qtaudio dll "QuickTime.qts" audiocodec ffra144 info "FFmpeg RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver ffmpeg dll "real_144" audiocodec ffra288 info "FFmpeg RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver ffmpeg dll "real_288" audiocodec ffcook info "FFmpeg COOK audio decoder" status working format 0x6B6F6F63 ; "cook" driver ffmpeg dll "cook" audiocodec ra144 info "RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_4.so.6.0" audiocodec ra144win info "Win32 RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_43260.dll" audiocodec ra144mac info "Mac OS X RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_4.shlb" audiocodec ra288 info "RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_8.so.6.0" audiocodec ra288win info "Win32 RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_83260.dll" audiocodec ra288mac info "Mac OS X RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_8.shlb" audiocodec ra10cook info "RealPlayer 10 COOK audio" comment "supports cook 5.1" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.so" audiocodec racook info "RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.so.6.0" audiocodec racookwin info "Win32 RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook3260.dll" audiocodec racookmac info "Mac OS X RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.bundle/Contents/MacOS/cook" audiocodec rasipr info "RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.so.6.0" audiocodec ra10sipr info "RealPlayer 10 RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.so" audiocodec rasiprwin info "Win32 RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr3260.dll" audiocodec rasiprmac info "Mac OS X RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.bundle/Contents/MacOS/sipr" audiocodec raatrc info "RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.so.6.0" audiocodec ra10atrc info "RealPlayer 10 RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.so" audiocodec raatrcwin info "Win32 RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc3260.dll" audiocodec raatrcmac info "Mac OS X RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.bundle/Contents/MacOS/atrc" audiocodec imaadpcm info "IMA ADPCM" status working format 0x11 format 0x34616d69 ; "ima4" (MOV files) format 0x1100736d ; "ms\x00\x11" (MOV files) driver imaadpcm audiocodec msadpcm info "MS ADPCM" status working format 0x2 format 0x0200736d ; "ms\x00\x02" (MOV files) driver msadpcm audiocodec dk4adpcm info "Duck DK4 ADPCM (rogue format number)" status working format 0x61 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver imaadpcm audiocodec dk3adpcm info "Duck DK3 ADPCM (rogue format number)" status working format 0x62 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver dk3adpcm audiocodec ffroqaudio info "Id RoQ File Audio Decoder" status working fourcc RoQA ; RoQA is an internal MPlayer FOURCC driver ffmpeg dll "roq_dpcm" audiocodec ffsmkaud info "FFmpeg Smacker Audio" status buggy fourcc SMKA driver ffmpeg dll "smackaud" audiocodec libdv info "raw DV audio decoder (libdv)" status working fourcc RADV driver libdv dll libdv.so.2 audiocodec ffdv info "FFmpeg DV audio decoder" status working fourcc RADV driver ffmpeg dll "dvaudio" audiocodec faad info "FAAD AAC (MPEG-2/MPEG-4 Audio) decoder" status working fourcc mp4a,MP4A fourcc "AAC " ; Used in NSV fourcc "AACP" ; Used in NSV for AACPlus format 0xff format 0x706D driver faad dll libfaad2 audiocodec ffflac info "FFmpeg FLAC audio decoder" status working format 0x43614C66 format 0xF1AC driver ffmpeg dll "flac" audiocodec ffalac info "FFmpeg ALAC audio decoder" status working fourcc alac driver ffmpeg dll "alac" audiocodec fftta info "FFmpeg True Audio (TTA) decoder" status working fourcc TTA1 driver ffmpeg dll "tta" audiocodec ffwavpack info "FFmpeg WavPack audio decoder" status working fourcc WVPK driver ffmpeg dll "wavpack" audiocodec ffshorten info "FFmpeg Shorten audio decoder" status working fourcc shrn driver ffmpeg dll "shorten" audiocodec pcm info "Uncompressed PCM" status working format 0x0 format 0x1 format 0x3 ; IEEE float format 0xfffe ; Extended format 0x20776172 ; "raw " (MOV files) format 0x736f7774 ; "twos" (MOV files) format 0x74776f73 ; "sowt" (MOV files) format 0x32336c66 ; "fl32" (MOV files) format 0x666c3332 ; "23lf" (MOV files) ; format 0x34366c66 ; "fl64" (MOV files) ; format 0x666c3634 ; "46lf" (MOV files) format 0x454e4f4e ; "NONE" (MOV files from Kodak CX6320) format 0x34326e69 ; "in24" (MOV files) format 0x696e3234 ; "42ni" (MOV files) format 0x32336e69 ; "in32" (MOV files) format 0x696e3332 ; "23ni" (MOV files) ;;;; these are for hardware support only: (alaw,ulaw,ima-adpcm,mpeg,ac3) ; format 0x6 ; format 0x7 ; format 0x11 ; format 0x50 ; format 0x2000 ;;;; driver pcm audiocodec divx info "DivX audio (WMA)" status working format 0x160 format 0x161 driver acm dll "divxa32.acm" audiocodec msadpcmacm info "MS ADPCM" status working format 0x2 driver acm dll "msadp32.acm" audiocodec mp3 info "mp3lib MPEG layer-2, layer-3" status working comment "Optimized to MMX/SSE/3Dnow!" format 0x50 ; layer-1 && layer-2 format 0x55 ; layer-3 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver mp3lib audiocodec ffpcmdaud info "D-Cinema audio (FFmpeg)" status untested fourcc "daud" driver ffmpeg dll "pcm_s24daud" audiocodec ffwmav1 info "DivX audio v1 (FFmpeg)" status untested format 0x160 driver ffmpeg dll "wmav1" audiocodec ffwmav2 info "DivX audio v2 (FFmpeg)" status untested format 0x161 driver ffmpeg dll "wmav2" audiocodec ffmac3 info "Macintosh Audio Compression and Expansion 3:1" status untested fourcc "MAC3" driver ffmpeg dll "mace3" audiocodec ffmac6 info "Macintosh Audio Compression and Expansion 6:1" status untested fourcc "MAC6" driver ffmpeg dll "mace6" audiocodec ffsonic info "FFmpeg Sonic" status untested fourcc SONC format 0x2048 driver ffmpeg dll "sonic" audiocodec ffmp3on4 info "FFmpeg Multi-channel MPEG layer-3 on MP4 audio decoder" status working format 0x1d61346d ; 'm','4','a',29 internal MPlayer fourcc driver ffmpeg dll "mp3on4" audiocodec ffmp3 info "FFmpeg MPEG layer-3 audio decoder" comment "integer only" status working format 0x55 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver ffmpeg dll "mp3" audiocodec ffmp3adu info "FFmpeg MPEG layer-3 adu audio decoder" comment "integer only" status working format 0x55756461 ; 'a','d','u',0x55 internal MPlayer fourcc driver ffmpeg dll "mp3adu" audiocodec ffmp2 info "FFmpeg MPEG layer-1 and layer-2 audio decoder" comment "integer only" status working format 0x50 driver ffmpeg dll "mp2" audiocodec mad info "libMAD MPEG layer 1-2-3" status working format 0x50 format 0x55 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver libmad dll "libmad" audiocodec mp3acm info "MPEG layer-3" status working comment "conflicts with security kernel patches" format 0x55 driver acm dll "l3codeca.acm" audiocodec imaadpcmacm info "IMA ADPCM" status working format 0x11 driver acm dll "imaadp32.acm" audiocodec msgsm info "MS GSM" status working format 0x31 format 0x32 fourcc agsm driver msgsm audiocodec msgsmacm info "MS GSM" status working format 0x31 ; format 0x32 driver acm dll "msgsm32.acm" audiocodec msnaudio info "MSN AUDIO" status working ; format 0x31 format 0x32 driver acm dll "msnaudio.acm" audiocodec alaw info "aLaw" status working format 0x6 format 0x77616C61 ; 'alaw', .mov files driver alaw audiocodec ulaw info "uLaw" status working format 0x7 format 0x77616c75 ; "ulaw" (MOV files) driver alaw audiocodec dvdpcm info "Uncompressed DVD/VOB LPCM" status working format 0x10001 driver dvdpcm audiocodec a52 info "AC3-liba52" status working format 0x2000 fourcc dnet driver liba52 dll "liba52" audiocodec ac3 info "AC3-libac3" comment "removed from MPlayer, use liba52" status working format 0x2000 fourcc dnet driver libac3 dll "libac3" audiocodec ffdts info "DTS" status working format 0x2001 driver ffmpeg dll "dts" audiocodec musepack info "Musepack audio codec" status working fourcc "MPC " format 0x2b4d driver mpcdec audiocodec ffamrnb info "AMR Narrowband" status working fourcc samr driver ffmpeg dll "amr_nb" audiocodec ffamrwb info "AMR Wideband" status working fourcc sawb driver ffmpeg dll "amr_wb" audiocodec ffadcpmswf info "FFmpeg's ADPCM Flash-variant" status working format 0x5346 ; 'SF', pseudo id driver ffmpeg dll "adpcm_swf" audiocodec voxware info "VoxWare" status working format 0x75 driver dshow dll "voxmsdec.ax" ; need also msms001.vwp guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d audiocodec acelp info "ACELP.net Sipro Lab Audio Decoder" status working format 0x130 driver dshow dll "acelpdec.ax" guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 audiocodec imc info "Intel Music Coder" status working comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip" format 0x401 driver acm dll "imc32.acm" audiocodec iac25 info "Indeo audio" status working format 0x402 driver acm dll "iac25_32.ax" audiocodec ffctadp32 info "Creative ADPCM native codec" status working format 0x200 driver ffmpeg dll "adpcm_ct" audiocodec ctadp32 info "Creative ADPCM codec" status working format 0x200 driver acm dll "ctadp32.acm" audiocodec sc4 info "SC4 : Micronas speech codec (ADPCM, MPman recording)" status working format 0x350 driver acm dll "mi-sc4.acm" audiocodec hwac3 info "AC3 through S/PDIF" status working format 0x2000 fourcc dnet driver hwac3 audiocodec hwdts info "DTS through S/PDIF" status working format 0x2001 driver hwac3 audiocodec ffvorbis info "FFmpeg Vorbis decoder" status working fourcc vrbs format 0x566F driver ffmpeg dll "vorbis" audiocodec vorbis info "OggVorbis Audio Decoder" status working comment "OggVorbis driver using libvorbis" fourcc vrbs format 0x566F driver libvorbis dll "libvorbis" ; acm codec doesn't work, haven't tried zorannt dshow codec ; driver acm ; dll "vorbis.acm" audiocodec speex info "Speex Audio Decoder" status working comment "Speex driver using libspeex" fourcc 'spx ' driver speex dll "speex" audiocodec vivoaudio info "Vivo G.723/Siren Audio Codec" status working format 0x111 ; vivo g.723 format 0x112 ; siren driver acm dll "vivog723.acm" audiocodec g72x info "G.711/G.721/G.723" status crashing comment "does not work yet - just noise :(" format 0x111 ; vivo g.723 format 0x112 ; vivo siren driver g72x dll "g72x.c" audiocodec ffg726 info "Sharp G.726 Audio" status working format 0x45 driver ffmpeg dll "g726" audiocodec g726 info "Sharp G.726 Audio" status untested format 0x45 driver acm dll "scg726.acm" audiocodec atrac3 info "Sony ATRAC3" status buggy comment "format not accepted" format 0x270 driver acm dll "atrac3.acm" audiocodec ALF2 ; http://www.nctsoft.com/products/NCTALFCD/ ; jdp@mail.sonofon.dk info "ALF2" status working format 0x1FC4 ; ALF2 driver acm dll "alf2cd.acm" audiocodec fftruespeech info "FFmpeg TrueSpeech" status working format 0x22 driver ffmpeg dll "truespeech" audiocodec truespeech info "DSP Group TrueSpeech(TM)" status working format 0x22 driver acm dll "tssoft32.acm" ; need also tsd32.dll ; rt32dcmp.dll needed too audiocodec voxwarert24 info "VoxWare RT24 speech codec" status working format 0x181c driver acm dll "nsrt2432.acm" audiocodec lhacm info "Lernout & Hauspie CELP and SBC codecs" status working format 0x1101 ; CELP format 0x1102 ; SBC format 0x1103 ; SBC format 0x1104 ; SBC driver acm dll "lhacm.acm" audiocodec TwinVQ info "VQF codec by NTTLabs" status working fourcc TWIN driver vqf dll "tvqdec.dll" audiocodec hwmpa info "MPEG audio pass-through for hardware MPEG decoders" status working comment "for hardware MPEG audio decoders" format 0x50 ; layer-1 && layer-2 format 0x55 ; layer-3 format 0x5500736d ; "ms\0\x55" older MP3 fourcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver hwmpa geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/dvd0000644000175000017500000000010110561133274017330 0ustar benben# Configure system to active the DVD navigation menu. DVDNAV=no geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/radio0000644000175000017500000000027010561133274017660 0ustar benben# # Radio Options RADIO=no # # Radio Channels # Syntax : CHAN="Channel Frequency:Channel Title" # Example: #CHAN="91.5:CBC Radio 1" #CHAN="106.1:CHEZ" #CHAN="94.9:CIMF Rock Detente" geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lang0000644000175000017500000000000310561133300017463 0ustar benbenen geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/subfont0000644000175000017500000000001310561133300020223 0ustar benbeniso-8859-1 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/keymaps/0000755000175000017500000000000010561133300020277 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/keymaps/azerty0000644000175000017500000000540710561133300021546 0ustar benbenbkeymap&"'(-_)= a z e r t y u i o p $q s d f g h j k l m *w x c v b n ,;:!*   789-456+1230.*<  /  1234567890+ A Z E R T Y U I O P Q S D F G H J K L M %W X C V B N ?./             ,>  /    ~#{[|\^@]}        |/        "#$%&'()*+   ,-/      ./01234567   89   ~         /   1234567890)=qwertyuiop[] asdfghjkl;'`\zxcvbnm,./       -   +   <  /\  ~&~"'(-`_^@]+ QWERTYUIOP{}ASDFGHJKL|ZXCVBNM<>     /  ~qwertyuiopasdfghjklzxcvbnm                       /   geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/keymaps/qwertz0000644000175000017500000000540710561133300021564 0ustar benbenbkeymap1234567890' q w e r t z u i o p +a s d f g h j k l ^#y x c v b n m ,.-       <     !"$%&/()=?` Q W E R T Z U I O P *A S D F G H J K L 'Y X C V B N M ;:_       > !     {[]}\@w r t z u i o p ~a s d f g h j k l ^y x v b n -            |          "#$%&'()*+   ,-             ~               1234567890 qwertzuiop+ asdfghjkl#yxcvbnm,.-            <     ~!"$%&/()=?` QWERTZUIOP*ASDFGHJKL'YXCVBNM;:_     >   ~{[]}\@wertzuiopasdfghjklyxcvbnm     |                      geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lang.funcs0000644000175000017500000000222710561133300020612 0ustar benben#!/bin/sh simplifylang() { local i tmp for i in $LANGUAGES; do eval tmp=\$${i}_name if [ "$1" = "$i" -o "$1" = "$tmp" ]; then echo $i return fi done } lang2charset() { local i lang charset=$1 if [ -z "$charset" ]; then if [ -n "$MENU_LANG" ]; then charset="$MENU_LANG" else charset="$DEFAULT_LANGUAGE" fi fi lang=`simplifylang $charset` if [ -n "$lang" ]; then eval charset=\$${lang}_charset fi for i in $CHARSETS; do if [ "$charset" = "$i" ]; then echo $charset return fi done echo "ERROR: Couldn't find a matching charset for '$1'." 1>&2 } lang2font() { local i tmp charset charset=`lang2charset $1` charset=`echo "$charset" | sed s%-%_%g` for i in ${charset}_${2}font ${charset}_font DEFAULT_FONT; do eval tmp=\$$i if [ -n "$tmp" ]; then echo $tmp return fi done } fribidi_mp_set_option() { local tmp name name=`echo $1 | sed s%-%_%g` eval tmp=\$${name}_fribidi if [ -n "$tmp" ]; then mp_set_option "${2}flip-hebrew" 1 mp_set_option "${2}fribidi-charset" "$tmp" else mp_set_option "${2}flip-hebrew" 0 fi } geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lcd4linux.conf0000644000175000017500000001001310561133301021377 0ustar benbenDisplay BWCT { Driver 'BWCT' Size 'LCD_WIDTHxLCD_HEIGHT' Contrast 30 asc255bug 1 Icons 1 } Display CF631 { Driver 'Crystalfontz' Model '631' Port '/dev/tts/USB0' Speed 115200 Contrast 95 Backlight 255 Icons 1 } Display CF632 { Driver 'Crystalfontz' Model '632' Port '/dev/tts/0' Speed 19200 Icons 1 } Display CF633 { Icons 4 Driver 'Crystalfontz' Model '633' Port '/dev/tts/0' Speed 19200 Contrast 16 Backlight 50 } Display CT20x4 { Driver 'Beckmann+Egle' Model 'CT20x4' Port '/dev/tts/0' Size 'LCD_WIDTHxLCD_HEIGHT' # Contrast 7 # Backlight 1 Icons 1 } Display CW12232 { Driver 'Cwlinux' Model 'CW12232' Port '/dev/usb/tts/0' Speed 19200 Brightness 2 Icons 1 } # generic HD44780 display (LCD4Linux wiring) Display HD44780-generic { Driver 'HD44780' Model 'generic' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Wire { RW 'GND' RS 'AUTOFD' ENABLE 'STROBE' ENABLE2 'GND' GPO 'INIT' } } Display HD44780-I2C { Driver 'HD44780' Model 'generic' Bus 'i2c' Port '/dev/i2c-0' Device '70' Bits '4' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 Wire { RW 'DB5' RS 'DB4' ENABLE 'DB6' GPO 'GND' } } # HD44780 display from www.kernelconcepts.de Display HD44780-kernelconcepts { Driver 'HD44780' Model 'HD66712' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' Wire { RW 'AUTOFD' RS 'INIT' ENABLE 'STROBE' ENABLE2 'GND' GPO 'GND' } } # generic HD44780 display (WinAmp wiring) Display HD44780-winamp { Driver 'HD44780' Model 'generic' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' Wire { RW 'AUTOFD' RS 'INIT' ENABLE 'STROBE' ENABLE2 'GND' GPO 'GND' } } Display LCDTerm { Driver 'LCDTerm Port '/dev/tts/0' Speed 19200 Size 'LCD_WIDTHxLCD_HEIGHT' Icons 1 } Display LCM-162 { Driver 'HD44780' Model 'LCM-162' # Bus 'parport' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 } Display LK204 { Driver 'MatrixOrbital' Model 'LK204-24-USB' Port '/dev/usb/tts/0' # Port '/dev/tts/0' Speed 19200 Contrast 256/2 } Display M50530-24x8 { Driver 'M50530' Port '/dev/parport0' # Port '0x378' Size 'LCD_WIDTHxLCD_HEIGHT' Font '5x7' Duty 2 Wire.EX 'STROBE' Wire.IOC1 'SLCTIN' Wire.IOC2 'AUTOFD' Wire.GPO 'INIT' } Display MI240 { Driver 'MilfordInstruments' Model 'MI240' Port '/dev/tts/0' Speed 19200 } Display SC1602D { Driver 'HD44780' Port '/dev/parport0' Bits '8' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 Wire { RW 'GND' RS 'AUTOFD' ENABLE 'STROBE' GPO 'INIT' } } Display SerDispLib { Driver 'serdisplib' Port 'PAR:/dev/parport0' #Port '/dev/tts/0' Model 'OPTREX323' Options '' } Display SimpleLCD { Driver 'SimpleLCD' Port '/dev/tts/0' Speed 1200 Options 0 Size 'LCD_WIDTHxLCD_HEIGHT' } Display T6963-240x64 { Driver 'T6963' Port '/dev/parports/0' Size '240x64' Wire.CE 'STROBE' Wire.CD 'SLCTIN' Wire.RD 'AUTOFD' Wire.WR 'INIT' } Display Trefon { Driver 'TREFON' Size 'LCD_WIDTHxLCD_HEIGHT' Backlight 1 Icons 1 } Display USBLCD { Driver 'USBLCD' # Port '/dev/lcd0' Port 'libusb' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 1 Icons 1 } Variables { tick 500 } Widget MPlayerFileName { class 'Text' expression mplayer('ID_FILENAME') width LCD_WIDTH align 'M' speed 400 update tick } Widget MPlayerTimeBar { class 'Bar' expression mplayer('ID_VIDEO_PERCENT') length LCD_WIDTH max 100 direction 'E' update 100 } Layout MPlayer { Row1 { Col1 'MPlayerFileName' } Row2 { Col1 'MPlayerTimeBar' } } Layout 'MPlayer' geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/lcddisplay0000644000175000017500000000010210561133301020673 0ustar benbenLCD_ENABLED=no LCD_MODEL=HD44780-winamp LCD_WIDTH=16 LCD_HEIGHT=2 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/network0000644000175000017500000000213310561133303020244 0ustar benben# System's Network Configuration PHY_TYPE="auto" # Network physical type (auto|ethernet|wifi) WIFI_MODE="managed" # Wifi working mode (managed|ad-hoc) WIFI_ENC="WEP" # Wifi Encryption method (WEP|WPA|none) WIFI_KEY="" # Wifi WEP/WPA key WIFI_ESSID="any" # Wifi SSID WPA_DRV="wext" # WPA driver (wext|atmel) HOST="" # GeeXboX IP ("" for DHCP) SUBNET="" # GeeXboX Subnet mask ("" for DHCP) GATEWAY="" # Gateway IP ("" for DHCP or no internet connection) DNS_SERVER="" # DNS Server IP ("" for DHCP or none) SMB_USER="SHARE" # User Login ("" for none) SMB_PWD="" # User Password ("" for none) # Services to be started at boot time TELNET_SERVER="no" FTP_SERVER="no" HTTP_SERVER="no" # Use UPnP MediaServer devices auto-discovery UPNP="yes" # Network Stream ICECAST="no" SHOUTCAST="no" # WARNING: SHOUTcast TV may contain streams with adult content! SHOUTCASTTV="no" WHITELIST="" BLACKLIST="adult porn xxx ESS SWCTV SWPTV Subscription" TIMEOUT=5 TRIES=10 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/nfs0000644000175000017500000000025310561133301017340 0ustar benben# # Here you can add some NFS mountpoints which will be automatically # mounted at boot time. # # example : # SERVER:DIR MOUNTPOINT_NAME # 192.168.0.1:/home home geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/netstream0000644000175000017500000000164410561133301020561 0ustar benben# # Network Stream Options # # Network Stream Online Listings SHOUTCAST_URI="http://www.shoutcast.com/sbin/newxml.phtml?genre=Top500" SHOUTCASTTV_URI="http://www.shoutcast.com/sbin/newtvlister.phtml" SHOUTCASTTUNE_URI="http://www.shoutcast.com/sbin/tunein-station.pls" ICECAST_URI="http://dir.xiph.org/yp.xml" # Network Extended M3U Playlist Stream Online Listings # Syntax : EXTM3U="URI":Name # Example (this URI example for France and with LIVE555 support only!) #EXTM3U="http://mafreebox.freebox.fr/freeboxtv/playlist.m3u":FreeboxTV # Network Stream URI # Syntax : STREAM="URI":Name # Example: #STREAM="http://66.230.159.66:8765":Bandit Radio # # If the URI contains a date, to replace there: # http://viptf1.yacast.net/tf1jt/jt13d31121999.asf # By: # http://viptf1.yacast.net/tf1jt/jt13d%DD%MM%YY.asf # # year 4 digits (1999) = %YY # year 2 digits (99) = %yy # month (12) = %MM # day (31) = %DD # geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/issue0000644000175000017500000000002310561133301017675 0ustar benbenWelcome to GeeXboX geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/bftpd.conf0000644000175000017500000000022110561133301020570 0ustar benbenglobal { PORT="21" HELLO_STRING="Welcome to GeeXboX's FTP Server." AUTO_CHDIR="/" DO_CHROOT="no" RATIO="none" ANONYMOUS_USER="yes" } geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/dxr30000644000175000017500000000203510561133303017434 0ustar benben# Below are the default GeeXboX settings for the adv717x and em8300 # modules: ADV717X_OPTS="pixelport_16bit=0" EM8300_OPTS="" # Other settings that have been reported # (http://dxr3.sourceforge.net/) to commonly fix the "green screen" # or "only 1/2 screen" problems for many users are included below- # remove the "#" before the $ symbol to activate a given setting: ## Option 1 ## #ADV717X_OPTS="pixelport_16bit=1 pixelport_other_pal=1" #EM8300_OPTS="dicom_fix=1 dicom_control=1 dicom_other_pal=1" ## Option 2 ## #ADV717X_OPTS="pixelport_16bit=0 pixelport_other_pal=0" #EM8300_OPTS="dicom_fix=1 dicom_control=1 dicom_other_pal=0" ## Option 3 ## #ADV717X_OPTS="pixelport_16bit=0 pixelport_other_pal=1" #EM8300_OPTS="dicom_fix=1 dicom_control=1 dicom_other_pal=1" ## Option 4 ## #ADV717X_OPTS="pixelport_16bit=1 pixelport_other_pal=0" #EM8300_OPTS="dicom_fix=0 dicom_control=0 dicom_other_pal=0" # If none of these options work for you, you can try other combinations # based on the information: # http://dxr3.sourceforge.net/howto.html#modparam geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/pvr0000644000175000017500000000160410561133303017364 0ustar benben# Below are the default GeeXboX input/encoding settings for the PVR cards # See MPlayer man pages for more details # Aspect ratio (0 for 1:1, 1 for 4:3, 2 for 16:9 and 3 for 2.21:1) PVR_ASPECT=1 # Encoding audio rate (32000, 44100 and 48000 Hz) PVR_AUDIO_RATE=48000 # MPEG audio layer encoding (1, 2, 3) PVR_AUDIO_LAYER=2 # Audio encoding bitrate in kbps PVR_AUDIO_BITRATE=384 # Audio encoding mode (stereo, joint_stereo, dual and mono) PVR_AUDIO_MODE=stereo # Average video bitrate encoding in Mbps PVR_VIDEO_BITRATE=6 # Peak video bitrate encoding in Mbps PVR_VIDEO_PEAK_BITRATE=9 # Video encoding mode (vbr, cbr) PVR_VIDEO_MODE=vbr # MPEG encoding format # ps: MPEG-2 Program Stream (default) # ts: MPEG-2 Transport Stream # mpeg1: MPEG-1 System Stream # vcd: Video CD compatible stream # svcd: Super Video CD compatible stream # dvd: DVD compatible stream PVR_VIDEO_FORMAT=ps geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/img_ext0000644000175000017500000000004110561133303020203 0ustar benbenbmp gif jpeg jpg pcd png pnm ppm geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/view_img_timeout0000644000175000017500000000000310561133303022121 0ustar benben10 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/etc/version0000644000175000017500000000000710561133343020242 0ustar benben1.1rc1 geexbox-generator-1.1rc1.i386/iso/GEEXBOX/codecs/0000755000175000017500000000000010561133267017327 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/firmwares/0000755000175000017500000000000010561133303020055 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/firmwares/em8300.bin0000644000175000017500000006315610561133303021476 0ustar benben:3hUS  E] 'Ne 7Wm H`uE]:vW< OO`p@ f"""3"3#D3D3`4xV8@4I_R8SS@@@0) ((@@@ 888 8x8 '$$ $0$@$P$`$p$`&$`SaQaPcY08TcU02101bI!,qp q\ qE `x8@29b@09`"21@9^0P1cTSA0,1* 1PY& "1@11oqg)/pg219W"511@9U2SXTW?CpSV0S@P0cVEQA$S@PG8UQE0QA1PG8V6 01@@@CBA(LAq''  !G" `Q@po`!`Q !@B!AA@!E(AD2@EP%P@G8V@$0`O aK `NaJ U1F1H1f1h!HE[1J1je!Lk!TaIaHQbGP RQQeF_G]!9#9"`C99O`AaAeSQpZP6PAp2809#rA'!" `Q PA09 p1O  E09p1p0Ap@0CpL0EpNq*p*q@<9Pr(`b9P`9O0`qHq}'  .p}!A!@pH%%%%%%%%%'@A0B@C0D@I0P@K0R @M0B@O0D@Q0P@S0R !@E0L@G0N7T0AA'@A0B@C0D@E0F@G0H@I0P@K0R@M0T'AA@A78' FPA#APC#C"G8a@'$$ $0$@$P$`$p$$$$$qv pv@qAE@L`RU 2 @qq$ @@q$@$ *pqA9P`G pb90 pc9.pc9-96`RprpCAm'[Z]\(lWB9GPHPC9EpWO9:POr9O8cG9cF`IW`H_Q`E`Hp.rAcGaC /r@7 rDrCrF5bA%#@A@A cGOdB_p5cFPq3 2PA P@,* P@qp 0)A:A @0@ A1A p@"p)@:@#!b08?% % %%%%%%%%%%'@pG@QACqepgtSuUyIzKrMsO  0 ):a`!0$5):`A 0"' Jp0A/ 0#XVrEP$BrGR%D@ P1):@QLN ): H@RFTadAa@dABDAFpr`sb'PCPeQgQ!_Si 0  'AeBaBRBcBT!_$Ci#A_Ad'PSQURMSORISKRQ;0#0+aGaF'N$$ $0$@$P$p$$$q CErAsCtEuG  BDrOsQ 1@ Q0,0, FCEPRT%%%%%%%%%'pT%"%%%%%%%%'z*pp!rB rD1sF!rLrTp r@ G/rDsBsC0 8Pe@`CQe@Qe@`C'x($$$ $0$@$0@0QA[@Z 0SC]@\0@MAOBICK@LAN%%%%%%'ppp@BpFpSpw NTppP@H@"ppxp€ư9O29O9O C9qpFpHpT/p# p##!b08뭱EC99°Ӵ9/1. ? ӤA?'/B@Q 1B@Qo,>aA9O` PA?9'yBzDqFqH~JpLyTBDFHJLTyUzA'GϾoƎ' 0ˍ"3!08'qp`p&R')&qEAU $ q 1110178qvqq!@#rp&+A: 0Oţ@qp!0"q xB8ŀxqKĞqT\P0nhaU*rAtI  @$ 2 &qEqu# ! ɇ#!U!Mj#N10 B.  O-Ka&sA4!=]qH2  &qEqu #!  !U!Mj#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU9OK`N`DQ9I X9HQ9HX9G+9GrbfS9B/ $ B: 0i C@&8r; qp""0"89=868OihmOquF  ljE11_80+ik8/;aDaB,U8,mMT118*E@oUBF 9O,@Bxe1䭢E9_@孢G9O\B00 9b8 UQ?9!d Wԋ9 aD؋ ,R9118A?C@Af#Q9bE11EA_TmMA118@oFgEGFB U9`N,( !ԋ U !d9OA@CBg9Oeg r+9e!WQ9O /QQ9`B9B8Zqp"b0b8Oe@`C'PRTVDFHJ'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'QQ 0?79O09O'9H0?7DAAf9#9- H990FJC9OBF9  ! 9J "9ON'`x dC@f99C@09O @#FAB'AlBe@E9ODA9@'ClBe@G#aC!ǃp!!'Gq.E.q­Ϙ'd@ҭ lC W'pSQe@xkjmM _Dl ,egPKC2 A]9( 9% % QLC4 @ c3ӍddzaA 911"'9aA #'эծ= YA[эdzp@Ap@8V#'nqp`𐽒)rqWXp&+Ar: 0Oţ@!0"Wq xB8̀xqKĞqT\U0nhasAqI0 10UFC; &qEsCqu# 3!#W4ы &qEsC#!&qEsC#qtы &qFqM# 4ыy !U!Ml#m1O BM  _-K&4=\]qH62 7 &qEqusC#  &!W0 &qEsC#qtы 2ы&qEsC#  ɇ#!U!M#j#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU9B`N`DQ9@ X9?Q9>X9=+9=S9:/  B: 0i C@&8Or; ""0"8978/8ihmOqvF  ljE11EA_8)mM118(E@oUB+Wfik0aDaB,U118  9#@Bdeэ4E9N@5G9OLBЃЍ 9P8UQ?9Od Wԋ9DaDg, R9O118Df U9`N,( !ԋ U !d9A@CBg9e$g r+9Oe!WQ9 /QQ9`B9O98qpp"b0b8e@`C'PRTVDFHJ'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'QQ9O9 199HAAWшо?f99D9JCв9B '9!б !$9F' 999O C?1в@9 AB'`x mCЃf'AlBe@"9OA@9A@'ClBe@#0aC2E!!!2D'GqE#q­Ϙ'd@ !/aC! 'SQpe@xkjmM _Dl ,egS@KC5 C9% 9O " %T4 K PW19ddzaA 9 11"'9 aA #'эծ=Uƒ OWțŮK YA[dzp@Ap@8V#',q89O98.89p󐍐$99O9OT999 %8p󑀕8E8O&8 9ωq9ϥ9ϓ9L9O29O0"<@/9q9Ϣ9O9OH9-x88q 8D8 b.@/988 b.@"<98 8 0"<@<99K0/@b.99OI0b.@<9ς888@b.9Op8O@b.9pqp88 /@/9 @/9O<99O 9x!b08Ϩ0/@R1AAD1C0EAB1G0IA@'0"pqp!Cpa A`h8bBxЀ8'c\~B-'owҽ"*'R9O@A@$0@'9'9'?9O'9O '9 '9 ?9'?9O%9 IA@@A8Q8E @AAI@@8'!!!$2A'0$@$0Hfwo'/  o !a p!+/!?1A8%%' b. S!O N I!H!K J C!B!A @ G!F!E D M!L!Q P!R' b. S!C B K!J!E D G!F R A!O N!@' /0b. I0P G0B E0H C0N A0R "< I0L G0D E0J C0F A0@' b.0"< S0H Q0F O0D M0B K0@'0/@"<1ABA!81CBC!81EBE!8E1GBG!81IBI!8'0A@@0C@B0E@D0G@F0I@H'@@@B@D@F@H''8%"O8 R^OU@ 1@-Q8A'@/`b.@A`N@C`F@E`J@G`H@I`Br`CbAaGbE@UG!O"20#77Q#!O+20#79˜#Q8'bB`@'bFaDdq8E'$ `𐽒),\9D9OF2T9~8i9}38h8@gPY9Oz9yQ59x8Dd[9wpQ9Ov 00B0DV5F0L0T00@|7D5B9g;8[Qpr9m p@q9b<8V9p _y AgT9Og78ERX9e88P98BOQ9bBR9a:8LR9_E 18DJDR9O]G 18GF\9ZQ59Y8DEY9XR9WAU9V99vR9p / _/ T9P 8>S T9M A@6 E1G19t9hq0p0C ϽK@Q"~sI"9v9A/0?AQ"4ih@_'@GAI&@29OA@9O@@9O?pp@B%9k "/0@9O:@29O90@T97@96&#AJq}~" xp€ư912909/ C9O-)x#&ASRIK9!CAOqtQ@A9"90 P&qq#Aq_LC/E@@>E@Nq"px@!0"8OlB&0 0C "b0b8hS9OQ9P9X9 ^9 TQ03_9  B8^9 8P?10!e@qA`Ce@p@qt`Cp@q'e@`C' 0ˍ"3!08'$0$0'@FAH'B@GBCD'뭱EC99°Ӵ9/1. ? ӤA?'/B@Q 1B@Qo,>aA9O` PA?9'yBzDqFqH~JpLyTBDFHJLTyUzA'GϾoƎ'IE0HT LDKG0%J4@CQ@A4QSQ0N@ GFED'AQPP#PA "99+Bp[ Z'I O' p+P"QaE RRbR@At^ RZK9da.@GL/@INpE?10 Ko99OZL[NO10 99όjLkNKKtE4A@A4?<0SD?'bDñ RF/bFo9zG9OZP[R9}9jPkRP\8&`b;e`Q"@`S"B`MZD`O\F,`UA O!^t_@QEQD`KsC0'aC@OXBdIB@OTp"V@ C ;?0 ATp#9"$нex@20A01tq/&qqP#p40苫MCB"$ AEDL/G$`BCe EsD}04401t01t 01t 01t01t01t01t01t_01to01t01t01t?KL !I !  A/F#01t-@#7P"dPATMT@PLPITQTHPPQcQQdg8@L1PR#&#VA`V@VC`VB& !BppS R943BCD@2uYl @B8R \S/EE9,8?  1! !0F&qe'knmp."S..RT#YOqK@Pj6DU3APg811RRaaDU78Rx qq q!b0b8L!b08Kˍ 0"3!08'Z@E9ӭ­AoJ@KB 'j@Ͼ'о,߾7@ !0 'C""Hprpq"`'g bA/'/!J'hpBb(qWU蛟 ԃ &pABpCD#AO[ZC /    CEBD`R GBIDFbA ?@R@A KMSASC101%PE0BPG0@@@`A/`C@$$ b@CEqt"!'Y,$'!$ ]  OQ 10 2u0 2u(# [2uBDNP& 0V$A$CAO01"W8#D#ԃ xxR JH GDF JONLA ) a`#!G !? !$!zx a En G0 xA_Rq2>3PQ49OI!?!,2F0HR A/SL9D HJRx2 q2A/9@pR0, S1ABAg/ @q `&B"G81W8M0O!@0?0/ Bx[ \_WQZatEԋ@AӃ qKrO!*sMqQ@A @Ap !W?7VI0; @5_ ]0 ,5)q#qF&;01$ԃ  1F0 qpWV`^Ap0DBA ^> "];LgaMQoT]Y$!&o+ %oQ &$0 1Q  16o40\XrKW!rJrM rLrO!sQ0 rNsPV!b08P0e%$qDq2.# qHP!q2 qm! A'8'5g8V'6`+rqpxp&)A: @@0OC@qp!0"q xB8τE11EA_8I0nhU  jB1$ B"  O-Ka&sA41qH2  &qE#  !Uj#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU95`N`DQ93 X92Q91X90+90S9-/ " B: 0i C@&Hr; qp""0"89(8!6ihmOquF  ljE11EA_qmE@oUB+ike)aDaB,U\ 9@Bde 1ĭE9-Gŭ9O,009-= UQ?9d 9aD U9`N,( U !d9O A@CB9e$r+9e /QQ9`B9Q pqp"b0b8e@`C'DFPR'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'CQQA999O9'EdBe@aC!@!!DA'E,q/@G'pSQe@xkMjm o!O+ _Dnl,e 8 9  %4 1ddzaA 911"'9aA #'dzp@Ap@8V#'Lp+1qD򰽒,нb;&qxqp:b;+A@'80px#EqtB Kq}Aγ"̳"2$ϸp} ś% Y %%WEM9^L9]DGO!! 9[N9Z  q@^A0-0-@U<0íM9IUA9HrA!`?@b)P"AϢ?JA曠̟àϸﯿ򑣓t__Lo򎯹ϸǏΞϠ\@ZFAQ8AU<0íEO9O3@b)P"AϢ?JA曠̟àZKƀ͞Ϡƀʡ\@AQ8AI@CK,, B ! |BCPN9#?sDKCǀ͟C9 C ?4#9%1pE K :801JAUrA <9R N 2 99O01N R q'090aCrC /'/ @ M2!b0b8&IO KQ##!²08ϼqIKEG9OI&OQ#*;@C [(!b0b8@, BK  pG d [aU^ !D08UR pEASAMSC4[89&pDdApHx (3 A N!78V@JpAGC FpCI0,#HJB pKqMpJqLrQrOPC qp PBa]a\PC8ľpG 8D9!0"8ϓ[} U8P/`PV pPEQGRMSO 1BD#`xP[`PP]`R'PW "pPVPYQX'&bS`CRP_L@`@kE`MlI @@`]`\#+0pЍB09 DFHLNPRTƲ1O01"BDFHJLTUAbR&`]`\p#'!0£ӧ,='£ ӣ 2'`𐽒)+,lQmSāЅW Z9Of! >S9d8BV8UTP9b=UA9]B8BR@C 9[N8BPL9OԱA8W"!(Vpp _?8EJT9W08H1T9U8G@9S8EB9R8DL9P8BNAR9N?2R9L8> S9J 2> S9I111@S9D 15 #Q9A\9@X9O?" QqPQqPQQ) #)Vpp 0)P(UQMPGP@PIPBPKPDPFPHPJQLPEP@PB 9 / _o T9,  * * pQ9(938pQ9O%948EQ9#11_89!11o8CW %%p(U#s px!oq"P9 p@qQ98q pApBq"118E0p& 0&8~B&"b0b8|P?10!e@qA`Ce@p@qt`Cp@q'Q9pS9AQQ'e@`C'yr61 "1q Y@[BIDKHM^FO`JEa@L@@qD[pA_ 9FTP_rA9DPTQg9;Pi9O9PPQTRqtPQO 9C1C2A>Br q2>?0ppp'$ $ qqpp& q.Aq.C"8p#%%'|`𰽒,q%Y9)pP9(pQ9O'9&EqD GFEDp9 _ /q pp&!0"8@9O׭ȭ99Oע Ȧ ׳я--"롽q ʭA p€Ƒp|BzD}FzHzJyLyTJLNAEPBAGRDAILKHޡFTqU|AƘ p@qp&qHupH#e@`C'gQthSA[q C]8JMKOBICK'HP9)2SAQC0 CP@!b0 81  23461x0w SB&R !/@C9 "!?@B"!?@BR !/@C9PLPNPRPTPZP\BJ9r(D9(C9Oxppq@G9O,Hqу G9H@xQ_Q^BLpoJ9 @F/ppqHpH#SBP@!b08ϰppG BBF@G8'qqu R@ pp@BqD򰃼Rp€x+A??àE졽CԀ9!9,=BR"E`A BRB9O qu &pD"R "p}ppHpqtE D#x!D08Ͻ@9Pߟ9'yBzD|F|H~J}LyTBDFHJLTUA 8yUzA' Go'zx*rpr`pA@' LM q q  088!b!0b#8O 8068q3q/@ ? B0/@8p@&8  !0  !b~0  !0B _p!b09O _ / 0s@&@ d,qPG3JOL (3 G @!78Vq pqpp& 6q$Aq$C"78pR#FDpq?pYXppqH!pHpq &!b08 b&`ppa@aBP5QA$P@P78UQ5QAP78V `a@qtptpupqt a@5P%Q@78VO" O" !O"8ps`ppa@aBpw#!D08Ob Rpq p&`uAP "pp@p Pqp pPEBPPGDRFHT`D`BSQe@q q: p pqp!0B8 Bq:q;2&b-c+a)`) pLpM# &q q@qCq> `/WR@C@EpCp;p:#!b08 6qRU 8 q! 0,A @=A0@ A1A p p,@=@ qxp!b08Ox,! """ ""&%#%"#&#(&((00..88E:SEL!(  -:;<=>?@ABCDEFGLMNOD mtxyz{ | } νΠν͠"#./012    ΠΠ(geexbox-generator-1.1rc1.i386/iso/GEEXBOX/boot/0000755000175000017500000000000010561133344017026 5ustar benbengeexbox-generator-1.1rc1.i386/iso/GEEXBOX/boot/vmlinuz0000644000175000017500001313312010561133343020460 0ustar benbenfȎ؎м|1 t 1Direct booting from floppy is no longer supported. Please use a boot loader program instead. Remove disk and press any key to reboot . . . U6HdrS7f Ȏ؁>bUuL>dZZuD@ t PQYXðNo setup signature found ...Oȃ 0. )Ȏ؁>bUu >dZZu 6@ rȃ .t..>u&6 OWrong loader, giving up...f1ff1ۿf fPAMSfr f=PAMSuRS11rMPu @LS1&L.>t..t%̓ . Ďہ))9rȎf>(uG> t@= t9 9r)Žظ.O-- - ؎4u}$ff&uoIugd=`61 uR $1uAulinux: fatal error: A20 gate not responding! f1ff ff  1!1f1΃ ff؎1@9t2.6.20-rc7 (ben@k7) #1 Sat Feb 3 16:11:55 CET 2007pQP1ɎI dP@dEe;dXYfQffIt'dt`ufYQ$ Y 1#dt r 6eI/dd t]<u d]À>uO0ddd<u^ed` t d&dð>]tedÍ>fd#Ed$EdEdEdEd2fE(fdfEfd&fE#fd*d4>fOf1EfdfE fd6dFf1E tOOu>d&d(d*d,d'd)d+d- O11Ou d.d>0Í6 y < t < tE6M[6 u]63t6?t 6D76C06r)06fe< t*<t< rttO66<tu|t3]t 2 o0CtCu,dÀtĀu߀sdt< tÀslt;tOOuS[8u0 s(tSX9sSn[߭t9uD>fٸOOu$< t$]tet <t0 40 0pr ) #> R$ Z`P`"PQ`uPtIPS6``'`d&dj;$sd>fث^1[XÀ>tkdd.6f8r8rʴ8rP(X8r^1VW_^uPBJXË> u!>ffPf]t&u f+PfH6x>tO6f9tfL9t ;Ot f>6f2P+PPP"P

]uOOu΁VEuƁSAuHetv=r tb=s_QOˀYOuJ$< uB}u;t1ҋ]u+]Eu!E= srs IE⌍6 to see video modes available, to continue or wait 3 secs Mode: COLSxROWS: Enter mode number or `scan': Unknown mode ID. Try again.You passed an undefined mode number. Error: Scanning of VESA modes failed. Please report to . CGA/MDA/HGAEGA VGAVESAVideo adapter: UZZ؎Ѝf@]+nv, ÁV,,,^v,E tTߙ̄ w$ȠA(X"**aPP1-aQj L$T@GUH1&!>wf}̂g}>g}I?y˄ Aoy-:6l_YiL-Naʆ3]S7$@E9E@ہL==FN;πY?X̯ycHf-xx_/ fQ܈?&3nXO5m0&tV]TW)كiQPg׺=e3:\hF%F&8 p_$5G95;E}̠ ;[=,l [X򬃼:גᶰ%m3w=moGܗR Jola_}f.J+,TCFhsNhAP4Ԣ*t`+p(Tw3 d'P~8I1\99qA_aͳ;0#0`ޡ/^!~_^ym.Br0rS`&{z29^[4b^d8bZؼ֖ۃSݝvB {4ʻ3tnVj^}_!_HcO:qM2v5r`6LS{.e P-d8Lۥ-%vP7;(z0sZIk*fm$ vpd^jLRtA/=ht}Qҳj@n[@}Z,o1mN3NQR=@v'43>o;K8\YZ`8B3#a(iY8}W%DQ_B"et_eA- @ ōtHLj@{:^l-l@cTxQۙ up؁.ִ+GmhrN AZgDk ͆άf?5 EfutlD@i4:'#kp@2b5юo Kr)h A?9"# ""=nJ* B֤ F:qE?xUaހC`Դfne4v ۽$#VNqH!˨KvԴh-;Q(#GWm3M&}yXRcbߏ?x S)հ 9NErB 2:I4湨L2)g2)>ve>eR|2Id*R&T&+K,"x,UDpsV3#Y'+!eEvd"|2=jaELvg{j~rUnfEc ;I[a`7BŊ M$;s'D0s}%P? e*c TAe.XP(ك3å,vWsOeSl a6Rت0)62~WҦ- A X߰ߙ|'t&#쑐-wzU*G ճV Pesk7d{$CcLdHpFڋeEv!ZA39=X53/ ^ ֆAjkίy[sFJ`pX0bG} Dz.@T\((&@ǯEy8\8.<`1UA w@ln?8}͊ ʣ$zhT`չ! jחy4C+2E0ـ,6Zm)BS(MKBkt$V/}wN+ꙥ㘲Mt1˝|_3YT՝ ߚ0V}V+s0905 @Ś%JE]5ǑtUx>&#M X%kȭ=5ќH3>" [BG:6E2ۙB !It , ]W76VS5E>b0 6H[#V Ijup91UA> R@kuElXTuJȊDj(%^avP)qEf9igH`9 [m0,0ⲻX#5Na97!0ЊtCaw\5 a$jDf֦5|?&= ֺ*9K!)BC0aޯ!J`3¿)P䁔R% 4G>%Ad-li]T[P:-A.\4EN ժ >LtK (t*&00} `AЧ@`Zee |Xd%U$eXs^hDI2} l(@.X)gȇ 72 VzALP Kh'Lc%vbi@`*Iz?+ Ĝ(v#IBsHjBִS]!5׬w/{lVOqEDc]M$k[Y72 CX ; +! 6Vg bʬ1Lr`0x@kׅܴB$ܹ`%9|ɃQHuxBtܴF7FYa.V2 RcDwݹ$={{< cP>+D2&a33`),%=h%Q& |3_'|lo.|;[h~'Ydk "ۧ)L;|鮨R͂@Ca6Jl(wus_"͠CyS2CB-VxYwiu05=B򿔆\AeFbs4v(cӝs/@Q|!Ќ|M 5Mʐ f'kV#e-PHR6nrq&4 0912괻찫B~p:3XC`7BͧyuX9=, {aB8!BD Cg6ba+ض]!o( H0N0rW\XNO}ѝʁi[{|8YfHLp#E iPplaI2!a˭eD1gp{<0!QKcT&d FǗi&hz}B~iz0N*M8ZܗޯR'N5G*l)F45=44eˏڝN4i%5y5[ۀ ͗sWXAr -Wb0C"YSuMiC(OD10뇁߭á~a3C`vCVI@؇ :Wcr(b;Ti=yAkX_j콵xp+D$K W}aMU]/2!߀M)(L`4C7f?!8Pq 8{s촯ccoÁ8c.l:w |a&NꄪH*3Pe"jD"KIWL\S܄'*+04SȣN 4-r 1ki2_ 4n\ݞ_hg4StF/tGb$DLfAZO)CmG4 ف;E,mLIhqIHک.}ji)imX'Y oԥzlkIP>zYqm( 0v9_=w*3AE9A P7?BpYNp>T>^WK:wL 2d)(=>m:Ϗ2%?@Sח-Zy:P[wE=Vs ssxR`rKe)7sHS|_2w{S(x>Lc0>Kz,{zS3a8XgY}?2 ~?U]ffjL`2"s fl!/C.d3wgLzR8Y+ꥐ) X|hlo ([p!?9.;Ryl^<MdV/ב{DzOGF oX{Dz?˯EjzG^DW##"{4rc/瑼^##z[#^"g9qdw/HM/K"DX/GGz? 2{Gz##zE7EGΦ9Ndw/HM/K#7FX/C^^]Y;#7#yuȠ^`˿#rӿ=;rݽ"5zk"WGX/#["{ߊ3rc/^##z_ 9k{$ȁ^W"{_5R/Kz7EX/_"92Ȭ^"7o)2*2"g{o_HM/#/?y]^F?t^"y22]DlROH/ rmdw/_yE_a"GfWFn#y+"#z}Aވl٘X?L>5$ #m¿+ /N<zFI0MBe J?)%_AONO' ??@OFO˩ ?῏KO's )EOgS2'?EOgR:?ῃO'v?O'Qq?LOo'7RI"?/' x_LO 8_HOo ?ϧ'c u?'?'R~'P RP*?P+ ?Ϧ'n# z|'?+wƄK?"A qɐUM_E#P6>2] 9.wĤs,IJf`Oiʘ /N'E=)ˠSߺ&(ߙw$+/&cECAÄ?p+Pފ!䅏q?k=wAþ!ՒF>F4vK"!ձLG!ojcWBm§v<.wr5uU^ڱj촳}e AHW6]ͮ_BMva>FA ;mA;VuOٷz{;DEX:M kj3#Nӣcc{^If-jAXF̘V7'˂"ߠb `~AsV>t:=µ510ڠP]at3:ƍǎ", +{cT8vt+jzi ıNT"#}T{h^䲆ӜW(ʌo)-O r 㖠_rL9zELY>cOc J(V_Jve"N!zd]a˳Di6k%" }jd\l"4hCp=qLYJ":MvZg3 2PuYlLљHr{`g/ކWF kƏБ`F]W]h0SrKOFU!˞X8GK@. vFtKxaGW=0?D7PG6ƌ]F@$C ?1/>uH D\4Z#XNp&e7J-M[ XC;f NS8FwlrQ6Er[!K0"v`Ʌ5 йǫNgᰱ] BN:AYī6"%͘wP{FwPTmFrSpS Ty{a^нf { Ƣ?3jnRS|Q;(۾dZP 8;\rҠh H  :_R >} A +Q‹S\867<6W-jFW/ˆxV8fè* Wk:R#xn9v:^@{hQmwbs% ^ iRA֩$<=ujCH^Z>:16࿯jm<d1JxW>CGqoq?b9q LUhY#^XB]1692k_8a B6~H{0WJ,:@_Dwhy-{|N)+/:}a村|Y:!j^wA=ҖޕG(ѾG-NՖҒkšt?IʧpA; t޿e4C# tهU}9buøJ'l M suI~#_t![k<񱡣B/v ĄΏ'!-WDN4gXW`G,J j;9wu:i9ߣNLPԹ꿩Uܳo:?Pgu[8`oq`D8Ū$I80"[{1u ;;4UއrP!יsHQ'&Cuz:uDO=ٜbhuuu~gaC:~׫~{P'l KK5t߾޸"{iW_½}VwD[m%&VBikq϶g!}t_wt ow/P/ {/|6y *o`|^CY]`;&qZn}߽3̋? ll0T'M-gдZD`\S&Xձ?k fTOl 8 1M|AV䆘l|phޏ/՘PT Ff!x;2R{b3$A3{p$3?F« cW,grĨn$hI`)F32ƀWgw^s-yD'd5Q`=/v|u\juA""Hn'=ODg/WKʃ/ʗu,2#G9MP"n{B2ڂQZ%Bf9xܯ(.b0j 1#(rh)gXsb\z~$֣?u;m"n%x$ ѠUGѦ79NJfD 3Lzd2U =s/B=:1'xoQL(Cř(>-x1 $t6٩BI!:@x{?|$yDȚBQVNkōQNa$ (2^YƋ5J5b|\䱲ZlM\ BSE5w+.ف [v,; x}_ {{Q͢Ԉ)x(;]& ӥOR^d7 =o.ﵟv*PV#Q3/\g^PL'(W}{k/ښ@^k9k ,cd@Q,uʝCi   l{b$ȝ?R3Y~BL28;;u=WIB\>[\ae{ -4w_a=NR)儳l,XJ}Xk =Zs2ޚ\Z*}&ut,kQ7 X64jaw5Pd>T_V3.F) iG)վӠx(@P4S~U kEe*)Oyɰl(>U}e/ᝐ+"*R(x|_-u]7j6~,ey}4n-qp!Y3aYEF̿}y{pKm)ro\gNf1ȓS!2v-w$@y MAĺq%:ɣF&cYߛ1Tȣnªݷg{꧁XҞi^ 6nUW0fs"g<=-Q~̉6'*oFatKf"4a7f"317f"g&?ۈ8#f&ubp`Ӣ^] MV-XZ<ߒG6#0CoDֈ7fG#fv)fGC*<%x/=͎82/F~M;-he8^kj՛vc~e%&-vkVFK:lЭT?MdoX~$ r7e>NuƱoi"- dFtiDS%!A{mC:.0F<M B\X]xD-RA6$$M@6cW ~Qbj<C#t;3˓|E w  ,w#8L,T0-%,N>mZkkXۿ}sqLF(94o^90 LKԃb3L.0ڷTdF_GmLNOS;ϡ=I`yKFN b|0$|GW$~ia}J+ZDJ2 Ѓ q!`rBFv`#L ؎v=Xt2U7%-RO"m̀qДncadsJ}S4cmh\yhhc~c^4B$jQ5 dy6-}'/q6ێe{۞$Je#oIPÌM˃ _ Ian:Quj ++N'';6o&sۦ1ij‹hL=Q Wzk(Ml(e%w$~4j}pGM1Rd[p3C7ENbJ^j܇rmUjX(qo;O~-.Ug.cÍK@*sљA}3i6` @_2LTw ΁rhoWn/hbG:6PֲEd ?Y-b@SRGd2bWk (/C W@@n&KdKɡd]d5TQ!AnB PkqzjIRꬕ&CR%*-4w&Y`>ٷwqZ@Z4w8B$X1)=!dT\Kq8&Dv`Nܳ P$4i7)QU0`E8|Bc6 :i6abrM;L;>``%gd.fMfs]v PJ~ƍ"'"2PzҪV7ɭII,!G8^<'tj COwn&x"3q~f`,2 °Șu@[Y,<9W{àf騬 < o^r[^;/FtOiZRm|r=[wU`K4 ^ n(eae.l%M+3 ~ԃ"cDf0'A<[@вK+]Nl<+)όFae,CO`e |3ɴAM"2y U!ZmjTsP`͛u0myBn|}ߟ6 O8\+x[l $mlS}z Kax/=6XcYǼ,ү fӎ=ǪH53o)>G.H/4/wl(8tCY kW ?'y}Ij$kVFZj~Ք|/H{=ҠB#YwrEV{of7 a+Sj0htڎU?p;+G@|zZ}娶jZW/ O{D=vPXq]+_PP304Ie`E/C&c9x@C.`g< P95OTd [ԅZDi1}.LQc+W倵V'I8i\vԓTdV10͔-ãQ?ve|^.?j~%% iH5fU)=X)cZ^j B3}udE[&fwwfe3Rd̨bQ=^{g4Z3rS{l ,˱dhqabݾ)*٧K2UeZ?d)|z3ԍy˻lcAVL[.O>٨cǼ _:V/+ĝwv(O0j}haY:/ٷmBr^xY|py0F7aLjq u14, k0Gc<54{$ñ{6o>Vy"Q_A=h{y7e;$ɳW>kX|ۈA]+w*2˝BX9*T ,vmW3J/a녡p߅,ݠb HWyP%H&; kU4}'C J-! jH fqBV$WqTT@68{ |ް8+v:KGJe#DL\ 0ŋ h <@׼ك%".C,o$D!ɏS@բ\dΣq5R{3EQ k2Bg{QOȜ/"BxB,6]qpWsbuڈOF"-CwɏJ.P5 !F*mz;Ҹ2;~y&!9 ;phc dhlJzzqشGWr\ B**2B4VI~w^uJ^*Vmr—ࣳ{~ibG3@":"8"g mcbTnKS#Xl P썠푧֢Nb|"5.X@>ۃGnS`55k(tsQi'k뺪GmT$ɿKa|gl$S[k= 0^'Fֈ'I!DaM5|0EhIʼ\ꐩrC _͆ ja-eO)E(:(|ʏgH` jm A>TAٔ ZI=9[ ՠ( 7a}{vm]J%m±n' @aVq̒@@}Z|/\(e{l4g*S򥭅 8F~=^#ȭCMNY8Ƀ׽'KЅEu \Ep,C} myZl[!^7ңZ 1igJaRyHM% ! W=KC-hxBJvSdãLZ#Us<͖x z~$; GNI 4~TEh<яWq:Qǵb\#)↣G CV=eL)vdf{&렮f%0j"#/wGiXnZ"Zo 됫]LLؕ)^kQ_nX,@>te&HR$ ͘ĦkjQe#IjwE5| ZPy%0"h}hc ^U tԡ˝ @@ =oe0u5F X{w;>f@X>F=ҏ+$4٬ oӉ:d$6(0? 7#QZ.nPJ^_彻آݜi4O>d@sRe~"t1E\d*9ۘ/zޮ$-9? ۭs_uCn,>e+r_'T6 铟$?ƻB]G]\ ,fDۨyi*ᔂLihTƦR/yuHSh `G`|^'>\XMuL|=js Nk( i4N)cD_\'ku]: 3D}N7Gg8(;sozn'& IͺKǩ0΂ՆA?%"F SPt w ֭M_?Ɋßu-jxzLt*EE@F)#V9POVrωVSeL؃}]uY!d fEv1=&%_KB{*\n/+R|uvHᤩ׍&"|IC;nlgpdyR۔Bh| $.ܥ#:A{pT@H%hA‚\Kx]mĀla*|sA$޶KylIaUxxVuZ xrOB/XQ%ΡeZvzziOXmhG˴ @=|9ɡ6d<0n GXpS-Lv&jVȨd)_<@dWsS/U^Ūn$e1qe{b)d+psVǔi38}7ľ݁)QwwI4#Fqzr_;vZP޸=q5qP$3ص;L-M@کh_ߍKڭ~ e bvA3JYe¤Ljsh-bRl=n\g Ec"4lp-ҳwd7&D @V㮕‰؞{Z6u7:!Zqd=c@~/BFN`~S:! c9nLB6u(@}C7sN .ղG9:زqǙ|=JCx! 򤭨&(H |gͅMKvfKkѭf,D; /NJ=;VZRPw;= AP/dg&pN_C2QDW$Okbt s$UBGE[CV]:fbȒX#L[|K˒\X%vdm\Żl?ޙZ))ׅL.JtGR\,c,eH(*r;G>T e r[wi+ u%k<>Uj݈I!/&xKjXFwD8(Eⶅ-uk}!"gk*Bwu+颌@嵈6D.ٯwϼ)bBXB84,ՆuVW(cale` i6ȼ6 #/pMa X,Mto]tLSM?\0'L{M=֖W\ PJs*:֍u8fQOz‹g,v N(+]/ ȇ#^F_f'Z2c5Fr^˷mi>x-Å5SS+!HqERW۝зnLij6r*"%V ![N4'|-|(Ǡ"ZI[JP^'5l(qì,m1wP~W XXC Y`6H*Yz Qrg[EV3b(c r+0_z=c: `Rl[XMm0ܭ+J=@ɦnl$Ükr$7cHH_hD2~0JӁu0iKذ dV4DF: NG_Cx@`@ |LB{膯=dX8:@"zL8|xgKA f@@xJPH31s, $~Bk _OQ՗R,\1@85u mk$Or5[q1vm d>ëpVx-4'xm{x!0㘇 ^xl xp=|Dlv_ m =rkF9X8[QBH$Udy-nNWCYB Z.@Vy $i<$f38nKC*/lຘ,r EP!^߭[GC eHA}, Ė]9mH:%!~l!uōu)3eP.Pe[BpY0D>U\bl;<#.Yw{2 e KfǴ X6lN o{_c‘5`%v~E-Ű Q\0R[uh`l๝N-M)SdmC6q7B0鱑 =gj!CxAVđǠ8FDK,#n97,AJ,djވ{>y-SƇmz-Ez5ĸHΧ~ս %٭ 68 YT;#Te՟Aqc9YخqW]Q:cpUodRqZHE%Z?wm㥾 ivDJnNVM_2XJUIt2s22,X. Dn5hxqrMGblbf~HWDG>}(KFb,=GGHL5*DlԽPq\ I?Z TiK.2E ʅbE ΂jiA("@c | >cO7D`4,o8bag?4mR(ZpWZ|B6\ИE q?_XpO֋El饳A$ڕ ohu f$4]5J).{,ugb8gm-Z1@+S-riKfVu_#Fcebv^;!le",fy#9 _&YyF|M n~e qߝ(Kq;ME? w'zGIhYOQ IE(+ 4hkgiHp w7F,,pO~&pqՓ͑ PkC]ۋ`_[Ol rw>5ϔ[SAUJ3AW(*$ v$ؙ!T- `rh<ƌ !D`u2%5FɹfwSв1Bqʨg(WTY`yleC6@ꖓHɔor=4NA]Y4tRF:a~쾒z1E{Mh*5b>S_D'iLq$pQ<4sw:;͙EhXs(:xY2gH6ƝslM9e#mt'k2:+ރT T*o1`מN@Jʒ+ NUvBly<͓Q r\|@KGZ0}uWLd#Z :Z1ŒܕX4i~)qD4@7o弉~10^u.GtjIkڞ4Vl&movp*wz0J"1R.?|M }J/4~BwLs;]'&zUe۱̱ӝޝv`>l2*;x4e.aS+Yq7eEGl$昏9@>w_>_#x݌`׹Lߞd(K7?բ GqYv4Ѐ!`WV:;gt 2"Ҧ9doWvl2IuA"3hf ߾凴',`Wzb_E!.u wbW`5 \D%EJ}Dl⾈w,\s'>,!h  tCEeq:">8aIIӌz5xduNI>"&P {[4tNБPY!^3EK$ ؜_<UȐf߰WT7Tº\f_k}%+nPҟ`.v@Nl~щ(+.5T- Ù?u3Y}98%U2NXrI򣮣6fb{*>$B̗wZۺvt/.K ; $Zo}ٵ۽t4N+& a,w uAG7@$"A3FRO$v~ pK"d|E]8ukt&\֡Uɸh5]WQf cT&3f!OwX2[*dzba"AU: X8P%Z01V-ajDbNfg`l)T7㺑@n2+*h;R== H]<J:R.\y`p'&,іӤ+Sjxl>Q00-qr|8'"D~T/Ey B&ܘce)A;=}Cl^"CbfeTz!ՎKݞүg5:UK[&;ңx `OX 7p(2.2"xxH["{`C0 D`9+ƹVw3ε3ƉpF8T3!bLXL =gΒ1L1Fpg\|&Yż<^| h6hѽ%8kw'E/vg'&$˚ߴY$o VlΏF rNX|%nA0_l:D"#j!ntzQM3?}$JGDبҟ֤%Jvgxfser/WۡaՐKm"Spwk3Dz-A}<7 '[$8Z#p@j|&@erK W'5H P\{ߍ˩A;Mhgz4A9Vjs.BK7ɂPhU 71p Pw茘%WaRkyU))=Oʟ&Y̷ղ9Dq,}U2It_Z^E.4 Zܤ NR|!xl?{ϻirw&c(o%tok3ʠůFPBYVxBN&p{oϕb]6dfŶE%_,7oC⋅꿩"AF~}wvP@NHmq&d`һ(OR)@0J Dv>B }P(@\|0CkQaAƅjV] ߝAW_Gz0&pUM_TcbvHDf~&=jSn>J,[ Mѭ GS]CVC_,Љı]9ԀGf#SfuN *sD-O)ٝ\Rݒ jT7Ǔ4v|lr}إ a!lx>ªoV,( ֩G%س$Ԣ/& HhXiXO'jie/ 2E*G\_Sh*mL&J{!0-Ng,W B؂Wi?.O7Y=\dRkY=D+/ ˡ3|m8"?mZHi6|`V"̢Ug ?!5Ѕ^6Q73F{b䘅 E `~6A`9seHyS eA#]V ' 8xpsڡfD}֬dyYAZ"YS纒$s3%d-ӻĀOQ`AGǍt@}"e]D6A)0ht o.xjđ8μ!v:YFO9UכIy0`8rdEaED9 dE8Cm*gTLINirD ҭT0%"=p^%:9̳ؒg6o"A1x5J?="t1AI%799Ԃah͜+ ͓xK7οy+ΕùfR@s"#JvV :A8@M◒^1Uvi9P/w'Hx[(TCs鲥D~b^cÀd =H+̦ {5LF+Cňm3ـ⪺i >[n4 -蔟G6:ړͫk_; _SY \knHJokp'_r`_vfI;jEg?a\*9%n > q9XuvӢǭ$ kJub:Z#\ggI]3t]G%{$ TX[ ?!xH[J5o\nSzƵ[=P&rϗ$e|9XgZ&-nh%<>pdxYz,RhSϦb^t22Y4\Ti\@%9 v55[׉0Up-9-Fs*vNuc\>MT3>`aǕQm]o --EK .C=ȅzxn]ʭ9DwMKQWz[ubv~ɟeBkҒ?DLM+&~-{TXTD*!}XgĿUtU('6LjYl@E1 )WxadE i9n-e +8d11EφA2JOZl=u,v@ mCX '0M8(Y!/9%Xn[1CFlc)8C$ LB$< @j|,;@fEpMV^j:ϚN׭6b\fZӪTNBd&-GlۀÒS8;%nZwյvRp_Z|U3W}]o3rsc<;c^eeO۞7n%y.!.)6[To"dQ7WzmlZחf`Ъ4SlQ~.Gy[|&F>6RihwMO"-=|6=N*KcP dę l[{h O{0 }L4yMj@\7JvP-KDTdSrq}7>Pvɫw\:^݅hЦ[$K4:缣ǎG*&k-R.Muq].rE}V}M_k~OuݝOWm:Wͳ?[p:µY{Ay uE[_܌g-& M֐/S1H^B }ķg~u KI"#>M@C*6槺/Hʷz.Kԯ]mḞ{ڍޱbȟ?4l}¥Z:)zC0HKR=OF|em!iW݆3iMLm?q&PmxHaO FBn$ ֬$ MK՚ݬ+¸k/,51,EfjA*<"kc 7*ZQcXdRRqp4Sk:QZT/U7JXqϓc& ;ZCquTڍ|ǿ~ǿ~ǿ~3t˯#RRqski.sR>b(P%ڙY.*lTj宠v/kف/7%p;QVO.ѥ[ ]0{3DO86AQT cv/qG?kb@ ?|Nn5&IzO^_YS٠`x{<F S_]q^KVXRhURW=H=0uS,E^)Oj#f_EVG6eNֆu֒n;?kd &-SbŖVn4Qd>W\ȵ;qGyC%9 xAȋӈgQAFnjWvW2Gds) >"?.>YŸqEd &Zê1&1z\Ժs6^ǏϸF4]so4ǒDZz(f6q?~yxѦ.Ͳ~fNMF1֝#m1ƌ_{=_l/6ٙLtE*fMԹ]ԛϠN: Mk"̒ o6"HU' :Ls]!m'ZdՍSr6xg'H DkKXT7:@yVnr693)pTtAޮݾ1ql릹u@?.~ Fh A\<ǮBRV.ҾR]9cCfM@ܮh,ߠ[X`>h1o, nTbtUY`]$'&4 y } tS#$sxTI^Tۋ-T.Je,bAcU gFi` 'drꙜzr.^Sl[M&On|Pas6Vwxb{܂/bG1e"41JZ|,nfW KQ "GG&!0@ "!GX@@徂qbzU8/>* :h+}>͏ۀ aSw,Q]\CK=b!-V{jY -oUv5󲮆DP[k`3mJ!^T\T[д u+0y"RyYzԈf64!VjZx\ K~.azlJ8 fEb^ oB Ko "ZROx-׏jj-<#Yv\u3L:,tUtrJA8p")^h-'Yΐ"ejNs5BG,!b+嬿f*g&$ ٱ+!`YzPgV.FpM-.d4 EBn,?"n!ݥ~H֔,3G.XVyikI&^d5zPLZ@D䢻DQrOO9a Qxs?H|"8 pZ%Yx Z;ۡhT/E0llT ȅ6F5A*'yj0 j\4/mF4uҘb3x#k1ߡ%W_EW'>u)vQo4F#DRxs4g>4zuyʅ4%2X ;V}2jBitB0d0|_oM˭j0RW;lO/^D.\z,+9.^>0ǗzZPµ;-1dIt|:f*{!`& Jǂ\b}> 1 hYis``2__LGcOA_՚ :YJP,z޿(_$r#aU.@#,YJz UEэ蒞@T ftB|Xi6 .W j!TRF#uXwGP터CJ܇Ϸ{{5\ڤ EX(FGXYUUDKuPb?(01*m 41T/@jW:7BKz@%UQV.6[BHe(?Cگr#67Σ$tQ'A?_Xb4KU༎3cOcߡ-XH>$ڨ^FyMn;?զƤiw,lZ"&; hhoHo V8{\yI6#,9Wv_SUM8TMo (\&5 =Ɵ.O, &0ۉׇ= 8QƤomR/W+9z9ʈpzGNm!+"^!$_?%sc;ř2)zc+Ό"l:[HDq+"/Ȓ3!sF4%[ԚHO-碧4=2Neu1bɽ/z,l:!"C' 2nΎ$qve0{> ED:ѓ=5VКp$TJm7dL+bO LBHXgRU pƖ8=FWHe@ 3' Oj+MZe Q/8c{,ߖ:Lj4Cv6|ts3 )Wi_0Uu,C#>єqj#6ݎIVwMX)Z)2_aEoȟN2{6SnY;" ̺uhoY<8c슣cZƮPqr]fށŻBY|ؙ6r^:->bkr"g CI4naj)N35,!ˮa].3>5$w ]DCy쌲 C8pW zنnV.d|O(/Hv@^Zћae-1lįoGQx-`n2 Azj2t1QWg"ˊ?@?JS[}+Uxqd)N:f\ÔPO͝R ˰p1Uߕ鯤c @|A+Vyx+#Jn{gMc11Ye2(&|ϓO>k\7N2-q `ɫz)w(y1IiX5 ~;P&{uLxR1z^F7,Dnbrår-\1--aˬ=2ʐ~(Y}?$ZkY!bӿ:٪AXm"<7 [3.LY/*LV1 sBK} +rֶ|C x'],*rɍذ{wK8SFMlhQWE4D1 Z+zףJQVH͐[%iA'xHV &ѻR(/}^ 2n[df"?bhQr#*[Gd2~|6L6pC_5D k<1U.ByB2I*Dˊzv@|L(v9| z$ yBk{z[(Χp b?>6-'ОpgȪLX9qZW})7c_J>E .äQ` q-,@ɢSibhK#/Vz2w_v4O1° WXھX_֥:5ج"K7cP(a`Э:r|\Cb}^EW l^tRô{`dcM'G-wfhi:{{&8r yhϕ00,.BIYM䶑vrAn,=(B4ʞ>,rEEg9[љ N_ kbia5mi2 Pf|5 S87qA}VH++Fa,0{, ÁI9) GXZlBpXAA=r)(gPy)'zU!MwG'ZCt=q*ZÉfZcEP Fh zz,2Xݵ0._+So(2 wzwi6!$LB,H_+G×#~F; {oc>e , bQ`mw|& OXu= rcB\ܯ2.9{ʠۖoFoFV=K xK"If xls(U,ZL y \T(.].zᇋ!ʋ%mmS(ҫ2t%= E8\mQa$K6so=:QiIj0+cz0O Fu c=>zQ<[hj>UX- Cn З =Ƌ:ܛL1\)\@1%c6}Ml%\<dZՈ 6;(nǨBBmAiN iK) Ŕ EQt=ö<7]ȽFmϑ*? A'$X̆&8Շ/.@+uuCYڲFGzn+i>_}>㰙TD޿k.*ƚ)y3Mf>h.j!P%>E @U{=5K[I8kp7Ui+{CmN K[(Ylt!l|*ƙ5N36IVgL?n;fxHvc$Rt&$=]Y lX]37&Ҹp?</zzչ0<3  ;LawFDxްHR *m2)eG ,5=j&k.=}Z Uzۡ=ؒ:nW0r՟ )oS[⿯Ch;:{@RMlד}id=O2OOosVvׂP`Ht#N:یB<kh~lA`hL^z%<{.[hF&ʬ#TW\{ǭB'Cڈ\Rx=ư6=>2HWCO:4jN)D,pBmD8Ѹsb{/;f9Nք!R';`G' '.fi&;B)W5Iq_Fǐt&:YFl/qYZ$S&4fW 7]= 7'¡~x,-pafrW _Zfǀʨ=$1w d3Y(9DZi``Wq?k2qXMC}2NRb=s]چROFX.츪Μz/}9]L5tp%2tM:根_U|y_ޏCq(qf]\AؾXc`q#nk@n{Թ'Z^Ltbegc j$'vyLpN [. ͓h-tAMbY5<3^?䊛L0caP*qqloť/b 6}tq ZL0b"1vب劸k~҄o%>< VЖ!I/Җ"ykMڽi|V|uM0Oy'%M>]l2|Of;g%xIT7eM+KC,uyߍF^CctX )>A(v-} BW녠\/Bϛ "Ȁ`"8)R Nw_!wJ˥q"_L[ b 6\K$g|7z&!Җ&m^Q\R &AWY\gulbC)]y]w:kŇ5;l,bTb4D~ћ蹢l|6 <صکw^R ,f.O*@<Bqtj0Ԛ\6 V;Bkgj ܷiIn֑L+uKlZ>r'.$+`3trwy~.Tp-?-gq!B1Pm8~}]!wK.nC ~e;zql7? 36ۗWoaԩMAdz]27[(opX AqϼL+xx5;ϙra$nC:}x:"G$kjJ税[W:VtbJ*9=[2!mYMf/"Ӵ\[0>g3MR=fVƉѤ]JMY RGuUQCzM2'*Ŏjkxw( k6B9rp *r`F#k^0ml %{_S~D\xI`}.!eK['B)!YQ,C)2MuqB2[.:0MX.nĚIPXewai'+™ >:( 4[;MM85,n׶˂ \V+9qn\Akr_cHm#KϦl•40a:j9&]aQy@hs՟wr~RX۫FaQ> J| -bD6VlQ&,bSpSeM8׊J]/;K/FAiL/َSjgŋ!f;4eF'ą@݂BmFAQ{Io#`U74Vjn7vnN{5 &0 sp6T` a2i ǵ{*+؇+ "K/ߑRr(0bWFMxR<2t6v^1(h)1S5;2 "G+N2)K7A͸elt2RAtTn19K͍!R(Oc+"^2bpWVҰMr*i0Q~šwX H):N[ϳsr&w2;tdo|~l0jJOn]TAҋ&@VftSlb<1`+hE8|WЎㆲVo 13+[+sno2$cAJrgRԒۺ˕d}g <}P\^8&)[P[JsnEQLjCC,Q@L7)q}I=~!#_1TƫNj< 5Ygp>y0t"%}p@drk>pVMIE͞v{ +?? vA(U \ROhwujEY\ *BoTq|@s#*70$NʡͻHf&Pk5t@`o:܀3 jUvE+\$Vb Rޠުg};]|0*|1A*Ηx#Ptjzg+J# rc~)ws$+>X mҪ_⋕oVYJFG^KzÍiiNZM4H[3Ǥc<11}xbLz̩I3crmѡOJ׷W}oMJU\6Vx![#stZ>Dv;\XΌ~^FXoO:MdiKe6uvn(4-YtFڊ7jL JzoR;'&SSn}:1ѭ`91F':1ƈcC]ۣkcQkQ(&YG]Q bKu͡Xԣ ǜ(Iu%cKu9zӀ 6ֈ(B;ʘD'8(IT{W=m6~k Mt3G% #ݸm Dq k֤$- p>ÈΚ|.hWŒS4k ykSyC M/l(w+go[ڍ=:V.ί{Cw❞# 'H ύ|~.K-\)Y9;`hqUNU/|R v\v+UvuG] gQoO(Ս.no{^L)c%;y{N݆AAb~\-C$Gޱ)TE|kLp|!6Ƞꔦwji{`0ҟtc<;~.UY)dkт,qt"?zksEyeB6aa6` HԬ&M r`HE,0 A$Lx{Ŗoږ!*& x jo hMB"9$H߷#ٹۆ~ g/ruGbȏjI} wFC(Cy?ƐX_ $<, K|^~/|jN[9\i:ogY48jQ:0 A!S&f#11֏K eo#2ӣ&c$T5\eV&G a IQZO*;4ήz9+ѯR)rDǐ䆶  l XJw ќX^{ 26~th(/jUC}TP;i2hd7_${l?6vT4TFGgr o|Z?VCm@e(.C}h/>3qxVP8ܳi̸`|0܅ć3aFp>]О䄿(%+7|xdh+^9G]ӢPKsS<,,\$ʀ@]m J5hG,pU,Aiq]V[Fe0Y|G- j?gyT[ɺ,5Z+Cs=FAeJG*?! )=z\`p 2% ;?5W~ S=2$UX"VqQTՊXP}ƹ=.uSCKv!S%my=k+: hNJabGdKic-?PutaW+Nvؕ*7e.>uKQ"B(lx$~97rƫ_ZnIDpCD]SH8$%"SwQQz ^ Z!Wk4|4{<$-6VgkK##QBG,B(1`9e{0J.n1>酊 ĶXu@#ba ;h5ƠAs>,K*67;rK`^jpэ ˱+NZx+ N+4>`젻1KgPR x=̾ ҵh uU~yțbVu*U[ ȶQYہӉ8xn -ހ9 dOȩZLS_Au0F+}f'_UqCxwJ|<$QD3) |ưsH:qZ<54Gs \e)#P TвQɀQf{І߭*/pu oqP>ofFV=e`>lMhT`{ҒJXP3Z?'Վh{3 TpU#vMWx<3Y8EfBx3/*V!#ko6Z>ZAH,W+P5ߡ "v.y>'0Q/;w4f%B@ h֏+2J|P6 d)Qӧ~6SQCr7.Kӄ}ǓHJ\Rg u'&LLp;[n,vaFH,=g],Ŗi,V} /S30kxơt /6_`v)mӄ$w1U2onxeJyr^x4*0V!\]jy)4Ng#R΁rq-;?[sjI\p 9wm\Yr{:<|@됬ۗG܎!t灿XygGMy#CNY L>d6fnYLw3xQ#n!]`|64N9*{G(p7VԪٲ2ӡKTmfVj⮨\Wt2ؘPpai\hk螃usVZxYn>cN^~ =ZqȝM$A&͎ & MI%όJ6MÏZmiѡht= "/dr[\^fڕR6:ƮLIh&Se{Vn@ ~_QT/-8gGRkj2+3VsSr](T#!lGs kL 䊡MːݹP&&ˬ%Ŭ` 6S>#D b2]&do$$KПg^z+32D2@ҧ`yt` Vgd!,X4 oΎQozƦ+y,`}2ynd ϛ0ٍ\/VLP!yO  ]ߵЗR0{T+ԩi͆^#vD=>80 wm5YtoRRfJQzilo 5)P),PT(bB{Rrqv7S]u9Жy1Лz:WK3&"VY| uʗ+KkyXL{"OM_ %Mi384_NV:1M Q}z|qu׸* xZOoykcenxsN *\^\98ԯ$L*/Y=,ӎa6HYcCOu2[5.֞E`HgArIWb NVX58WN*S}.l_pMɌL٘^Pҥ -QT S|q&jdVeqv6%#Q'ۧ]Ȳ!]+S&' uTOeITR45^X,A%a z{J%8݆b\Ȕ7eqoR x ߞJtqgrղn814w.ZiJ}0\;<ٕI~olGV)+45YU~499߱ժi <~X kh;V hAYBK6jIr؂1O5o&A>mp׌/ <5|:s?ԁFe\qӜA40l ϚK^tsU|v장>#y:l.Y_PsIwW;4Gjay u夰9p4`#jE<{h.yB D~\#IYa(t"Z2}6LH:.N*+b~P|=D kӋ]ZRqJ<)N26"amY k7xBN]9C#_YWGsTeN/rGn2 fk֡&Cqf[Ԍ:{Nb"T65+s>b ¦Rd0a"A"mm;@(O~Y#(8dcy)c2z;x2ҽM@ȸsS?e 'Qɭ~QJu^?(#O.O_9C)/Q3Be3UZɅʬZ뇽OIg"0G@蟋^sDo CZ'FeF*vA@o.oLe/蝧҂Pރ.84AxnwYt( T<e[,:>H/ZFi.=OH9KH21Y8I[K+N5]r`SQˆ4}|ڬQk:0;PϐsުL$Bu#o)zˌ%Ow R&3`3Hb}+e Y`LlM5r'sB'yfuN&g\ڛgpK[罢2 'Y"hTfytjT}NyAAwԡDx}HݙwúR2cu;3)f%%ɽ]yJ ]g9ZsykuBYHN R8\C tJt.m`; h%>f#Y`wJXi4eM$h"֔#x&G8!';&&!#do&3S`epD: >T5m:=rm&Z\䥭['F. ӫQna*-3A.МqJ`43 JL@y]̟ţP hԿ.K8g?lr H̠L~:{5ޱ<t=64l}袪l@Iق;zLw ;0ơIpHޘexSLH1]LO<4ȐK-2)뤊 Kn'}E۩nhe6ҋ8MC3{H~:f O+~!i2Gl20W,C}8 iAջa59 xp o]h6 o*R|$t+,h# FֺɈzunN- X2GYavnvMo3Xsh,P ļ'Ia2π4$ k8aܹq2=U?1Q,/P { A{N?/)1i@>pDX5Ԇ6(2JtYtӎVȵE4*>(7YӤ4CKԻ1lrt_FX\tf*7;5$4P`sU_E%kB"՛?W͉DUN*j6G o мub-tUMJ1=Q Ce1zҥA>eW";Imr29`3,HզU<9[q_c a~L ɕ.iN oRFUKXU9 +w=~ԗ g(-Tr;$ȸPfuHeWс[X`߈8?ճIO?Gs.?0җ)VKXƩ ,?O c}eg%,澸(C퉫WW$~z2qUz9q;qBUResɸ\JeFDPY}YE&]rrI*̪֔_e$\+g>0LF17Q9Fh&mǰ#rV]643 s77+*3Ҝi 2Ygw=W go" `F^D]av;y>%gs>b 4B6gy4$ Zٱп-hk nBv6BnXʉsЇ0)'chՠ&aY7 ! NR 23o{$9E+ LPǟjRVdb͏Z/fLh}N,Dj%TR@:>ԞKSr '`M0er1t%N<\0æ4!!!\_-ŐFSN^TjyMH fJvo5oKX}9n;ӍGjlYo"g#[ΨKB Zӡu9NKp2 }`iɾZ)M- 8i|%մTkFJ g){U VM)#)d%I,tKĭ?E|%) >zn4c)( cŲ%b'/ʵX|)hFLqjW7W֩LAc<VdڂBp\뭊*]z>`"$T>j!oi ݏ T?*۴(JA /C![j'դag'B!T,T[= V0)ѐ`S(҆A.]ٍJ>Č6m5r )I%wc yX8BkX=W;H=]U L*F3Te:pO'FU;1xSРx[Lÿc0w@6!-\jel&Ia٭O k:ϰ!xb7>X4^a?ǃP9w#OvPgKYѻRŁ m.6FrG]7Ik# -hfȦcBȺ$Uo̳y?_u <%ak$W&I$+}i~f1TCCxVn~rL`T.f3S@%xwx3g. i)^SA`οWkzOV1@T u%W~:K0zbzq{,j:T5A_dq9wvݾgWp\ n,DSÞWswWriJ| r2'alRh󴀍ZGX=L/FOn1q_{c#j'ݶe*C^@.KL0QQL6-Uvhuʐa'~7;2^ nGDx a45?6C:u ]V.tώ3#ރ̚P~vg">cwZGR-,N&_q|hB0&5n-yIW=?99hN.D.8ga^ˣ[SUb#Խ]gQʪ~6 J]7 $wDBض9ZTE):&R0/U:+$s՞.]PB]q7ډ݃@=SmJswϙa|%1߽3 ~ 3j2 eoG۔IX)_`Zo[!}sJ*{C *^pӠ;= 9B?uWz ^;`zi_+s>|B`jo(ɠZ%J8PRchf+\(eġeFfuݺZ젋r2_yo>Oe#iF:˃Õ_Hmt*WP7\M[ѵ[LU=.T6÷:ъOBdSc0"tˏYC`+U}wCSW#>Ad+}> 3&Wmx\;R!T-Dɦ|jZҨ %b(HG2Yޣ?R+n3'3uOSmW_^D_Q:CY 0,djZS}mԷz7 ]_g>֧ I?V,JzzbxUnkk>K 6I&`Kje CfX~\_Ct|TbmƿwQ?cW'Gp'fNyVT%MsЙuJi9f7#u/a3|=8eexJ(gd΢&7lhMQ^ JM`Y{q{{#"dQ+9,ĪS0:pPdFDŽlU.W0S шN]͚R Un,PVw{4]x#k/.?`p]0x=dW'V\0؎vyE~A_$+۵1d% Q\ JnP.Y-<<CY-_=HGyOoYS\50$b~huW^}L]'9V^3Q};-e}L :W ^b5t~ "lJoJy7eԌ>NK6_zIi"0,(=85_@:[퓶+'R!l'-NtM~K&]O']׾E׿S+-4/Cg}cmޛ0ǡU[)seЪ%K2z ouK[BL~2z24m)1ueaMՖ[| S Az46ƧYw*+_'^ـYsan=|>a=CnM/|w6ˋ^-H;g\x6ƞt;&m>2_#ыI\]k| Qyʿ7S* ^!(`v ##-${8HJTyn7#HK-8Hxfcyvn5w6e zYJEAoc: t؂Jy.wY>nUANG+kТA aEIs{>) #'1[qudd[AEmOr0drD~I@Gؔu1]1 ԇ^lg^ty=}g6xP wB" ?Smq T ߞ&xЀ_p/"g tn@xCn7ˑ$jōnc+#nSh>f 3]j'Ƴ~0@:?E6 Y]ߊU>$[ V9SG.14N-VMy"U#ŃFQm R -` <&n DKߍ*|HT%sFh4 A[t Ki|4_a #"V!/C+Eb< ,^m'"amd#(("Wn{W)8["yVDu)nzI鬒_O{'xO!_޻.z~ 9< |5'8$ģSAwy:5SN -\zgQ!s59.";Nnj'5=MA?v;{(Lef)|&Quҍ=zj5g^1^ASx>,v5;{pDqt{#w C<5,ѱ.kq|NQ++hk̃<;YYfNȄ|3+0q=GP)Y OF*4Nm%9v fGfrd6dtM&{WsHXHzά 1pWnFXSQs,eUh 4v=_5&Acq{}uZ{L{=5_$BXp7&;?Lx]˦Y wVe!L:y>Vt8 ˇ^ރ@N+(TFzP) }aNXpGc;o(a.oԲB691c/m?FQӹy^,:#pFQSK9.sW=W~꯶w#V\^2@">WאeGwC] f+[傈V47$ wI*v6vqR`O8C,ϡeF E:,-N!^Ed)۴&  8ق+TQJ {AdaK|%AloӲ7?#~ x#Ѣ|KBbjid r懨@v(sUOQ֣@q]=e Z3fQEzWϕC@1[ؿG2/-Пb1 7m\wՆRa^hJ /m 9:|$yL`}W'E3~"_vκoSb9.VN<à%g}RLKF@Qɪ:+XpQ9@W|#΢t~!e錹?hh]"Ч}B%艡6{Jevy`aF\w):5UFP^|(DnBTB2m18|ʥE\㊜[w'i*0' w).3+0,8Lu<=4뗮TQDAo J_κ-J%=KzO%4z<pԇpcːL}O`]N4a! %C~n0mHJsmfn_4gQ=r+sT*TIifs}alyf -?n{JI3㝸i&J'/X(0^p l\3f,R?BZ6`Wnx`ΜhQ]˿ 2sz/tU_&3z8ժkrS|\R fºMFGFx#!w+.N"?S ;jb%\ڙl٘dB:،k 0bjS4(-T *E2'+r$޻ bt'v9.X'+W(Rt:S"qkjkp̹]48iKqoI,oC"'WXz+_DV0m;طѩfRnMB kY˽K MϚ@q>5-,snz8'd D&u%|FqI Ң`pYD>[OLqģ.i25]Y}` b{X%=`H) o ~ϐ@nt;&=*qԕv*Cٍ&]p5J~Sڹ2,3 KS/T%(/:=s1>?<68>}LJP=P/qEJKA%oG̃Azu岋{-(ru<3r`(w'b7V?f@t=Yz#[/>wH_W38P75NK%q@V3^sCY.ؑCayNά~i'^AVKzvޘ9O35a"ѧ"z(bvjg  f@Mn`KeG.kY-6j?p6ܞ7 yW},_qpQeW]7qy+%$Ɖx}tptN_:)\Z@k HXE:9%Gӕ4t_mPs Xq`2MctŽ ]{-jSHʴۏndv =i0>gq3~s*J;ztp].ց e](΂P`# {6WʧJ\%׽vrP|0;amjJX;FTrr V;i zzzCA72۔t_C0-Jל}MZ)rX]իnMqF8} ks/X S,УoaIFiOk1gfDIU+c܅ڸwi$I vXY[Q@:2,=&|'G.i_@J U9BI{ {7 2-Oy|ڃGcK)_!OhUAGn:^>^Bկ'sZʓ³ҵ㾏#|b'M囹 ,Yn,.^tcV|] <{.A9og. 4«t oV_k_.wZ}ɚo,_]c"(O=`Hܾ &ȇu6}80WlYt%Db}d*[ԩ8I5X2b 1ҴiP5BIKITruI;Y~($|Ma9P57 )h69zZsY *;?Ӳ*SK|֏_^FtZNhhi-kõY?Ǻy3o:.:|ZTc:Gzwanhnj5bM#!5,*ނlׇ8ڰĨMfPg9yu J7'*lڨ@@]!Q*~3EtБo^R%x#w*HAޔnBkam6wowjT|/ FoovOg}g DKDBxrdtO꯬dhI -VI |@1+pv;QOGPKLG9 Q$ϻlœ@t Q=hK-,C)$\zcNZÓu4݊ ziaGJvYf?s6`X8鎝wFi(@7PI2c⩻;(Ob`ksyX_@BτcR7adL9JR!*gr^\ KX['_|GwQddX=a#͈P#HcJJdNtnrV_zwk~R0)n5Ip \U_ea+<=W]Lk)mVn}TTx槈[0ٞBqx\zW"FĪnr gI s|%ϊnL b{lgFx;9p'+ϹYZe 쒚ֹY[KB)H_PMJ/Bk&+h- Xfh Ѷ9x^cc@~`nkXmbըn(cTpib(M\ SEܝ>Pw3o p=^{^kLn ?%JϿRu&Ş ]Vk,>+q- )i:_qb-~Wt97>BwF&H )`uW%VRWWI6,AgMi 'I_݋Xu<, cxͮ# ȇ~MC_Fȍc~ >=0ǦP,,XO~y(QG:iɧ9 q><=kY=nvceસ `>Ó𷺱,`WŖ{- ,Z,ftbˢ0%A{aɚ~'hl$|;͎:>SLY\M!i2G S622 !4~J4ȟcbxENr$(#^S[ADHzϵxS_BdǪ&i`Eg2$K_*{xnP*N9Q/qdt6`ۏK6vWr; &`+[[ڝ1ɢ~I- J6,sq\ S˅)s8wn|Rӥz 3(3A(SPPSaGk; &„)}Ŗ`Zl 1 uW,r}A >g T07`w? RkQ]g O[c`H#J?uQV,Yʦ^w6)XLY_ q28(b՜^ߚU HصpֱwePS\QCA?i9WYƎ!gDk<ɐ噿`w~';P_BNCPi-8/XGtKp|JSպN&Do9}kڅ@*n]:R#d`TM!=go1 HKKW}lj Y2gfݗ6&@%FJy8rP޽OC(ea-C+{$v ʢEa K+sN? 4|g*L& l]KvnCtdž y?;NGgYMg7T< C{]4Pvp^T*Ob)ӝ}ъV7sO\lx^t J//n8ި1p$; WĪ 61nCFZ 3A =hjw&r4U~{\ dX<+ѧD(׿5^$}M4|(33M-#Vm:6SWCneRs#1CJ6"ۼ.I-6onxey){V;4E2 jqGдG/hl~ƴF|G EWhK]y2:d|* CTW)F8<@vt{T0 ԟ͇#?zV'rK"޼x#SH? ^fl Y)"1JBo\ECxp8Xx+9)Ao]PA 4Q8.$1 'e֟ۜcPt(( &#qt!Nr: xԥt!e=|E BƯm V,uX!tAÔr..WJ wH wODP;y#jk߻[廊#K۹W}ͺEa54qa\v6@Vz jUvCRڏ5d7jJJ別Xq  sLi7 Dm -xݺZ>]y ̂ߛ,iQ5i\2*;`h3+M^OHniԵqXnxFCK9rЏTԐ9oZ5e3_ ;NHGLh A(2YVkhŚS&xP g>^;@+-x[dݲTe7}a74Q&n,4Us&Zo[WdQv +IK9ӕ88oo&+DwB J۸] a04`Skn߽nùC}<H%8NNpKf8]/0@8̳H^vmq2}: &2~֚Lu߶À6 0Z{uu Iwz}oӌpNۍ+V{Q[ Ű-I(v,I\;)Rq$suRvBF`_v 3oV]=u> گq?7K/y_˅h;:U%j\="/FS3w>X֨.HS"쨁6 }Gg!.c$!h-OZXG89jʑD{9tQ LLK>tL#-z#@~Z?Nޠ+<3Z)*T[鸷|l<'mY Wf| {wfըyհfL6 fu2)V|b^$l0`.;f(kKa (a֥֖3=S *}1Hx|r“냂ŭWJAu<=G LEa4TA!,=7ېݠ `J(CP]{FC^2PYP,0hvlػ篏:z~J#NO7,"|Dl/]׾-/$hC!yۛ&GC@εK xP75bh?*}pcJ)½B6?u;|&;nls}&׺j9t[sl֍ϴS"߿>e x?o R 0D8FBز85C켐p}:bƿz,B#hWo?wDagEYwE !E#_0kxZ \kQuQaZ;9|Haar2`-> F)+ :i$JߧEفa~gP&SŪn~ŜӚᴢD ّǭQbҎ;%vS]Nd?_AC`E9lNRd16-ݝddQlm#^a0NcSy<|Lq;#&9qČ\=N[a:q~#@FK{0D&RƦ:j:QkC°;+޹ <Ⱥ~k6_=(.W,O?pV|Odc oؙe_ɼ[ja@"-?( 쌊fTWNFpDן,3S~7yEH+GctfqnE#X:&1jvn=jl`IhMP>#c8֪nuPm;c)8ŪA񵈵pnOIX{nV%PȹW L/M˔m"c*FWTc!Rbŧ)V{JKCͼ:|֐Y4?2)OSa)O"/ٳb 6Iļphҏ T`bl*7S2+Si_ђM@?y|(6T+(5.]~Fi~(]Ki[3eܴL֝Bn@}}ېt~;ݍm|7u> ؼ;Xs&wb ȵΟpǐ/v'4#ی&kNqOxᠠ #?"fnp(퇣Q58DLJ"]6_)lnw~cSTof}YA6O lцNؿC`J89i4~\= u9Z%>j+<v Zi DΠoowjcy^5d \ua@kL`fN9ʕ0"A}@|6~X 3t  n>Q/*CUb|]U|(! MnY%QN{`eAa") 5Ƿ2KώV ;ѥ>I+5 <󶩩 YTaD8NA%mReojYS]LM"VK&QIXYq|pd.cg߅6K4TI{T7 SJ* h3vj.25Y dh{#<'0.NeBZRVY;RLߚpF %O$&mN!#Oi dp*5Q#*L{UYeб bӯ"b*eF˭=b"iLËn^KB=SLvCNr9-" CȜ@{1pϧH"\&i@wBd^pp/Ae~a`yV*v i )3|z[;%}zmX]zt?ZN^x hş(^v8(SHY +ső I#H{[j#U}"V~$VydfE#nvV:A :Okݰ_Ken:P'&Χ"N'9ɥT *]DQ6CʨDg)S!h"Жڥ&T:ܲBWr&EgP]'K*"8g V\mLt!iiQDq]>YdMh]RW ps?Օ]7Xzs$zI;@+?1A DS~۹F r gBOyʒ0PڢViB0>2 &U|.7UNԝGr~mK8["WpK(DO0ѪتN^6P,yZk. ,arT5U>14- AKkBYԇLO6x"QkM,6 1X4f抜 pN:pjUǞ1Ec}$qՈe]&υ[[P4$B0% o|oM9AìF jjwenUw}@rWJp@c FVIBv"H V[EZ\ވz4ϰ_5& Ngn4IӻIm۰%uqG*,:Դ1/l irx;)>)Q$P 5{>kA  ]@^?Poߑ`p6 MT滽m Gy;k*d{+#jf0A dpp6#+fP_ _'ʫ^sk\t27Ѥ }yYtuB/2][\v41 de#C%Ĕzoٯ mF}%-m&| $=j;;tܾ"#ొaG#G7=29ǸM0ȕ'1w z"qi syI/.wwz0&@܏.#wػnIUʽ}9n'OeSb LI ToNEjolZ#Saa{2 5G =ڪ.3ISHŅzvA]6%gr4}@"m 8x* q|X"YbE|#-rV4Q79>.r0`+Mhtk,JgF/2zJkxc_Ў~^Wț@a7C%)$'*chC|( oVU3 x &bU=`Ү>Z(*n"M5nbSLU=#(IbJ6-xhݩ%"yBOݠ7d萕BD1ߟz'PJ=2?=ch;y?r"W%c^]h֍ Q}z0 L!.X{Kzf,ˀ+ZK̪vؐPODJ\7=GrVxJG_`lX 9rsXo%5*ぎVV#0 emX|Hۆ ۶${ۤ|g]zŲ&QSY#lǜ>Yݽ|f7'4RTv31:c8ux~ԼnTw# Tr,'kÑpV*=\=ethu77#WV}ļ62P/s`1”hPp~r-v&ig+qSu6$> [J4h((l0us4d(G%IDdݜ8u:ҕ`]͠@A,,G0s9:fZIfr3^WW|Jh@~"ǒܾ+ xj `5f!֙ Y #OtWt[o.6PFcRA_5@Bg{m(47)pçqcaռX,hrWLAR /CJ~̓^0P 1]?|Rǵ?DD;ǎpΨ|yPQ G*7 hL1<{ʄyQa5@o ˤbo8)]8Y ,GQ_po=Z82zb$ګAJ3YBZKꦞ]8=c-t? >4_ZTv.4Ubɀ `t }w:ֶA2y$?'LR9+nO8⋸mjfVx =C_V(rƒLxj2J6R*W' VH}dA\u .4A5 jflcz gtzʣfPezԸ֗}Ob+ɎM)د4aԱ&#a]X@?KE@}P PP^1gCH7*0'QJEǣjv򸎀U[l[6&Yd2 ǫ, ^DATd⍨S@ Fdwóx.S%|@aEVvZ V`R֭EJO QK%A3@aBArb\%T8M{Jsdh=J8W/\es5 V+WOsVj6WZ)?ghZ]ޏ9 gL\V3W̕ɯ&i5Z(H``|;O4&xBJ{?@=fV%,R'ۋږwBݽ''ԥ,`ҟZ\`ua#s`vR^zx2%%d{cb86QbkojG]q8 n&y\ـ\Y @`zag2kx[ ${;v k@̹} ;bX^̏EGʍ1NГ]A8thpv|hjx;aB7!(La2>M[t\(Yw'Xn? US<@ i QꤻAYH%OY#sSN(6UcVvROSkb{1m`T h-Z z O XR/oFR:qd!o7pjh9 3RmZSr&>i~`njHh-iRѥyf;Zʓ\_"*|ju53LJ(?}M Spm\ b`uBCsO" 9Z'o/x֣mIu.'#E)=E<Ē.=;̻joOfHx}uo$GrCOὮ%@6}-ხ{ ʒ2*6(IrWv=6L*9+,ib跘_ݣ'?DYZځ@ܯ쾻h5x6u/c_%eUv,DC X6ߑnUm@3$dl '9Sß&UŸ3&p+Gru J>y՗`׾JLlA} nf* egqNu@UOEDj#Hf.$ּp/.yK0p%U݆۳톲|ݦ-yAW-X(o2ߕyRXg'nt pU3s~l< Oq?116nJ\Uƕ|tOb5_ Rd;ip3Y7Q:sud VQuo[fhjMy`}ύ/ ct%, 5BIܶ*w퐙vtfKWd]ނϣWi&$\vDDw`:Ō73?2Ӥz &ԟ,Y' 'p$ɓ!w6\y \ bme12f}fUкS+q]< =0'@] f0'Ժztȓ:UuQ I80X7a'\낓:DqL´Xq .:W識 ׼X7n&n;SaaDc˫ba|(F]_h-0I sm2IS?3Me[ỉN1Byfo^]aVܬH'N8LI`{9w>g齻 _nd^KmyyrƂG0pmm(T;#&!=hCv A;q-O374vOL6y^Zņ[5 hUCWס\Oq΁koS T\~Co^kshq~,$-U+ڳ}a1yrÎ@#g&VR'l5O_pb=Qe4 @4TQQF8.}- "F{f?`9 `13 RPT+M}E~F6s51TG#&2g|!q.n|XìVz{sL2[ ya0Rk܊_ư}+<\l%|QC#_l' \o!2>#ỹ o뀅'>\^-aPł䩊nQwca'ޓGBmIO{W .ORAnvѸfexKк!~pcsNjM s҈f'#@WXrW;U7b7!;|4!YJ}2Y3[bٴ~u{Q#n#nXcj#Y5O7h\ѧQ&^kn>Ey٨$8P>N-:;!THӈ5. 杞ꕑfoaBBD2F>O`\ɟPJ0̻iP@/A1~gc^ Zq#샤SpxĹo05|cSRVz@l^vOMP;? mMu }Y*Rk8ރ]G:F@t3 Ä7' |0hk^ ] xe%ޡ fU-YqCRp#WaLS|;iGMXEYœci^Hܘc]BGVբr?jmR&;]dR>VZ?6_V*O.w47]%CVݗ^TfAWg< E-OY)/D ƒd&NFEE,,[oa>O +fF0?[ kQ7n@8޾FevjÑx0,xGS2{5S( bG"9Z īy;jOSoKYXs98<MIpD렟pXYDǧt Vh2kIY 7x?6XS)nDYCqYE}%MɄcĦp )8 o\!]C K1бV j3d (ޞvVS)ΏC\`Gm]Ô@ M7ΎĒfE?MMWk4:a,&tƚ mVMf%DU;$Mw#p/}a̅ihV`T%B dv)BK<vufsf*5oN@d/јflz&67dkv؜vdGU}^ gyN 01/NfaGz9<Bwx'2)L\VC Ed;˛l8i6G '|sA djh] A.x&d~6rܬO^ar[w7sO1_}h+:*k#T]M> Qو䈟 $Xyq{b҉Od!EH]@P> }ןj YSdhuoaT)"Tv^ɎB-p~n$ P7 !oGXd;|~)O  8ڴ!f*!vi/kP=e TK ͎q Bq:AKJcٛ >b tؓ(.͜3F~,.m ;o` 8AdiT9'.wf @ſ,*ߛaR'l-CP^zTSuCE*"=9CkZy>pZ ݓ^C x<;VsEK@{qf,H 鑣8ubu,6 \Nd#G8 cVO'Cyl>y`fcEvZn_io{ri$V iY O߼$`PKzt'e1 {lՔp+-*_#`Hܖa37E(OWYȇHQ d'ߗa ^ ,c>2n.506aEЯ *õ!~̮])GqyAӡK@W6WrrXj6Xw)8UMȻ/g6r3Ё|$9}0#Ě+2a׀ Ff"{jA+zfde7|gg_|"-E[SVOxtu:cIϼw5H`j,3UIgǹGh? o"/NeC6׸fL"U(@oRj  ䷻"'mȚަI̻#R_5;V@rbIrBT_ 3/Heu5+@e) QИGFKV{t?ߒɑ+j?篓RK k G^GCk%k$)"|ԅ1-@! C5$B7qGeK%OyiBzaTN).CFsHpk]HhK[XurPKw$S~CW9AuQދ!͍\U$f y0 (i&ELޣ; Y$+Y~WE2 DL(̈́{z6F]m!Wm}5#Y)"e QhO^7}KiV wm*Qzq5F-tPBQ.&E)\*:a+}.Np{*fS&h@f2A0{tP$6u~tncVKdɵЂEֹGIa#pf<~K_lC\M`ḑuU%PZ-Bz Hi1NRf JJ?p BzPcȁɎ1RuOv@d[9_TiQ\ #9Ђ'^jKcXٗ,}Xz.՗C~}lX/Qs BInlvIz^xUǑ>GC=w`#ZaĩuENJfGapr|lk\|1{~lC f*VnJ~Z0Pa #|.N6JțG_be֋\zʏy/KfMl`S 2;LH+3z{<(2 UꃐhS!^n ӥv#|fŠv}e3ϘG8+4L,Wډ jߘhc",{ Og3AI6acH1O.;B05k"/S?FrjΎjCIo]*:3 LX6s 9 86u2sZUSTM&,\S2kEuL^f yPA:}U,zPA኉'DAh?ꏨ/WI: )B|epwWH^~߉W;SYR䪬 {9A12ddշ!@5}AzTrWD,x6\Y18eA:Щ`?[ &qBS>hf"1 rA oI9u<{W58SFu5ڰZWЌ5WA.d)ʁ sxٞ,xbF}Ke]X\}z ^H+n=ju=־?,ѸB~4#〾5ˡ5Z얰=m> t/@s,+G> > #&70JՅȹk-;)9j?瞛Eh3`>(N?UY-);&>u_R`4* p{IIˈx܅@ 2W]\my\)Y5X]f6(R.lu=e0w=}S':cyƓeJپ`ς! T%;5شg\PHGo%8u Da7&+I@0`a2Rfg@3W[QUe)ErwyPV2䖮b1g_ڽm0"̠{&:es,e%r-#>%E=Dͽ?=(=B2PBS?D5x=5u289MwVtlhtk]l nx3ש29gr͊p4]%;L<@= O8;ަE% I/`sҁ =ŵ@P%W@cAMf\Us- q&N2I3f^wQ|{ wYןi"WBp C~ԧ#s .gA8 !f]JUn @8o$%Oݟ!չ_aKTXmG$fr/j V2J_]|VUUa8#;N OauKПO! 7S)Eo#x鱩#6MM&D Cl/-Vmr>9YTiS%$M:+V8 9nO2I SjWB$2t[`vh9 }=X-]2ǩD9lˁ@.Xб+[HD]3Z2w."α)y@y/j1wxwu &I{.w%sx0env:iAbO*O(fia| I*k;N[H!=(OV ?0K;г"y:0?&U~FtJ J1 ׫:ߌ𡣡w (gԏǒ/f X*F4 ]&NU{BT섺 [@M.N@&5Lpd.Aыa̅g!4&ف 1֏6Ձ CIZQ?9mS^Vo9Qq,ݎVGvsBҧ:ڡg\@@RD-&* 2q?Wv9Cc)&D<8Hou/+!/L, uĵw,>LC %BLj7Q2+ۖw qT낊[ԧFHh킺3^ub,~ +`* Rq滄 D7}Ɛ S$@1똅5{G 4"|W P,Hm*Nfv$֔/ړoBV4x8{2*Msn$7 i>\V&DQ CK.ٻx,j.dk`\ĺN>)x}ꁽf٭&f_ݪoᾣcuTxbQvs K? {WeЃ(z)=݁]Xy>i DQD>a8DQSSv*^6cʒz>a^.ciԋoezD߆ >o~j|A9 \=)&7VPGc̈́+q?J7cY ~l0?zCLe)3(؟'.Z%gzBw@bݔ`>:g?xymSl qo)AU{$Mᔨ4tW %$x 6bJy >{z'3~\xDLYVV'H8]4'MY`$@'Jr0QwuJʛX{5ɀM MTujB @Z:x*V9֏yJ"!PXh #*e&HGOpqB[9=c(%;4N9S77ԏyQ:e6PV V}hŗڧ(XAμWݪ]PeQƳX{M@Jz2WmL0fb,V. ]Wܐ‡$#Zl^jr,43 _c @j'Nw@x'jIqD8I/#܁f)Wx+j2Κh~\xuer)F:*{8  t4-s5Iexɗ,'vVwfUc٤+: 8A|3*t&_-뀮r^i^l}= sO'[y/O "{fIQzvcx .6҉ceа"&lT;`:JB%0R,p]!ޮԪ Z̪2_wL&W{zIM 2_fjPMsKKK9z$[~uWhZVIgfDҫ qItRޭ3Da g HEE>i4&+ZȵT$ :GkGi*ʴ[aX{zj>ijAT* .*&۬S/,WśԵWkVTgU6}Rlf%P)#ဂ:3>p3RF{#Moi뿎'eoR[`Wҥ|UD=WP[dF(Pk&V Q4!2*ȧaI= `&bhדk1V3?G^0.RAl)<#YqaV3l=,vGHQʅ6)r#.3Rޑ+ͳt0 !azni;8n萘V9 ӷtfE=gvN<8ұB%Kc; $)PCCVNc@*B|pb?3~h&R~ѨO44;h#@8 *H̤ /yA4BV:6^ X!y*K\lI'5@ |ͩKrѻܴM(d=dm̨R+Q?l~OͲtz!VAE $AZ6M, q<67h]^ѫȐFA-+\}11j8j fQKdXRSk=zVnԘaj暃؆CNCp3Ҿސ) -/#@(OC^oU U#W3Aᝣ19>m衻ʆULs "iuY;dn0\l;vK< vĘ5o7zEg^ 볓l1tc VD@5*3а#Z|X\[X29U"`bºl|ŪXmd!̓]O7Cƙ2lt"T{ 7"Hu o4s.;P+1K`dge2qh%WYffiڻ8ܱM\7ÿӅ?WA[d kv-vDX>6!K/Tg Y3<+ǮN*(s/cuW{ٵHWcf^ui[-wv+۳NɾM8%]jE92^c2pG e@m&[P =n3o< BW-0! (!mZ4qdBlA1|\Wyd="AfAsء17NǶKWE@5LI:P/?y^6؝廓g=BWJl`v>6oQv$>ޫF`z"szksGqGdGM]b&$.n5.R-z~uD3n5x^pAIu@AY3O5cԐ!wkhuKo2q}4Q`0>|aRSU; Y>Ұg]>uL,7kV!$cZ89i[LX"Rԛ؊;{_G2kgkkm\~ŀL۪\:TD6Eq\xuf]hx("n`̖iMufˡUP*S=3jJ81Lz[YF5t5o-<IҮQᔞ‡ Nau`kԠ`76-"z9嫯2,YܮzÕZy|\KymъNGc9uN#X Pyf)u'.BO7[xEu a rqK];,^w6~͈YVȷq jXrŽ`9}XXǻvy#=R|i7ai,ANNi[4goďw@!@)`KX-MI{nSҺt)k)ؔBCUF̩R=h47ḷ!nG]kj0XKkKR!ؓb;&= }*s;JhQ@\IPxl̥&aMZJ lcXUcw8Rs6fKm~tW|A\3ȶt_i]‹8qXvYhCu~Vw{}tpP4#G֙*isTH?bwHDc!ax{;22 ՟An,࠯U^*)x"pB.Ą1կP&؈mqÈ;Sb'+K Ā] q`DOoGĿ6`Q8&H~z }J>D9`T}J%I'j40ߠo{^!/lZH ,fJ~F#wTa0 |ožZaZmáa Վޘ~`#._һ[YKe)q=xJYأUD 4돓u-/a$ b o8ȑu$Ѿ*$%m +6}F,}:Z:Zu'a5ONG`M6:dS׳\_R/{-G-m*j)5"AkR;RӮ9nqe:RÒlVjUzxũx$wGφ/\t:4@lJ·qySX{"5Hz݊c {1# H"~YL?=?![,<_X\u^˪}jC \ઃi'T:T:-Ѻ&}G0ɩ08HAIO C0_f>/1QI-f9X~ůEvڣL4>ulNH9YE]D q=E[]Sw`|*'\%nW9GEцKޗ5/}Q~!NE] /S*FQԹ;&Ӧa>{3=ʻ$cJ1fm>HOwн ]72qtcCyi&e:k$y:ʥ-xO| ?R?&"p $Ej +oi 7rڇIDUqWhe!Bٳq2G˥/_0_@tXwا.S;`V>퍯8՚g$&XKWAv,Ydv:~L)m0ZKQ&4JORtFiBwˎs@7{uVB1+Yi͐ ٕd{!1·p dy6,g+X''x'֥7 'T=i-R{ 쪂B_<va2L=GPtA ]Mr;$520Q3f v1??xfĵLn[juW,6,aofmmgw|?Wph&14|wԐ"E_ 5;~ hS)]7ĻO{,n+-FA۴,r2X E{PwiCCV^e3tIBFNJk7Ýܙ_~gR!nII6I}(<>}o.]G-3qԊg / 1BNGB8mLD<)KU¿#nG^߫hJCCVQyP;UB3M`>0 op l&LW|8Cx7ZBg<}nm Hp]ѻ"y-nGʹ,Rg}hv Eۻ̐bf!e'߯Xyxd1G`Kyo67;W{,SvbSggoPE {΅s=*^;jR%b񭲼@Ӓ?Of}h#N;cĮ@0lZķ@]Vx6yP ɏB4DYfV<f2nJ^yÐ7~eZݿ|HR=o}A?TyLqa\ߩk*&`p3oP8Ex||ԗ/xo7{.ku$19,<^ygȷ-{Io‘䉄Q`N# M?5t w^rhif&ob7з }#=R۱of Q犩sɃ#oxcM夢#C<}z:jf0QÇ\X7 \R:.wD{/\jJŸC0O0y%atߞ s #GA)\m9qѓ=nnGĬb[pϿ?Ҫ~ߧ}*o}6v)V#yc=2s\\kddk_Ji`aPa~d1|>1w'"PA :3vs{)k?#v-- 21kk dZrI.5GV'^%cwX+lKV2|;#yCfCӈ56=ZPM*LW !ū,siBCv&ifXDw44կCw)5<>@|0%)n{`q1 s/5! Vu>u1'{X(С4u /t'+V>S |Ad ,+vbQިdf^X>G"z3Hz&b(}^X^Xdd/LRo$yS$OwSx82t1Z:tpA5.ƂNԒ7[NDOc!KOX{[K^h9n[&(H޸hW)v>R#dDh:߂QGS8 P\iҦ}ⴚmpӟ.FqWaֳ,BʣI"|:]ЯViCUgLkԆ˃/R5cE &#pKqɕ@S7r*fB -޳xq 6M nmR?㡰_(*[B w۸04^9DA9%繨@"tOoaVPy7U3,TD4=E˟4ΦȳAWc /9(Ye(8l>󷫅oNCnH7*=q J6:& Ky )=I;-~UiYW 6ьam76H:m=<fT7kV<5}6(X*i tֶ8JL7siW cZ$;m<&yb-? M$u8-U~D_[tpUCfmz4B{׿'Pju㬙Xnz.2}~|J/IRAo"_b^+(6hVyfHЀI]q52z̨. SlF`B\YYsI;WƯNtfSkٮ-Q$>[2:(J|f(InU`(~C  jzJ9([rQ@νI`e1` çB?'FⒾWkp8)p(!]h,Bftq Hly+tKRd_<4&u*qݟ#P[fO͝FAy=8.!4cbٖĎexdmÄv:,WEqA=>Vz-2 t|0'[ Vu{,1D"POqDih0*"6߰]_m/V^98g՘VN{?DŽu`|)^۶"w%C}H|\a7WˈV.$ ʋ$<ej⺅ /I.;X 0U%ڂrEx Ԩg|Tk\7WX R#+j"jPed`kh\ԥ}[8Å$XƜZx/PW`_kV ~Aսi6ߊunA9dX ,)x#nZ^| ǭĂ67s/,ab RՅ=bBetfKlad2 HXb@_HͿ\w#^_/0N4 #cüF!_GDB_r$:ZCˑSZ.Qo@o6catjM< Y ;gDV(ˢXe(J"q^0crx3k>o0џW3^+2v-h}> KHw#<9}}dG/.e`—zÿH_r<Ϳ _$)N2 5[}G— b/W/fHCsl~q϶}BlVyf *;-9ԦaYS JA wf E›^Xy&ΧJk!m&HE>č-K6+JAϘ_JE3Mیٛf wgC-Q<:Zaqerghvm#߄zg _]>._./XK[KAr5ƿ\b 5ӗKRkk%:bFh죙=zPGWÒǵhAVQ.5pԩaL VEXt @+[=&4nګKAJ]_kEh C?tA]\Ռc:9ˊjcW#C#E 9Y%{X+` !D B)DA=hB`g]Uz1`_mL`34XW]s?& uTAͦ7Fø1Э'(X'0sk Xɾ(!~C/ڮ.q9f3_f#.y}z ﴿8o@:: ܾB5-3a9FuF5˜N"M0&, xFSu<$71tBfcxX=_?MewgNfj9U;H+'HrR埉h7 !z{H0>?^ jx+Z`ٯቘF)IH>F^`{dɚ)Ϻ߭t/hQ'̈ɛ2d[iO:B+"W9* x`2AV5wOm˦fC-|=Ǩ $N7Zr&Tb5r^hmG|NUP:6ϋȣnZFXdkhW ,ښ9v$% ?zd99GSԟ 8S|rJSн`:Q((C ÅVR$vܣ6ٵqq|[}O {`sNGNTrfO:Zrf l+70 bB!55 F K#ar^"i ͉9X( |l <0R%.h0$lKFR ee͌VA1c0ckvl6$U^u "MN0%BZ'?hZy6ు>Z,?T#~ x]7*dO|IS+,bYl:ٞ4;lR*N>Xz/Q}TOM},d#-瘃eDu7 5zOqY\Bwڽ<1%IП S;+"' 5 cҠz@< d`6;Aǯ笸IZiN ^->3vVV!@y0]; Qx No鑗߷d yEd wu5i5i68Ϧ ToWw0=>'Gؐ PIC}TWwWa,G7=Y0v*GL㠏D{>l]u~J!Cۺ|U{(!giQA-R)>԰W+P~+ P6ٯ*~Mm9dRM}kl-BΦFş8wohxyCp=K](=#1O;ڔ8 L/0sG=/\WP/eA,I&Z?]!DuM7& ꨓڈq0}ԉ0xٴ]k8m 3)RH2~3=kñ+̚mrꡲF>ؒ=o kPAʒg*+(>b8-NCuӼ@tQUI&Ka:쥶F& ۅ1,؁l!g_ Tp96hg"coׅ8:uz}[PRmfՂM} uLm^4LD?S )A6S`)J!] omd9ٶd m#t$^h*hd{pXiDݮ'SgnVP-/ |rjC]t+̄(Ɏe# lضY:pE;G~CtoUޏF]u ]9_rR4ǁ>"p.?Z6(}[, tY{e܏jF"t\@2T* 0 촶iUoUGTb!-X-yYJ71M S& v9`NHFKFVB͈2%v4̈́߁zQi DFQ!F= ZJeSQNUbah4-y6;jqJp9O* [x[1Tte71+GN ,Jx `eM+ɬr.kh=Wa-0 (uYCy-J]bQg̴FʀՆ>mQu^4"l=5ʲUgT`Fs$^\ّ`dEmS+u`:&X(+$uBX-VE;*٣ 5#mVNƍ )vԞ ޙN[` zyRB|vMm3/lEe;ЅbKcESFs/XPNF \NK<`Ǣ#·jڃ!%PÄq}CjU0 cE&vQqoPH9nP6A(vz*)m iG0y N~JJDbx_8=qs1 VPqCbxgR)2TD$;FrƳdnn^ϚA*&vWI;Q0ïɹ|Pvh,(nZmh :FT)H#E3y !ޜVpjӒy_}?Kmڂ48t֧M?K%Z`q=Ɲ%gLuJz{5#2L.ŧvlK7/˃.)z&ͫ5m||0Nvytql, .%&߀X/^bO3\JJco,7j)kO"u;Mt IAŰė#n)Q(5bj7A B3sZpe.v)_JMA7ҋ kZ;eۢa&k`FZ*GVP\<*"x)UHT HRi*8Й=$%eY/Pt\m|l3akG &52A)c ~e{A8zC<{􈐄:F|rNmf}4kEġGw+x<=Fv"!kv\ ~^}'#л|l[ cG;tP5hEqmq8mMLUeN=֬t_/9PŸ-(AУlq˲ǩ/ [WVz߈MB[6Pm/ [Q<ľb47gp1sDQ, fݣe w^/! CHeck=rv}ޖNj!U0WYmB4sTy=G"9Bi 0 6bx eZUh=.7ex]UCGKf;R1,>Cܗ`(QiZ^c%9 ĉw<@₮X JԺdA q/暼#:86)㱵<mߏ#Gi4 I>:"Z ۡi3Tq68^Э@>._JZgi˘tL%il3m>uZ:0 Bjeq'^3{av׮.,(O Rbꅠ_ǕU^슔eb+DB.!ڰ& _I-{5)Ͳ{yy*$TfhQ ]7)GxǞ3X&%nTdqep;G&΁w `~*?f1EL ;3b)vlsotJmU99ўNؒ`K,YTpO+ķ&?f݋nt vaVȏ! sab~K"LUkƀlr0re )|rĢ  ~MI?}-;Ɯ]dk #`@2B#}]Oᡠ| _!RFiOf:a3䛝{'_Q8 qFs8|C>qOōx6⾤_c7Dsa̭-Njՠ9@3]2"־褀c!'&lh?FA,N>ڰnj}d=-bջ Շbj;!*BG`d|Jy ^2=к?"#v%wvۤ 7 ?&Tj0$"Hl괳/ Ul YYQ:%7yGnCH? D. AΓԫ/$86K+Ol)HPolkrAEC5 ^6 8a*S;REԏu >8F.GÌ S[ؐF!AbF`ՠ^! S`%d˛+6SC[*TGL #vyn_0 ,@xaC(LBx-imb)Z8CG@ ؘcٚMWW%Xu ݗU/Pv8ܞt6V*ckWtk*\Q !5- Ըb rֶ:m嬚.ADtX\]*mYb&L{n%x kp`cT ӠɷRgД%#'* :Mҵr/pJ\s lc97:lZ"u%fxTK-bI+Z͋?_$>7Xmo=OQ_ Oc06-Wl3]-!tbZ[[ _ 66s@k*q6`MS_:9ˌrCK""KC/s<~< tr>(W&a?Ps9@D+87ַj%1_5DώwYW Pt.8Z('6^Zj3!^ &WU +cVcCeU%(ҩ7X}"]Ovfi!dz6kaUi S N.!N>i,kT+=*æ/e`LV{SbJ6BԐ6CRhJJa]% E[}I1˯V\9sUҊp;i~7k&d#{gJndQ~7"? C͆y꺛>ǘp*YC[Y+;%|7*, MvoiGSgeSl0z*^Ů|A$Ś __4H95~]躄ߺA/$r 8WNkC;Y^c?G) n:/JBFocڭ5W޴NB} e/ ȇY[ a)rR(DL(m7{=v>\b7o/|+FQIquI~ vr͊䅨= #&H #^#I\Z9Q+}Ŭӧ,n~^\GNY3ldǟI{!ג2V߹X`?r"ŰlOͭ13OxdohAd㛩JȐvS#K6²5"7G mWΣp7ȷߊ]܍>Sf=xy-#[)[}J4a'~J;|h+/Yb/>j]|{T,q0jhHT ŲBJ(r$A0 \L\r30a׍ Af au Эfn9 LΧg#—ԗ#\D-(( s< +SV`EһIQGӈaTu<냧bGl,[LW^| S&IOwmu|ڤv!1<i7.9-pʼn4kH-" %O/A ȥ}$3s}x'>,r4z=ufĜc Mn5ru >5APZwż"EkoNҕ|gXlab0Ԃ:!R6cM>\Ώ"ſP{5Л ֳ88hܗC9nAyȖp{O3D]n_:μ#%CW2PA1WmhrvX]G_;Rr?beʼz:ý3fo#G"L(H^k5CQ&Mn@ "̞ÁjmSƫ+Lʋ0*s*Ft MȔH EэB;n'KV#GY+.2{fAߗ ~;}te)t2߯<~9Ul4yliea`h@S1 ~8gx{pa+W/&Ϫ\[HœO1śRXyy䨢ê=>z}3<.7|lܯJ(P;Zk޴)u .tt؃T%fƆy?E}xm@DZ c/tӮ:=ko;:`ɘwp3=c< z@L(Ĭ.YڰgClE"RCu/1ͩ 營'@݄m`Mo#bJG˩{ңj5a콖VO) c jC D" L\*.*X™E Ѿv}A5 s/kh<x?IsK># gPl[RM41nV9' >,z o:4d$P~ڃ\Kct|!Ϊ>B!6E㕻WkXÉ6~ [K`A3{[qyik\&)[IM-!6yU{֜h?f*V9! m9 Sui~J1 *HKsAkmά#iT<Ww5}̥ށumJ_ ]\rX9b7K@T6[BN :V') j*ζ3RZkuBmi ,qv^OC X#&'cŵ{&6mhF},zudP|/ *`qQa}$[2Fh;5(;1 nZbNɽĩث'Oq]ZIbs$f1-vDq+DxBܥ}q-r"q _Db7tϭ-te[BY[f\gӮ!rAXizwۏ@Z̔paթWodΑpv.AMd C٘bO}䤰SlϜ'prH/RdTf ,m-![}PAou.)un'M|1dfT,Ef_eJ}V+)иRK?tXlQՔ9 t4Ld]Jf{zkLQATjie>)0~ XCN&) +cl]PEI0C0>TX\ȷ 9NKn4?u`#bđw+gZLN|g^^X4!&j9B*2Bn('" {iAP!wxP9}\\Uv/uJ}Y;Ǿ9˱ok+MBeb8 ooΠ= caqB 26l>8fݺ)VkK>tyX5P*|C3WA~ (H 5ͭc4DZEC@DH=PyQ&:N#4TH>vHA2R:I55MŮ{؏J̋M4^ƶCWnw*b\+v՜E[}AXO?&,Os)=o" o<2x5?,ۏ2:Ft'ćCB],sA ,dZ3ԤVQg5;rcEAcްq,,.KxZO."M! 32"pPq}$Α4H7rb3L=aM=-.fڄ5Wx;Ì^rb9Dxs3d͉MZc2s@L~t cs9v&?XoxACJg`ZuKO!2V1ZbWn=]K9j'S:ͺ}g[W'؅B M.R\,*^;k" <3M(KJMX:Zqb!Ϛx1qqzY;..nY+⹺zX!x#>B-`l( bfj:-l`ä {|_d+Hqیb/u;mxH~9g^6&z˔,!^ہTu9ofa[K{FAuOYɴ}[~p,` J]VS+PU)}Io;UfT5* $b 8Mwߞ#߀ ɕ\@ԥv78sgրj?^ i U*Gv~@HY` å V$]Zq46[ƎB T*p#'|~lv*k#T{M7@yJ%27F>E N{JA&3mr$MţM*@ғ쥅# &Q=)P/cwg0FO$$c>%2)C@T,4XD`[n@Q*rk;ZFuNvn[DhnXf%Hzt0'X.oS5!;q4Α1磾#a='/p7 x {E eXlxCv梡/zT,G.vUl]LAp$;DX/D~#?Pgx# ؊byYTX4tWDkL `^≚~3]&rBI&;uK̆r(p[dt=JcjaPL jn<'ٛŚzsYrk]0mts-CG"6k]A)Zfp=ty6aĮA׷|e.ֆ';兀.Oބ|<,MWǚԡQٜOJ.%~,,9ɏod7 ,쒏k76ߡ71VepowCx Vi/P0x8P98-K[9&)y>.h-&+%Mޭ|[-@@ &5! 9ǽ'%4P|e+jrDY+{  L3epWQ,X-5C˕ fSD{M"|saܫc1.&/;^#6ؘPL٘f ²DNJ,6o\c =˳Qg.S딭txIRi3*GAcAAMx ş}w2 #TzWۏҀ>rP1| Mm.f]C^5Z 9_?̾_ +y!7IVǦn^w$ )~qHz0":murlZI -G'/N;5NWkJG<`[ ږ(Kг.+j5^"A/ oeQ}[w)Kmhemp&2CZn=hg][tʩWAͬWݰ;V9'N9υnJtQ kc>x=rA=_uD"--!d6ttX ]k/yxD`HG%z[@fUUnד)!y eC̐/(<<.!̙mp?Tg{ 8vظqSՌR:I u*Zwjɢ9)m d~Olǜ#aͱjb# A +Ӹ WKwE8O?4C@xD6iʃ.Y\;FE 5zһ|Kpi{X-'탵n"xfz_fW?Nj%mT>+!+P˰q`Tfxq` mDe4Ë1+ nK)_U,, GN9S5N 7I I擀{PuMJWwV3糢\bA(QH4z"v'O]Kl_]F>`c, >@z=.fOA}fӾK3G!䨩Ǜ3}Lj99lI'cl?8g]hZcivgj$0>k ; ?^`9e;؁&fdm=YCQMiu@Xy0u\ S7. zNО 6MG4,q ډq&ajFԾ} 2X9yqeF(=%Ba@T[vd&bDq ëLnO96Vn_ЊvؔYe[ޜ{P>]$mLxYsacGk;ϛm$զ6ټ@q1I Yɜ#p1G  ڮ]m& !8idB)e2D6@ޣz١aoG/"FSc=h q˚Т#׼QWxXCG]O%xpHUqjK8ɇ.(~3ADa`U 8Z$4Jq7 [Z8j'9j“XD\"̉x B[==jo <%=Tc"Nijv6(R3}4Fa; aXٞM㺆s_gNd-V9kY$c |Av~TYeF:4W@g. S0HN1hb 7'ͶP-;MH7s֭1L]bB=d^oQLvYA闀<ն_nte"Op~tIy@GxyF,babd>GпmU^W--GfUj0JJXVPfխ#hC" pz`nc܆д]V3+xls$ 1zz?Y5c(&sO_ %1b/+>@sF(0=\7}45UqXKYjFJeAM<-U*nښFeacZv͍ӠNlWFef,&EÎY.~Å\Feӌ @N\{@2xā/nWi'N>(s _>ioCd8?;;d|\gy#SДjBY@-ۍG[/l؏.d88}!0t$/" ׉ACT|ZzЍ^q_%hv30EeO*}},nOJe?lN8+~lr 9Xpar|7y2F -QTgB谵̯y-P7!_UzKtvͽUl7ʢMlrS2E,va]Qbr)gCRuVҤgaɚ``2&8$/=.]`G|^P5hK9BY}v8rB^mia(GsU'Q`캃GWVe88zJr2^*j'Rd4aTH# bnp,oѾZRqyj&&MF5wF7*:d 8n vd1z"W\k'6ս`hQtu/?H8;X[.#b `yc^XOCUPA Yr3s\Sǻ!3->0r=#]ٖ]6 (aὴB%2AViZ>Dka$A1jR$_VxmR@vF Hcؙz,i+iDj n}Os> {qA%nr}@Cp! kh(̞~QG5փeP\}s'Uv瘈"imȴo?>YWl$/Y }(#4 uygU{{jGV/ Rf-#f+ C/21@8'SbW\G=a{=s14.ޭ_ A\fBğ"[< ݯ`G~DFh3-|6 (@#epi/i8X}!$KŦ3(Wz#Zgc)zb$vI,5y(o'MQVp˒= n$$D><@>lD,zF\H/ܯZD{yx|5cg}u Ӏ^E c9g.-;zXdhzߞII<Zs 5ot8,WZlVgHrs}^}6X/QWֻ׀.络֒:th2ܢ% Zu,/Pm ;> 5_W{C/W pK2@!G'oe|$+v_m1G ^rA(90ogȢ; F$Fhue<`aܴJ-w{Kn[7^+dF#;D[ .Ul_d_^G0ϤQ!g=>6FΚtg7rHK2A;wj|ZDZ.- >sMFK9aLiRrF?UՒ^nYr0oMN4+ Eb bXtH^"vfӐqԁӊH}K٪=)q+(4fU2CG61@q)X!WG#)h6Grd]Nl/Bny}*Nqr#~eAdY['M z)fSޕ:թBTs(Gz1vm\ HFlm->LjMy ey aB!Y`7 i 6#$^o+s".k1.Z)Ttur^Yjމ=rs(_tBN89_c|ܲ!=Bȧtzt=|a3)L1Bj').ˁk$U"hIo77&, ooa(^gri ;ckt37O] aɅB[) ㅿeV?oa;9ؚJ`aWy"m22'"xlz6D½0(44xrN}/Kin c}UuVbjz~=}{)lY "/qSer #HUڔߘ ƱT͈SF90bYE(l Lt\v[.f[WF?jmw˵ֹwzI! Ϭ-i Sיl+&P\ӔY)M%sQ0 լ<waI}2מF2Ix*;{iN-T]mG(rOGr}caɎůMs5tbGu֩U_xUb-Ǜԏ$?¾ɛ7iu$3qx7+yvU/`ooQ=h54ьҊ%l >2mt4lԵĈn.KE"$i-1=92?cD!hvr|/|4d7^4bԯqE;&0İV<]%O-b>Z&zV\ kv=~F' |o3o_Akf4󅚍|B-fk3hއAϡ뱃G^ڏ`pA1pBT!YSӥ=Uą3߼t'Zdė`M9gk%ĵw@U|4U]kl%ڧ1Mk[/Y";M NmLSO0p* >BC3WK>K'>@&ZYTXK#SJz(DvU0Mc'GåxjaZ^U$ 5L^߅cݚM%Vw-̴֠(|&̎"OI<ҕr[ ̆KdIqxe _4*["JR[-j܉QiԡP?8 >wڪҵml{CDŽyߏLZWFDy,3> 2dO\KIo`jJw߉}*t~'>*+Ճx-)e[a=%`%7&;2NΒeĎ( E`(rmPu/E&X2p@"|)u>%\nv&<6//~k*!SHrG*Ke^( eEMrZCJŗy3asv/4,|64!aldO] J}6UhO9iW@Vqi<{{]W~y^1Ȳ}3ufvA <`õxY^x'aJC-*bܦ:#B ngkZrDDh~\{K%өd72ŃG7{j1uvc=\4"岧P ]1k+By0^/HG/MЄ]Y hWlB­0j>mvF9Z/OUSJ("ѕB.XN'aCh:ރu*R/LL垐›8eV@2/5DXmo*y^Zx0/ߑPX 57djn9jnY'O` 7Xl^ծǦIU7GT2PUEF![xs͐|c7l![M[qniI>håUh5zYɼN'AB/i{FՒJjWñ>(.<#ްO?KhlE'Ջh)_GxD+epxq!=Ƭ9#E$;7}h-W,D=^GYvm: UGt~#- k)_7ǘ=Ǻ0%i$qdgRg!]p|wh5_㿈@dpX3׎S`"=Ęp$6.qy"jZmwcoVTO,z5lk+ "Xc[|eBI\hv\Z DyJU+3xЦye4_EUYY9(TYem*Ґ~"F#:x+}l <<] U8CPR' UYȨ=⊔^/f` jM-.Ǩ fF.Di]z:ĵwL Ϙ-,iAq!$*nc|0-6aqRAF}7dv9 )pBRIM\4v0h|Ӯ5!`@̂N# Z<ۗA+,*?GvL@KuȖ2~gx8{ _)8{Hikgr*ګȚOwiXc7Гc]bӯ_ _ )&Xs}n eIWc8$b3ıCt Js!+M\"n"  Bp<:8d @a8;z298}?Ǡ3)V2>݁)]ib*[3ޏnN\CƬ~?p)=V|)rSV ︍|PEkIPpmc |Y9H9&|}@AZ{aKف_9jmHܤs Aeu/ :rbC Re#:z w=6 4 RfKt7ܱ cw9ꍱo3k1􁄢C=kHfŴǭ&#ϢcC6fN*i|f)EM5R؉̮5):c'ŵ#Jgy=1P@uH^+]tGTǀcω4(@fB l֌^l/:$|,fNm߇c$,[d϶a-O=s%2&|  -lW&e/u4"Xdkdb""D<)5>L)mOQ\{TmD Ѣ|y6+y(oI ˡpPtAdͣ84P&.5iTfVrhr4aq7]fPMwS1|YfFbqA같#pZj5si%-hח`:^ 0ʥ X?Q^f ]%=Dws'ꏜ3K=XC{ em\I5Qf+]YIgI^`:?LAr.hT!)`_maG":&Z|n07O/O5[+ثIyX #.Z$UK,͠p AceC{NKSGn4|:py.,@"*.L?~R4kZ$.t/OvjN;0,l{!["W`|9u[@ђ0@d%a)Tվx=Qxްav8m 6E"f^t&ȴ3/ƿKhsўWd #F}E{|u%;A Nj'!."FqBsE`8S+I-Dz4 VdLgr2"Dz!|:Q +.iNNwnE`|d|=NwL?)\',qR4>_>8؇jЧzףȿ"]D%RttCqvs݉HG#*%苭|^sY|%ZܾdΫ.Rzou@:/(nzwQ{6 7 ,IC w:câSOA7mKv,:-ra$n,UI't !vsڐrpb.5ȒBYgߊIx  p/\MI=PI2g߁'ZT?DnKmm7]HORV&ns20Ɏ =NQQ [ t-ISK_CPA0s}0͉V|. YXY`' S،JxC¸+ |K]DJl2+ѳn ͵8U1(nLC`>$_K28c˒Tͱ-S2C8abߟi ~!FYeԡS5[[`!%SN?F@U1!҈B ǩ 䢀vqHO^LuB%ʅdDjiV)CЁPFJU Q@)e P\uC5lSM/ 㤻JtHrDM C "ZU-[1X{w耗1`w.Cǝdԏ6b1FHR F${%5?g#E1~MG&Dt!p00"nCYݫ3# p~Ãq64u I&Z)\9+11|Iʼh|UJ*|e[}aK2.G~.01jg ?ESNe4Y YkolBrlqLqC| ڴLHq#@ygDLAXΕJ9EVP+ߗnBBCPI{jݢ;ݫba ky:S3!ݴ^< hjD *J،40d2vhbc<ݙ8<hxZNyV8ȗu =sk?vYJa!Kmr6*X$zh$j̣Ň17HS^%*2P?O qD8Q}F8eevu'#Qe瑴gI]dy’T>ڭ$@xPoUAR}lBn-)ؘz-p(e"C21Nwo>{q] [{58=EvGI\-i&´Gʍ%)M@<iS o!.UEǥl5ǁ]H]qH۬ڋ7sW,|\~p*gw }R] J@s$L*qy]!V*(rQ u9My6IvP~aGkA򚃄Dh\(n!\`҅HYJ:(YWVj/ T#ԨqJ&s2@Nk,at˳_F,Q &cd<RNuXæuWfSP^` *Յ ' b=U?`[0mG]H;c.O;!+aka(˥{/Ъp`r[Ni('S YR~Pj ^}LVMz#G7$IX <$2 MXKhÕELiRz:6ˆ{zAxJHu߈K(4G"[InyjDħ'x&! E=s z,[%4:@hę?V8]ߍ{ CoFc xp\etJ:Ҵpjc1QkӉګid)ЁO8*5 Ѷ7Bu}T;/ +R D%[w4A>T7(:)PYr3K}-\o},LS=lyК9$vѴY}R?ǶBaZ,XYy u-&,]/< v\S(/`ZBK*cA %u1J-s3$$iÁF%DِO䤇le! |nҍظ&\Y jk҆U[+X>lRI$e 0O.ԁDI}dZe^F\mXNifHr:Y#j3~PEO͋x+yj S;[|ۻ&`cx ǟJT!8A+Υ4y}ui!%_vG7#ߪ{Vϧ1,:b'1\77k(;K&SdzМ0]}iJ 7"s8!p@\sT<\Nt< c@3jk!R%n<K|pB,a'u˕sm=YZ&T>!'o%ؓ11,sED/vi] Ga49iɿ9X و`Mntm=m\ř96cF5zw]eR[jU!P̳PY 4iӾ4 ٴ؞W]ۜPv//0RJyfYҞi@ LiT./x ͔΢j4VB3\&|H90۲$oa8zrʔs\bekYJ4*G FX{X]GIԟFuK}2< $gqoYŧaJAu~[qYa4vSXG =j}'m"=ܢ[5vHL"<áqroY 8Tt#`}GpG8AJ I Zէs}.\i!%N5c;#:2m4_rRfBBFYZWwc&9#0SvfBߖ }80SLH]Q@畳 *hi=s{8gK5xj* =D@y0 t~wTݙT%uڣ=Iuʙ}Wa_XϠvdj>7/;17_ʜN8"{d!5_aWȞL;)VHXZ Ъ?I0B@#-R㔒#!Cs%ȯ9+etG29% %,baURyYc=r "lVՍ/^5.(FI(QN@raeYp, 4/M9fdwqfn;PvKjZryH+XZJ7}ہQ5u 7`L +t|1|$_|V{,iho9~~3Nk N=s^&{HYμ$ж2AO9G ;]gaQWe` _t(#\.eoi#60Ǹ ]R - N [{뒜АjiH$S'7Z#Ssbm1DuL:Q_%) Ζb0 Ff>g^ll'Pa4`G, XErAഃz zDUjhǒǨrVCb/^5\Kn+,Hswt})XL IyGfȩFgj}H8O0lgbh%w?}V_7.ѐ>DqqU"e VJPoc/3XjYeARJiPi:,=kUEU+"`#P/`"XWG3_dw)>VI˄!u7 DzBD䷥ yՅ69M(}t5&MC-SO=C]"Pv {H`qd9lgBz X +opȥ2 ?dU&z\*WCn\+N PVrNGf⵶j(5ZIвCFy'`c#s<(-G _ 摝RfAo#OZ&CU+42 4MbxL`uf9N4$&6180B.gY z.>ަ%#o)lO~bkp3dF@T\P&v(VqD?;n]gctJX+aȂBSTnsXeY Nz?ၸ%"ox=n+g𙗱ZSfs// [})%M=Y-`hQ 24QPwOTƃhOԜ}}ݠ:9JNw$Bv M q.ȴۊỴ/kV 4 9iט 89Y hU,Wgz~˷d0I.^#:0y瑧,͇9tk&PZq'{hP؁TPVԣȰb3wB`KNR;փCx`G8oNH]*X!2Tn&pXtD ?CXjA WXT R mK/!Wg".@<VZhm J(PT+[.O^˫-4!a*0hJ-ۡFFָ$MjR2W}$Q^J7 AZhWa1bhCyD\ئpתݏ>UeyfA>;v%"_9(eH^>eU NUp$`HuIzI7HHmSgm-[D 媸2+fW}ڏΛDQ H@|cI%ZTc #a/,a!dWW x" @ Aʣw,+.& upT 0ca~k'Z2# KZ8qY*wMqSS Ҙ9dI\)ߪI7 \2s*4Nq x4#.V}qs5ۗ<꯲a,HDΘ5h"8;Nvk|cc ui԰,'( ˧wu~N(2`[P4+pbZsNB1 )X,,a$m-8qNRج,u:C\Ū2"!}NDPGl,YI];(-kBPސYF츬1|{}ZRNC2ƹ5`GN˩GAeA3IMqjI4GqEQ+ŎO73] M 7?$ UjW!#s^逭*pOvRH kJfEk J#ŷXYr|DBvl3Imb8;{j[^V䬘?^Bp[ki"ܷ,<02,B$VPY,,N~2%Ck9͏?`쳿Ә{L4oATen!I%ᴃՇaISfUZBm~`ylaQU acJ.O,(͡KG[g콥|唚z 㤡D'6,<":2t;(Gn+!|HJbTʗ AԸ3NHm;YЖ`X丰* 7CH9"$?,F%~%B@: vaø,E&\iYkǨD{Z|E^/hc";Bؿl&<4^?*M+PrrY!w_=e[8M1ls|{(xw3I60 ,`&%jVfMM6*MQi0 Q"$LV[ij~h_ *D,#@H9ܙ~W%3wܟ=}X'])4] 8,B6a\^1jډc[h.<꣧؜A*.$! Գbh?3)zg. s4j"C;lA4Ty,)7 v}D&:3^Bز ރa? P" Mr[q-eZ12fN@{c9jL8u-]T XH܄03,?/q a2}m+l<-vϊz mAbGSof)16WDz= _ݜH=y%fÛGH=YI{.6>,ù]Pvw1YGbPD\#6h…Ip˷SGaWu@ WD.mɥ ƶzQ%GYv;PSUh`w|3U/7D{ ,oqeo#N<4W@G5p2k:0LiP+] iBR￁B:]U šq^UIpC#fHU<)b=sd'FCȮSUϘ'8,x*4趯*e ;yqB>Vt:rXR*wC>O~Ny{3Yck5XKqiQzIX%cV!HVq!k1GMs +7b* ,1Q4N^ W:/jJ# e ͠| ^R=˯3+GOS`p18:.&%Љ~밺\]@MloFy޷w|A@of^f%*LM_)ۺ(-Er\rģ(~W01R{ RJl8w7(_j]9Y!FXGZڶt )@#JhwNdv1-IEN1P홆a/ewK*T콐l8wNu9Y$2 :SZvZpCrOh=ԋx/$)qs(bՉ-B$nG2>)1 .!3w۷;|߂ݑnӂWJv%Q!yܤSnƐv bAP@~vFK]<Є';`*dp;p:XSv;|h(В9)^>xK0Y_hQ1 vKb};jQ=aUiaÏPTb ʽMg}-3fDT֬< 폩  LGbM*4E S +lK/">CM..ddToeCJ` 19!݄'6@.0Z}9,v˒&d%M )vm]K&tXYF`|R17eZbvo/R.#2R@錚\kR=)O0D@F`6!NvD,g4nP߮OPߐpo߿7|bȗ}x,ܻ 5$b ) psu3d+x3opz\S>a`L#h&b^5:vN3xBe&bͷf1h_68Չl;;n@ UK0\!qǟ7E$ZoeԹO@ܼB%Ե,W^%oc*pZQ᳻IIRg91#[K䐓 CCs 9cv} W5`]awJLN='6l4 CĊlYV$l^.:#.Ae`SyjЌM?lk%0*⣟1[ N2#,6w~2Cܕ?:MJ2LlT||2L!Ӡh`vin.@Te^ ; tT6z6,BRN7h0x"<3,5X^Cmbc-reD-$P3ͷ7,S5 , /W T[)]!e |\nhO.دMw'99M”,"bwùĮY:r3]/V/!2w?%\Ԝ!=yJ>T/=Mhhy[mmfڶӟcir{؎(k)+<``ŧ_ ΁[N~e| dR kP`'ʜaNge0 K*\gX0g'+E~6?nL;&eӊW?/ \xjrwTKI%Z=W+\0tf*w$_LC3 ar~!YBlbn}0,%sjiCP^;م5tL\KnEa&0G[E7BA(lxP$>.eEuR Rq'%ۓ yh;)Ҫ]KPW9-R <]JOi 9X# H:9F`,dxk hsN̞E3 ("l [)r#LlXOc:q%'ڷ)PЖFN z4$CnC ZQGf?OpgNhKCGF`d?$O&\g (6qvWN4&&Uluǰiyo6'lp!/G;8<`!};f`3/eJ9Z2OJWٰey6_Fȟ"pk S[fC/ ~ 2w$#ZvCWo|gO;JG)+v*>{8D'iСI[|'b_g샟mp|_i;dZ! ~#jRtNK0qTKQ7B8D>=tMf#'w*Bg-Cl|ĎtIPGuEN WMG:pe~[>1۱Z>lؽ|TBt{<ײb<6 67C5]~u=F6Bwmţ(UA-ưt7,1,NcX僂N?xuyã=U@aXMWnlR9Ó.7@Dž\XiEA{$ZA81A#ťGĴK4[zƍ{Yfm-W%4K$t0xRÔh],^;=45fAIhq0_S1dgFp9YBDguA qy\T'LP_ew;XJVWң>FJ1L 50,!F^܀)^yVK]t`cat5Ea ?bHuwͣwDofDϏ2  3Oaʰ' pvT;]>H:9:j' ȩ'\@~4tSs^{|( tHHsWpO@:5Oe%DF4þ! nlܜDWqC]Kf,z݊EsR>g &j.7p+i᥶쮇"8hLɾAJRFڃ{,e}lس>O~ @9cqG\֦,F΍>g$; Oi]~]C?_%uv x=>VaX=h^< _c9ixûhCHGm.Ljb\ wj ќi ^clnb%Q>J;~2*;e7wx'(uʇhj,gfQN"RJn6GŵIMտ}mz7PE66Wab*z,A8˒,;\L<' 257`$oIOdMM_:`phʄve,={d@xׂ'np&1a oHN1Đqm";03St*Vfog69>uo|u4PY`S,6nCݬȉ]5ȥjRYQ**4GmEYvN[hᢧͼ }S!δ$U9?Qr#YY=K~TX\tiv=0{%yY! ą1;uXR8{ŝ[V g|)WWL5'[XKI|k4lDp=y \ iԩ'*O @J5F(x0MG+H0\ éWh,6ƑF5 MEG(3C0hPcXDQWqVdȟ#3Sl<'}:@K6-Rs>:UfFm# 0)02lȫ0ù@e ]W:):^r(dN.r RII ؚnsPTN6 C• {{>Ћ P"] OQZ[1G'//a,%Z$qal:"O<9VR82vo!1)ȗ+qWnOM-c.̕QIs0 !9z"~܊@ץ[$tNwwYxPL!P*J%P*XE!;,P<|^.K^ڌzi8~3ub̥t˳f E9\&/D! BբϞh^ղ@z[ /Ib,Kk+%VV^b!<-X~ PN:?0z=Oqy\|% V0(C+ZiW\2pPOF o3QswGZ8U:耊N a'"q])Cl$m6B{wtݣA*[9ƗCZϾaĈ ,xg6]_e;ޯs)(▫xƥt2in/FWkH9'bZkU -` ?[ =c9o8L2j,[`@G|0z)ft*SOYz^rQ29֢[:&>:5f6Ϲe8 |) y[W $+'Ę8g n:J0i8 JSgK[yNIrÁF)|7WO~'ʁ8Seޝ[x0dMn#ymrrxtVbg+.q"?d%RM[IjEg=Uo/ Dp@>ww@ }\=2rwrtiߤGu[)HfҶbYֈt5<v jc0R+P̧K nV_Q~ O݃.e1'E`)=ψYcl6} >cEf=qpYCN$2Nԫ6s1'ENӯMŵA&7! &xTF%>#/<ۢ$hURVo CH܂j\!ЗZ7"q.ϲZ]1pͅlEko$k7uc4s=88R.D ohn2wBPi#/kP..77lBa:\3K.FaU..F.3dCdVV`;h+~|V?T 䈘h?<.f3Ym0pXJFm #Xr:50ks/*ܸo;GfՐf%-@G9IVdm%))oo H]6T,s)s+k ߄Äl4Ia95=&ow!g3k9% _'׆ \KED9o#6H !BH.rAQOG݅R[1p$:'@ޣ풆${ MBSGX-vzA}Z:K穡e rBK.?p EF@s2͓&̴l.3 nNԉaq9?w?;{mJ&|,A|<.\{Q,go7@ۿ @ JݬQSP"oP>ZQ5\ė[wZTB7r27_4#c7l4ߊ VfNK0#$uňEi}S MSJNV:R&R`,J!S|r' C;QQ?9pf jMoU&\Me$R$Kd=_84(qAE s ?ۂ:(s^C~FJTB2;MW,OU*v\(#+,RfU ZIJi}6(OIWPv:,ars5n1@^adxIeR$ܹl W͈1wM q}kFkyVDʹδD_noVV:%ζ,Uч̀. %xėf9X1gRYU@YN#<3ҖA-B=lb3ŷڥG)%l;nW]J2xRG"q.qO.#(XZ^ߣՁP(Cی@v4qNB?YV8v0] 9҄ [Y!g.Kn+0lIjSgI3~JAdҁhceGO{~9+ߞr"FƷ 363\7O&0mtm#S[ғHo'5U~NcTb$˧`U kY=zCOr _p GM[$Q EUa?%17MuiӃ@WPI. 8 DAnʈQ In׭6me,GlstEJ8Y"0W ddJ~ 2#l[^BTZ[w%ˤMJ)CD)oAeMҀh rđk_yPAcޝMD Bzsv4 H.zcD0 fF)w1?3ٻ˂FbH`3 Yhnvᥰl n9bW&@jg?la a:θ+v蓓ZZ>Pc6G9a  \f;=~~~MJgmQ/Qv*F8cs?`w M8J '6GFvl-"˳ݓx#jnb-U GUY uAOQ{Oiȫ1/,+ҟ˂CVu_ö|DH(Ic3КLhbp_6p!SB~\׷Z0C]G݊L2^>+>a_n%: a66]8C v8ḷ}4| 9%h?sSK{}hS; W-rO-Ad/Pr=b{4eTwY1z3ŞW^Ĉa&adcQZM3A1ǭ:)E[[\lJ"C6ʈC>>]K:K;Ge2ERm;PpSX('6D`iMy\g 0g5` 4f=$ ?or/ {"LN{T8utyB\6Bmu7aC-ypaʰvC41ADhV  4 Fru1RfH(A1&k^fe' 2w'qsa1\U{t$8 fwG]:3TuG'Ј0_![x^E<}ˆа hl|=,PY8.ɍV ?\:0P w% .Tkm6Y{idB1hXl0 _lzshÔ.9rs?%mI90APS}+/_\N) $pZn=;'coP*tSG_WfKo! Ԯ#OT Ϙ6?ݼFbzV1L7hfTF^ YeϓSG A}JsГ8{bpOpc2(T>g&9'ӠMvm8[wP+9}n vRyi @ UE"Ҫ,ཱྀ;=-JHjXV9|mMҴLIN8p125 > <݇h=_7ឆ=׍*z)%F`O RJX0>L+]:Qv_sCIЮFcMi;wƹnhd?Mc}6յSK_ J]'(M<)rkId33ŗ秱I[@fXY] J<&Ue4#K9M<W=v;:{ID$`:H sq jQ;;b쇾Vb+9}.ZNLN3Irpp(b&MyC,sQ3o̖`P7\Lu_H Vua (_?MͶHF6;䋰"4u3IvwPmbg4VɎ&F#)eOJbܭC(Og`BdG9)rnܟ?$[X2zVJȽDJ4l%] z:b0`%~ZyGe|QK:Y*yٳAJA0 s@PU{Tv\ԍXP׬HS#ߙznb֧˻P781_{ab:aO Q rT{9Q,Ac]#$*١ a:XGeH;δRPnjWƨ9p>qR,Xw⋰n@'4q!`4IKޢjj–~!%afayMK?lSڥ@n"ؗ锑$ZR@p Z<ȱaHp96i^_o5y 8YKfHX<(eqfA 6|:,&lH8PV׻҃Qʄ7#6! ]_kOV,jK^MJJ+ 9c4v|NNC!b?=tamo<-&'5d8cV#6?GHHc~(&9Π({pF?ԍbQ|c#"5si^n8I/NS֋[qFN Y#:V8fQ(!^!YB+CSH#qH\BF3id!\iu2=ЇFGΛ5$1fp/UHFB-5S25+A ᜼e116Wms1<;|px׬9~c\ƆwDQ (3JQo?MU+MqTTuTu>SQ>Q}cW5s%~V۟Vl3 f Ab?;0/D\j]\,)uX$_)A5#'ӂq<(D]-y ˼ol2A[OYJ; X0TqefYe:̨r i _ Iep>F4qk&SQw5K]OG]H lwGow{ TUp;oF/k>XI}B}`*(~G㆏E7'U%h; 3{{ڿظ6xɕztU[9|^ T UmL4۬fWRۂW?b6(i!vT]PcrYb9:4GO)(k_CuZz몁^mYS&Xp6.K^Sp&p(V*3U wRhwz+F6" azUб+iĩ ՖyA'W 5,P!br+ZmVOby]\տG+b5wٰ3\t.)uUF\J z&*kI F? [;!6hRrg<;i+YB$EaJkٚiwEVέ/T^B+H U3G-Wx@v' ?9c&h)r5_ll> Z&AfQ#AՆ[PthnTY `ߩ yY 㹅 wӡf"IO4N 7e0}= K Ej3ÎdIqo[Ei P06߱Cco>U4f;͚2mCvR`h &XDq2|L޿\E^21_"31Lj(p=mc2=~)ǃ#c@>ؔ*R}lJOəJP졃WISRq*Ic|gG}Eة21@Py);k3J^eتp+Y׺m#WZ7n;;bwõUް[ !zZaX7җ2Es:vG9PaGT([i4:Om7/-Ug[xSti+01F2j+.'^<-3n[5.kGhR:OVAG,,Y a3$r`aӳGRFٟX%/zMתT^}}VRJ+GXhK찌ϖ8^`7_F.i|߯RΠ])%)1aSBSˤTÔ$%=hXx^J7Q/5Kl҇ pa" :*Gre}otNV_~󿕲aV ZrԊs'Xǹm5XnAX:oA\AMIxyGNIʼn뱂GxZ'cHAx#PeT)v(qՀz*a fH`'\1] dzB">/bU6)P F*k#aK|3Wb/;qㄺE=H-D~O⩐AQJew\h 34^v/(:^ďHye/FkhYcȗ5ZEg2ξB]GsT/)959ar-8"aAި~-Eqy榍ZYǍŹK+Z[ZyKQʭJ.x榱eҮ4; C@ >aGӓ[  hjiSis d< s% N14V^6N6P/Af[^CSZ9qyzʩٹT<۸nkRoLV)gl+'!10 2fȢښL `C,(zH[4ߊp\ ^G%x'0gX{Xr@_f*6`ɜ"v|׬.^ͺgo xh g~>3طҎR[bLK}J@fgHbEgRPȌ[IP59,__W?b㖪 "v`4H߁jCas$HMlo] !YT`s*}n$4 6(!l]gܶF;O=CvN\GY9q};bTˣuʚUM$: DWņ̠8Uy..QfaT(34pcR{~UY!xBq~^'NJcZ)%$ ǼI.yۿI- Ubүwţ<8]}jL۩#܊ 7HXPIv3aEt,b8eP6~@0LCQ1߂o6pЬ B_u.O?ce ]sl9.tY y- _ &DNtڗ߈kp}J/WbX\PwԽS% cT(’f7q>wsq!]i4 n%o2*4h $N,]Yq!GwLN>VֲLcy"V-䡬Hhy zѾFxc;pO?hleXH~iѢVX?a/+n -{7 >d*S{R= )m tp IpP*䛮 uc(_!ÉF1|͛&U2)D?@PS[tmvDp%S~ъ՚tͺz*f-r Kb L[eNy7~_WXs?() < \`Ki CԊob:&YKHٓCmԍr1}$גoSzxP/"⦴*i$֩r0pC޾:wDin2g)5g򖦁h EB_xԆUx_=J/ޭOD{ ˆ{ J jڱrdd5 | }a,UCu7jUtD(Y. /c%3=Oϒmc wwnu:%jbj?Jqo;BK컉n1~H0:f~,#W44(LqQd$B ?nuAeXsyuT˂""J=>~$'0?m!48aS_(q%"@DtSF*6$2$5'Lɵ{ЧOcGi֩W䐇D48 (|/)gfӗpoKfߋЅޝ~ D`+}zuޢ, `AücMG]My'qM*M2+-nV[Ac2>lAD; ( -#63LoY Caϭ~(tJ8Pki:>+E'hh  9 v:nTa9emF߇,ly= ׯ"BiSG݌s,*UKe kcu[UV+w>3$o~ܼ [w51JŎ>S5 uRʳaj[j~mFٕ Dޤr-P*Fz::}MLEaxZ!')4 ̓%6ܱe($  5?)= u|2GurXT?JclԵ)2DzE')yt ?tY[.}v@ROTCW7»\Aq3VO dJb.NyZf g;+L'qo6v>Xac(fMqG/::ٻprt2Q{?2&!#/r0Pfܦ~BaW-4x2 90{*':ؖrҟ0~p|p]GX9=8R)G%8bs?̮``'<+IpY;^𬞠8<2}MOtQ|&7Cq ~~h@6bN~0ijkZ8e?")ώn(<?O6g:(@sM@Y.(x}A.1 V{@Ib DYMnuSMWSZVDb:!Oe@h:Ȍ3\JJLSo&RE1^PsO72 Y` kx^Qn* Z H!awQ8I"_e1mQem+|zwbnA:&c͜ khVnPT(ɧ;jWJ Ɇ(55l456ՉI,6խfJURZʦfJUh65R**65QJ*?aSA[ȦZ: _-> fەJDx }/H;<PBT&t2Zg?E/[kXɢ)zšYl罤zw .XdEku!5 %n)ܯX\"BASZ۩~ĪkX"s/*ێnLa^zk j:鈽0Y;R;ʭO(QfZ[1L Ṽ_=Dz2Ӊ̔.D(4ef:&QfbRef (3O2ӟW*31zr+T9=l[Kʏҕ"慜hy1w3};'GGtBk|N(n"5I˹f=NS0 =BCn"P8(p3|S<7>PR(JYP<6+gQv&Ҕ:+LA,7D1q cA܆8:;8-qLju%bAԝt $D|!{luӆ[g-c=0pw'FOxeu:Z%u 6FHӆeE\cgEoyzpݽy`pfˀZ!viF-R6`sxa,hjلb`fֆv P(#@} ޑZ?MćoPj׽*\oHV>m뇫h쯷y\}V[܍y?qR, g}8!W٭A?=3PZ G{+ P]e! X~y2 pby.Fԉ5~0 lz deb?dπ ylkiѲ0\?' $ Rql"g W\Тp)JV'&UfS/v>{{&Lv^TŊS?Z4iqC`yiҐG!yaQr$(/c[:-5 0\xfj=RLJɌ_1vdۥ3TsH?~ (vJmW1\*'-r2~ڧKI%l3~X'Q2L|[ޭ6-Hg+3ÿΨn˱nXYԚp(n AXxt PBUP% cxݫ<'2'cѠ= "姄@vIDJpbXl,FsIF&! 6@v`^:(Z©aw\A4k(UP`mq$! 'd\8g[-ܟERnK_-(32쉡 ,?qI­77arӐ5J-oj$2 UwWF?BpE"D/7b:\[$q˟RI$K;J^_B((Zvk]RIϜ8:\떔ϵ~|OSdDo5}L#l)Y oCU@ N5;{)u/jez.܊m͗ӣ/Lu[& &^|s)|k+?Ǟ?S Wz.7Fm==)%i\ O_Б1óZ?^b0=ugic`fk@VZp'* ȝLL0 wW}"kKe_x))tk7|D?}}f6-QEbnH膝 DۄMt Y?i=~=~>?fBo[k1z ة\[}/יA)ġCSwL?YLjx*NoF4\>dG.闛#1JCq9Ti(痫0Kv{0K5"fv*O F+3`B|MT_;0lJAQ~? ǰ;ȄV燕z"Ĥz5щY1C=}ܒ {SB$xH7 y63\Aa/9|+-C=Q^]GYK zjen 73'=(2$j=g'u˕VmKk}ڬwPٙu<[7tl䴒 )ti9Hg=lV,Yܠc?).V7.J[?_R SR'"dO챈H.nYj!9CDqm|Q%ϵfk.{'I3}bp GOη-~憼lk~ 6.ZI7oZF+oB(F)Ib#g^P+o ǭF8I0fsg9oIE-u#Q _H]Zotܗ5Ϩ+8ynuFuFH,6ŷGi*Z~ߧҗmc<%), 㙘ϦH}uK[ٱ6]ߧ5_3497b SkV#е(i NcT]MJY=Ɵ{flP.AYc&a\[vA#ONxd{UWwwE|vpQV'̓^Pol{ 䝬Sx2B$Be+Wvtgp9.x(rWIzAOE:S]*i[^Q!.+=lPJZmJ&JTŕT Gt-Hq5rH{q$o"f`qˆ66o8zC0w a@ZPEJ4y^7}T4Wj~ܤ_!ڴ~u`1;1L_]fhw8}/tfk ؆t#7iW!dtyyn<7ϱ&_ T_<8838}_=2yarOy{p71^\\M!;[A [Yo6N}FL)6Ĩ3vȀ&x}Ef_9bχ3V|j|L;nj 5}(.;P(pBd+.yw?Gg{a)edXޯzZPUK#@ }:7nn5MDPwC$E0`HK[j"uk7*7+loDZ/$7bu2L``:>BǂUQ;P>PB$ѐ߼-ۮ̷w5Y% i*ɗW-JɒbMgDI8)j%O=f'sK&P?BR-b%'@3^ .U_XSF@O7B!~=+tq ½22L\qE6Ȁ3g;N.5z oj/e*<xG[r,C5B<ؒc97'QU[ʑL,j"GВC\3lE (oL^&d0c_PGr$wa1%E[kC]e$cJG#/X-߳d q>PɸXYo}"6yI2`GP`Gt"uhнMh?ښcQ}@moEREterdLw,B'Y 6T 0)rE4L~VdπĉUş/Au右K)ܞ>O D~F& 2 ::4@xY+P(| ?³Yh55X)I- tIߋ+9·|FW!isj39:(y6izw(_bqi@kVtǚ[ @OF;a e&G 5b?.L\d2֘,6"Fgl%jLMq>cއBepcK׏I_[AQ?x|{WP I5W_9^[L UZ-T0Zx 4}V&y{e<|Hp $[Zp֫&/(4,ū;,ރ,(hÓObvX*<̃˷Qov c6o5<( nr&zH i ;ugnHЩK\1Aڠa5HQv[xO<-) P 0oGջS)Ȣ ^*ӣ*FnČH۱)$IOll'ϢF_SW/6fd . 5V)FَcXۯkCrC\^K/AnI6O~bZIm=iWڸ/xm:YVy+:4 y~/ *YԁR5J gh}ݠ$@S<~:a#Gd"$6}c򑈆@|ԯoBxtĬXFrzRcihQW_,~570cQVG>¡DX]wroDީ'ҽ8Ó@TA9@KBAȁd@DFEN?Bٝ`5\ )r8;?htsfSqvT)l`=u+K3A>&_}L'cho7I G%" }$_'P6 ԲPX2Uπhc|ڴF+>/r)>uWW_s,\͙E*'樂fT_[iԶ&.mdPnbk Ux38A Osf0&%rᢚ6М$IoY7(Ij3N_'ppAMRTZoSih%PoKDD$z=zj-%P2A6ϳYZ+c QЏ5Gs`vDT8eHaҨ/Ojƍdckioie6jrn{TO.FK}lTS {XcYSxy:)hS4ᄷr&/BŇFIdj5l!7Li:Ig_cwh)G ֦s*4bugHzC;}=mtBɍqpù}jIuA=28Vs,\?@X, 1jQkQxaRs8)g< Wo?rt3ts)bH7aCUeӰW}hʛ5-AEC]_F8\!J^Zrәn9c N($|6cBh"ʜ m_&pb'`74o> |΁6?L&_3>Tr/y(X&JQg.5C5lFٌ&R޸ -YEk>&Gk3/4Z4N|`~k9ֲfGxC4r6+bU`N`D.R7|v;K%6vKA3h=4joWkfQSΚ Ql*M3 sO.wI㔒Lr&ֈhh;| :i|vI~+2npGkYq)rh8b&͵!|"@m#ARēEv$bbcNy5a?@WA;+aL-FCBDQBGbU j֯WQFNM ЮR?s,]ESB f Y=C* a+Vǻ(-vy\Mh_a%RXڑ>Ae7Ґ̕x_7{bnѠ]4JH~>@`׮ӕNbW?{؊6r-5aBD q,hi-)[MbFP׮4r99 Eԉ 8^E3{'C٫5@};&CnCE^3rh=G<f?1 % ]F9V,C8Bc_,׺-ҝ/ _-B@[mq`{Ӓ5Z6E:&ݾ̂$}pw8 e~njV.\B-lh1]+1JZj`MBXHs-i=Oz!L8S%81š1oUlJRA }`) m&zwN1үΙNNHh/G/i\831+P: m_m??-?‘ cw o|f9 gpcbCk,^}fދ&rO='V@2$#mpA̽fs% &EZ =*!"R$J.by)hH4: ?Ì4lkxֈv]#"SX.?w N|+hd=ZO 7 ef͟qOU88@FEcڊy:m g67xÀ@s90NC1ٵ&.2GyZZ}>DT8 Ef5-,A5 e/x\4Q~;|-Y}wp?{ìr(z;FgQ YqOZh~ڍͪ'b.ٻ_~Gyv *1۪o%qtPbU,!z-J:4@(C6E=j~?O7){xu'|2F(xՀoW:5+:KNu|y>8>a#"/HhCõfJuO-1,ӣ.5&)y&4fp jvZI{8RRq@> U_([<?IQHjp zHFX|z3.wc/n/tĴh7O nT|0TҐBm0 ua>|1wP}Q-y+c'⠝/]:h+̓wZEԱ8GJjff]0罶$ѧ9Wɻ<Q{EoBHŏ1e%h@1[KbZ9ER,< NΦ:p7|AG)) =h&iͭh:TuO׏t8Ԓr\D㕷3&ATX}nK?Ax k~ZJ xm nс9+GuQ4~S^6ח=˿F醫Gp Jc÷ c'8 7QW1TE$8Ge4Vi+!VJ ҃69`u1/O댋j1F܅ekdLGqT%O:q1+.lrx)RKn+D1|^@) SK$s@@_O1JqLPWEQܱcԱ1÷86jSJm~Cx` S[\﨎 \5[PU>s* 2"ݺdy /qCR\qAEuSѽG>lEJwڈe4`l!K] K.! 0-EUa&^O@\n;(Ʃځ?p}Mz[> I7&~$DgeѣQF]`Y&*%cA}h>hz -xxXLȢO%*[T@E'BrvF_)RTO:7rڱp>8&bD;H !a$Z'"PdQ'`pm(@UpnwK!({P WkݖA~ znE7_gx+፿5C$ [M屖v,o3x%4B7i Gf*r.{>[]yntOtZfo7c‡t_o|N̙i6y} B!kWv_`rVzc+UtzL/| Id-- DҜ9+ut:4S}4Qa7O͓԰x :h@yV-<5y#NA?uw=hi z}o0"NkqGrg@3 ޝ|ƠU ^(0AjŰucd xsTE;= lvSRvNi3 -  7H2 $K#C ):/{gvBG#mpێ4B1쀆<kHBCsZLAr'/>%WC_<_=9NhEBާk*I$žT츺p0;(%I X-B=f܄˔n< wQVzrZq}ˇ(~˞aMo7J.SCc n]YXY't",w/GW֤/xU De{c Wq˶擽lo/@[`ه@tVELV}RBAj9H"F$5ϔ[ \j(\G1 1n]=;~RwGVE}pӄarXrP>`QT{W^'&_P@굉Žr.Z"Q2@<2 B˽CF|iX.6>B杻!DB.tmkF!D+Cp2p 9L|>]9"AaT{aA{: Rjg]iXW'|54+KpT~ [I1BRdti1HٷG)U0t!t8@6kiR:/3Q-:&@StS1~zH yZcgNL[[O$LA8b֗yV s`+D!7Oh!d5`Ѯu_f9/:m>!_cP,?5qf_D o5mf~n -I s$ } .W%%D4Dp҇sj! JoWeab4 a딆MtYu\ CǎO3IN1[2B^g' -0OR'5h!{$5mÚZ͓\hMi7]~" =>{߁=&!>3L(cm) P .C LABٲ񶇧٩;5^XAÕ#p`^x|kQx-fg Y7ā47uyY(sžLP+kրooPhhKeORK`t)&UA [*^[ fS*|+zwBYrٛO-#WUn!@ 9gNń+]rΧ %nf&q}!Or"?NOa[Rrϫjv( e]ٞcP3 gdj<`MPҔ6|3'cUMYCXZsⶬ1Upç Z}Ei591dRR;EdmZ05K,RZ[-mE ?]@S2vswPo,k'a"@9tA׻͂N 8>[xj'M0LvztN-hL{oi;h L[ĦlV{9=㔵K㕒TA}sW$4^fyEWovO&TKEؠ[]>7 kUjAW9Hm.QשMT S: [V~z`&?Я38-4:pucYy\#6)ـ MLfe(v1'ThOq>Cǚ̈;#Р¯y aW"ES9ÊGmIPגbyf Ag#N#G'0!Fݍ{&ϣF|$ JyR X")@0;[[N9E0˫F`R(4(ƭSy[1q6G ԰It9tˡmZ\Ȃޜ?,%BRTSK 4 %3ܹ aɧ-uk ׬@E^ޣ3'ܭF2tnqt?NS:˱X.1tP\J>im@գǜE8RC8L7҆q%a tN5ېױaLmBN >IaLGzoK6J?^0!{2A̰0tUG*x7j)gCnjKnDu$9swSsREPa1[8nSR<~cAJ֏Pv6t mA]z>v] u&t<Ghcq#]P)q 7@mvZ ucZ0ަ)0kC%!&p^5,dgt50@]¶"L{ZEugQa-5UL*Q/jd%y'@4wlVno{qpv!ۊ}b{Hh/ܽJX|("ν&)Hd%K+=n5̗Ր3h6;`kqLvc=kWx'>`Wbm4ip5hocŬ09 pdvA[}Un4t~#lt>J1t4ҍ{_a=7(+5ÁVAR95\fw ءӢS2]ͩM$|i?? VLuiVhm/%(ӄp~* J!0;=o͆R;aYR1hy;Zfih}][[ [fD7Uo}ilQ7s7oާˈq!R/;5oASp]r/9aQWG\YI4:R1РFxJrXsŶطvƶKmǭgccmfl6\ l艥 Z ,6.7ӞnLa&v1T{e WPnlx~ =ۆ{[?w1Q3|:|&ƁpP2󡃼]u K< WzI[wyT 574$nNiwQs %ܽGM0! TU9MƘ-HqFZ2` N۳ ͆ Wp wUͦ\Sj)ߟ r*ńB.7}Sʅӿ3wT ~qj[1tˇj[ +NU؈ojJۊiշFKYUDg x]$ d,_EΚu@dO Jp?)er艻5n5&zŊ^>Asih̯aW2y*_Jl<(MZӔMDwׯ,MMEֿBww}S)qȽqkaVq@rΊ٬-}4AnsZ gјFxh|.Vi+R$krxr < ^k++C?ݭimdMmPs="U{*Rnŋǣވojip,KV[M.wT(Ue vcpT mF eYLu7 f`PhWqQ %*HJ–DRgVd]&17,]Qٹ.;řD +'կΰB5AyrZ{>h`ɂ";r=rxfg8A3C`cկ06 c*z 77Z3,5]&7'{hFv8ᛑf\ǗrvFw26IF4LI{&\+bI.GhPЇyyMU"JCF<: 54V2tjz0Ƭtk f'ڼnw.Z3?f*"S_C#M/`$|>̢- 㻊3$WIM/| x T/|.WZOoxEK-H݇geX[7aa&ћ&(J>Z7M·9aSJ2~n6Z[:ͬzz02mmC%iO{!07#o͉{6u y~ ]@wjMPX$48SE9bc\݃z 5Nãfy;Cc(s:Vl_G]Vu69,fȒ}v9݁' ,-s΀knT;dBo^Nİ)j4 )6.HEBz+vVS",Lzp@Mv-Eh%3T%~6%ORZ_1 CJ10m&Ru<^U(愒m  [<'ވˏyLf܍SYy\A :Pr0TS8r2^?7Cu?9SX\b ;b%6R8:$_$.Hp| t{i"b2loIęC%Cz{i"tWzWoӁ@0ۄ-:N*2$%! Thi4?E>v|}>u^)`4)E|"|϶pɩeN_'o仙OO ~Aou 1c #9XPۡsuq ѧ䠿<W $o1RzcA@ =J r58J*>JuíJI~yʷ-d_0nxw3?|Lqz$7n%]?=40MN=ISxITs_2ti*Vf܎iH+n#0Ԇ(AYxL$ GJN1/eQc.$‰Q߅hj 8r.=H!Y ?gњ3@ɱ14O(*b3@2roͲVN"m*aeX)Ajs'x7[MfT p Go?{-q$,mlxg1m‡=h05mE+3(}J6xCJ/qB ZI(ΨaFڞCƾqz]X8b7QVg*?Rg7`5b;{(ްˠw;S?t/z`;H;| w?7CGCZP,[pJj ?ٻ~)13\j%<3Ӡ):ofhyJSb3d@{уYJ0S-kF[lv:[yJ.0#+$x q+5h/x)[ Ɣ1;A_Jb- qx*BN}7:fS]Ӓg~#nKJTWM$^BC+5b*Wӂy (_#e=bZ0TbGB9u5дmDF2᠁=^B>A- [E۲~#կB!a\ pj#NLx(v=K Fӡ#`ZϱhR! }z~ }8.1Xv|Q9ٲۜ`&{`cL͟c`mB7ݽ\ކ"Wt-Mg)?CZM<'@PeF_U]U56AB.Rw~קs5PHl h[w/OKR<|鳺E>xK01v +\G/~87GވX v;ëRH(罠yYEDd(i]m͕eUSzJYЮ W|k Qa_u[nȷp6:΍V.Xs' @n!b㵘׶F{0Y=F) +.(#Fy{v |v'$&u@: HY̯H~ڌ12;  щt*4e(ժ /; ѾqU}?k72Ҫ3Nq_SZ0&oH9K f),! B x« ?zXM糔7KBP$r}Cr< bRZ .AaDۑ!qT~AdKi9-Cf7-ThʏSlWh3dǏ"5=`PYZ ~;%V>-UI"ZȂbx uE :?jS*-'90xe,GW VV|tb:ɝQ [*ʔҷ(*xx'7ފ}O :艟<`/[WƭnH,PlBƢւDdu+2~ o0^H4-j yl_DNZtI7Cg;G#nEKIpHWIj؈HyWKeydrՆ{iCػ Bljf4}mcj #Va[|Lц *%|k/])ZYܜL 70XZ%d P2~ ()n ^Eo>h8JzBJn6DŽ#ͻp9Rz{PHAcG$ʽ3]GW\+%hao)!ypxhXЂ:3EU2LLi{g\_m0ɓ=bܢУ7~ywRhEk5c^\&H/py@H?sZ^c%R 諘fN'(p]vfÐA1ي؈dAzQh:4'>K-x.fBcsE?r\9\.9r~rs 1W\9qu..WrmK3\څǸܲ_8.ep9i-*#ՇevUGrPZ@x^< *V E5 F˷s#g녗B{x\lOS}TVߺE`Tj 5QO6дٞyX?EucwS$㍴ o*pCJl.:q&aڨ5r3MG7}UI(wn{A[B{Qk0FXÄ@|MwhG;k|Ț;e)濪1PKs0wTk-.(]T [^2Z:p[HK(XFzn t.7Om{(x7vꪉDjl&l"$Ej@z{]KZ-U[[j7 k fb!<;I@̝;s9y O{Eϒl|B*-i>y$z&js66Z-Җ?% Mvl{[*wGh.vda;Kv3/b Bl$9Zo W9jc;QVKYLZFkkR˖yb&{@WeoCeF<ҋڸ.0(29Ƒr/P6h\P.=-"we4_`ZmՃjdm,lCkXTnxG˳y8@hѕ RW^; @T^덮tb|.$$gFl8.ztYmN-E+KDv1d. _XyPA5_3@G3 ->P9˟xIeneգ'NXixr AY[/6ֈv'4m<%xo 4Gg{L·ɶ|O1舠5z~g hhx` $"r9ƖNV@VhM` =љ@P&!4;@ 5_m kmN]Bo=dC(DI*HĽNыND'{).0']k0Bw,-`(AzèE'3v:~(*.6JmJ˳] bX-Jz:媴԰J/,Q+h.|9|#p- )MAxHD|n!>[GtX+|-vP9H|Vntj.Ƴ{" -.#4䬸ܶ( Ukj?5FNKG@Rr?zEX ~/(% (E:9\b,TXbo,$rB׺#J C &u?\FQ !; Yr(dL^=7Z T1L{C`җ ozҟ@<PRY{y hm~ mNBpe8q8PR~LG;"_N-[rڿGH 偻3 Ex GQ!2x }p D0\XEZ1Y]8$<]Xf3tLEdA* b5k^&9w"f'4y GVcMb8$1em>Y#+et ę|YCPRg ]_--<_8h#?|O>#CM3֌۬]ouTԏ Xi!ڝ<[ Om8U&` 4Cɕ}o~9gS#WDnʏDKsGHv"qkGDOg/N ԉϋ|$SAݮ*C)WpҌܛr :@pcnid(7P N>,Z ɾQi)[O75xBD.BnԉhxW0BnB5(/0\d@5vloA]u4cJW"'ͷ$~rSٌѪ_2@h J)}-kQ=FU\<` wcC\Vͦ km'ozoӲnPOάM—%-tEt9|ihi@9aCv6,)7}D-Hts[kil6*mGAzzɆ*&TKf)imbs[W8-8o1 2?FN|Cxlurl/L ]bk?]/l.t>aFbV /bkL&fXw4aԘ6NqiƀMkQ6M) y)X5#aZ = `%MKBdV ?2E 4Ω]6H/~v 瓗m?ϨakUn dX4+PpՕ?Wv<Z+Z1ʫX˃^-mA4nZ"dHRjo1xE6^蒈u\ڌ7q|jP Tu%coVx)EQmS?[٫rh!bZHj#Ys' vf^Q"8^AAN_K 6@[6z"h =$"9llA']WxwI)@~^1G6>c:S^ 碤^BhTׅ0(\lH˒wFCXiXX* Qh5DhӮSuѦ>aA]&}^ͳ$IӤ-]"z%I&R7 ę=f"w|9&F^EFCyaU"5=w,TJDd%|h`ʁrI'9(3 yJ% D M 70XXTa,vqAE,KLuDKt^bv) ;؆Y3/u1TCLV!8xa;fxlG.>5Kyp#hNfc""BJߡ+Cj/>Ф5D`% ]baE)1SGVy(\(Ń9b3"Qxݒ])U$% 2`d/5Avc5kKԕ?O5E!jؓ.|ʠq ف8Ar)|8*{ dVo8)4G?v/RstY8h(dҔSr.u$5`RxfK@sF%z m 8=4 :Uuc ,A w:5\SAfQ1WᱫffY Ut2nvh z"[A1CdK71}ZcŠhOfF@\fp QY.6DҨR$Zs^jec܏mL_;tHHj ,Y~uGA{tq-ΛQz.{zEa[kR* smIXݿGOM>m„NС.>` *hXȝfGnvq4) D=nMlW[\SbVABkKu駠.EE_4<д+1I a1/>fkV_xM.B!A!e4tV{QUbAč6ܒC i{$)D40Nk'lڀ,\йÍ܆$(׾JVWcgwzt.@"`׽dti6TXdEGcV&YC*']̋\|;:( 1' }brɭ46CxOn,sr+Kw :73UFZ=z0\̪Nn~g{t_333 ꊓ[ٙ|zv3gDHSU([ y8bSW8qsԵ_^/bY  d[1j{/]Ȉߐg=:]e6 e6*3Xe UN_0 a\>f0̱θGvϞN¿c@PpJTk~#>=%忭G$p!fVt^#< z^r0% n;h&Uy&o)ؠ+-E?pOŔ/ZHD! oɿ[w嘓J%rg=d([27F U[ť߆HkQ&3JVh _-X\1*VYC5bLX-LVҺ(uvX\OXAD7pZyرb}n~Yv@}~G:I="٠-?ǹu8q;^uجڝ#:wpDWCX;|AitBxS\c"# p +‰]q Նzg1|Tonqk;+ EBS1o)y:TW~ =vj8_P8`'X˄svK֛LjJuϲyS{NO~yB¯gL>k>YYbSy1s}rϬXk>SW;X]>}^^g?I`|ݚ#QtM/$0vˡgM6$Mz^]!ht0hP~] jCi4S:Ǹz7f xE]12Zn)(SpW7.L9dNW>.zE>/PS՗lX:N#ȹE=.";yYxekLTag.'?6asgȆi;#|5G6 PĶԗGNnoobYނYq:(fЕx:x4n-vҝ*b&;#蜮YLg{fbM2;gR:>cu-"zë4:\AסoPvVa`6/wڢ]( u`ƃVh&ͼ׸Zݏ"8|VJNTcHhꏵ&'fu(|x({G$O݇m}ߣnLlIێ7"d>A;xSrU }ȆG%eb@nc|"O5z=MI6^!t䜁% 9Ah?Ȇ CKK qEyD䡂ˇ8LN"(Tv8RV YCTjmamUkcDlb`ˌV{YN4I2YEO؟ئA;IJ>jEaiyq#Ǿl0RXnΨ1IC4/,=?6s^Nys{EP7Ӳvˣ G􉌈Z>H~]?`v1z;~f!]8T#Ώn{C>#ic{fhaYBv8%3|K >@v #MD!<[>ݟJ|s^0d55k(g'-y?p ٞWENKS^jpPJ]GZ˭$E.֪',BkEsg撝 ҥDnb8s-'sy wEnャY_-F {߭\2pO 5גa9FGk<諢eB#;3Ll9xyF.<\.̱;q'kqUݨ;j[>Q6!8*m1 4A 9^ C$\)oBz U_t{c4 &/A&w UsP Qxf>1뚟3J鼇{2;smż t7wa,>!pZ~iیs6/1mu/B_ @ٲeptHkWs%a5(ԇxfA;\(/󰏵:CWX@ <cCR=DfR<)'C#e@ h'M~18;:{EȑKMە63 qEWx _;?7uY "azÊ͠D)Xl9Cx9=Oi3z16TsWfǵgv[N&<ؚځ5݄ u:O屏`%ˊ0v_7l -ŜHDn^-Έ].-$@ժ"J!-K2{ŎI7L.e ц}H£/εE.^%dQӫoJ3PRY) B$y>@c h9 8 U YBnys+~MzsW'}uST"zHL hŵ7KbYOKRNGޗ#A214J'H.m_w"}򹵳&*t8vlP>H;&g|p@A!m@GFgqN}W4mq5FNRXQ6z__rF ߮wRgafsaƛYm6H܃>qPEKV%ZN1|ƷE"<޾ltM5o#y |rF \ j١>ԒN_/mh2JXߞ0 O茪IةuICxZ 'ÆHoN{E} 6|20F !/}F~fz'TEʦ¢s=S|mpO;BrDF!Ɣ ڈ P?Yf32Lh& kcwNoLsk ˩I+NrM@N__4Bm{-g? j` AQ-EO$C6Z%aoc(S@Gvڐ@boN8fj3I瓣ɵEX> amz$c "9iմpP)D;t20g(iloe jdh%~KZce냚ME@ jsD-͢BJql:F]^ 0 Q Wa^;Zƨ,AD26ʸ}$ SOQV2RTjʎ #t 6v h E@ΔŠW }\3љ]yWO`9n;Ln8+1 Hik"TY%LmF(~Xw(ftLl$)˂a0(QP>OqF0Yt¼W,ͱw])FӮZ.4_L_:3T$c慘z#V!:m^ '`$L:dd*cHjS; qB3/lg8}H)(s7TbhJ>0Э]hYmFFOX;*bX$$ ꘅAa@;ʗ7AݭٖldrnkdͮT#Y /k3uY^`&Z6+)TG|pʙ1^f|j`pp SbǒVi'&!^hg :#sF81-.Uq,д%9#K m.)=F3@t5pp6K\:w:<xS@و0䁯A c1S0vh)eĦO ,IQ#_ƹ1T摦O A\_Rna{<۶w.c'q.@v˜a 0T#5VД)-Y=!eң7Q8)Um8#+źb/ 1mm>s;wlm?jd~Fڡ감z-T/Ah؂KeereK1;/SMlx^n22BL]PK7v<x!P eW,deu0J `8/(S,RJi=k]a8r(O7[z>]W7J巔ήCumr/gGuڅ|m|:[SlY {@B+-fx"TZ6$cn4cuHY"_4!]]Ȋ#Z\v<NC.b 5;ڪ6 nne-&\KCϚsy4F ؿ#pjVh#7neOR&/re#p/U! a*>sYx)(P>䎇D Qbn]Rrٚ!khzEhJ~&Y":Hό0uP*x[Sߨ'S_ʃn:O4 EǓsM٭㑵] =t%ɬS3Fʧ&E+5WFAVmV'_pl,ă>Q'XI:*Bns"(ӊm!G:xAl:*;yԿ#P,W{Ui^V {L6@I\td<CpBt~by|I_x{F\zAW?ꅬz KX0Ω_q1bW.xǨ:"FW ZH(,3T^݈jDŰzO_X҆ɥ窯 1W@Gx29W$MRN3;*[IyMs6-[b s xv}r6h11ǬFK? !JlhEӒu,в\2+"s;h 'ƒpq IAdM| hWPaM+g xJ]zh)^;F|Υ@2rP&P'_7>i w @CԹxs Ȫ\:8pHȍ3HqF7(|[agomV9F͇Ң/h4e)23ֲj;eVmcCj7 q&M-WzZ \| wTtG⭺s=-qJҸ"C3çZ̹Q'{R1\\#67:A#3@vRփO8\Φ:uPXi{,h=4כC gQJF[2o|T'h.?' B5CRԞl U#udL= l3~klVg<K@8n^ūÌݔnՍYGu~Z8SgzӼbj Y%#,vç4=ĂQDWCl`9L>;c!BeB 0!th -.#"^nnA'nޘ|{:H-ScV!rk MǸ#g:PHo=UPvQ(uK> &-Fm$}$Z7REMKƴBHYp]\ʼr\OӢ9+YeLSƾЕLQe)P RSATwp>q#mOFa` jC<@PwG@~zIPyy%:,!߿>"ާ/|r6ޅ#X|%4ǟgw ! lRыaqŇv_۫G^ 7R/!߫@5ilLݵpKi>6ϟ6q8":7.WzRWg+u*]Na!b>Y`q5}Lem=nBKj[ |ݬLE4y(munw:Ia&7 $/TIx͉Ov QlYOF6>/'rXHtȵ5lCCE"\Q7'-sӐZVm #4VV1Z*tƧ)zq邩X}fڧopc }Ycj ԫk yοK0@̔/OK 1e05";nPtf:Ek16+_G CZ6ƨ{+WZ?u _,b7l$% 'kWΆw-0+(Z2TOO{(k9aNwÏn@ڐN+t_:H%Iw%_޻c8q*`/sv3nFlk%̝GmX#cnteOpfÚ)5z o1̘bPH2|u4l>",@>l B\3Ԩ|Nrt߀ % 8 ~mM$/]lHԗ]:e}VmZ:kiBCOaK, %v*XV'N0UyjW hf+3:18SN tI7 7"ovq< ܄l>PiM?rZ7<;9G ,Vvl/cآsۗg;SE 3况Ն)XlSS՞g ~[Y|NC9%W\'pu ߕnpQ-\]h?05;[YS'.`؇$m9 W[SgƦ;?ji!}ܼawPJo':BG4t-+Yr(tQ>5d[T%@-)BʎC]cN1`fk7ȟo[Ej[־ ԰#?l[6v-tI c]m`.huPgyuFK%",⌠Nx|zL8rO U:Qp0Z%"nDĭ 6QC9@%!fpT=RV?S[B+P,)Ao §ΧU th@& #gS3K%6g/SaǬyЛv5iAg8X=1šl:ӡlen \ *4rzb~[lXac o1\345&L%6AD$xP  vM\^Ve3|B~O2)q'SK_)%.2=pTm+y˿J1Ɨ7R5"QdEQ-JM;{WMaH>`2q?*<CuuH__wM&n  .P푽5x=t'iS`ǨRaVBx*k##|6#v[@/rka\J5a˺OˎV1o׭[:&Tay6'\*.7ۍwm|ц\IaٱKIźC$VcNVeDr P*|9P-E,J9ʦ9(3ԀNc0|V>OBb#>4؅3IZf6 d3LC$9|"[=p+"[QIqBҀ%]V(XÒ'0Km,8ӄƃvRPuM0!̢dÚJKcS-Z&1>R ~tgNh#̦=qL{5. yp-t m /RS49<~2aj.yۍv"]t`m8 hB=Zcyƃ 3 +v[lmY[8>ovr"0`Q,70/T7q7;Q+ܦ-9){_y-`3hUb@a> 5^\u#]6#,B4:/-| r幦S&Ǻx*'!Zn] S)ʿc$iiw (bNZu)pfYYAϪ]ͻ}F5n;{G9"lICf̱:1mpFհ/nJǩXo7@ 5p6&MCcf*C9X'ȿK|.?=7 1X  u#dO)r }5"^u™ d,^-6P@F-y>a h$z;M >#SP 5!b`FUPbbn~+ ]@T ۄI_zuMd"A¯|As֚y~)f2*c!&jD̢ϕ<֧7lv)!WBLIJ+ а:\HRsJ%p!\s%0W_-fm\W`tk Kl|d1ծ7qfB:thW{Ck)'pۛj ;ȟڦ,tҀ7V%|O1P0 8Y _!V"0vP}A%@Y"yg:[9~33m)O9.+ߘqY~CntWU3gх 0 Zۜ}]K;qG2IE> I|:#Za}#necF;Ąz󁿂u+DUCo7l>d7{R * gNQx O7cr &N)d$x?^BU?bb#\ŻqTp&G?6r &qB)S X\{TIav`=5ԉKo!Vn ,"q<5։ZofVcV9`ojɬkr̍rR6)O'9|S?ֺQ#$J^˶)lͥmHWG@DpnEҢS}^?%}AڹpoSN9H%K`.u\Fb//Ga=ӫE-3L^T^+%w sCU0 ƪ6&d}N8lq 5H4Tx^*T .T*O| * -R?3 %l|8謿hgY5l-кFG?v;p}!YtB+>V&cafyh=Q|Ø&ɗ[`tOZa $6$+,P>BO1)T<#,vVSAr%f}GU7le$=Ev2ELb!v-*8װ*aU@cTK6xЁ+h[`757_gFtZ9]kw6N>..,Oժ|jA Iv<^k`b t.^Ď Dx ; exo󦮂(Kݠ⑽V, sWdoݚ/((?RI!ЫЂ| Sd תT#q,ʩA?C| vlr$C$ % |e?7PG"XuT$ty,:_ ` \wuCaa@> eK}5ii;pSXou^V4gg75V "0SHV31bB4(q+.i8 f܎dl 2w6ɂㆹ9i Jh%?Y?8L=;#!9AF$t0Kǝ0 _u^K9ʯ2)qdʖmv;{ g}w/a]g]#1NqՆ!0^߭Y5Ϫ%5OTў=+ -\$pbޯfUmb&qatB=JF'*]`KW΍/8H;nдv[ e5 #t%Y*c/C(m7vq4q~ǿkc2g[II |. #>&Ip=qޟ~ĸx؍G|8Uo E`5 ivv7~#{Ń!`vrg1 Vk40aɇQau3:aZqtTs;PȖG%Vrmpff2)?ĹpO+NjʺK _'`eVlYB S++騑`ib:}TwҠ[/YcTr$֚1vw 0;4#amViJg+;;I #|N9WױYv6M6 CiT%-!ꌳҟelD#F3tq{k?ϜPu+:I!B[0oGmmԙ^rFT\ˀet}z4Χa;hV- 8'AN~F f0 #)lMT P"PtZ]9:mr"JI NXrV"E;8!OY y0b=)eKZ6Q<ǟb R3Iu:)3BZ{0&ۖLwcJ&ú蟨&e9چmg6O*l#ǥ6u/('axװBOaqak[@8sCt \#.E2X\RR'Y4ZUhb2b" G>PZ @tE]`El|v}z('l1V%a髢7u2x]^g7*ήcV6N$ͿŠф1TUOs.a!7;!l{ÞKцsti lF%v9^vD LF}Q7>.lm UQJmcdjW8$yʻkK'ҐBcB?5i=[x.J\6ՃaY}9N_2~sr%>PZ@#)zT3XM3q,fuٞOEV>KH@M%'`)+k,rPUEC5fVY$7MA;eR]MιF?LʆX 3*30ΖT#C#Jɖ Հ*r[({,(4X Fa\Z t)// 0; Q24@\팯7 -Z }*ɀJ?fof o+yq_{(G[P?tOx6RAKfcpDCuPlzj1shͦfM[:#ӄ 8jѫ4WRYsmd~`X5chsʶrVW Yv-S?kL znEАCB{q.BEydZ9$>c˛JjdߤfO`KlF_]f)9|YvN'\/pt.kP"\}xϗ㿈=}~aTrtHqFڧ)73 )R_)J]:ȷ(6bݸw` S٠CkW𛑌 k:9^Zab'acDU>/AQQ_|S:Vfcgpv/<e} A!;yn]9mYc_e t-CP @s=@Qq"c ZlPhPQFV 蘈 ijy&`gry3l+;l+<DG:on|m!LńV@7zݎ&R&"%3 b, cRdX(i|2A;fPT7ڮwW}c {ʁ F+pڕV,P]\­s8!\AcFjԪ^3K=N]xGY89.9]Z+}-hS6)kt^2L^PGInuqjJ{b]}֡f:-2F* MiC5.ھD> ^W5. G m?BD-7vf Scks6G'NїGJkh@w>Ϻ<ӥӖ"楞| u7x5:1/խqhZ pP Nժ| a]09m+k>S`ܘ:/ii; }.a7;vVa1FB~wtDlS){q#Ht/`lB*CiT_q˘>8G``g#Dɗz9&?&mlM:" OENWC||Fū^ ?Ox U0b. QN_Sh]Tt;qS@hхmgұ}oJ`)_9m{r W1֮5f ;p:x} ÐI~$R(23}UmY|B]9BKBqF0!IeŚP:sS KT^S!!oO6{hj|ْ s?[ =3pXSFAWcOփDr=Wn}㾈jr--̤8`ARxaO|b 7ke{/whK|}x5O/wɹdf {g*ٰJܑo%Ђ|h!3Q}/']5W?#F:%@ny-A)rE߯euF1t2/r X̡_?k`Hk%rlEl&Rsv;CFr1>Pv#Sчq7b!Uk1 =|r/aF)\OSqyQT\'n 2raцӸ`&bJ.95f;нfAoŀy}QA BD9Y2~*Qӭz~Go4itaz-m>,.C#T6Hڀ(jQTڍ6zqV AL߀N&UUU;B)M*fD}f\3(oZA@ :^cpC=gNFڈ9f tI7L܋ۘ;tS J’U? Zm&1Q2PX܆"tHַ:</!Sj@H\` HL ꋁ-V^|h#č 8njf8la+ q9$k)m/^?^,bl(9x`;؀_}&03"F Dy߬b}ОXK;[Uq@aY')0"abe;v e=p)S5$dL'[3Šm(;w\`~Ley_DJxQ3 |?HWchzSWV;Ϙ1'05nlj쒯ȇw, 풼:yV;ItΈ* C#~X:Dl"{˹ {QX|3xTq@Kf􃆚pf ?..Nw hr/2<ʨ4ɦSln H(a$?>ޗĪ;czIɔ)vq/'Y|v` r.6}NsL>䐆Ν8aD,soD &:LF0*~h3Sx B6kU,ZAXr/R,ac"sY(sY(1:WbV _jxu9b<^]#{eS}Ud2ok T!qa=q~Xt7g ̸ٔc5>|Mxat % KtvA>z+L4+=' vչ@9 2H*, J:U+kKR ]VZu.X٣7|I8KYp%v ,:\x\9mX(]R !0=zK  yvNc׀32 r?Mrx8u}Xmkg~0!T+S\sI^K- \~WiM,iH>v=:R1T`f8yw4r-UpGKC9Z?31 0[෽zI5#*Iy1IÚ*~BbqԻS}r~]3œY;MٶSNHKSXMbfYı$ZWz.L>0ODi-|>f`|jFU/@E=$ \.rOTt+l9$ŷiY!%ޤOCx]ߔ?ax8L4R5>S Bv;h5@C Lq>'gXdSۦ߲8L +}@['k+ slB9#@~uN1];0XojGlc[5;^*]A4b6,x g#G+A\U]_dGVb4:#hцq9pl^峫gn'oD\|-fLZD+!eyD>b]oi,;Pa q7n=AGGU @d.e#YN4U\*(B"%㈳A(;3˸ت/cB@K )~TH~cxb-Ϥ: GTm"ci\=ݫ'p!T`:eAv#44ENȞH[߫'3{IJyAyܔ^)# sZWM {ۧ-(z<z`P??M tTOf~-]$O6uUuÌZkE{(FFP1 znX xepݝ^ o'1>qƫݼf8{?ڱsv&aLKoP!cIo0!g/ξӺz_uc9;ѭt݉Myv}xȣ")pZRB+; jR >?Oa>z$`Œ:NCe8 fPpzA/:X][<9 ^0ilJGЪea+qѸ^l9J`h flzfSo|l͡A-AjGDjIMT7}J0Yfe /2 {A-1Ms>c# r ׮Bӎi E7ajJ}1lB@}>͌LEe2goL뻁 ?CCa#6pqB<@P>VUب5E6r&Mx^C.8u[L "%7h;&I7L|WW?1 )ӂ\8ǒ1]T}m(msɐp߃)EU0 I%GD>_(Q-XO(Au}+fx3^yZ.Z櫾S E`/X 9_T=.zRy ` Zx pqa6>#͚Dm鼁dB`Zhmr[e!ğfum ̊1= A8Lw4dPn"0Tu.2|oL!2J/Hyo8;34D_ ia|J8P(6ڬN~mZ8<~5,"Ҙt j*, k=|QZ^#8.?diG 5lWzXA!sX$"W+IȷAj`t`(u;?:Q$k9GFP̥hojW^}#Q}\E\n"ePx?v-Ѐq8U;Op6ɖTh0N ԖAg7Ed#B!@8v&),g>Ɨ-XOeg,_Wa~4TcbnLjET/ vM΍ƖULɻIic{Vd}?>uP$S+t:evˇc!/kg/Q ]4Wkgc7[1y8W"PpND$)KFƋl!fMexnvCd@-(@Ǟ Ii3uQH5s^gtxJhA^JBp?F @_ X35@q@i*L2ԝIguuJ4G#uԃ"g?~ Su7)/~ԞS9)>4)7E\>&T3Yw1Vcfl &|.yE !O'tlz`1џw LtoII,Gx]@hAe,?7 5&$)A?==?Qa7?ĔQ'k %6_n> .{HvFF.LL9q\ s%Z GIZ_?6Hi8tޮ^ ML]sDx*`p-3P&*ctSiNgAP9MY;OMz/–G,[ Zp S?<%( nNvv\秈Ћi J#PF6!Tqs0,RXPvG6 2oO`fe2@[Wr9R{X~3YSW l<{`koCo`\K%w3ƓFrx 7"r"9vvfEWyUpg }lJ=YjˤO}SF|9$U// 4%\/(AA u$U}j|%fe<\23c~rم#\ͫ` ,. \5t$O܈6\ WGƪbb~.tmň%pZ+Ws"<(/*~TiwV6x^ Z,d%[#~}RvÍVuVŃn;zIǎxPGf'YWWU4NXBH9=TW[s~AtRHӝG#4}:&)6&wP/v(v D۪~, OVH/1lu(}CQAKXf$ 5#r<4l!hr k5T\vŋzU27t98EGΉ)TNB$15:z5ZT ֛͟?ϺyU[$VdC'%|a4/u?B})gf3yI$沤V|XA%y]RTň(&uYHw0V>Uc>(6⌷ `UO0lvxj/-<}?\ ~F3rڶ %t:ޫE"64swƳô L P+}j !#Q#ZbИtzr -Ŝ4/hK\b$( eib ZѬf=JWj uU ѩmu,VU0.`vj@ Fjfɏ"DSu_yekr kjX)֮14FQdqN~(W#GvD1'Mr 3m#&!Қlh<ızXiu8_)uJ,!(Ir?dPfmX^)6:E ٩o˗P!GD(E@'Z)=͇7Si͟8RoJ7eqrŗ[e"if2g#hD/+<; YgQ>q5<j$}<ۚU¬JRa᪵&02F$%俆Cx` Tݗ/ObD} !r}#p0X:*Ot ,W-ycc~,n5P`NACh )@_5TB.`VmAP8EF9#nm}+!i>jB5徊UDdv7dC2ZtڀFfħILӕb40&k%6)tW ~%ʳ P-C'MB;6&hn,T͑j=$̸y3 %5U 3\ux~ uMO+'H>7]"TBN 4 I@^eM O /1 \ @_@/wCTV4LRZ LjV}!y SpYUc'tGMkBrPY p1< "[cm(htT4WR`(yj֒m}P.|rNrlQ8]_f>uj.zĦss⟝^]dM7Rr)\]dBz[|4@S>ԟw50Bh fm#ᚽeH0{rSWTY)6d%}Y:0nҋ\|נmh; p袛{G)79s`g&t}?|%8nq9.2>&l+C&,=dקFU<揵n‚F C5,X ^7)`NM6ѡ7'l[0sAmKza.(3rZ7v`D^ rXQ.jx!\)WDf?z7a koUf!fSLDQ)TV|* B3݊2&I[ $4?RduۨڐT;^_Dػʳض|4aC͛xDq|+d3/I#jR o2A|1^6: 7x{żhig 4 /r~żڶFG Fh&vmx{%dݭ֓rClߋ *OϺﳾehUmM\2vB#8 %&&%|)BR>odUL #]Gyugmh3lDR.W{@ |P/ a<{";YexJ n]=< G'^7@hz"E?鮢}'+Ȗ\爖Y>4i)"Rؑr0ФQKOm [X켴Lٵ!J mbAKD ( B"yT߮G #~j8VcSRc6:A6n+'MhKۍXF%(9k|Auc9Jl?1wG!Exc8~^]B ;-,Kmh/h JșvMDHFp`P*R NBtT}ZyXĖwif8<(Ksy-CAGR6}'nCs2ؖLFb""{ai48,FIxvgG?:7˘)6嶩VW|5 AD:y,ipr) Z=ZEd!aPZ[6TYnvζI}[Zmfř=IFRbO),9.˩w a-,@20VB( En\A.W{P{:x>m]]{i;)R:o[2|Inf(oFx/~t`.,N!~3g?Ig%U&p $/T i$#zcڲFj+|T V vV6@^"5vD$"vET azɯ`؏1hA¿ۏ+`<{P0:( "l& r$ r2(FsCg.P0* NHrF|$SQE_CGǀf/$ҫQ[M(!;/{x 9 Uk>4в|DM Ha #^e #L )1nѦP!L*T60` )A┫"z%d&tP&bلz|UyYùOݿYSw4/z4 e|2 fT NPH00>ڇ㻵d&C ᰷apdD Èvr8*=!.RkOѦޛVb[8( `_sHēR͐y|ROrC(t, saDŽVxD 7~mh<<Yi,?WϋO oM<D/QNY˳>>*4C5ĪCÑ(d'1hbR;b"=nŤLQWyTSF:__Kc CޣGU|aMJdxS-;)"Rl.iNvETv\]vH&JguB),gmZZoޛ&ъE9!` OaFI{{W١ƃlwzt)^ХB.uwMs#~:>vM9xZsvtea G,5 蠉/Iܣhrm;*H챰EVj4D9Dhh#;͵ ZHh gdn4\ç n1vܕtEnjYQ=jjSAC}>c.E!"<0C Y836ӛx S4b"puhj|I£&uꌠ՘oF)Dу2{XVxDJ?IXa 6ݳ9I ۭ,/N4q,P,(ޘ)"f @{[т9#_+d=FjwXL.'/:_?\6c$g`1?CQJ*Tb9^堕2xEaOQ[$ۓ4_߾~ޔG&hީls z1Ʉs&GPq:g|&0YGi+&aB5h?2 c ~@`IW_ !уQS6-|B‘B\\͆rVoH9T^̼|ax"@L"4,dhD0VMNէ` bGdݭ*U"TF0pޓ5ݺ9t+2;I9SU찘Nj"qT=y}e(ȷcPՙ}Q΃iT9bo&@[&('MHq+Ii.AY|tYڇ48 xEJq߫+l/2e*χcbia=OSI/dϸi/u@ NU=yh)/˖~Y'YU4#9,2;Ag;>J⅒>L.Lc, ?r^@> w2^<xF'Y$ƕH)]~K2r>1%&o]PHN/7`˾ڍ*>IȶN ZY0ы3*# g#h!ۑv@h g5 ' B۫BK#>5vhR+Jw# { l)"d%lfTb8Y/!GӬx 5dP3xp@k2^R >,#=H%QuY0J*#>&m7{S ro e%65>|Xxdo@:(8=*-%S|/#:3cSi |:+a8XcJXGL!Udcrǩe)pQ"kRG R\O,v3F*l!xпd{OMyj6;}̺siYWvl^ w =v9N =OޗQ8WO}`5V#:4̌ϡHp?x>٭`C^8fX$rT-fT.Ϥ$܉%ÁvPٞ@ zctPdڬɕ`.i]/0s GkzE[H=OTta|5\"Zh; Ď^Ae'L$PlY`W򲼍Ikp /IWj(cCvbԟ7g8J8 Y9$HɅ@7k%)"dOֆd 'h8 b] Sؗ"pFvO,'_yO⠜΄+xBǎ~bӁ8 lfRu\#*՚ #Ye N*2alblȦj=YյX$'5'euDU#*'#_#G Gz&J47k 4/ Oq`i89́6MZ0u{,_q,g8z ^&/)9l15fFstO}d0 D.aK6tz?OjO h?́.jÒ@#";ShH}ZD<'Ѣ(Qj^F?Ƌ)$l$T ^PދYȬb( Fv 3dKcҀeq+*t}&ܱZ:7ݞK8D"Ua"ڍBm6t.&l@b@7LZ 9Xh* F {<puЂz U2A䓌y J2;l:]a v d7w7A/HjC3]]{WHF_W`oZMyff<0]VHֶP*VP<-Wl.M;j֑ H<yCN]C 8/ujg%Ŏ"Kdi 8 g/0HWSv*;bsLA2@KK!`">yr![Ȱ4% v#j|*l܋N6Vgd͗T/Ư,PZ3yEs t6ob1{ ;Bֶ"upIvf 8O#˯rN3fvBXKZ2!KvqUC]}06PjrN1miύTwrGlp׫1ǛY|EDO* 6TjW¥"Jqƒ^h^5X$hX(c%HlMCҕj2M0YL *";r,R:U+K{u$f#sȎ%d2WV^]VK)#QG^d2ʒP/z5afv*4##{aY=HW ZH4 c%e˪Nl(0ą"Ui#”L<"g5*:n7P!DA,v&WفXL($4=AK1DWk@-̭tGG1A)MWtF&ӦSP"C!mF/; ãxP)lֺY!4(CN{ʢ[EZ4+-Z*0!]Fm<{^v`cElY#.mIT?QP4LesZ3Trhċcc),J>psW z(q)Nu6a"8##ɼ]_KG kv=N'"#PaeybN)rYVƽ~ o҅ۧt ^ō4|nХ>ރG6G%sɏ*c+`hc? no฼uZچ>Cނ ]Tb'gF)uAQ hP\|g#+E[w F#WHWWoDToP/.+k 1p+mWjMO<,jt`Cnw DN(j$sXw9XBM~ZHmC/Bf0x0]$ۦ.9o%떛5]F(ckni|tJNd1oZ f\4} &Cl;{-rA!^m1Ih+$bJU^Ն UuN0zacfQy'9&j1 ټ"$_^0b>gNj۴n][M -|Cy2ծA;JŇC?}f+Z6eӘWfGùg\ xnUDK=x<-WSvA^aG"[!Eo)h.SV%&6찘xC[C6 􋿜$]πi{ o)_vF`&(pyP*ߝNÙF$& 0Q sԡ!b(<ʾ?Gvu$rys`2)P6ւDۮ]n?3SoBg}3N3gSWGd7R;Ewt GTξQQ̃+5XgmOaD.X\"#}vE.Ӑ!TAL#;^tF,"?ÿ owCؔ FAy=t< w2ug^/ NQ6DHS;L}n_lfѕ.KBȲl>+cŋ́>>B:Z,rM7h?$! '}p c G3BIh\ en8l}M7qbWqPĬ/)a=cB.dvB;ꎛDYkզ5V ZР?r: ƻ5BO|fFdzFaP|/ig{/3A'@"o!IzY)Ú8|Rꈛ)Jo+ e qC5AJ׷ҿ x(3/c274>=7'@_d#)\zU7bIgDaѧ!; =Pigӗ"Q0eUբ6T/?lj*Qsպpw5}X " ")Asټ !ŀ ltt]+p LCA)Ml*?}d<8" eM"&@Ry݀"H˫1]D%O7BvS0i3pP>wF%X+SaqԇYmo8ym|856d@۱?ړV]Ube >?#*_p!Cvuڧ@!| bO.q>=qK]M4B. 衕>Zs,-bQ2l> %W09 Zw4m:1DXMOvjC m+W/+*r1RO1yG~UWh]Ht>%S 9tŭcJSOC 59u<]fWmK$X޼j5_ y!pQ$ޱP/E8枏qF"u~).ˏQʋwY_"h g朻OkTrs=/s̙ΓG)sD|P8և~|ۏ" {1c"igG`-B&滨j85kj=0+u7CUe kd-ڀpQ2h["`xmc='CAӮ Q( {AHzs<Fe\iks4!'GisGBHl6iDggDfy突аlxj`Vڤ?)_i3C;wQ*].}0m}f!_*cdGf] ,Y+{]ި2stK\|;^Ed^m n<(-&j7zEޟ/34 6KA%Ʋ|nZCNFAYAQQr,x(3B=M+"<&SϡO6F=hr3CόOXI'oK99{a8}#wW.4,ٌ25sIrm6JbQ ձ[¯4f|}d,*m{+XGxQ{-MG?mF':I;K0xXkH:ޥ]e7m8B2%Գ'X'@~ȣ.j=yjd ϝX .Ɲk=ާ ,^/ MVOGmiFZSgIBqC$7LIMt!@4S \Bֹ =;=pd']mۋ-M_-_ksifö9p" j낉Z̉IK唍)Ę#ru6AfSv#N_ YdqwX@Tڻ.iV8>Lu_kםxd'յr"4oR6{3̾a0k!Wwcxe1Hp-kLXߨ GłHU^%gi u-1Y'94wc~T%ϹH%ZUd׸*7UPY>_{MM)  ram&$aá@[1¯vtRdpʖ6r+6Ͼyp9ufCL1觰? B7Ʊl K)g`\& \{+ẋys{EtQ}! )buWisMu64 q͔nnwXN!kew:,o˯qW-żUpUj{L)s濢1lH%^; *c-m:a.z5\UmPI+[? bv9⎺j'"6san:.:>EW9'S{vKG#=G&(LB>Ԗ[E7־`1V(hި j9)Wun+ f .x)!qTF|.KP' V7_蓛?Fdh۝(/yB:k9U^$/"!4<ٷ!NO[|jGOک 55\|>=4 ?ɚq<7[qɞS ѩ'P{é^*2(0ef܇TCdԳ$iVz3<((MEp8"r$2\ȿ_!`𸨔;$הo#,ϰU`C+;C@%6⳯؈6|IP"׼b>`l~}"RSX .pɴp%xux I/1ܙOƛ{łƣ|;ww#cPҝOKwyWa{oFa@PVy*89BkJ mq6EwNہj8so3OɄhm&JkhK#x[*+"]K1˻f\zæoX"V}2 NH>19W1JUK_ JSԾ = 1ŧڗuz_Luoy^oޖPwuF.NjOA/hfr!BosDJ ~L^Y@ 2?-j LnϽCKƵ yLp@R^F~2 m;~$!cdeʩXh/7g_MrK{iLV"r/$OxISfje*.L$o-g')Th:hhpUj]:2И3DÃ3GtQ7=sgg\?*8 ?ggC1x $t)87h,?nĹg^J7Y J}T,G[Õ>Ui y9'(M!{0@wtT5bpAaNH]l"7Rejh}gl 㜗PidSVw`zA`k6",kA?nc[^̰)}=!roi'IGbuc#9~.CQ5?)^2Vn ,;9B١d bY!+HJ's"ǩ~}@H⦓nWۍ'ݮw_Bo 2 kᇷy bX6zY7'Լ^4YGb,+ SKGK$z .L^b3YLE++Rtz7PI"e)>3}Md<ͮdcxmohbIpRQ;Ѽ *t^YeM#W4*[)wvHZ/c%.H.>BK;3E2=BnhžRE928_%ّQDq&MGg|f zKZYhfn퐢}үm_rسDz148Wk]D7C!PKNmbByfHh-/14L`$Fy1A8.p`w9H&qWRp7Նc`--ŮeKOER*ɋ/9ϝ* v ^߲l|~mY/ eb+GG,Mm3fKTٵid\- &(1Oa'F|.޴1U XYr.C3QD@ "D`Sj'I9t CP:4(Ǝj٪]ĺw4U!a E+3[cqjbUfxE6e:ތqR݌$}\Fx+>Қ1āza~$ݳB[X-'ppAoOӑĽ487sY=-jQ N# `D 8P5So-"BU mM6!g^=:IcCěˑ>Y32*.@E?|=9SFam>.e&(p hyV.Yݜj'$VJ yNLsdأ}BUKjZ^R˧E)^J*YI5Vw=>3m.AdyMMJOk%|mz-|>[?XRvn髊UjCiwMiRtM^sKrY6ޢ`ʪ(E#0'v| ;,Wt my8X9P;՗ L/<E]CJA~\i!1ZEΚ߅ӭ5@qsO(D®XNXfCCHk={1Moޜ-/"B;+yx`~ æ_v[%Q: ASAӯ۴#t Dfk=;+Qv.} ء[#`'5T& ?k z5N[tsP\^"k;¨ L$R9$i?mm=i =V跞2/jnv)C+Ch(%]$-W<^IP(b&pp6-@gluAwF/10g%9}yv/ohs>W>+ʟKb3qدct=JGE0fU#Zװ7vJ7;t*czBtH!Ž~s.a7`*3yK;n^^Y?'2Vd 6th\l-i%Ag.'UM̡D%$PRNaD$ֹTxzX *掅]铊` # s2Adk:l$eQ4+cAL(2-y07깷Uk{C`J  )//Mfh36'Sx$e+8Q ٚKjc_-^V?ec:<#үJK,C~YJr#(b< }"{ Zjj Q̝,^q Xk![Y٣? f7WYk2SK,^RdX&GN j/쇵?Ϣ׹fSpNh J]3D}6vB&Acx>*$yH4:5s^2ԂEx7A3ɺ)c&DUC}~8Г&ɴ F|v}F rV>&0M@Ff'p^@ՏJDc/ވ-?p\AIm1#$UrLI' -@Zr&+=]p_Up7DmRm"Bk|u|+*Ka‡LY ~xS wUFWQAѣ) W/P3w=eZxƙŭqv8KRfhgUѳ$]pIʂ/c{ZHA/2I֠>~)oc%K0,Bynoٗõ'Շ8L?d 1$yQ!U:0IE|i/ۅFc}./}xXL"/;%rrz-jUF F[pX @ʨԥy$ix2$|hu~τrO8T۞p{)8+ϭlnQMFZ8(b;]d+p>K0hش ) 5xsQG(\m2o-Kv~N;"#".ON$佺BGQb$^uaLSv9-L+6\GI! {t?ёrJUi9gc.<ѣ%V|F>nt }L&j/vllR&5v-_!}B$SK?UOVIvbg;"ɘ,;Qޑ߳xDct.]ٽA{Q;#[!M(O:SN]_W]q7҈fmQέk ̘TuB,̄ mGmJ)vD"]QdQ^n{R.yox?ጰ,h[#rԌ5ҌOO#zʧ̃2R '-T (WOz?W[G~GR2H4؄.S>vK)v Gv 8Ia]љ=%p1Z}aqN*`qNzCc;E;iSbYe8d||*@D1u lS&qjP,TApQȩ< E7c:Uh7!_O7j;&u&*dN{;y5l(<6|ELgKrB$cos% b?A71Zb! pm9l:{Xy&hLv u~QEChJ(4FF&B2p;QECa"ro> m6:Æ#Ј)l{7BW$ͅ#phcAۍ9*t֑ G <ʃ> >С c4\/s#)qՖQqj=/s١/M'Bb $4>=c@#'ۧaH&DF& FfvW EӄWO`A:<&lIvw\ uΟA3QǀN;'!:=_A\¾9Į9Sx3oc> 2e2N'mr w04h_wJ r13b?]Oӎ>@=<7(oA~ LLCs|P"9nBdpmԔE+ɞϳ 5[K;)d}&ؙG{32* dDl*ܑFB,FF[+t|@>|ݐbJ;B.'$O[$sPI<ʍia9-]',y(tzt!mk$Kr5>"wгߡ_]/?J^rZ%5M"1TNJSy#IPP%aBda$ y.=T= | !K'j2 [ -d勢^(rT|͗I Үu%O"PDZ\(o,0HԘׯsF|BLؚ\7f$n"$J+b =@I87Ҕ'HZsK*Vq_4r .X>~a! zЌO{E^] ҬKM$ȁ֏LNL3` &K42go,1T4c(mv&;м+Z}ue.D: J+,c=_0eO^.~.D/$ӳkKӣA"(lbk%^Rӫm wq̂Rg%sp[2.V --p{axvߺ8Nmkhm,Tm5ږOsFXmxkc%ZiW+d;bumWt@NxOT\m; S+# ޷AN7f*V6C &2K]{9 =9ȵY;0 %mF]JٯO "v wA28NƒBJ?L']nnPv؃:G1Q5ƙ/ ǹ2`BD>3|L#iX~{.K 4M`ʡw7W8`gȯ=+{$Rp\S܁K"x3W:?t侨>vH8.: 5)_~ ;FlzM? 9+obGϲ=3WQj Ч>"QaیP1`slL~u.)<ۘ{N$M5EDwIlFU#@H_ %0zKa0Sa%+틒w N>,:SL*X:K"q'WpQA~Kcx"97[cG5ʫև\%v(?KQ"8Æ M[[a0J6|njAmOYi܉)d! -nB+0ƸbZP򧓗rrg=/gvq_KwyB{CSB];I)mܥ_MȆc~Ǿ~;#g-`zLRRgx &r)>i<AX"z! s+uW SQI<,P t.Cd@"yJ& $Ww OOL5ԧ#)Xէ^թxJѡ(Unt];}nY'Ik!1nt_s|5A#~{x R.J__b$;1@[zZ4-n9t<¯9V}y',1!mҎ3^ #~/_f/○9e ׌i[^# ^aR_쀟s vlvx[a4q]pL3Nϋz\C&+?I=yH<ɥ''y>/D~|f"76=5,:$}?jjxJo}cJ3KO+_%(?dj8-y܃cyF&& =C}@h!$$g`s+ax O}ywT/> Rhmb|14Z^;kio 5܃=!0zPf<4nXLpgϱ%EcGﰍl|OYZxN4GoȖju'Hdßm!ǝk8?(~/?3l%#2QbZ|Q7ioSo*z"_CTƩƉwA9\/Rލ&YrqMJT8_TXh!>ITT@TXmz'W$M wpyH^rQ4O鮤V&MByȂ I"'+Kh>D } V \{|(~yz;~Fxָq25.6*x8~reRC#)*P|&rV]9祂b`bp\q}FBy ,Ր0q$g8E#MrJ!*B.*u-KBt?OU6o%yB8ǒ+=;??3؛<{Pd`U@=[*AM^AMi zL5}O)כD7O `7Q|Ӧ*/`c}mۮ?%"Ga'Rr-mܼ= +9>)uW_Ѥ VK]y) ~=V~s}u{Aa?y{.^o[- _5߽ݒV,r keb.`qi/ cie&wX*Qn2Y){^"QJa9x +|HTq̀v &Ij&1S<ۄ)c6_F݅\Rn"G' z@V`)Ӛ(uR0C/lv FI+l0eTx[ਹ2{N\ r-b(,Gq(L`ֺ _cyF jb%[/("0/ky:T NFMP*^)EU.9p#e."?-;M`kO>\4Nt <(ubx54baPhAMU)A {0$Y0nmQr,pn܆,@ƓEv1xofen &;o[ؖu9x^y [ u[=Nn< ?F49o o–sW6o%)q1^=V><2FvGQ MkN_&$=^|KލQ:'xں JyI, &g?Hs$|/h*.Ȩم8_:6,J  ױ@]B?u0-!y|?zK[3./බg^~1y$&k8)lE:C_x!rPR"*Ʋ ~kVck-ZafN7@PnH4^w T'"C玘y(y66/c'xO"oUR\ߥXnGū%pàP [Z+T.=og/^}8ٛH C 4%0!~:π/r%2jse/_sX}7cvٚ[OIx}wdLp}벻ػhѯAC/w6ު;,Ws;|_>7~UBfm )dlG۠Qezq:{E]dzSVV`qf10LB&"D\/!jѫGCh~]{=E5bH Bvy s#s{:`7;O>:m{/{zQx]uoMLDf :^&UzXav.G5k(zQkM^DKB ~]H[G_T& (m-)id5*͛'tëOL~G\? .&Pfz"W\,|\zqNޢ3Dl eo~S ,={ҵS?[f>V8GN úrπ^[4rns D ̝3k%rk6l"]_:֩Mp_3J9[EC<R4?KUU]!(a8R*?FxNԌB^z.ǫXILRHc ug`0\p%812yQC|'I&M` Cj$GHXv},Ko7 EIv,CPu Y`~z$+C'Ze5geIs9luFe&QYHT5^Xe۹0H5ֱͻ&"wևUU´YC,qV)i*4K5j YKbv[ [J*2dYPn qb Q SdgSbe0} w]G}%~.x\j(XUdhKjV# %Y#J4I;$R*5|W,UD \\Xө'>O'gL?$E%_%.ayOŪ8y}oTVZ}oTvHl6FZVѿQMj7 @5d5o|w55Υ'l"?bcAbAqWrA\L"\ӚS,怉ri6ϣ-,.Ptkh! p M)u!p1޷ #J^-l \"D\%BIA<;WjqĶ^ ag>/}o0o;BCB%x4΀[ɭ] . Y>!cHV؜&.5!J[yw@V L^#0&ww1ͫ$]܅;B;M-v?<䘫9EEv1!Kҕ2눐ś?!jmc >(6I8&>w'@>>;tdNh|e6~mPPX=OS*{ rF뇖?G&U'UOPd5=LX (DЧ|.WP\uuePyY/#yWD MόUxF:G D.b\ekK+1#u5-tn AOgEOcGO XKYXNK4l)x,suG SUV@f'O,Ϟx^bZAjsclo[EPB;O =>Wg`5Rko2\ksY·'~JlV{:Z?hA{'? o amb=%A =^%*3%"ڒDpx~ND>dJ>`q03gldwmBo]2G3t"+!~kɴ%vYq]BvCs!ooVf^%_ 8lGo/s(&w^Fc ᶗe3TF~IP0+e @X'ʥ"ԕ^GVr%X.|0 r].>Y.Iip\@YEaE=)r1E#^Y?+y}͊nZrdtPg~DփM+B'ȶ$8\jqKGZ]G>BeAbA6esbB-*&Q|YM mǿ&_7:qSЊwpK_p6ɱ>O_uxƺxKpvE#LJ I"UGO.%zmd{uT0=|T"OL򥇻E:K~}(gyy$-q"|L'xJV"UYF>,arUqbVQTk.K 16Ar eջ-iM/#F R$q~E"B\@|r1[Ë+*,ᙧ//u re#CNrwÎQq :YAIpv&r2)ҸGG#p) ß}xaf64=泇TunaF(=v`<k0șxE@뿾OGDyk!'Ma{}l[sBE0e~2gtXvH6}Aρ,{RTĜmX?>|Ś߀8ζ{B T{؁n ?V'1:FJ+k`ǕUSY"i U]$nH ]Ӑ9%R*eBd!"U$؝ׇR[Qv=o9mZF^y֧xצG?^Κɯ`rh:m'D9nֻ{2" Xf.g.MW-e ¢׉"dCMM@,3[s0 ?TLڋO FD9%EDX*JR~/bH)E m;]tǷڃ&ImNV_1^܌q0!?-۝JaЀ?W-S0;TkƉg?N9iBƟc' ׆WkC=x.#9yI%B t`=(ӇjÌa`]_\`AӸ׃voac)'fA n7ED'Q_,N^iRR|IÓ' ";MUǃicHMcݼ;ā*7]1jdmDhf#CDŽ vlL.[L wuWifmpFuBۯm}KEuy]N Лj7ڂeUyՅX9:iWNW0]&]v[?L7ljP׏.CЦ?.\^.pP/|Omi՝r22zEA Q t x}x'OH^'*Ha{Zp/A·-9');+E/B?mOLfP`Ct 2ܷw M7}[ȑd* Ci"Jd0.$@SQ"QHע̭ zGej@&X]иwY|f.Ab=6kݾ`PS'1E*0rr0GUI3"d#yEAr{WW@Qm+VxMkxJ!gzD{QF5:SC1"#n5K6ـ9}z" V)G:wF-ͽ`;#7k,։azBgO薯ZTE9}Q'=6<Ӣ+/La[*O(Y3a\׏16|b׉f/WYk q SWDʛ z9F/O-.uHV.QEٙ4&w$jd-L{7BaA+p/=1UYYeP#涺' fԥ4_'4*$ѐlX'92aҐ^ Wз.F^ܫۡp.ٱ3x3nFѠ́5;fBKRkdh_eI\E;|dzFyޛV˺!GʉaVg9.tY"UOt_kYZNH3>2DlAKwcll [qV@SGj iB.}[pO¤g.KT9*Q ;xoVOG)Bxu֫ZZS^ρ`^ 16L_id*ٶP= -ݍ&{$=n!7xw'6K r'QFf9|+(E _`d]78UwԠ^%=Ō? Z~+AcE\e b˂7(ZȞߦUgHdC"΄[AB J@i2uр~B I75rkx@v"S`Vs ^)2$.^y,^JjxvY?8O~ߒZՙ^*9a}7>Tl߿b&vn5n zOiv_mihXCHMHe]#j~< m'Q m=#9O-^.6~)~XbYUc{ D Ij=7#/L(u6!_[\Eu<g<@w@<,`NY(ߖL+)` Ƕė+lvl"Y64riepw} eJxůsˈW#7+wMx/_{/S w18S>Һ>QYRᾈN,;aD=-N2[#aJ\, H)IT0P5܇y@Kf_(^SPKm Ioi'DtnP?YYWѭ;ߴ2{ *>ø4z=%tPb~ 9*A_@0-ڲ5ж_ז";}7nQ'lV0PjteWAovUB=fKXSYRsĉh$qx>5֞nD.`kh3Ɔ`ۢ9o^])2G<2CpciKah4g\ܫdzw_Fw_gz,4TG6M%H Z#w_ica Cxnp\/H@qaYNt3to0MD*s6a}Q5x؂nc] MG2[E#I.}$15xndۧ"[9nWo2t)c-nK_U7GC6osnm$j^]C4HsN<{V']oţ6%Y.caؘ:lI2 H#/i:p&7B5}EA;.ڑi1ےa(h/Ġ-yāh¶G BNBz/qV [|^n |&YX2thwڑiN{Ngۦl (e103,d[x91j\ȬXgeq qkbaB՗bBRO4u^)n4){,vy aT ȉ>֐Y+ɶa<^DɋFj'St)=wSR&J&U tzH/%?޿T~WPfĽ|"O%9Of%U|-!3$ғ\]͟(`g' #10 "wcH./WA Q[p\=E'ydvȽHRylȊ { ڽt#SGkD]ȓ^GfքvJ_< ~L5liڭף"w5+M0[q4I. te0.tۊ$ϼ@{}ĠhoR^>AkU0hIcn6B%Gjw8@ڣ_:>D|}؜06QTѶ1ayK`-7<0S^ Kc^G<Iy <<"a+,w/;"JAm-vz4]W1m}:}:Xbo{)!;ϴKtU*)Z߉Z~W"J_~7Qip[[`TT `S9|$Q\)tEqqq`(7Se7_5d\b%Ԭ 7\Kn<-ǒ:V̡X^^50b."1q#US Vf m xυ7'R"EˤȌ-އF62qD?/^j< 3j xc5`¯3(ӋYDU^]Aty#eAK&YݘȤWxoJ!`"Ral4a2 >Dpв\teۯ߅H 2Vԗ]c)`^/ŠqeG+WHR9ԹJŢ(/õvKC>}ưGG >bڄսD ]P}pt B eqfhwx(L@%la<h鳳-F8Z/;Y(q۹H-þb"%ZM9x%Wդ8n5RL|yBar_ڍVb[K+NcfqgS *ف҆2CvoU"?ԖDoٰk6E|g@#wD@H8:p &=^zu ~]z Z[d9sAZn$hC8-,I:_T:;}nl*)R{F>+ϯL|͓nCB:e/Rq[mdl:,y54BktR_2f6O8})(^t<>S)bd!l !lq`]iٵ;3LdLwxi9' U4 /A2D6)JRK承 h j;DC?C#@jB] e$l.3sAlC:2A2;ء凙LPɛd>8 M 7mnʯ~Lo%2lH({tvQxM8gP;'MJb _.GY",Os/V:3ZgH!۝-P5JJ,zV9;'EK,AEEO 8,PEM@ kЁb5-A_)r6̠=A>Mduuȡl?^G 0lzұop")r7Qd}͢eڝIAU־^}[X뵀P 4#0/CurHp`yAGEH}1t-|C^p+7FRK>D=(it֠HllRN,15;x@|F+{_j y90^K&:߼ÃÿJCB]Nq۩-`v0$+z$gm,98qފ!NR#?*Q3KA6,ڇ? fY,(l*֖/z>Zިg,f4wZ=\>nKses@9m'6njLM Quu.OeO]A'aSYS9 k؆UU*XFw*JgH ߍUϪ?AU*gU%' bX[BTIrԊF뼾`=PtzXJ啶^{ .dk˜-TdoaO_굻Fs ;W7iZ!]3assxIs8 B"GΡhY2)2:$*WӖD.yulV ='ӳкLQF}G]g'к̩;9l8BBԷum(}BmA74t4)p#4?d2YDy`GՀZ]|? %1/cAeXAyi({y2 IXԻQ&(<@vc%f[VԖ#> Tҙ!5iU# Y|4%j^:,Pjֆ$|JαogRdAeL޹m&Dv;+ΌܙQ+HtCtq*{qBszB _O*Cu3[_.wE4N) .bϢ}V~~zָWX &hdvb: /),NJ.~5H5td ̕E_鯆y2j~j*Q-k{MMCW$.N%Pi.Q(=,}'l8ۯ>eVl7ۂnhY@! mOfo~F{?U{ +Baf!=߅Z灝T 5ƪGT.#n:/KlLshۼp@I0b -WV7O =M(|u/fhG@tftQ?[" hQ~ |>Jp4Pf֍A;'%~H5"vRL}g5Ei\&(W˧Qבw0FՖۡ,:sE8? :~(., 0AoYA V܅ T_.b\f[([D#2ڂЗ]U~3 H2aJJn"vfBf |WD2ن\6umx /:A-,|F#")f@z(@'EϥM dTJ0b U@,>,R,3Tr.XQDҁό.'M6P|9z(W=q;0MnרM!*iv [̱FFu,K )@"WQ6 vo @N:T i=XnBvY OۑaEy=U%?[{?f :XvN1 ٸ&1Ϥ;ȮAP ٻ}s>c{?KaA/q42_wZ/$ڗ U_e4 j`]?z"وUL[=`G軹ڗ+~ ]ũ"{ζ{ι1ƞD&C  ޓ%90y{g?fϲtK -n+OD sMCk[V;ۋAAɨG"| "24JX1S:募;xhc9~<f8%l1?֠Bwφ' Ef ..`%~R'd;HSn')7g;4;x)Q/vkB|ګuYAp˼+ɶ//4ҟj8 3棻FuXRt9̾:։{Q[3r"~4$Q4&ȗ~4#[K{5At Ea,j boT xe,?FTPM]p[YuļL),ch[aH:k`rJ MɅl"Gʌ{̧yaxz +}Fc`54Тj~p#^l")*gN86/)º) ߃:ۉ /{#?BE*! uBuRzhό-0pN-Skg6pCvп60f-'+g\9!fZ9źFo_7`k}Zl1(Nt)_зcoO&<0] kмƻ| *|c pt]GC8ζz^1m zR0FL,s.R]B&sTziO4j KtS]{-l?&nv4Z3Y'96Ow}`Dښ?sGD9M?"LH!Yv iXu@Le6!'2Y,ftÞ@ް nnm ðxvjm6pX?%]lbƈubV.0lV;Ɖ 3(Uql K64n@@q:(сyI*д׹KzQE&xlb8)\|hE8"N%o qvY+++ueV(O \I,qw-Y}-l!OU: &ukCǘ@BPS]a"Hбv>^d!Pmw^y۱EiSe1Ɣe΅=>"^|"ߐJe\ ~'GXlq`f3V\"[,V&ՔLix'1z,Kg1xRM (qR獪 >g:EHbg ւ4z'Q\+ 12ul:9vkŘ?Y][(pIK` Olfpp"U2;;;NpFҋ^E΅bgr-m{V!(pƎ8#ͦB'7:bbb=AчU\} l>(i+i?0JL{T̉ h)<% *n1NI@+a{ޒ(LR}VT0; D 58"s_ /H:ڋ#Ts|"* ,LNc^d |Ebչ[*")"oRxA2KmpIfwC`4YfǕ:~b^\ep!/t=ܒF\>c0X]-׳92Va{_!k+h|07^O AZR[k¶ܷo'K8 #M_16Odžf݇Ӳ2$wuLL/;:TDDOIj`v;c#|'|UU )$0E dK= o@'1rA*u).͂(~7RB~>:OLL:ܣ理b6}g1!BKp*ͣc˪ хEn`뮡f,;:(C8W(s0 s' 2=Ck7@En&ytx0p/"$IFl ,P+~Pƃ|!L E׌Тt ($y)ZJտ0Txe:5m%?-X*1,L~Sx*{ė mnOvgLYeMez-d!=$Z|`)W$ gɗ8+jqS e2T$($d~㷪7Pih| sQ@&{Hfs̏"%5~t)KϫmRLרڸbyQhcu]6WИbsJ" in#asecLN&W"y<&a3şGNLC:K^2EDU>,ncaϘ$V3?oD9.qXX/P線b w, v^!r9Cq"mwB1Q2HbOt~H$)B274AqۓiRn쑫9' Vm=1?PhA08`:Ͳi|[͠U DeZaumTꂩ?~]oGq#L$brai2~Nȋ)!v/N &Ӏ0'wy*c>n=enxN؍xV6C},L(Uߵ}nr)׸}G%*]1 Ixx:q:ԮOCb`9o%BFB% ӁUzaסSSf#'w|} zZ{?)v50wMAR I W9`]TGxRZ~2!UX)2 {`sx$49ֈGx,@˥qz 71"?t(4eʔ̇a^Dl0Ywe^팓1C<|k3"Co7e3О__R$2"'{~ {qH!Y)Í=BL2N Y1)_4qMIh eq#1V In@d~!oK =Ђ2wtҞw2/6TɢڶCg)?zjB[55*x"k\:Ok~xhEZ$^Uץܵ kvN~JqD}V+%UpS&=-qYRJ2 G~jw Y/}kז8o..iqM[̙0_+_3t).3ǦBsTŧ* 4rQ(n8`V#3;#z=因7SV\?#ю[N[y߹1ve4ŸLC+"I9g.:拼|e-)y`BItPe1R6%g7O7)x,{%¹J;op1ΣZY6 o|C][ooBXv~X@T]h%kOٽLl%C(Xv('7)Z^UN ly&5jIR^__)" }0etR';Ʌ[p&w( #hn%5w`HSq^<4N|SkQ(t&śXr$r3#zH;wş4VhK/.-+($?ȍ/_DPI1LGvi[$(8z!=&[uK]*ko3-O$k(MNҝP6џ\YX ?O,} }HH~LMVaKi厅^MUA}(`L>i?x8GtgulfƱYzJvFpAC̫q!`A@qp5%烄$)h7X7PҔ ȹl9v~OIڿ"l.c 6%I v^c%vVBV.Ƴ>X*א[ 鮽̳Tf@4 ~Q%o8 4ᏍdѶV['|<*AUT S!/ bNvJv ȫ9%?$&#1k~4Cj^O~2`?Cj=vAtAXB GnJ,5_o'3ʘa3Ó$"/P^̧x1oURܼ>]>=O1\I69il |^ϋi'_;)P׆[l YNN\bb:ENc9; 3L#aZ3ql>4wT/rg:&G&.31 +"Kr֢NA%P,gJB/?2.Im.mfbvh۝pjh!+FO➃<iZ+JVk{1 L?6l%O6r O x͟9̃ٳvH/66@k!MDx yMoGŝ(I+C bԋ`m`$ZXI~* ]kZ_3){Cq|q"I-5mCd%̙]?U,a2;RQZPx e, `2[DK[4}J޷,G3{֗?4;5R ?j>O: ܄zHZt@mAeTՖ :Y%Z jyeaY܋ gY:<9/ڗ#O^wLW( ;|fg/3IAY1 oA: /` @HD3 *!%ėV {HhC9*ZrZe 66H3H5XVt >1CNczb@{*uFa{Y-dd/Q&{(qհ2 *MB_f6lc#Zpuks@oJKH#abhUݺ:Grt%6my  Y"VCTmccͦI˃pmcd侱el}ǔlo ,7ppIal2^hDHX Gb禘}57BrH[j=˚OF!ٰJe"cS9.@|ߋN%|uGԎ!:t8we hs0] >/&ZW??Þ.ԕ0^.H< c<31Aذ_)NyˆFa=bgk2ƴn1bii3@ZjW0DPB9z:xq&4rG'8U}s4a#0f@leY=(;h|+$GعR71dI|Jt7tj` C $,Ԟ{AT0ɴ4\E&^|n /zt'k1+M"fbO ߞZkvP ?{n\7-ޔ21U`c!l:I26[tJV8,iEw=SLތTušj55Ej5Np%b(I>½rQǺ%x-RDKBVp1]:14to*9mIJ0@//3VM0ѓkzi[+26Fa%_h_ Bʼn4֟ *Pe&#LQ!˖#B{F~ƺ@qk)>Z!TE=# Td*)uhʼn񞠕ao僶O3Ԗ|~ /ԺO/,Ta=>5B[K3`VH.AȱDM)H9Y\^LI(9JNYAO.Llr! 2Cb`֟%NEI:2;7FM%/aeo9 #:,amkL@pŇA:%&=1 f86^R ;|,pV"D*0+SI _qoKCby)7K3(d'gDXg~U *'Q?4XDӁ.%,T럂9FU7x[|)OғSI /H,T0^]|J*gUۢ%Y -Z-?q":Dx@+T,p,aUT^Q[]nߟuǴK1/ IP) Xχ!P[rkULz=ShJS]UW6|%YlVʅSֹtZT G1EXSeOO!%7.(TX7#Jb px~E-џA$0p J {Sl@,)ZQfi{Z}"&e3;?; +eT"ݯ,$ע `)?+ QP[[ t#ܵF7H{cIQlt6:a.KK)TaUkS,y鴣penuva=?J1yl;M!T "L6^kcmz 9D ~}<_.2Fr2l ,3c-k 5JwDM׮lMT|ŢxD<7-m;,Et;7͟by)w5c(+o*/E}SE<4>OjKm,uh>A mTfjԳQ`}:ԡ!67'dG/2W,dT's`N.,I" YBNpr Si=_NJ \$" /UTqsbaB[ߌdwC|/SHlҮ]1.?Lk@>cJ5$"ȕe+",-V2 ݴNuj[@L ?PƉ)U#)I0Hq' B~&RWەՉvǿS5!LB|X][`ϧ^W=}d3ԗW"#^ɽ.Lxw'Z"^wa+ҁ<o&> 2ppmb.j+`׫g7~'"b|nX02zOpFybxD,N Ӊ3wMWdߧ-JXX~$pZ^T-H5fԈr8-JT$FRpE+iߞԀhKIYZW}t4aQl(6z^,dSE (K/@g EVS\0| >f2r^*8 HȬ٭k4lȈ!#M_H 3b6.vXh8|QNªotyԏJ`!G 'w^K|'|2O9(.wD0rR= 8ࣤ5o^NWj*qm!vPd*:MϜ|9>E[:eYE[3E>5cčW΍0Enfn<;󷨏J@6>u$ ;."kI^-ETmOTK^{NbOnЃPB'KR,ou͗ݏ,Ik=qqO1n,ƽ`ۓJM8^y҇v_r(y_[fe[-/9m)T|ފhwѫ^sie܈1Ot҉tk}Iv_TKhˈ\a=2u•uC80y\G(D9A )H+Wۚ%=t?= }`&.jhЎD .r7IҪhFަ _f4eD}=eum9X8DHYS(>tA<_@ӛg9n>xb\·ӢR"nËlܴ&ʄ Q[YyCJ)y.oo>ŁMhۥWvНM~IM[&1s]Q%b|%͍ "@S^R1 9J^|562*yY b+&ӋC }~"nMB;wѧ~i p{L"b![v5K"qhlFV mg~c+ S,WvJje ҾK(;&h"Yzj9 $HD΂M+d TAy<-  R_Mft~N[ФVGA jP*v,^'ɘ#g[g+ m^؛| ;@~ >x>L}.U3uDcqX?d]x# M=w] P}jX~F,"%Ͼ=v>%!~^IfQf_5ݞn6r" f e~#g%T[ mXz U>"U30@)to+^ jjڢھQ{Z'}f6Ԕc>:QJWLf[X c2'VӇ{ ?V%[/yi+HXG {| dk xtZK&}_8O$KP\Se /x=vl{?,6]=F>'-|L00V]`6QtB[xv_GT#-$@r1_à>D70Ch(Ȑp6M6hRv`)xJ 'F'9q]3&0>18KaGF<).mk%Qg,lȀƏ> wrw*gJ#pQ' ,: D:"ujXW!^[l\QL0̓}.vNƚpAHݝ ̈,|Cy ߂@oCvuͽ/Y"ۢxϔŊ&%ouHv/`iRzLg`k0>gν1ٿe$h rXCH(5nC14&4&.``~?n..3hܱm=Y P戀,z a0pZ~E&)R[dqkd^a!UB}I$"Sm5u:w/Ã<ZVh{Y%=+|ZA(ǡ'bg )+l &E1ts/ԊII&3S6x{~f&ߙBϕZY[k9Ʌ#nF3=V!Rܒz(:l/t_W[V.4i;<LJ+AP]AOq9f@ y<<e-q`)^ԓYJzl"(h=eK"hkfS鰴{dϘ(9qA#FO0 Sl?-P v!2xzvF=HH4=s vKDC CYϣC2(4=eLVk/GZj+TC,#\5Dq4pӳ4(e:apC>P>M 6 lEF@$~y!#+> eܩK6#ݸoۨX~7} i}qҥGnfk a9„mڝ{[oF.ż\'D0 Kw S& ?k";owS_a:Ե "ZG7΋Րc%.i_?q_Ԫ7/BU9S'1ۋJ6<8|T0.炼18 LY& ayɶĢIC-nؑ0UJ0$nu5Rz$A@/}:tTwړlo;9o.lG ۮm7ko ir&6,xR\KQcH .j៛)L} P *gҸgxzH Ci_|>Aa5v;9u/ 0g:쭽v{>f.r/(s^=닲mK̄gSrӞ.!N=2c:yt@u:Q TR`0/?!ho(NE1n7V:JmP(\E͛.AFj9l k\ѯ FRIpE&k1Sv|#1v<`ݬhg6H۪[QaW6) jbZϊjiVUɫtjΣrUE2H]azt"CnCi;uroxOl#w|XMbPѽh9 :qch8){z>*(7P%yU]ؾ,9]TaYD}Ka?ݡߐqbn@yUn'K˦/Wja'O"qAl>C un2a+$n'X-KГ'pI5ϧ\gw4o.*6|߹f |]MY'3Hc!B @ΑyԾ2bȊ^K*)?ߘsK_ˆOa~E?;Dj̉$iWV>[܌mDX~}P^@cj .GEsZ{[eWC (s96q ?tvIԨV$BGABeׁIIu}*3yLXy'ʹUIZvi|=!j\)!6zda_42~ZpWI&\z@4\'[m09бoh)0G:E%tes(8'xlCxeZ(ʧ{O@%$Pm,`4P7\n&`όE>puEm)nV,ڲ< mOv_ ׫3ba\ұ 2H(UuJZRJ 5Hf$ Zr̔SFJP]4ai m{I/1ʮ1_vǂa.ZCƏ`?*-,ZAaOsWHq`Y'KhytLW,W 66\`rL XHl:y_8L:w 6i$.(qdzz~zDTmPh1Τ~x<zN} @R+LrlkO6#aH""'w$p&A)~A7Xu[?Twv^-T{"_J~*jЩoS]=ڈցO`oYUAl3>S,,i 8f#Fvd^UHh/N|%BˇEjA9$5zyfP>$ps1JxPהޓKjY9Rct?8AlD{Pޙ!D1z:sO7qߓ;[xp}WRyXz4>3/tU[m"j`|;3a,) $dpyb NsPUrrR\;1l{ۉq%Tp-XiF_0- J2KJ~ )Z+slCh]F7;`+@:*bd& 'ɟ]6GĺphwdtV|Cz61;z e߿bRftpY~[oVskK[pT{O#0\X{7 X=d Z[sFt4@T@&_&1C)݂k;/]:xr]ۧυC3h:LF4G{M{.*&"3pч<Їa6ךx?Ԗ1h ڕԖ^7#z3ppEt`5Cc: hI:q4j8n!ųx2lԼJ z28]H3aޒN&,[YV?hh6Wy}dL,"ʻ^5n@H/AؾaAEո.%ڝ.o Ty&T:ѲdՀ~/.vy5D^Ƒ|%4niC"ܞ=hFڝ!$EB~Z (*$C b/bF˩hog`W?^B.ّZѮ}W@Lj`v8#[% Dx7v8rI/c%J VjZ9X`{Ŋ@h۫ Xxm,Ë]ڀ¬KWbx(8,OCT K0!@ o;h7crxَA&n;lg68jkl[7v9j BYN^(m_TP^Fma]v TEE@4yF8E"!LBy+d-E>~ƭ) RUD!k_Ʊ ;/w ߤK~N"F~Zl /7W s}3ZiMm0؝b%Uӝढ़q8|Ƒo.)o^L4"pU@[1uz׿ d  S6?$0[^p(ľg?Օh"Xng}|GJ<UgWc9J~YbH!F93oua^U"H8z51^迠Ȃ-MTɫu`LM0ÀZ_Ý7Dmy"].#67JұLq5&rz{y';jB^qY n'Gʺ È.i/ΦEFxQ yL%BƊ To{mU@5qULQV愥Xy2V[&j˄[mp-#ZCѼtIG2 ;"i3VrkyleRQmf,M[97|Wi$0ntDiSł~W]ts \ǹ464:cU*zi(1HoEYLt!\9hCJ0HS:ɚlcņZ0ޘ< &=5r+ȯFCϰw"y9aYŗ)uFV{oI_kt-om[|Cs~F_g[úr/1(fƀ"E:<-@Ҭ\M#S9i7pKnSٕ!3l_=m܈OOު)ʹ> n+/~b3RjW439 ||J$1o'?D-(lfқӑ>BSm#^Cr.I aw IOnj:%:hK'O>?--]Ӽ]S##WL$^JON辞>Hۉ4 {8!c;nH\> Rb}L MmBv\ ߿]ΔwaTJ'IxRzOO<' F#Nn뽒θXjit. K+ P[K,Ka "A8t6bO܍wJݳ[8“A_q+ڑ~{HP fo“,>Ԑ$#wI擒J1 K GjfW!t2I(w.kGJF>Ny;Kî}Hj2K;LbLׁF$].Oƕ e>[il28wI4NqX ȐBLʂ ̦́j>4K즀[n+`T/d[Z_ |- &#m 3M}f7t&R\e|X|)Q[rЏM26*V/Pr~tWQbG'^ȁo;ވ|dQP_X уj"4=%`W#j{xK]cR,kmы-+GS*NF7G?5-C'vHb $[ڳF=y$݋=yr pZ]_6dP6;rيA=)eyArב.#  =ߠc5RN X74 س*(ܓ2$(G]`ʇy*uO >W 2Ga `nZ |ȇTda uj#{)0ʴڕc`.uIڂgGGK ,GPZσ0<~;`C0V[mܰ[ý\.n0rQeIF_NJ8/<y;ɞecQ,.O͡F+~_bS螀}ʝQoD2ճEv}9,4l3rMdy&]nvH_ }oX{20no)(Ypi|V:PI }no5Tב9xINegrRСt7̭m7"٤%K`W= FksA"JژIh3 C5iuzrZsLllPp5r QTa.FԢp{*c K= Cۀ_g$-.,OI';%X2դ&\jE3p>n *-#ɔ kbfڴx_UvU480m`=Pۚ4]CĻnt,HѼ}^_KKgCؑ,Z0We@T>x"X%?ģYKO22HC]>"vNMo)bkof`vkesǞt(ad#l)CF"ޛ |d.4#RF]&sQ!8\!fzH( ĵ##.,$y3G-䓷ĭA U/?Mn櫭U7( G+MغP0i8RIP0$H-VnK30k~w;pЍ]D'yPgܲ((D1RE8d& 4uSUdf?aSyE= I%jI !x 'AGwOk wCų,}~&#;1<|GHWAt~iRxd'0S _'o bc2 jPDZ,9f"JG)0 apm̚ 6;ڥ(/rvmâkDA!-qCfI^MxTOh)%$L-$\ɵXc  {˚q0ō\gD,.U;=h jD]g `VDP8ء-ˣyu,˯ua#=>F6Ǣg؅;}Jd?*u%KcwΈw]00:%N3ثڶR Euw/:/=<^>qkmb b-ɼM.RM{vZtp3"9 [H7*p6}y.*Q%x2#)6z sX0E}.eW?Uyo3r4nU.Zy{5̓)[LGCak<1 ipMX(S|uc&uh69“=H, _H`;pޢcq"VFS (`v| ?S 8eG-r]XTͨoA3$+ б,p MxO:^wc|`gU_sLlYh\G,0^D#Y\8Le@nVO.L @i $wMKӥ/ĺsF4=3A\ibO)y:E?L>7 i3qz8P4h*@׾\xR_g5bg-KҐJSnU`im>D[iF$Ƈly\; gizUm/m-*)3kӋ=l0sTKlQs Qȉb\YчbdJ 1I xƌdP#Vh~m炓:462>' Dw }H,O0ĕ Wأ6:8?5`e 6xl‡n CGnb"M?bn13[~A 5EnFd7Fq. ) 3O^f .bv;7VG L&1b n_c3(xz72|>V+r|.+\S&i:tDEFU XbLB+@^ 9#rx֟.g, 5j ߐ&zΜJ6tG{#=>è O4rF0hd?#4r94ecDȥA!=e=Ҡdɿ2d?Zy/E/ :ig{T3CH[‚mL. = |Y)F0>+)Yt%j^yfY|%|,d*`8 c_8c|8RCN'Fj*KQ_:oiK/T&DDu"1{LbDIPjN&#C}'٥0N|D;yI=tpw%"^,>qg% 0=G 5-/ ,\ebPHU0pJ,[{n䖻@4 16a stv_H;G"?2qrsZ7kF0"SKWXx+WIDXtFnjِ$s !IkYƲd4Ux$-eP_'| {?42,V}(*מ ކ7\c[&"2@aA3?4+;s aIB*30DY:W"c٧lpY-aטQo* ] G0k%K 2Enk՟SfJe#$}$ֵÂ5fFʢ<|)wSzۭ֡S{ Ϊdvx ѳf#4Z^2 AWo=}0\A#ƻ.F09" g^)'0SӋמJSb3"u܊(6).ۑ.3ɝ+;(ηM'Npg2yXt,ދI fC5~Z` )̖ۼ{Cv"7u{nM:P GOf=M&~}r=t:,ZE*BT%ո,ڥp@b tsAE߱d4*SeĵTb*6xjyK5~(ua䊵8K  v_-]&PxE!ݦtG&?^UoǠ-e&6n_J}'"0kf^@[K9gE%wF6.;-lbAkmb"uM!0vÓ,S+r2e"{pIx\Hjo81 k܌~Xld"p%_V+TAU jcùV <]QrRjl-`N_+kPl.[b5ʧ, -c+OWOrqxJ hyPVXR3a6aŒ^NOec6[vK߂~q_ʫN/*SuFr\ng=!9lè}`\E1 5\)al s` ͰSzp0I+XR'7h@ŏ0tm 7,Kie/ͽpneG,oMl &0m̜$d"*9Ro~O9 k3EUم<Rg^\mq&ٸ_9m3?ppY|O &瞌`@/i( CN~ݚT3k.MA<(G8b6b >Ѵ%$ǎPm\:C_5u_0b4 1rM$|7,W1«1`Sd=Q=hBLw9 JV!$ɓ y21O:Eh2mȿeBܬS3atCuMr8GwGY^e3X%IPr)'YӞF~6gTnUS~a}و .UG@nE LABe2)`=*@BB]ro=A>3/?f~]Jm9\JJѺJ#R[-AC3mok8֕і'`ԜԖ0G ҅0a:JmMLN,{ OP,ppFOvԵ?0UŬ[K%6 'p#vJ]GxDkX|7 -TƞY*gOu{\H`OnYMw-pPEg6(0$tb N鸮]c LT!Mޑ(o mMM#Ft: (THܩj\PS5r$ %ǩfʛ,FVK9EFSrFMY(5zc;BHP?1๧k~6$?ύPv)o|a2RZAW#p, q*]NshScO8̡m Ɠ'/KKa"Y<[ucO2a-s9rֹAGR;)d[g6s9AK-x!]x7usI]e hNx RZ2yRPG3믏ק%(D!I+,' H+u\Uq5"vK+Y %FGtd9nJA)^rY Kw%9\-,<$xrzF ey\c p {>례J xO#A-xQ1/S@Oc OԪZ\?UL3WvVUf֥.Yhg&"fh4ƴl ;|40800c4:@Vvpu  [誔h]oJ6*G:B oNKRr) mSbJ}J-70Ϛ%nĜ$6Ԣt*NAgrq#]Zq㕤gDeQ6amǨ:3/i&}e[mMkA͵(30v) :gqصY랦|tH`ɩͺ '69a_629p;{)P"6aZkV=2 O>Q bSJ$ϸ.Qh`yM6%ϦCfT5G*u2ZXz߱0mB ɺ{M㫞`  séanġw4ɄI29"OـƪѺz1H `J~M7V@ N^uf)Et#4E T{$Wc6&>ДC> 2w[ijY4:c^uy1yI49x!^ HHsY~3Kaؿ۶9.3/i?G&٧s\1w1ǹN6ǡ{wvYz6Jv_ͽ3u#&¦[eZ8X: Ӝa5*`Od =۝W@7--tcp6*vrAyOj0]!<2rW #j& b\oy.ZWr)+q|UyuypAjQc~D~Er +SP*b1ܙנ3;鸆"AʀBxk8Yz5ku*lpUK̨i+( d-Ĵy  3E=foJͬ^g2 'G=YFy Sq38o{tܻO = .ٷS\uq.:DR <%H5JM,=fY6)ɋ-Z޻lZ!~nYjvTa,˽@0k)Q5m {G* Ք~`3vR'8ԶKKtw(nwۈ} i z~Y-{t7)< 0N4jBۉ s"e7[:Bb`֯12ߗ~Nԉe)ױ#0!lrXHl/{a*^sWWkXgRjvT&VÉÌ!d Jcjq?gdJ./aRMPi1/xиEoS'^ZИbdiE0B|d]Pm/!ne pɧO=ʉ8!~mi`Dˋ; RNmGv|LBgUdϹW kΏ;yvtM`y.LxFb`#H9 ס86m S+lQ/m?ewOɖ\m:JFٔu]Ix:) QrQ 9QTjNv=a]|Ζw9ѣpX} 1mMDHbjm'2}ސlC_MyB==UU)д%+: ʸl6ZG6Cc__~Lno S`|_|Da|.M<|AP"^ /m͐^_G\O/#ՏY-0ZH^ [~sr< T9KsYf#| Y` WĎW+c6>nR||Zz1 쁑奴O.W٭y)Wgҫּ+ӚW}n|Uݚ7'jneB*j,\ޅDĬ 0D zOMOo@K6џmd-dʟ{VF4͡j[CeU?Q7n_6n,.`xNhCm' <-s\3GwX2qY yղpS\˛䦱#b657?U))$n|R:G`(xG$@}f36Nt?5Kx 3+< }s/=oh^>c&WJG:!)Qhf ;>J2Щԛ5WUafϥ ,܁*~Ws1=7W+S(;4goEdxj?]c`oz"VZ@v{Ę ;fQݯ[ɱ QW8'&wT蠿R Hn`0@wj*yx$2I#AelTh ]-F5{^v5Q.K̸6 ]o1ȍ] "S=êamkx|Ǜ[L |UFM5ź=˯#t+k1pNnbAPw OO{~3k2w';y"A[a.u];5 JS,찿8K4Ȥ\6t/:΁9lJ \ãYlۻ}% ݢn8?g33:h|FbF=M z\SoKPDnNDlJ)}Kp"L-cOm6*`lx6y9aO,)q;Ho IݕXk\`6;ae +;i?9) gOM&&7w34%7.z@7imL"<3g5hl*CnfN<]-O[$>0RQP6[ xFDONSޣ7MEyfˀNҍ477 e,MJ6D래l00UڈS%oRg3?p=xm)q9m^k(#AFʴdxb&6"lC0h8MڜG{EP~vYVq~XL78Ix?|h 4TH YO<ތHyǻzWE)<8nD$^K֌%/U C0,,k27e{y ^m?VCA`UZ풪] C&YX\{iI!nEnnIm|{]{Sq*Z#ډLY)]ӷ`s)3F:>1'Ŭtp_g1#rF dIU*^ŰVWj$Y @&!lnD@D垻 Zg(lNm;;\)\ڠgHo =Jk-0@y(l6gc0L91cnbhF%BHIfKL1K0oC"+{׵YD A$V~^@ 6hd7JXTGt|IA!b7߅}1O`ѧ_8 V05iUSS;4ȓz+=<Y~&|'\ih:)$I K&e-v[GW7zrTbGI[$uE$QYoxɳf0E LJэFke_hXr9lpwc(ޛm I/QC.݀qc} ϯj.c'ߵlӓ,kړ{p3 CCxmHӻ8ЉpT px .dm5ژaV_&kް*wKʝ{& wC9mR v4fg(Zχ]1H>ZL`ϡ_?cxv ^SAu/uD9Buқ{pQTA`RjkU53ګEC1Bx$wK{ĺ}qh~s1Ij ˀ^,tIc,`-0i_2,ti7MJ-V;|;KSO[sr]%+RZ zk% -@l x1(&qgX'7(a#_Gu(Keo%ߧP/P0?,ާw~M6ĵ0b@~%XkrUIr&-_XkRf^ 7@z-DYE1 (s^\kX\)X(O2D'{K&_X[X1E!|y*xF 83Ua*7`O@2cZ x `e@W1y>xJMP622O&`,y9S|I<_X1p̔45f+i̊b)(XWy2J5Jw,N~%$C(*3I PtrD]>\Rye _?{9r !3jY.eml461,KƛYmveuY\WɁeMh lXu, l_f7FYdod+ sH'WxWC[GfZvDy*\/DܲJOg4#Or=>O~gsC- YfBUʝ]#;l !m|^H4mc񬖅;Lt)h|_κfeKےg";'Fy"^fĄҝ5$n)Og(tY.5qP#~Pw_}ʏDe?C \)1f!Aފ/kCƄ&ef}<ق'"ڃ X=bgY3<.G?.ҕ['8ލ<- W`7NV.]1}WE@gA69<6,> '+aڳXK4*_%w:ă\H~O50MlK`Л'=[qo",_*m,{0i}Dime#:X57YTp+n J!ہ~PK}7Ϗ.%tP?74.iKʃd.u|U{ fQ2ϊҼ }D~EF(y.{貸C (k [nyבFb8hKPfRR< q|\c6挡X)UL1Fb7A%m.[=Ș+9)LwpUyAQ).Z|X+PŒ`mq=773yrĦʘ'2ǡ\kN縼]o%19o#!YnY\v2,9=:wp =8WLݬϥH:M䄾,oXvz3-Y"02'5Y#e»5 6p68'΀:5tc0$pv kʬBy'6czs+'(鹕L9Vn·8rVK4@mz16Һj <ɵ@T% Z 2n8#IteQsbmziίh'6V5w5߼6:`"4چ^8!֑DTT+s:lW6Е+ɚw85{ӎpG]}+Spx؈=]8<~NWOv"VE\} (: ѼS f3Sgԉ18*IBM{&i_= 6n^.@j#ϩe검6q k>;ptmZz}I$^}mqKKoTvvU n)=R3 )̎j-ZQރd:1.TRQ),rgMc؞vvnIUkZlN7Ed: PR6A3~SMwV@mRNFp#Q}~ZhF;܂S/w2"T:r>ukvoC3_fV)'G5$Js4/8Ւ&x">Sv?g} pOWZs%کq4}˻J&ۨxIMv\>*w;029Sjrdx2j>LqhxXx3Ji 0 qr-r!N ZmQwyPz!ePC"HXȐjի“O;5W2 ~*CAw cJ8@C*Ip[)ȭRkEH S!\ .`0؉TBgu3;\m `R!HmM\hAؼhh јp :)(ʅjWf ź,t$]/PqY %XIJ\ %*JC^E^${OU!M[@ /j+PgSjqdB1g$N i+"#rI4yQMTt!Kd -%R^p.\Vk*-ōuRn+Nbݩ;`Ό=Z0=B7C{ 3 d^Fmx=+SK<#*ϑm0,Z{ n47֬u dSm}֌mm'),T] q{)lw&[4c5XE;=Fڂ[ҰkoL[8 {6 %ļeD!dӊ,sE`#djY*<O0Uûq5Co@^-ejI<%y8cvj58$%H=THro3.凴 /ۑߣ0߂a.ϧlg^ۡg|P6j:lBѴ^{P ՃB%=<<'H&:zHiHWϴTJDON9Ocb7a>9XjC(fZpzg7?lя ʀit< B jpfd83&t0B> v-[6ٲ 5)%v2ɌΓ)#csfT Zm1…Ę-j.!%rE,oӊv"!Cc?̙P b QH^ 3t>$:E@_fHHH2ZBߜ4IP <k/{'fAL-GCFV#-֗8+qɤxp^[{V,SZt.% K7> nO/JpY!԰ 1ju]lfE/-~]8{́If{3X A(>v?vd*YJ%ol8f8Y:ިifw~ S)jJ~Nug`H0%-F18 -I.gі[eAKq0;'!SbIP&P\g# [x#-#vUG4r>˅:&1 X|OuЫ-@kU`(hh8[Nusr {N;BG90ģt+!`s16@;(9p*'܆z|@w=za+?XMdsW)ZxTԢ\Cע5X0Z:V5_JI.xOx}h\Z䭔]INx!?/\+8(u/n3 ebbx V!0r`0֮'knwFrš$d=M}O0_g1@C1;P9XT jQ/ P{>9R_Әl qWVUB''y5cӏH}ᮘbL `c U6ʑO<ɑb9 rCLϖ;ضr6e4ݰdUL2EL%~9a2ofkl \&Ŏ^ehe "DfSU0npAh!7KuO}tx۪G~_ '%JXgK{;:[ ;:R~(ie ŧ_mM`O6,Xz6 ~Y^2O|HY*|+;!^Ec*|/ّ_jQ9ZrgeLZԭ{~؉ lTh4y`U6N+5ǣǐ1  kkɐwyNEo+JM{^q2t)5 OBQ_|%D%jխ7kJ_gdLj'B|>gAqb\&5dMe>TT)oK93wHENhndO #P$:rfHU_+JujZQr-b1+уãE0yvX^dtz~  *aoKu ^%b"'u_$vǑ<إDT쩝ͩG@ђ5re12mI&'vI!E|١},l4@F3ONy%'6Z=GuJu$h^m%7s\jm<9=PW }"X,;Р8" IWÐ :ؑMsB{a(:F(Sjx BSË=:#g]J^q96&_NqǺ)-ɍ GFq6~N7~M_ХkL wJŌ~8ݝS>& ?@,dF܆3_Z՚d@pvR+ƹ+dLCsUHYd1Cp'dsO gF=f6]nY;!X䫷IU!Ax EG4ļlToKḝ)3Z*`\ƽԎ@9o*G]=;Do}.^W|ML&Sն'-`#i.a阋͇ʪ#G{fXd]UahouN cUp݋pYy"+0WSC"}ߣ)sB>ʗ]q*ulmamvЌ3é<SeV03Lu-*rǡDK#l(@bʪR+U8iM)SxiY(GuRu? ŴSlÄns܊=lrOЁpxDT2H-6&՗kUvtdl+[dR :9' 8ەT,)͇=ri<+:&+cwyv㢺Fؤr9c>qkc(q>Vl1sVv]C; b+USb7RJ j106(vgU2 e RuldK8xUq[DT)>gǯOol3C~/wÑhbN0揄= &Jc,Zϐ?blǐڛ=\\|a=H`#{7Ron[Le媓ke c'QCZsp6̵t֔cJ~=Մ'|N v'")cn!wN酘'< zb)%o[Oacd)j.g%u^< EtC'2mЁL2d*(`݈L=IV+&`;٠J8K pD2`') VJYd>ϢLˮL{}ixu&pdM{UM(.XAa&اUV\OX/xo qpvN" ok1d\>q3U-5+y h%ҷ JQL%dI`L1ޗ/ 锥vqp+aд`0hz޼Hp:PX%Eiɿ { Af2JnGhJ?h?;h1Dp'jN72)Y@S ߑh#z e!{ցu 14 nFɰ8tpِ #(&=۲hS6!\PcʇTgj|`p6U V׺1)y8|ةN< v}+z $oU |e^2Np@* @5c%͂aA9V]-"i]k0ZKl㛡Ư=+YfklA7} F91u&D "<ޢ7H[cP|WP3ަdF%QuEQ{K =oAH0 JEUמv\c\a/̘b= _M?x֭%1VTmh_3F7 NL04] 8FH ^o9Yhpڭ5u{#_E W_k NL뚾=шZX;2ź< ]~'q(i/X';}bhJ~{0WC ?#kN.8Whb?֝} Y;b$xl]t>;nXC]tG: wOwtIL/Od0*K)k螚%k;+LRSc+s/\?'oJgR p/{jajr =IL R B _& 1޹eeAK~8Gn?@KZ,jpԠvc脮i-$VZX(%G(s nn{Uԥ._K@+'[W\ z+bWiŗd;=\c߾x Wb̵:==lSoCq:5 L;%jB:w4hbOs/eRSQ L:)c'<9 n1~D7?c4Z1(\+ Ac!d #CܰJMyfU2ܚ)(:s9Fr]| *4R&tw8L']au˓/t&DiWmB'< g)\5:dOyo1/?h搶eW`St=a  [bP2ѯ!v`Gmm{n_x?˺-y_7r=&{?3ʼn,Z?HYݶJe0 xYU#5$H&E[UbӈU{6- ]]Bm&\ES[N\l\bWQ{ƠZ[+8kTBGGئXf $62eH[ n bf+ xS/s9K8%O/`|d#RD:ax>y=+MQk i6#9sN$=6ePW ly9xuM4SB3.vPXNzt3O!-]ŗ i"il$i'SdJ<e0-^f5iFQ.Da;}#ۨ2 ޕUWIY-5ֆcu{}|sd n^GH㍫ȆJX#"NΟi4WxR$vH2z;-1{t970qKGbbp2pGos?G3.if*'7^4s)V)ݎP6pt lF&(Bfiu`u̎p[ ^]Iҷs8/~ op 2'APC`Sr>qEw-&"V'|:\Ger&Y29&xRh,Oh7F:6HsF@݈Y@̉i v#8L`!$L%N2@ȵU +aqGc%*1UZ{7A ӧ aozhO@%Ғ;O vߙ(SIaǀ޳pV&qfHKc (M=&gHwcdnduʴڈ*,}eGnE[vWtw]u;{ XL> )*My}W&fPD*IaKK=fxaXwW"w'vukt2EL$+hQO{_192 KJ]+ FAhBzAl%l Tkxd^YX; 0Ko;V1waRH>>~ .۶((VzlR)x츖*+-ddm'"0wt\E]$b`-7Nĺ54gKZ :6KaڥzG.}2+PMfNF3g"s(2@\l}>A h|crBEyKad& at#E"4#d]pNF >ϙ8{j ;E4uoNYf6f F5h- &)25[ %;]փi QA 1_{1\׬7|\[-B;bk5D%M#?‘it#ͩ=(2.V%:{RZ. : ub:K%zƮ^y3AWѮ-?6aUfV#m{d 'v`Z^&2*L~b@Zg$$+r8U+Su^gN)/nͳsAV&aϩd+L-x}NzAUx* 6a`c53[F;Vl&v2 EvN FGWޣGU &|30H:fC̉^ 4,˱dߣHF^♫oΈr,Ƨ,lxn'Fs'*Wͳӫ{&6uM\"dCʂs2p }qDR#W3p%2w,-ve ^!pCGx"~'^U\ hSW,[O2:{U>@ ,K1ɖ?x"0( ڌx8 S]J8Fܽ;K`~"6.%&KD2˯ `_3=$N~ԧGR[Ո`yCZdܨ}H :bhfwuhʳe{`5wuTT˃nW..щYS *أ G*\I!ay`(†) l}%_eT[h~֣?vwOU.e VJda~.m,OqY7.}ȍ10m6B3M!˜ՉM/yqC)H^3T6i}P4 /-]MNxʛrpb19^6Z)' 3)~(nZb"P@v{V,s )yF- gdl W|Onsũi{J^ n2̤Ff%8`.At2Eːc7p'}.>{G=H7lB[;$n4~iKlɪN ;3솘TxcgˠmY%H;Аu腦^xWNb W>8`Ky42lבH-7t (+'<.">[1%:㰉[:ث|=M ޱ^\0]ݬKSm1הy"Bն$Lۭ8=)%Eݔ3⁏7mmPOOH 5ߋ*4}S1J=,;Z,w7Wx("Ⱦf:Unֻr vqSjnp!9f~{8b|"J~14% ^?PZ.>kBέUTp焧:)5uۙa!< [繏]yK },Ig):XA V݊f =s@f'rI(93aUG`@09+(A}2OluHu)59 R3ٮ[b% =+ ڃ[D mCgr \Zœ)ע8JeJl` ;j R̘S[ﭵ,ځF5h@U3oXޣ%&1Q7Bz`94i9Z2N&T/NvL'h ԍm6KࡏG:55-1qxL( h#]<}*݋ xL(~D_Q0JB+kw`YS 9_lWVP+2TV%cK] ܏iq01`䶙SrA))7C}lr@o)P{P6lmMR/V};>Xg=2=M|Hu114 ەɑKRj %O><ήO㥙d\̜[z!)ǵ,^K6Ë`|?>v%?]xN9`:8c41,nrY1*dX+fu(ω~?V_[)nḼ+A闧tqC`Rd/‡!@jO^vJr s 1;C\{Rp[Xde]> y8#b۸3HNo @Omĩ%6z q Jiv\pƧl> I-ô1:U{ ӣ,>)E>OJ's@CrhO>j7dS|}^\|rJkf{/Z %=xYD+j@ͬpj[$~Ϭ{ g~@R7/3ϒRC`e}3Rz5VED<Έs- I}J:h p'UJX 092Xv`GުYf\,r 6*.G)S.!@@"4|ֲԩ6\!c8`dPH.H_ pcB{i#3Nzq1]`v@saU{nWm ,3~S1߁fsɎLa**IĹ/1+9V^sn`8iiyx.rh03(de]Wh#__Y6X);n;BD<6ӣMUAf5H%!K)6dסi sٿk9::?k'F)&}gJ9 //e-.< $xACbX);XyJI;;O;?P#`d_' ~7H\ԽbdC-VzreZf6 L @ 1HGzzb034> 1N9df2E@0&8Q+`'lIqʹ5%56ȹ)'<`-L܁>=fP`cܧ^ 8G"oMm+bQEw=Z<{Q S;qϠ4m<ڙf0餵;a9; K2kLd L23'UfB8 _BV$[U.?c({?$ׅC&sIYX9#7?k3q,>O< ]rP^ =gJD(exyhJf vmBy2ԍ]xm"7lB r*G.#a|) .Wr1֟ ѻ`P5^pVx@`Z:mNB^P6 04$V{D ʵ">EmW Kg^s;0 n k-A[\zXlY$\ V}0XGy1bl Kɵ1pr6`S:&Tb+N蜪pV 7p&`&}((@\ ݴ$)r1Je_ q\p/]Ei2P/7`0m?l>NZ&Ӌ%hZ:*@({2d亢$86ؼ0 lbv@nV~9W+P*\CrkلY0roחafGuJs%ϥV`mKOz䯞U~N@vx]x[ޯ={z*@#ANg~8 H)DCCڮ't5GJû>]2 $f.=fb/gSLvcj'u?/֡Uԩ,`hv:64H]I4%Xl \FHI2״<#6Ka<^ 'bs jÝ܌YԸ jDR9/ƀ)Y Fm@ kHHu^RJՏ::́ "nde,]uao]k#A> Vn.;" 뇸xdH1t-Fgs wjp^hev'vC]}~<%jӄ9RqooG.O[^)(F^Cv|"hI+H\L`SzovQ{Ha l4 (Xa7Li6lўo-#&L.#Q^f'~ia8cD$L+ )tJ^WiRK(c'YG5G꣩fw,FC&pʅ\j R@,p_\o謕]v$FA;sQKeH?Re54|V::s9kY+ˑ-󲢪N<. #tݪAC+3(&BF#5[ k#Ha;ȗ =40ź,$85 S!1IŨ2;E,` "'pN<=z *Tk1"{uJ6yO VqY#nfn|t* hݩ%3SS!{Y65hu7 U9+&Q˘/OrK) lqȊ,MR`^fF~V魄># |TJSK`ghyQtD\aõQ}.Q^}zo&4Yc ,fC ML6b>;2@o0@2$|ʡ!XM fφ` kSґe^f%uqa oߕ/-ga8F0-}_RR 735˥hZEZ+/{2M܀X}.JJE}t@-{iŚүA UM9;~pD gIHd]f\HUj ,x8x"KYx//}U%\z2cv&fgè#RS= H:;_L z Wx%v[%qӫPsҬ?An(&zJWٌ_\+tܦ eRri>vq$ i$p ebӴbӉ!&%FK[!Bgu*gF.N9~z&l=.פD{ϡ'QC9(̛#bh܌vpck3_y.m*I.1A2tPf:{X/hGlQ_>.@e qtX oƠȹXT2Wߍ‘OԩzmWujum-fxP8DX?T,  @|S_(>~gItYXǂ}cv봗˙%-ү'Y710 y1D%w9}q;6 U4uP9{ uPc)) A Y~zi=q 'HeQSJf_QmKd#KL%|?A2=Qn=Z,&eKIȲx2A߉yg}riG02~"_I6;z/20\2ʺWB3E$Ah::`8iguEk->U,Xߔ30Bh8]#ZKZ*E0y@̩Y"xT;Z1+dYz#0TP,[E)U sa_!mסm{@^_bd{mX6_[ }j|2><`kV,2_nBόeMrD0 F+A +ԭ"|S*O׋bO0]L p ,j!|t~E;p?,0L>z9&6gCyx8 L fXCp|zi66\[>&v&cvHr"ɹc@/8jlЍG3; q2]kgfWi~zWb\͘!y ԹvR m3&B x %ȽjU`Au pH.ao8ĪFYhd0BnȂWosk9]{1b ΪL,k!.sߏҕX<^#;!q:96"~A)|>ѧH 0ҹj3f !p4! L"T~Mjug)".E&D 893g5O X d`oNQ;y ^*yuܢmȭ3K$E*EF+Gdmp9/YYIx GyAoK3d}~DrNha _(-IZPo twA<9n^hqW>@>9SjJpˌgl R|Dj2ܲ[/gǨۅ6w8` LofpwN8D*f KmkDN$f%'a("2]4Z)2wqw F~7)HfKKSL@&5Ii_-硷N^ZW;D:cR@&n-6TWxh܇[<w?gD 5@hNnT m;)rLV{ {5"w|L/z=_&΁X?zN#ѡЎh@u_uJ4:ܸ +3d )?xZvZzcHVe1tp>Kƌ%^жEγS*(NRt??4T~ٿ~T. ز'ɔ_I_BYQSē4k 3^Q}p;)X IpX q'D'[1s;9P`8qb@G sd0]E7qRNRd,p*JT!ƋxGǫl =^{(2{ߥ űWW|iET*؏m-Te+1 i6IJ\&&,,C_64_t|~J(;RȲĺ)]Sz0:h)W+ 80zX" uЇ&_rV՛6-0J3lFrǩ-n6iX`#s|-ɛ&_wefτ gE~&doq0 [JJidv4ͮc% j 2yOVh@dܩ\ !P,rW`VL=8FxME8zHntԎC`JQCrh HVC5$?F{ifd(.i)f]mTc#̢ Xr}JR14{C]Oz]',vCPo m^Z0ks]iD]2]ȨWD6m x个)B%Gx?iiێjAikiV[ (vm-(g*Xٚߒ qs`io*dt5h;º6A}3<ڰE.?`1<)fCbv(hĀQb" RnF7v3Hx0$#we&BԍﳨD; 4Fa(\[تkg\ ;4\)]'=.JlhnDNR,:]0)*cC@E]j3 \'YʶT"ChA\ qTV9OJ/1s3M2UeI[?(2UCMd:t xi|S w;SV)59S2ӯ7+c%Ylx֭\AЦih9}wI,zɃa|@k|ؕP+oJtL>ޠEj-JL P1CRc*,ðis8CKĺ.8~EaP&i`击R~f#<گ$.JwtD_o{/ c)qagV`? F#>ߘ!^3:064rx,1$1ďP8߮=<1EzY65=z ^ag +?cG1H>  `Se?gmSV-Tmlմ&((vP@((3ૣΨPpk)4ŵ n7D-wyHo}<ϩ*Kϳn2}KZs(т% ~<<иݜf9#=,:vĄySYQaAWu0rbh[ZfT l1j9V3a-D'UR[:iSeMS3~jΆQ/6jVm4A=; Lhe d^ M/{v)Z@yinh(]ZńGvGs IJCOK2XT B~>h -.["c咶w8:қ;MÛd.n+*wcU2}i`1trwǕlVOcTWv[􋞸>δP5Emc6;5> tBĶRɌ*߶ 3sUvLjE==4 5UZhd^?2TÛ~˪hT 4d2j̓DBKl 3Kog%++R(ws#0M;(> z~kSV(H`!>%еZuVi&hɓh;oMlsh)g% `ޒ7CYQ 깡ĊZ4Tt_45cvO\hd~iF{>ܵ)/32RZQP¸:%YKX5hs zXm1bR +#˛RzKgRo" Iޔw:ؤ4WI` QH_ԫ]Μ/.B o]sqλl{?;{?j}K-!|aeuܗ`cܗ'w4[MrumvܷovB@ȕIC=t3vҿ)#7F{闹2˛Gqb$i:9/^o Ts>̻if慗65ZɏSs@[9Pf^p8YgG.X;^gZ<~k܎vHpgiWvE\7 'v֒707 ( q#68%orp",VlowsU|0 dFV e *iv |^@1| ߕÛ' +ԢLxa {6h)ƙ۫.#Tg~r;b~{i>%-*X|ݹZN#@֗rr`;`iU&w={?Zgv2z,URE\p?C$* JCJӕע: boZh+Λ})s֠4µKTE*׬t;O\;3Fmu7*7Shfc H)`<`$Ǎ%|_92`W.lJb RR|`BcKCb4 ,uJH>x Lη<8;X:)0;#MC®h5?OuD;VKZ?&/A6BU>QQBU@g64=ݽ<r+=ëxwu>Gc>l{"ȈdQ ݲ@o565Lb_y{9aS&xXyu]kwW0As«x9sxk@ބ[AtN2tlVz \AREuv[%.yn]'v2}{| _B^Yৰ&Ē% rWE6>Jv(iHNJ'aU` Gٱ11c~+?3h?jqb2a,r)z]Hkn;n-Qy^-dD.e\CXS\Ty*t֞KfEu͏":""-)1=F#?re<䗗VPhLhĀ{8@k!@ !AR81 gaU)ɐ_}ߌыDR74OhР]vJv5ȏ7o>ցfy.oߕn]}rsL2wd%n7}qpom$piEPaP7P Upȷn] jM1"yܬzURY-̜0j5H $o`k7ΑjCb%(x8JDH{2xEKǫMNǙlaە'7Rv$Nu2c[{mNtgZM%s:٪C^ôm\lQ/\] >EQgv9˨?\k⭱w6DBTOe^\D ݶɎhϓ9?zv2Hiܘ&yNr`|;wó nE5ed>{(umwE":*V+goj| ?v9o:Ʉ smo;|}U9^{HsLG=AU)a |*O z%"-xȥ}| n$Le<3snWYx!ɤ\4)LwAF60.}?M7*K`|Խui>yO^]Jz2{w`UZywRH n.sn\c4߸R?mRZ@&״~f(~iѡ,N _VRh%v8ІݚGa|0%/:N%#lTX5r`xmzꘋrRDZAJc=ikuhzG'H>]>RGx7iZ3ˌKa}4@ *܂ros#M?ԃdR-X LG0)[$C5LՇ).`q(C9, #ExuDл=uooLIՎQy=QvL2A"Xc$=nK윻KI |B7uuw'/ܾEf\~e B1FU5L,DA*|` '@pJd@uZTFf̴\ C(Nqo:jKZgG gï+B5K̬Jn3(TTh+U5*()XaRgRcmeV^Hl^ KaIuzvjbҡA銫0K6P Κݻ$>Xrf::T^~>t,09bR'+s"i98Ә3jib429.'߾Tb{"{ݧ}Ո$D`\hgŎP1q29$`CмtyCN,Lhފ"nt˯GЪ(W"md"3:ctC<%MpL}7:"3CFG(7ڗ!-N_r9uCֽVΗtc)dDEI N$DTfӃ#]o{1_F)Kk9*#B2cY:xo߲bp̱6=\W@YJŢt9?fd 롫4>Td%Rf U}HAl4S(,"ˀTcqr4-"sQ0 suH梻;1l;l]]~pJ%qe+' 6(w `}h/a"Qj5.e]Ψ-6BflrLW~[ 0*UɸLr&HU#d؎&FqZHGʭNm(z m1!u7Y AwTDsAY@ }cU^r.3`:$\6QЊ R(\xĪv1qBD˄ʬDÃ+95,u5y).SL)hy=.ܩUZu73Դc8Otܨv$Y\;G?Ӱ<7ʣԕI(}P kG?~RO\F3g4bxWnr>b{02zx@~Y pmWK}ߤ[{yH-XBL\0phT&,Ixqȭ*5 F`DT(tuˮ@vf #HPe:iː1oJ4F ~Es[* 'n;s14x bՆl/mUS+ʺ@}Kn!i@<K̗]UhDz"u 6mkCDJ'IusZqK/=Q2Ѷ;u;=шWaʶ9" `M=D%9dE"|O q֞dsaJ9odø:{_[Ox衔ԅNW`dB'9wc56{M" ]x2= Usw4 ] 09f7ͷ ws8:r?=Bl_oD0nʏnu7ˏ6$o7'pt4yr ׄ<\" QE,OVI|NP:|BѪ|+Nwe57Prx. 8u&& +iE޸vH_8'.oAb{u5(W;ڛ"yc^0ݛӡwSx4gs~b;k{>[vjY\Z?#BҭQ%Aq*=IK->p5tҤT6`cؾSñ78Dp9Cmai,vxu\g$a_UWۡ]G-niubgK+-o"D4XenI5>;K,yMZ6f{G~rl.cW:wuMajS$e֎MGU AH]@ Rv(oa,H2&nV)㛠M qLJvƜTwڽ6l͛+uwu.r $X!ԪT An. .q:5TW"'0!v*OoC,b !Xi".,1:NOU';Y+^Nn@J4' r/ G楊 浫^S ) e!&I(@JgVJKѢl_'Ү\{fEuC-s=VV: 55rӤV%RZ̹v4We#m|X/<(6Ϗjk~c{;C0@65 ]i!G$ydz Bvٿ rgc9"f ~ n 93U_'3p*ԯ>#}_||n[۞D{Zll^25@|R@"Y%Tp.: ʟȅ p}ƶ´gp9_f/``-G u{\qU~(a_F|hzjtqhxfp(#g+xr%UPCH04V4vW"^o߁o";,'*_OeI-Pz _]Hv2a(TRx>JuE7찌R߹\4\C?:2.SiWQ"ZZAʸ2e\5HH2#Cղ4wQlx]Cg4Mԭ+JR]ZvpV [˪c1XسL=a#Vy1cQ\E8+{=M;5 !*#k$ECA΍.\d_Ϥ;+ |h6- R^y K ?q~z#iո#\]-B= 2@?gWF'ř3*Ӫ J~MTyԢԣd(PVm[#Ͱװ,_gs6=A} ۿQ[ʎkc; { _Wy_XPA N\w$ [}]I/|#Ԧ#vۓJgI7mjPBuC: +&4L2*kksE;N(c0-)d]OэB2̦:(b} 6ɕ)|W;2Z2UxHQ7QϤCz!?Q8$2n * vOzE73bzi珒o4sf U GY/g!MIpn]%TɾB)L &Gt5+B%Pa*,-=CBRujk]̋ĸD`Gk3Hʾڛ:eZ^-r-)n@BZP<vvٚ6z}*ӴdX?Bɯ`;=,"-3.iV{C%,CJ]S? g(| X㖁8ɾ6܅nJN:=GZeӖ܅ &~[].L#fh6_֑ lU!<7I.6c 2|d- GA $̐=lJ8yp&I8JgiBh~vCVe5O1ڀ0;枲E$nkG0ŭ&8`;PHoCq3Aʯmaݿ^^LWCSt˶5_Ӟ==&!4#kIulcRCS엧ϯ5idr5F_QKRbxX.M_ !_D4 ] I @t=0hxd 425R}#( {0;MB,XQiȌTcpZi_n3ѩڞ_f](vWMu;1WS𗧪 'U-̄?*K yS%^\ζ /QnavC%+\qo2ƫhGGs!-, -/e^Z8ySR"WyBqk7P͇<[.TVU/4,K]VޥI=}śɗT i 74HdZ:Ic6 dˤ5%6Kx!ڮ djWB1B˭t)GQl,{I).+k~WeXKKCVt].x&߻fE8xfٸE;WXsj)pơ `E!'OWm ;۩GiV "vkԛYʃv@+; A|t"""$3v' F,:[J&9_p5w]WK>UIHkcS3 4|E}`DXu _;g4\-BL~'*3;hG嶲kCQܿ搳' )%xMˆk{Q@mB.bA>0 (f'S``9r850B፴U^eeƶxagOEHȑL͒qBV\̃ۙ~b!wJaaYw`݈M,ٷdž[Mv};m+/&0 SNicZ`S,lFA:BZ1-6/P~JFo SfBǃ#~P)Hs7u+ױIĩft_ \8+u7xZ()MVUv\dc .ZaΟyR`~%w+_ ?wY‡wE" *ꭤ]8tQ=?jGΊjvo70( JIi6&a0T m pΟz.E䲿noj?uH"?K_L%ގcɁp-M[4l!H*~3ߒ_F2\-Z0!=;C_`J n< 1| DsC%/Qت-"v 'F6Yxu:E (N,=ѯTqdONA۳,d_z"7,Z΋b$Pi10h ld>SYYa3Uv`~?\h,&B!Ѐ91ba&[=JVZ#%H]B%B&TFo)(v8(>{`Ɛa Yi> H%m[^ ƠǪ$ļH$5&-~`5lNT oO:b޺;RW4X'as(G dCk["ۃ O'>ʧ6 I@e85Xa a= *E,BJY*AFyd컇]>qH"Yjzt˃kQy&܁*':xIz)NSe/_Oz O# -@^{g- g@P.; Rd=w~z' K>=B#j`rL0{s5^btUnVUmt >-J#,Mv3}ۙvϊr4w3[~W#wTH-_PO`G4!L:<|M6m#C %bfƉnpN]]XsPKiEty1SWI9o܇Xs4pasR06gUZH%gvu&s䦦x|3 ~/*`Kje`4e_1o">NjiD+é̀TS@liDk`zA uP,*tR,V]P'KbbgNZs8!6SKS !F`V>!dCcYãn0Fh.|{EKG}#YΐYa/eǔZ#\Ce;+*=\}:c]m.ݧːnMLoW񀱳px'lmFucO;7ûk@L;r z!:yQjpj<m#0拜hjw#ʦ9BQ; !C0)T֤Y`lzhu]fm<}ýHCU@)(?'Kʁ:7ĵk>S{u}5j1?p%NEky4G8] 8p5FE|}2J_ wY^am< UqǶ)u7iϮ=(UE x4w[`q|u_ͲmIW؊Pr]@h:Myt.ڵz4 @S7Pw]xQ E!Q1Fw=ÖTiP ry5{=#޿f/ZI϶>LjUDyRavc.@-Vnܐ]~2K0 28ܷO 4=ԃ4hQDjڻIM۪=HO\FEiq4vjN7z|g!HP9&)|r5t.N|%(57zM٠f[w›_-{/* Q῁@wKUEFĂJn%*PX!y`IQQʛ+LDrQɾ(~ X# e޺ (h*c.`GU< kH et%(ݙަh֘`Dk ?U6Lx6~mJoÛ`H>Ҡ^:B5;P 먫JJؼl#Π9H#crz{]b:nݹR[Ձ9tMVoE4$|3n]d@ٿS W"ߴ`~i"6Y!^0 g8aKa{8Gm;^bf@/eE29`һ`o<@/(kS.ΑO``Q6?0; N^݋}0 +<D 6EA:P,@?M6v͗ RqX?`< "^/kij۷}($=w'I<}# OxuG[|CP$9ɸ|'IF h%Zm0+N2?Kmw<Ƚ?@a5yt=%xA\ۼ=QGkik{ k7)}XdΗ\[lD$ =ޣG?}Nb'm_&|ƚy\+> ¤k$ >J0Jc{ȸi7Fע]ZLCJ$A"B::(kV2յCv+ZM̅5V',XJ E|zof]Jƚ"Vݧ8~> Q`+r/TMj=և J|i"Y'aT&a/SI\3c/ zdlTsVgxܻk%w#tfJ.\VL.3GHN^>Ps6iF Yb۬Z>:;v!b"t(,o]G- h{ |e3\%74O)FBd& vd6r4mc9M)Aݖt6m\ۋsƾKD"r;B Eِ{#/hS`M=aMO4ڋ6ҒTjiIh'wUf 쀫AJ U1`K GʊRs|"Wi\^@Zw4Loqk"eK ܲ+|/w c i0w!IXDH{kb" w6zCBC/`CQo"e\ :lV"}xQ@1DQwD·CFXbSi62ڟ&c]޶@JǸjJq|«_n/PwBS-uVx5 fs|N9ḿ.._ ՘9OJ)Q,R{x87hN7z7Jp(Ʉr,,J>%X|y²%Fx*rydY-Z&G=Sb(t'H$/i ZOjWʵ|]Q^(&VUe[1b+8O@v!kާXYX,Ed@z}Z¿o1Ȍk:"'S˟EHXW3OZZP"^[OF#P,k~\YM@Y@fqؔk"nDVD\l>oOda?` nw֯f]y(it!'][o@ҍؾxXI`\VZp&b!?*$-$~}ш\,vm㴸8CHdž\Ew` 4L]]obʤOcòOۥ/#Xsdh<9xlL>FvG,Bb! \e?/~籢>CDk]g 9=5F}Xީ!t̢\uSFLD\ 8vJ(P1κ!i(Q<&(JQa<\6j;xF68+TVH{_R\.co% yd_ct?_߇/w 3RuemE89aCH b%(?HNU֜L_sT4:C$/2$ (qt1T7dGwzS{7WaWmB?O*Bϛχa\lcE#ڽ6֏Gx9yBz mbkK.nZS h4ۂ$f5G{{^mUv_cQi2<Љ,B܃,[=~)J1\ VM/w19T̽M&ͿoE9$:6V2o%&̀?͌7Cx>T7%S)F3o' ~c,[JXog y[sN0ewɳeEpaʊJohx$?_z8.¼ռTHBV}K0o+.[Ŷc5dQ=lZ-ʏ\=aaťjC 79_'s#֬Ve7jjjDdjΤR_ o / Qos?@UR&E0"̽ŭ!2j?4rNCHA5К'5D q =h.uXy5giϩ }zQ y㇍_ ɍռ (olmԬ_VOޚϺn,lb(]!-uvb:]{RH`!/t=Hߒ!KEzau/]{R逤 r&,ړ nPD,9=!ܱѯɜUV@/Aq,;Ɇ3-~'>P{|ƮƮ(ޖ6d'ccp8<>aԥ80~Ls %[T%j9qҚ6clHi]\]-F.pZk̆ Io sDR>F7!{3xIL0_2B0a--CES/?]\]>-햚HS >{,qCDx]_숸zs+4;eޢj~9VM!>ViF16U06{pda ވ`+ܽfjE`(Lі׸ 78W֞6KMN>+؁ Y\&:: X#n ڰ۰D/~Y¸񅙨0ނ3s)*XJན9㺧WM;V q~/Bp#:oa܏xѧt6S@_RM WLo>7δUZ_U.ho~fEkĘY|sQ08HOTTމ;sV_ e([E`c:QU UrH"]dN8_;QKVRN=-nāf#ڴ8s۪I9okeJ ݯZT')ɽuU o8Pcm5YEfYLkMW UlkʚP Gt(+<٫#"z yDݞ~y{k 59ƩT΂]UE آB< Xc!)~&*<[/3pW?hU:AƠդ wxfCn˯-u N)iTՈIi ͗-"zZi"Ԏf ` lՔMӤ`1e ',aj.CUy_R7 roGN}87?<΂ ܡW#,4WY#yj5Fj9P V2mh $Wڃ!ʵ@v%X!.BskQC?lBiAjE],( YvuKRxkvp@ dfMP%Mt4zPajΎ`'kK"v-Id͗7%* !n!K 1ZlQX20mv7Bk܍+6Amܓs8+:nBMKo , G_Q:YF{+Lo +IlOsQZX ~D<(Џr7bt6vZ[ XWKdbN< ~ױTմH0nX1M AGx{Pj(qLo'D4vuEw >~ J ?rZ\YU Eʼn hGK6siW$u*J~= (泅\_͑thV {:Xmp]H *Qn,1x`Z=DUGa_0q4X,0 r#foGqk2R > ˫w)@d) Y_13id@ppxh5@U4Wգ]&no+.|q,D SXFg[9 2+Y>ٛTdzjr]Uv!>&6ṅNn]͗j j-66qٴ0jTڟb_Yk@WmA3+JK,jla97*0hNJٯYx":˕Cݚ4@>럕b˝%4Fn~O-Ev¼6+M)J4 +Fә:|>ckA}6P{ S' k~͎;͑|i1 l-nBD0~7%״tTA8"%B!NihgVY jX;)oKzJ"V%Z6- RM7]'t~rʸGlZ L0%TZx!U7-T5EX~6s!rz=Q3D7/׺ؗ})pq,Hv,R-7UțV-bP" N :#zu-';ݶHs,Ad_+ϩ o3f\i7 apDKgȖ?(007Q"G" '"$uaȟ*Ծ빩] +vkX\ZR2tc-OΕD6):J@NhO50mr]ч:ZD*sB庬\Htc˦YA hkP#d,$oywZȈvsxr[9I[^r3xܥ U8gVʜ|+-Q>6mcclN֙s 7{:6ƶ^YaV@YW<K* {O _]#&IۉWH,gAjFޣ`I#A38JV;K13$ٴZY:i&T3`F&i`,xK頷ks8'<{,]K|p4 NLF 0͞ss>4ھPg| Zŵ_OKobvω-K2_-p.ÿt",F}V6xl!~1ͥ<sE҆\QЃ7# ,G䴪Þ+շQkӁZ&Y K^e:e}7u"zۏQg&3ʁA&Hy(O\9f}.d<@JALH9 ?Ysb16k$_6F.qd`"]H[>rcF>VOVOpvr^y˛H `x̎(mlovLJFw5F!\JU !8.U4+r/5m ΥHott”`+C^$kc;(vPa /6~1f60.ZX; &"dIp2i GoihDnO9ȗQ%8apr?TE.[#@ ) >qOh>7)lY5F D s8@ꝩGY@*?P\ }Ju@$nBp#<3G%Cxt)Ǖ#mA\̀]>~PX|tpɿt%:`^Si23&I_^5Fƺ#c0}WFH Y?`Н&<#ԗȭ0b@TIv8vu)ִwG#1.fwi`a󐺅h]W9wm|j]AT$}'ľ;}, a=$1J8Bvm//ˁchU"ޖe.a֋K_i̚\*×j)Js$f ,&B)rʷ]јY’Y|чu= 7>WF2bv+Ftm{Ds@! 2mPƉ-.ܖ&LCWd:olnܯ|jZXa[2^VsTϬ,˝'UJ؀0<(wʼnENN4d.ƨT\y_mi/n˅JW?#8fuE}'Fkkk F>k$hL]㬖DR ֠u.3V,:{#J|݈&rm5/ L2}~\v Jͷ@Ÿr)Sx6ӧ⩾RvnyaZ'S'+$pЧ;@{RFF"JrC m%}V9:8NLf$.﹣VT\o^*Mi5k \Dg! Ts [>nim?wQq]Xm~ y%ٴW{s!MhWa"$4ca Û B ̛x\6Q7QjGm"N2+??7Y80HƘ`Ɏ>na{m3-:/["-Zc0,[! Άvu3~CzӢ^Dc ;vnlÂW.LShAqBGICh[" m [rN!.*AW`ġv})J7RNBljʋeigG *y%/_a }ڜÌ@Q#s<ҕ<8ҿ` @Ȱ9tme؝v(ۄpji^{ #!л/ H`3^YMOтOG<FɐtnHE]tEC ,FX\VA nH!gȦmN܀tXd6=2A`dTfjO4V%-J{wRs~Iޔ/deLCzP$7 IofN(04(Ǐ#?!:w!Z$,}{K8R@z ~ O=vh(GS8h(u|) VB:bz%N4AwR' {J/]G9:K0;TghOpfIl,l!mι:ȹ`M;cPA-9W@cw66<E831W1)RADnJ`ݯK-f _ bvYjԞP>p\Ϳ͇P%;mNx+At1L'Xf7_[fbTPP6mQZ6djλGSlFZ-!Ǜ@A;k~ή662#GZ'.$DѼiJAc6ߘ_fbYuոn[TZT*)v iᴋNNzX"xqiKu1h{ ʁ4nTJ3At@  >rm{LzJ7 $Zy MPf2LV^4X8މqHw ż߆[%gD8yҖ>Hx!F<EEhyu9Bz Au!6CNH06 m,'i<=QW4&'@-7yIfn{6yD,a!I[,$ޡѕ%CiEl8ĭ83\ƌtq:|CpNRMf!edYGщ~zvx)B AzP+KT菃z,M{<o_/0ةS`>?grO`ENZ5\axTph};tg9$q֣ ˍ|¹| ,ɁڱmJO4lrfu/<t c voPuC 47 wh-y<"bM[p>A00b]C!uE+a1]Gjoi@} #o?kZ1-όZ~]AXw!|:Ao@-?usjdѿkb 5b{%×h9ьMs_M+ y`|,An7K9$JK*f"G'`O7=+~:~H+`D\0'vFk!RQt f;tc\/^a(4/ "!xxbyFX(ߏyg")b{0(.COBۈZO_ gX6<&iLdSH!zLrf8)dEY VcAڞ:l >CkT67x}[5[ *j%~!} $s/ܑ_٘bHa›ݦPA >$%(EGPMkb'8ydyI]Bud#KՎvbw4Aˁ@V*# "h2:y*V" nNk1࿋_Vr~'"h''+R| Qe-ʃl2|-*x+;5y+rˍk@8)%#(5xl]Y>Q.5.EÛKk3ǭ}]zz6ɐi"l0ǻUz 4T˕noVޏR0h#^ONEˬi|/V*+0W QoB G,KB RM>E(R #!QD3U@{B_+B]_o=G }LH1EGlH )^BRq$3hTjվcZKlj ׀-(hvOVud#P21EЗFëû0{&΄}a>!Dj]X{ ![ɅgDy᥹#߈)tq ffLxK~f|t;Ѧ Vu(L_vM ~y8;|P~k;9\0-oxxwe'Ao纣c&`AoRӒIjKl"Wm7:>UBTD.T|px?HA ʷo9-9B_Y -oreo1<C )^Z;M͞!zXtn@.z ϣ˚1;sM?X=Пr1~73~?%娌TG=HM˅b igM q]Wÿf:l!:%*ό[ӳhz6BMG_yڔ`H쀮~ E|(X.Gx(ʂxMiTvE.cWa[q’\8䘘Ihx:nQCFV:S, ;^z9$2Hm]0W"8(|R%+DW@s ce Ý1b/UH3JDT;aGWU"-)\Sxt ܜy:rlYdS6=v=oйGksakJ+m5YO{=io.ݼU/4"&qx duK8Ci0ɯ3%LZh HRPՒފ.yԩtMbIouA7RbnX6]d[28T/~j ŧNf3XQZ(L oS \\-evȠseuz:uI.2(BW/廰">SRNIْ3j ,L?8i ~9Ơ(Ncp ^ [hNWQyyh xytQy3m -%ڃհ \$ƓA끥vM^'*Y`)GkdT-Y2HfUDB.} ߢWwdNۮs\𬾎#yj䯑 2;B<5Wޅ\&}ܧoH5 5R~Ӿ$J@k(+א e l"WqJWR݁]Pٷ-i9AN+AiKQ3ޘ*?Yw}W 'Χu앟=J^8W[jOZxilp-TH0]2# :]_tV*Xa٪Ah՟F1N%رѼz\ub 0 LL$&L' +R(v6Fkfx_>HJzI+Ɏn -ac%kVZШ%`6tF&Zz|kfi'ԣ+,uxRcJTBۗ{jrK X{נy -;k܍^LRaZhnݴ4B…W*f]B۠ k@$t7F;yX!Z:Pilg%x Lt^ha 3i;L/, ^rق܌aDR| ު٩_ԇh_e 42*ߜo !K0:`m> WLD@0Su 8l9kubש.GIE*Ԗ=EYǀ麈u` ' KR#͹>B+ȜKT Aka0+|I$VFniH3H2*ȔI"_k(ݩ3~['AgW؊('zU&Ry4 Gh m1[$W +#Mޟ5oo,WW#k\X_S1Zc kB&x:L)=b4R e6ooȓ:jNCȓE0#zpɤ|ztlH5zL$̇ByhKrԬ!Ir:1s+99hQſ8!_։FsɦD7V84~c88KY9H NTk_,'(pΌs/@h2x::Lj6 oN/@xd~wtY}g$:w /p'ZM3T;M8W׎NAe4JEʤ's{A<| uL;{ F'; NjtYҤ",|mS p%,"3tF| 񮧱pZ 9%8&"M&*™h~.tnْ6\Fmhbd[şo㯈*ŊЋNwI\ ӗ;:|uV-q,9z̑`DX7u"8$_P&2˻ vs߁וȼ!R+kmQ+RwbrΥsoӦQZZ8l} j}`ύa<pqg.b{xG@\ӥk:º. QKwrWu0+&[bo& o9QCzsz=aB[݁匁r>.T6j|Pa-z~u`IHѾbDZsK J]"n]E1Po"= e\aZ{ZH+C~0~e(>4 J.͙=7A9m ~W/Q=O4cYNcg|O7l#v|&t#7)OqV,l4v/jkqǶϿƟ61aq<RCَ# d߹|i?w:z'Hc[sD{.4"(C{>S_+eNj=;l_^X )V K> %moΖ20[WI #w4#w7w׼cjbmp+]f(jb0p2KKld}nQ})KY9!{?"G^gO ܗV\fSzr{ ~G|"ǃ0oCp8Z'#OF VUX?_FlsC^22J~|kïap[' {')Rk7yD"Bdr4UiN ] ~r##R1ݧQ*Sb:E4 x"~?4ưn4޵Y׌QIwSPrW+|j,iwYm5B娍BQY\F@OCH wL<\9t M5J+G^? duX0PsKB#H0$oaKuk_mr[pDw[]U^qV'5AXR쑩M~u]Wo\,N ~MS&?FT^ @Nz;|szo! *02AfGhAC3ܭY5j,+rF5CPU{һ`0̍Q3ſ٫Cw4NIohȀl1YIPYӷ-hݮmFhm9M8{%"J_VqV~ubJO.;٭#F7JH\ at[}qE Hb^agn߉$}qnwHUAM0 /*咃e*;ho<=pog#ww4ȋ`IN]:?,VsRsZπ* Rt {DX{i-b&'E5`xp##pОh$xF dE[Cô>Vl=ݓeQfqv? g;NKrw\"q ָN&]a8oƌ'^r6B||Ⱦ!ѣ-qv׮_Xa\̟!he`NARw0o8 v~x'T޷$o$KVGH=4a]Cu~4f9iraM;>^f QW־;9VɄ#n$Zp~ҽՆFbSvJW $?T`8*mobӔ+5 1jC^v2H {7hͅѸrO~.|xFr?i\B<"nlFz0FFvM{ =q˵?i%*2.%\4<m42j# "Nͦ|A6 2etR`o8IY}JK%?@Ӈ4Xc<~ bXO :uiCX6wQP^eZ<> ۣ GB<;一DȑԶF#\:xX3gM3IK iM t/k㋴:*(R( [eݨ)3̴r40?Z6J6 [|3"Ř!L^CnPõFo:ͦ.D>u1 P2Cl+"uBe4sĴZ M}Lֺ&#5j@9O;E{WV&xjՋ-ҹ4H^w~LεhB[mٟe5YTǓOR# PAJs`O`o}R`T.=Ax<|L2-Ԇ#ڹY.A19(cm9̖>ZM@G IV.?*-_}mFũApC &ZKǙ0P1 w|\м+C-G$ Itiz|Tz wҞeĴ+Ӧ8|m:Efśbud%QPLG K-5>lHXJ y&T-| t{V숯ZUg.] 0:+$Mc~G?޷AP0Sq.Pi-\x'7.LPbXS; Nh,]`+*;$+VJh)[ Cl5x\;iV:e7eKL _Ub0it{VM`;%/5 RvotVSN7~~Ċ#xI}Sdj]ޒfK~+ IӤ7tO}ܪ*Ul:;nN?JOQYlա_rAg5f8!VC('hIzPG`'91xWhWߦf/ekWZy &S 7cݼr`,N{7:N$e}~%!ߋXuQEVITST,@ fMvWT͓q%5NsS(oֱf%8Ѭ}4'dsȨW\C;vAKU^;g9Zs>0hWljM{X-mP ;*t\6Q-_lǮ݌e5-EFV%FH&]|D p}M(Ma\'q Cj>--ӁG,b[n~@'& s@{3ˎGurVc]%$e9r!xȄL p] -5YP!7IrYVp˜DB)ݔvS>#fKP UjE]SG"ыRxEz$FSAЪP2s>!' ~^~PԒ5 JFHOvȪ `}ƭQ3跱gplmxkGφF$aSYƟ8rJJHꉆ_S4S5 βGyJH Wa&A(߿i+9GT ,>(T7I)85;Ȝ`ET!)̮0R#h<>xB{c3|BF$Rxnۮ7c@l^Qt+?$ { '82ĮM& +j0XLq% XsO8G(a/$m-Wb&fRb@Lޢ[BE3Yʚ,:곉۱ڡarC% ۧYs,*-?}K+F@riF=odhz#gYnf!(VgK|bzqY"uCq{8& LTK@t_S],P%LSAw<vfJ|g$6}QL^16Iz>l.֌dؗgY=r>h}Ӡ}IȤT% c wMUȞ 7X\Tp{`/6jɬ+8]3k"تmgǘST>+ ]W3b{R?Mc_C`{oۡ68K{{~;2kxcr%z{sލ#~9Sc9C9΢Ve;S-siYJO hĆ|fI ndv|Gϐo Ըla@5Vm Q;PVcVJ$%8ga؎Y@ E/S&GV,??9-W #Ϫlf1&JV-I}N\SՇ(b|p@S&J PN%Sf?WDA#wH^jXJzQġ"u{T 4ڴ'x>C/5=G3 &prj-'DNƉ9'r2Ndu,lNe"2H8!/w Xbʖ](6a[U;6Bw;J3BH3Fpw[o!2 T8zj-pvm|!7&I&5RVVgcAOPM(p[&Z}{F`WWFoșW!dHE($/!*a gyrE^fgݐSTZ=N'hZV(n V1xv.̃Ѧ&tFBF<=W(#I*E}ab֟^XY"cܷ0Fm>Q4枓@0}V%;G<*6^"2<Ðch};oo[kʤt\iC7΁ Al9L{|#U{Ni]oqGq7J$U[}ڀn~;T y:*瀱+n|Z8+APu"mq5hVEÚ~}(eKЮ:aC\T|c|uړ;ڝ_=++XԌ7L'mYm~>vyU.ш 5~C4)뷦Nr7*f\[PV1:u)<&Pd}%5mU MB$ϲA뺑wZ۠J;4҃@ibhJ4mvfB(Y 6lxcd|n. sx{(\IaD'zYJ}.=!23um 솾P<3BNF4X8 vNXG$ Lq5zr_5]AW*z+ E#v ECV5H@R\kr56V7t,b>TY] h恍kۘꭎ(xou2'|@m>K<܏SqHSYYeQKﶜ~,);CZ=1g;CR }^xΐkȥ^OIh!1>eͶH" $K%E)"Ϸ#BoTm_dK(0&9pSXsuā~Mkˆ6 ޣ;~F{B/gОC<@jjhyύU1l=SnξbHݝ}%gWUh- {cAB U]|'07SWȣY&//֛wJfekUf͟k}xVts>yNotIRǝ! "BB2ΐNalIL ݧ ̖h᝟,1^2֫)aOFZW7uՁO?H$a~}_^Lņ_uzhi2l#PO%*ww^q&<(w/:[&1櫄|P:Nz3J4Jczi#]_`dm߃" M!oŷ/$.V,@sdϚ]#U[ȓ"?7>yg펺kV_"E$yK!ex\i"DV Έ/MLg? i\`M-! ZbrOF8TZmWBVElO(FɌ@Lj}3ѷ@/>/ mA&zĨ%XRBPܣemZ9lR\ Kj(ozr z2*-Ƞ>o0J*<KJȢ,rO27W~Fʔ'B G.:/K,,l .)Br>{wQ;ʅK tRx~TN!I;nE7w3Qh߬uIJ]Ff#ARh "ꀝd!$״K!`թuA`,ž+lVؼ19Y8,_M$u? mg(k(OHScڶ ̄w # B!O~EUĊ,gH!ZjyGqqxɁ*փL{&=_K#W|6,Bx̎Ӑ9GnmD6 LWuoəlJJ.9!Yv} G٣cGW?tD[ _A3ȼ2k9K%|{qA?ߝ!T]guI,LϐK_kD3˕+DN!\ٰso{Qw 9 /f >9B*3#4T,uMpz\?DE MR4_I/"o҆ᬍ^iَ Hʳ$WB-T(#K҅خK؄< 3.%'(3u%ZYe#Y\&xHh> bN}ғu'Hは.kSۉ17;O4{-vDbyռC[eڔ*vxn?=8B\~WtE:m%AC/?,rګ]Bq@}_Q`qp ;@'CN6ĤvjSu+#3Ʊy!]?o#P"A;_#(zDR$Xՙ"1bVO!Ҵgo0̔dVhd,LN>]R q1PW$~+  X `ˁʴ$ͤn<VVC}Ѭ5OjQ=*FM~ՆO++ =zoW 10hL&JAȥ(E;#yΎC L¤q:WsV;Kp,g8Qh<[% Ѝ=AE4XDGCt.DvD=.pܾ2AGf_ 3eS n^ N~(׽ hAt{! ZKuFHN/{@ ,#[Rܑ84\z%!s97:ecf^qy5H=/aM_ K9Ͳ.BD4c'GkdRX_싍׭QML"S;LDsjG!הQGt6Na]rvXB:c(nFHxɵFxP`%G@ j,y9dd'͸X97k%{Fp(#ӡÈa!;.ݮqAzCT Bw|IAžrBA`<<JߒwyGd՟rinK?#b+`?˷ظ!ݭr=Kg} 35K8 rL콢!ש\:hg^uv\r "ΐkv,W3˕+r&r~\?)n$8Gdz 29yM"ӛgRr5;X RQFՙiB?xV Y~{b Ms*&.=1Coim#1Yʊ yit z)`Qo9Ĵ;D(/aVϳ8bTAG2ݦefIx eWfUZZ6¾}|ھ}@7~CP5C5r0̧%7PN[DNR0bE],3jSI.?Os|V̉(uԼ@VwӒDԚqSS}F_ ۍ&`Z E"mjo7XRO 3\,oɔwGѹ򚚣DCtd]ci$D1Lr̐?u$&ruĸ|_FdQo&J"Je0 2;<4Δ(8aB5&<13bZ}]qcA!h"gggh-ԝ,y~2g*'SPfy i,?XYZ~=m6Qb,Lv]Fd8@dkO&\%J2 Q6F[JG1kꔴ.&$ZUgz7_ dIiOÓ],E%@h\>@I 7Ae;Ii,WCdd_E4d!8A\f=a7Y6oL~jS%ϐҏyf-i{Uw\E.vC7Ci42+Q>_#VҀ͋=vMp|6fHKp,fȶ>C2dH^c+JdWP۝AS  QcѺ83 9)N"7Y"G'v R?B_5/w\%cBA)\f$L+>_ t\]SH4P:5 J.e^8j~ (+E00n۪d湖*<9l7BFf`? MU+͖@tx]M˞0-jM U[ Nk{F5kɘA03ȭ@&JUu(L'D'dF.D ĪJN?F~5kZyfnѷ)6ݵK5VqR邎俥q=B#ev">(v;ເ kv4 JЍJF] _#vXwlBq$%>x&h]""ԇ`u&#+l <7qo»PBk^A|~eq jGy(nt5^"jտ z3V8 ~qVsoUWJ7 !C $Q=#q0Ưͨ9`lBߦ@Flh?h諸6X+\fe%, U;$5 .HvB@GwuZd[iv&]ljE|'.>yȢfbX0dtn Ȇ!١Wڤ 1U .T?dTcxa!E-jw!*Ά#Uk4o:]p܌C1z:E^v:DB+&4BZYl߸| ,Kd0wFvD}` p{Cb4*.7]p.`;O;y'Zk΁uC;il~#Xe _EE{P"vJ뗔 eRP:P@)Ӕ1PK86% RA#̜g:Pz6rϷtTnmE7u 1ei&oi7Ծ֕CN~#uzg(uTȸpo X|Hj`תdiNsizl'lL+kNOB,e\a}gcP޶PACe(oj3+I]n=Fe! in5EDqkat+_ Z2%h+x:JJ7Jw+bX(QѐYVjWxȮ Mٵ !oo}.:vTN'϶֫FW._JA/?鈒osL;?<7e}9Y</Σ fd^fzV_ &*6~#ܤvq;n'e;hDTySqhnlj<28h1>їNNe>>Y28{?:ݝ[$kk> k:0kp\]\Ů%/AJp.$voON083 L#ˡ?z?H-|+E Cd5_h&f_)P@CuMLkҞ䖜{o߈iFhX5|$<ϋ8jGB5m y ԹPM8&t7ҍ*Qa{gfXrV+9M⿠EջpTq4m>!HC4\)ݎ9)_r~GĬ Ig{ 6y^.;;ġS}ZLWV-6ʠ0ϓPY5$F˾Q.f# Gu & %DIX˜hw?J踿| 1* e}TAQ[fq4<'k`~sHgWb0DZ%M-d* 4>LfքEg}GqקNCs B~/YQKe$>ƛԟ V]xdLEGPmT4@D>nS/aGB ɔW7j&V/f *P9QާN1B/DRx4pMO/wmAos)0>s#'iՙ9R`~$oHQf܂<_뛿;6_#|LZ6hDKeZ*9c3v[L|3o MHAi0k3ve;3 f\%wVpH+cH4Q]%1H$7EN BDž6psޮ 8F:qk ıCCC^{|36D?q뾵h,մYp?4;36;{g!9=fd3$S^͹`]?s-t )cnŚ|y֪4h2UBMDNHV>ݺ$ͬ{?!r^-ORTw#ݾ+ ӸkC}e~yz8&(8]|zZ`0 xT?$3#:h"flDd2 !(3$@I4;Qb[^KVj@0I$x jV~#*L&H<sgkgrY{sٲGZ3c=d _6RB~\l9= e GtBytiW\dmYJuyS]UW#۔/p(8bg" N@F'+V Ÿf[k^ Bsw|}0?\E㾾?x~ٗ҇2zl&֝P# nvcؚuRai8S kk@aC2*WM3`MekػT(wA>3A42{GJ7ת(>k`v;M.| bDt՚4((g "nn] Yov7:H>53ROaR]6Zl%^ ^]V2z2: o耧gC #\J a_\ULV[^`dwY[5„dN * bqg]uU{[>rzcq*Sh*ƣZs!MVrtM*45`F`Qj}a1 H'Šilj]a~ʥ}PH3xS1L9mhZ̪jzKTBBpRAvJ spwj*H3e^U:~un) ?*΁QJ908ڞOUnoH?ϸ( cg;{NhUss"L'DR<tՐ~XW Xxc[!Iqŧf}"g8e `68:^Lh7YD"%_[a> iy$`N`/Tg鼶UZl.N`1{HיWST&=Rᐽ(?L(%k>‹Y1eTԱӵ~NrF?Nsua}ldI? (|m,iJW!rdDOnNmH1xT{,<'&= p?G6ϓOta'HeKjAQnFljtw{ f\orLv̕PrY|`̺!xNdjni4sRy(촉8/1EntȜ0[Y=8 %a\tG:ARԌyNyW/C${ǰ&?]=F}ZG_I!?[a@]?ob`:_'&K47֬O>p䧬!Az > (dfp-vY-P o͇8|{uFECpEx5 ~W+yL?ъˣڅH4"RegJ_o%_WP<$0 |ov/l 0b;N}|c\6A}3Kw DX9G ɥ:'a2+an߇ЅEAxW0rP#DZ.tyJ24o0 \T(&Đك W|aڥj/˞|ʂn7cӞP)?ҸS-ȿʕBmZ̔2ݗ :#4U*@WMGnNW>mw`eC7CZ)5yޡ؀2{ ̺~ɭ pD0Dx Lr a%E\1w\ƃ, }:`x18c*5Ć XB$Z2kF%y:}+9'R Sۡ9( 2%cW4Nr0ȆzI=8ҵ*[2] 6w vT)(BRR\yxH/ 3,89 @vMߦP Y8BMtJkX+hwޝR0Nz=;8qEHdDˆqc ̾Etg.Ҥ+Ǿdl uۘEuvA$f$bgXo.q>N;?VEn`]E+xhq5BYIsq2{v3G {貶ѭ'n]擯5-\bP=&rƍ+BwU&7[6'sB+Bp~Xw*9*P38 *.E9p .}^Q@Gntx{,d>ߥY, qO1W9OFG@omnGO13pR'BChFVh)twpijw`.܁*Yu bzcv.sNvKd2 #oNs/@Q3yǥqէ.dօ#IYӆF n+]ocj^Sp+?-“hQsh8B6fA f!Iٮ!B&r:lhAf KL^e!krdk]H*@]1B"S?LYn=_6 Rrh> st֭hlcPQꃃiNGxU MgS՛tښMGб&P*˅:_a &)OMDFkv!\bcop+#@eIL !@@þLusU6|OoǹC?2\'Ws/O.™xu3cL[%\Rry4ەٵv>`pXmXTɴnHF  3LORm' `T_4 55,S07̪9!+2v< >Q@L+}8oPZ͋|&/,IloӤn3r>\iϣvyD`[;?U 56㊅cVpPɟ"+`U7}Uh:5F]'XA-εk"LGScװ* o8ߘDG%w`OT0fp\j//tCICQP\ -UUIm"йNX)!C"e8Rrw3B\=$]˙Y V䛂2 ^="6!/Bz+u1L,9:ЏͮrT3z: #fB?5aeVs}lP9Ը;-'D:"L yg'Gs~nf 骑s'd<x:XYq@x ȓrߡX:Iha2nSB~|q,9p=^!,iclNy^#q^_]8xV~waQ\]x '꯱M}.ntH񛦈:KS6S}74'@?ȳGD3̎c{h d@ݣq@X87 (*鸲2V` $4q+xSDkkWG`Ki=/IqML๤P.uh~O$kRtL/Cvlؿtҷ|Ȋ0W#H_qfϢ|x@7C،Q=[ٰ+7ƹf.}Jz)$A\+s2皿Y<'BFdnqRuV{AZ_Pďs T瘫T3 TAD]Aκ,Zx0; vӐTR֚ˉOVy<|RWָ6GBijJՂwæ0A+rj~> AqF~(>W¦rw5*VfhqFn[J{u-euw9^{2*{'-8l~I3Q˟vt y^Wg(%7PS.LiPhlUw2uJQ!Q_9?\|^S Cs6 q-Vlmu6绔o>=X.0̫!\'ϱ >m!5阀 0&$&`_$Eڰ~+NtN^oFosSӻzuOU:Zs6SPs$ F pd_R}540cN!{fta JƝ+"0m6藖 Ubl(L2*<- =t_oml'A-o~##<{D81凩~ESn^v!p#zvMԟa)=h'rDC{ %4 KXu0:0 ~7zGܰ߻vYa`a Q. \*5K4J 2ׯ /Ό!:InQM#w%{^bY`&S`s^ZmK:#R<>{ư©M*^g~.f 6Mv&iHnMv$ѕˀfMV s}]T_ -؁bB7`${S'-5M ZX ӫ-Z 3j1Hҽ^wvgb-sz S>F4;ۧK# }:@'jt/ f£ir9P@@99rCH\\|Nҹb/յmV_Q|+]Zbcz´ێዤ^Ԧ@_-m57qx9atݓPiKe+,GY6 ŃH(%z_o *b;G#`,zjuҗND![~J~Y, /H:s?%M".(]e-xBB| ҰCZWdn0vmt{>ɿVYdȍigqؾLԾ=Pj_. 5Dm5B嶷rz</<`˖h)p^ u"W r(K~1BTp>RR=u~AwHk `"Ai=T` RS5;Ind5qyQ Lߒ[({@q7՝tz{疖ʒ (UaAWNrwc)OoBc;.E--ةvro=uX~צLRǢ dB86vJ]z=BAe}^*iFό#l7dKʶ_hZiȥzs.'6{F_>sCRfAfػC.[{|\<X؉5miEٛd[ 7$_MbpskzL~̝k)=a|v>BfU.ُtW#TM }ύjvS.T*x|7`\AKRhnCdW' PpbD\KhaԸ3+Y_I:ԋ̊цg4 +9plwYCگ|1LP^hyyzagFadŖ_};J!'uJ(tCc=8W^6€^ W.;.5ksVr֣jV+$}sV :^ǫ' "w(K?'B!&<=TOgᦒ˓Ry|ŞwO~@/\r` ߸B(Ǵ snKP0ʿ rQCC ʓAkC6U^A^NԨUh/F5L̝p|cd%6Ln(2L?ա;q-.C49K:#S[lVyldfߌkWmM8rZ]}䖛-g}rwmG@nͯfđ~Y} !pb;|4g=4_)pW)Ux ȌSg+y_δRdܚ }}/s |CjXE\<6'HDuX4R'N*ʚHsyrQ'qv\oU{Ʈ3#D(uB[_.0ڏ+Pס Ղ`\+*0_63_,Н#KW9p5  5J" +UrCW2_y\HjE >VX ;%2 {ԍhwqegՁBxۊPk/HIe._ᔋV{Nr~MVzdfhs\R`m4(C\:qAz$@j_ yrO2sO6ֲ:o`ʨ{OQoNㆹ5.Lp%:Q|C><գ~'P߲ZODLl4f3s]TQoUb2'bIP/DXC7OvS;SQTYnXSTl?ԙLO'6wŸۖqiȲN&(6qV6 k]'4FSk,8pդm؁81(B 9RՔڞz37LWkɈB6׷'7}+i* {wu! ^;})J7"$HO(|h55}hƔPqB`}Ġ3[:gW+@!3憮&l]3C{i[/~T;!II{NTý3}yMsе}:bڜLyjVY|ռ>r?K >HAn2fԹKi9Ԗ5ӛ伛hd ^>mFx9;sұ@4M zmme |U@o`ϧ|@Cuj$&;Gtf/nL:>.|UV7,AӽL&{e/x='ߋ2gB/Ro%iy$ 2b::EawzpQ2pVHZ_Wo ])b/eoY>: 𪱎J>R7*ҡz)-gF*eʫƺxD$/#^wpU bx[Twcב1y]u{|lwP7 t\w s G0pİtq萞+(7uB3^uYS̯ DZpt"nlwӽx~y}*y/Ax뉻؅Dyq|z1o]Sۺfَ1ꕟ ],"0^eeCq9\FNy3+MFpGCTF vWH΀ppB`  82ZD6<[G$u^.[n^ ?ǩЀf`<*4cHްB0Oj|MmK^!|>Upoy z^)@ w\c %F}8M/7txcq-KsɦIMI)?3פL N  Qи5ab>C4Z#C`|}[( (`-7bohg&|{$ NNnyVN[P|Msrqĺq%bس#g8+`O|yPOWjHJސ{T|J/rߡ `4` =Clj!oLڑˠ. \<)pq{Z7"PgQxx%tS&EVdAx_Ҥ(wJsI!C Q[o(k1,Ms~_YMʼZiu)ØW0 /4Nx'׌)JÛi}_1:]NW;k 99fRos4f4g'=%$:;YE>!6Si܃6hx}tv]91IXНpDZq_Gt\DhD !vXg4fd emB7tMɔ+]MÕ_\.V\ ͵sNG0i.Y;~ N eo!(k(>еK,t)wU0?] Q.g2uL(^4G7*ʖk~p1RrSza+S1rridQ+v7|lV3wrЮz`}h ֣;WBޱd2$U8n+*.6K,ŝKH'NoXwC9@;>rUpY(DƇ?~fe_z-R-ppC# ߈:"8wmko~','fwS:e&2>1Y WB +M'qc'`; j@rG d/I[]Rw"IE!G%°3]awuYNZvIGܒ a U@%Y?^4!|N^q=o%4*X&AU);BCuAbٞg$/r؆+͐I ) [C\&ܤؠ5:GXDbd"8'/a YM2 `O f$& Dh˘g-xM*rEP1_3ΑGgw֐_ e]uA OZ&[bf2oaD _ nkP9l(9R^ XY߄\>a2w 9OA9=׍VG+Q*= GuQ-F?_#H-n5&ΐլRM{PfZ$6fӃOM]b){^o~D#N1}4XW?[d]5vLbFZ +͠cUp :^ S--ð.#G]#J(PDeqzF⦱<*(:qszӵFnW7DExQe:֥P΀ߵ h!`ޓ@΢hȫNmݵ>K }:ɇ:CɵMkM0E6iҍ&wIK}0 Kwn%/vne9VE d]Pbek^<2 lB?.Y+;ݤrߋV'Hg[DG*q5jhAڔ v%v36?6InSp"ܡ'Iфs&vTErZ^TlQ~6Q]0IݮkQeUĄ}UD-4U.r:O((m̊0!yb8x)P/4r\NP{mmfdt"a vE֠|F~4 (0H<6#N\[5VO!M=O^r Jx #(lLt4&2 dYq 1<]˰2 *Vc6c5iLiS1*y$tf!Dن{ P{ÐF :tg\ tՔdѸ-5}LNø"R$y7ks'U M^*jK@ӷ}$^[X((L Wbw?< 2k 9޵f6v'I-L Xd f9pJ h\ D9Qxl7'_:UWC>! 7-.sh&pNynQB:k]yk6># _v6 VcB:^X /Y~O,X68_r ǓN= +Ա!ϘIF]}޺y v#x 'OuӭfMy?Y ӌ6Y{YD#ɲ. 17Pp GFf7 ,UcOANG8_{auGjإ]۷{>ؐlVoGGwW7;-0Iaa>shV:cba$)XJ֒ili`rm^ؗ&w[o _8( n X+Զ~m5egd` [mu6y>"a *l-d$I 褙u=4_"t!tFgY dZ^;;XӸ &89X.lTi}{."(ɩiGx*y),9*]|. beBW0x s9q p.Ш {Yy=S OLPAbiFqIq x[l~_Bc RS984iINgStV1d@(d.R0I.u7BfUC4,Dv6K`Coh72 yûIMP]LFU&~F4zgm֝^yܷvJ kk9v.{ubo|kfv\l?s<09 kc>`͓{1!`7 ' 6ZbfKfB^tc$잦3bIN3 ť[[R+DGfJsDҸ!M bY:Cl W4^l7ҩ5WqSLl>\8qpN[h~A|3+OI?)džR8ρq>v[LdoLMz>X܊3IUɈS86v{K]gIumD:Ff9TDdA9$3KY= F@UDN|*F'\rpQ$kvSͰԗW&<nj4K?բ - {v MmΝf%YYuK*un =ŝ15bK4b^I'-'CWtDc/͇FOv{sBy>K*KlF"7FZ۹ؑԺ)W5:ġ:(R ?xHorEq=M p0 oLяa)b9in?M٭cƼG{+qX ^Mi6,lC[L1jBxHy>ϪƊfUl݃f93=,b 47$siի 5&ЙS]np]⮻qyif:L^ )dn ok:0tE[ia^xwb`4ʱnXh*Fy@V=gGr1 .Ew4Ev saV̍iElSϝ^mr=zc_ c[Ґy oV`Kk8hR۬M!U*@[@Mb_Jw(^,EbPz@%V[0!mߦB HTf lwO: 6QU *VJ?, L ΃b eExGƫOVuZPQHPNk /4C q9T"E|3䳵`MWGT.|FZTވdf9Ǽ50-%I+>?$L*wU[Tb n &LIgOPhzYPwG ->(0gnJ CU(PȆh ",с]| 2.(m.;WFd5"lU][ՇXI|6`4 G,j'??C5 t F '<"Ǭ:1~si|AmO*\'!;a!7!O'D!5׉z8F;3C6ޕm\!G#{x5k-p;1ZI"lvǙR~\M]aMux1mW5^-#"9;i[LAs(+7cv/QJ˱"Z|eq0 'S IoHbHn})Jff*bw9+5N aN+c {ӤcxcelS#1Ad2Kjf87PEFe~o>D&A?{^f 7It Q? snebͦ!juhRŎDPrA6>cO`z0sƎ2tSg:;PZˁ962E+ۘ[C5zv:B7m ERdD‚idyR _Ǩ1@׫)? ،֮Gh9;¡r7w4t ̻KH+%ִ0$ Hh s"Qs1~Eq6C~|qhyx)<=SU搫rJCco^ jd?4u MJ W o:?G\J#tEql>e>uZ^ƒ5t(wD ٿnaH7cB ]Oaf7Δ hmX]7q*9{֜ S|fF<apuҩ4, ׍h-Y#&}؈D̏-K0L? 3/{8{{'!0ܡ>xZw=T]e7LXDsZVNjG4n줻JJ ߥTϯG29$')h>)*Ը 1m*<-u9ֱYn2ty< '<`H=' Ҝ4~KĨ^@ ~0"Q0΅BG-8.B '\wV+ ,>XLyYl>yvdv'W;{(1<omwQnyhJ-M뺋R_b88%z t%7IuF&Y䠿HoU/7ыC5.KE:+g@~xze>#c>/i>ꢉ] y/i"|la,u_<ݮm c3 ,k{*VW!^ksm^VJ g|]4V Յ*wf"Ӄpv=Ld;DDʸUaRhN+>tDx xho ݂ՒvLZhPzO :l.=D|3Hly=d3޷ <?[Sے2{ǐBO\'d:m |'^ mu؛]З 9䒳:xa *"_,r} ȕ+J]|cbXvhvj)#p=ɵIz7bg c),6Zaou"<z=WWitjwxUDt:ݧޔP݆O47"$ imbۈ"yGlOq?BzHDZ$n{.CK mNf t0c߈N/Z q:+&M[v /,;^^;vRAM"yKd@0VVŐM/)iCK@`OW9Ŕ"4 ]p"G$xq::3+P1v]+G:]If^ʛ2}o8-ڱ&ޖrDIˢ&u{]υy"hW"k@h'&u34HiA?|3S.͗6f;CK 䴗0`8ra_ x c$.=h$ǔ>wy1hj=,) ?ewI̯qW7khڥ}@+rCF]Z'TΟ%H:dԫ>Ҡx٥jp"!~hP"ӪL|B|jgŧjJioptipPG`10- l57[s:Jd:GAf}Ըip{k`g׍n`>["#R #f8: E^RI#̶cX‰Q\ìZA99PkA!hnW[#I@:F.Jݟz2ɘ&WG=+>{ghc_gƗз7!Ofa N'Jx 쳰";>FU^8glb Wz䒿9 J2MGR$ 4kdsX}g4 Q9P^I R RU&is&816Ow&EO%C+4l.Ke4|+3,̪3 #|1i Q9ʼn cAmVoC<8w<l#i z2GA c[u '46yݥͣOM{_2!3WI iȬVaoN/X?8njeG/FBp"0^xvD$ >vn1Ia<>ð,XMג0p#H :TOK>1v>\f }T{h:.o߾)p-9Efy_l$D؎6_P瞫Ixd~0jrhԦ-)YӐ(ǬiIQ\$2\}~Z*Y9\fV!65,} v RզNlMɋ6tdVp(vK(MN/+.U &r1N BnA|jݘfL1StԻ0:P?Dr szƿgCMߒYyK&P1e2l Qƕ +^c=SNEsLfՁWzz7~ c,wwݬw>W۳3#ךd:=Np?v'@;<ߛ|o4lNzĊ"(oYܕγg|cV{YᶜUzVYpՏ:ЃVrK9rrn.:#\f)P Ys -sZQr|- Ϭzy1y#l=Dˀu@C5iΰ8c=!ꭟz2ʘEef1 Ak@c鐃 ʼսBP"Mzi%XڋoCinҜ,+]qѵT2sw<ʛFlXم6^"=6Mw|ev;8Lb'2A-FV>glU{}¾LeZ/V &C9+[M,4&N{3O pO3:O6nA-nҏWpCQ/%tɉbCDQC6ɕ0C'ffIf3w}:w u,3oBwV:e>^>wwwcc# l- (9r9)G;~9&%J<~*B;uspޡ3IQsc\4$`dGL~F*P:(Y ?\hZU[;Y-i3x\mJh [wUu,XPv^CC[z Ֆ,m6Օ[7$a3Ej.p_µ)$bA5pmr#UG?ux7<Bx=g<Cc:nPbSt؊ŘsZ:f"6 I&ؑJnv  ^\ﮊwcBaJkLWh!qUdH.O0P}OD{.osZY:'*-Xb8ttl7'Uz2XZJ:[E9<צFKi@To o%rzW9ATb۸@tɐPm`<yC ?0S1{7J)هjŵzlni⮢jӯJzjgj3:kZVCH5.SfDA/KHค $뒙:k,/Zu)8J4gXNPoԈc /(v =;&uV9P,b Q?nCr5FPS.dRBlYF M'`#aM?d3:<2fs]D vr+s}LAF٧ĝ̳| >Gf`z=eljb-&rzKD1\"gUN 74u?G"MkWt2gя"ϮZ9ōP_+R{WС1Qrt`Þ6 ]MC^ ⊭ ޼!֛kF!xAR\LqלZtiuΖ>p4SqG$Yj؎g,5ʓSlb4Yע ^r<95꜕/"! WW#:xs =F};:]M t vP2Mvrq`Ϗ*d63U: 3<ǓMT;5.Ngc+? b({9Oj/8Ɏt|Z.y<_"A+W`v%A=dE|r^ļ.Ercg6kX0F%m#cvT&}HDdA=&{(_vuz5h6LEKoEA#4Dw"K.0 Ӆ .wuHWtHWk"puGIwz;CWv:X.CW nL^X7,:J ?lǛ"23lգntD}Z׆ܙJ*"^NT#*1Bk$Nꦪ*y\EByn5^JlL WN2ilt ρ-\}>_Zkp+'ȥU#$VlAFt XW{L"η.tggnfr!Y!p }ve!3~ݹb{C7&9?"Kr[IgQC]MW?K0$J5W,e3C^4(/u 9)+AbF_vx(Y'Ѩ-kZ@Y >eZԟGw~Wb.$n0qDl̛i2N> ?[.j<-z (!6~&$z5,6$3k`?-J3VHk<ڂ HFdqi֎7!;0NԉO@8gA,Z܊& ^3 ~/z 5UZ 5>NzL׃em,0k7[f rqI/͜t8TtTMy m>Wm ߔqnakGQy_KJ'b)A41 )h\Eiұ+0D3{eBH '/z&$Ov "| h`79[޹` V=wy'(?t_Q+ºSb{(F)_>yvz9%T73F boOw!0 #V"Ɓ@l֐K@:B *j#K2we_5̋I7XLzڨlU]YH/H#ʯw_\O iQ_9ލBQFۼ1Gyjd&B&Lx"3sےi%,FN~^_8'[K"ɸ#0=Vn5N9_+qW,vx|*ܛ| fUZMHt_ec[4z%Juq^o1/\ol]~z /KKȡܪ=ǟ=La-0PYoΧzKo盃=_ <ODuӓ+^Db s!\҅G^Lz Of'Ó{OzDE^ 'I ;t~(I-]yC>b4HW]PYsFl.p4oIЊqTAT!,}W^rn饈xP/=̣Y;rZsd7d."]{@e=v9Cem;x@mc_7pGɉ_h*`zrǾ b8oH/ЖAv*Fg M[:t#G4X+MbK6R{O L8 =^ȍ (1(ʅS%55.\hTS\@kcoʚby-Wo˜t!G8~/+@(W۹/K\_;{1XYbd=&=vZi}kXJb)l$aSEO1m48F8 F4>iqOsV M9ˁ[ZE]Ifu9dwUpW^ 6dZH(z9G@)_l$4aC dW1ݟHҁ:^ uVz0_ 9UCN>z"7q+gaeDuo.z|iV8r5uA*5qH;|& |* oaʺK(/?H"]6gIVT]VT8 MmRX7]։ԣ# ' *U\{>^s1uSec2Ѡsxz'pV#- ).I| $n `ЃXgi9V d 8nil#B7]ύ/dh1*:rehQJLGqɲc=7!&:sT8qMC WQ޴#a͚ ^iI1~0kqIVp3P|p+F;W~ׅ̝l!A:)Wp3sK|yit ߀n;?fduI⮃UガMY ]k|#ETq̊&/LE/egYgaP7(Vm]ɞHC)irhZWJ[ȌʶTXMn.,̟L_υbCla4l^)Zgao߾BV|=TE!<d!НorCMT҇͝⪫?*Rh08ҧVqTs Go:ft05 vH>AI_>.kՁwo~g`yOO \D%eM#cOڒ<&c}*K.m_/e={0jF{3lIb{n:>H 47jY2co=X7,2-h:tȣcR{C}[).y[0pVL~` n;ɆL \gyu&"+Wnz0MyövQ 9DR&CK  سc Ɣ؏ُ3 \PǼR a>@[^wŀȭ8p?DGlXarz٫f D=g +MrM.*)(PL=cVy6|1N.568+_ :T"JlSlcBq!,{V )FǞO{a tHX^g;PP'1[W><6z*"E%f4,ԸV"nX`-|[v]C1q3AjYrR`EF{*їC?/W`Ou+Qy/u+{װh 3a'i\w(ar~B`|10{`Lχ1OݿodFT hFݸL(iFhZ9CZޯr|l3@U6 PC{kӣƆ5t*t>} p2S $|9,}`jr_̕^`þ_aǟ`$m4 ̻ޕ9$Z_%Nc~5W7n2]s?%)[|Td)=Z[Օf.)L]o;%%Gu[.V'&\-M/iB(j%u(6;g,)BYvPN7l3wC e% Z0H U7m>Z ) ĦaL8d# NhJ'oA u$ /2w[MW7ëCմE?V͛RŮXZi"Jf_My=jį.W׉ͷ+Fl9y6Ta k+Bh.Cx0jwG?]C~ƘRр7gf( qG'QDjNs0M@H: c!M7ZRec: dۀyM'J3+>ƢhjuI[&7&x U5;1V3:LebQ1, ҃ͳx,prh0PuWP3!mAj{u.p4윗RlS?g_͈~U![ү5cuBܕ~aB0mJ0f=SSҘaJhXݜDcX~!c3/>'-~nu[} yq̒H>l6HiĂűiIKL (-`WbA/ո˻3L]wsOL?&,.J]G'jxmP*twgP5$(Eh )IXlmUlD[wM8w94~r؈WGR{ҧ:F> Z8}&izhR PUJ/ #FU>͇"62NjqF}3\́swg AG̉*? ATj|S}zbuN p+rxW}zhSKF?ќ¾vrIP3CQ?󊕣Ϙqf\ti2+Y^*2 2wR4#cbwC@KwG}խbYgxD/I@JSh\y0'0Bɔ|Q=^ݜe'T:2BQb1o^DE(v>E.r$nt@i܉WOdW:s|Cf_Ot`M^fra}9v+Lpvs }E7K&m ܛ!"ŵ؟켐$z@ECYSj߬4_&&+' }cb~~lXG:>ӣffSRNvy_HS0š3K_KpB,mRllQ ˔'OƉ-3yh'?'3AwyCc ]r?zԅEENwƝt A>nrN>mwf/].>)/nr@-o$xEHfp#jOYhNiytVؿyX:: -;@>TblօqTv<܂_e:qz-ߠ+9Lo|jX9I!τE71Ŕur`2{*ˍ8u# I&2VGGKD2,6a\ nS#q;%㫢N\vbRj9-;74jpAIr+I}hUc0=jLh7eN%`!hf[}Y\9 [gAuyF;vn9:_8hDvL m͑P.S<'߁\ ] > Xː1UɉXvI"pL|\c濳f !&"@*{l|B}d6LxbZ >W;7N}Nv:7,S|Gc bx'e=-AirMj>r`,alF.- ۍH̖iٞ%e@5ra{nZj Nqo>h9o^F'O 3`Wܶ8-Eg0 *~m"va}%ECE'!Y]-<&ypv>f!ݧ̺xȖIat7Ph\id,+^'fUO;N9tp tS_u `=c&E2b'Z%1";XTls~7G{u0w~zx l͠~ieōn8Ű//-t/&ng-B^?OR2(a+[)dlGoQ_.l3fqP_x38q?ZDb0t%c:qMP%Ď~sqo@kƨP^pޤq7u!ZBC,gm?10tECX)^pAg(~Kl~ GrbbV ۞#lL9yD_xB|] 6:D N= []~]V"qbZN5?mˈoIcP+GxHCmVI,,? gɆpfq]ZQ6b: 3`vBwWM~̘~hC_UoreŻ)X.bW?cK+4Xwr<΁&uf ~dRX'?)Yۭ_'t-5JDO7m>JLtxfݫ$ToC|ZI8WkCmIt\<ހхmP)C6~NCk k}kIkVHv׶7mnD},y阠4|Xg9jmC m##=^qak3vLׯ .@ Um!7Ha);r?Ll/v vvDے4;Y =KB |n՟mBMl d^N`1d(_h[G5grq-W$N{76[z +Gt }@/)-h Ώ{ϑ.nhC4<9w '8 Uڇ;"qķ1tɌ9d Mg(B|+g=;*.LATN_ Mz%w0 Hrqu`_.V=wA1+xF#5;~(d/@]ZG/tz(g~{*XBM4]%嘣\ܡ^n֯ ƛ5b_;.uIإ\sCʥM#ZoL}gZ>\uv\V3օamwD̑pZdY,n]膻E?׺ZjR*_kZ 3"X5MWv3LlK0_֕9@\D"%£e8,uS҆㣭 H7/θt[ "=1 fF T$=)RE( *fsv !T;Ώ<&fŤC:ѭ뽺u9|ެ;(y]OGxd LH2#0h1.v i*7wbj2e'JxN%k<ڀP9b˯ { " )1ŭ9\ /CK."SMfs(JP S .3P6ˉrm-mGace90s/\sr)+lOy9 ZtԦu_i-0#a+YOr4xUn[TpH neGp{EL.\`uoLnLbttwA_Gt9ixLs-81+{/ByĉܸSpdk"f6vgiTzN^II;ǀrALJЏS2k4[-*JC:lE'  plrgr] GaLBWq` ג\SvKHaƱ-s#1 R0x7±5Z{ї~4 y7ssawu pQV[Y<|~ᰃDg-$J}COܵ Uon@<\`V頫qoBٍ 7f Bpx7yB)8|e+Z|# rRb;)0/b p]-m-[!\siع BXcsswKm~dȧ4?Ӹq>;_BWcj+T۔+b4UӠ * 2Hg ڴ9|LhQ ,x Ca/]Ut2c\ BUSnm7$D !2K^ۃR4ޥNۀ$yt{ )gӄ+),fMn%E؍ǬD7[,}VbNq(ߒYV\%@B]d՞؄Xp6,eSFh":HM4)5g#4Gr!\Q(Sji& 1-}íS1-~ : 2$qheWnouRQ K~}B~WVx eXP)S-2XiNl]dHNz8bǠS },G98%HzXa>wU])þpIr2bkalzxm Pq@&A <cfl>@I@cgAK-/ A[Ju:pf?K '.B*_kR/{"AE'_ @[Yl(pyVs2;–fƃS9ܺۂ!'inO*I~I;8lfF$dO\7;<5 r~ދ,Y*8!CJk1Қ37mt3DZ6!R3D. :T`MzVьN 1B!1ŝ9rlAĖЩEAܼOؙOxv Nwpf3ctPc_CHɱ.74 } ߬-)I4/tt_oFɛꓟ|OqukR!%(t߁34 9Ź4N!5*\۽N|G?FZabmn, =rmx5 f/S$5Cy.Q/gFï n //ql?)G_Xƃs:SN# Ceez\LF'ׂ~> b%L _4pc 2O0b+5՘X?Hґ%ʯĚDž*MOB+>(Kš L|@ N}:ހt;tjؾWWV_~`67C ^BblR`pSQB:m§OS&z3_YrRVVقyc,~aF1`)u2OMgX6|e4~(euTH :^ڬSVqݴ_{9c ~ĎQtm&NfX2gvzuw%*W3p}O1Y:4vAcA'}.u30OvG+馶 Wpyq9"x*wze^&:b0p3?6@ Y窩殬}u͹p(`Uˉx5arqW!ڀ="h A,]7n͵rr-PhBaɵni܍g BzJ[Tanl0kWO "S?JW}*b"d ;EXyrA-D _uB1Q${,ɕ-bAaf- Hvl[ڲbHJF[băiN`_JT}[~ue Lе҇'ٯ+0OOGfgF+^`F/YpDc؞Zj Ybz4M)LU^H0&T'\(x ՋOr c 6W5EY8E *m_[='ٲ^Cz6^ 2ܬ ԕSobzǁT>D}& ärz!OD~?Vy*8GT> oRvCהCϥ0_AʓDZ?~7}\'=ձST?G&5>=A܏x)L`~4H<`Ifg{:z^6e_SMMTޙhqkY\a`͊6 &M<(o Z}2噇1J(Ļ\΋w^ ] ޹}q:gR}k8 W8pFhtg8:E]j Hǧ3`;>q2>+Ja t((4 * y cQ Q{ ]ȘםI4_0E@d\gJFrIx.># &9za#f{xBy7(OGG<(i~4$ ͭ3󌻽>ԉu '%bۧ)8!WL=vk}P:ԂM=_n't̜)6#`HaE;<7/W ]u^ j6H{KFzB&: .Ǎ\^3>.bWפ99fisemOB﹛?4W9Kp'`OF,?N"t(}~(}4X~Tݍyo@tH⚢V:۸  B42L]Ҡus4)f)f5)ʕNߖ m3rиi~»΍we2yvyk[/0-C^z$/e9YERUОpCӴkW0` :!t_x`tpLCt|V)ƍ{#pSy=%< &]IyROw'LiU;&;y6lr0 y؄1=SC s9($m 4~ĝDep}rR8Zȅ?As3BO6YB36.kg,\/QGtAGS^1N7z$z$Zy'd%ެV6~ [PKaGYZ3 6+ʘoW [Ey>ѯAM_|v>== jCυo8 ;נK@5c'@xM3M-THF^F3nCMn>$>}u+֚6VK -^ ͯo9N`qSHH/4H^uЫՉD2FQ'deD*rt#vR0qR^j^Xq͘1DWRb.,2J0 9{5Et<>؉F2ų=qbv~ ̒܏.!l%1mu7v͇aX0nהmsfjb)rgk pjUI,qqK3c5r ݪ)+9ë"+"Osȯ׿_mg(&2}v  ;RxQl_\3V隸H,7!ِuCVۧC,!}g;)@:>doɌT !Uj9F\s3.Q>LЯ#HA8](=ib5 .C6 Γmh5a ͐rצN3.h\:T [lEpPNJ1{qew/gBKɄhּcyH9R(yy4L.-ZĹܟk7~lpz_tX;W5|)axz®=՟ht]B44-[Q~4~^-ơw*ۗucF Lnmx[I.96a ?5Hhx Űqr!@.'M0sii&*:[ ykS;Xe6EMnlp[MA.gl9 `~9+%-6v&/kx W_gQj6nCpΩ KElmQjpfNx*O?4d @M8 y(I++SJ%!Y7Ӥ&qOֺ[(o\p#-FcR__'4G+a/*@6s@HmY. {FWF.qWhi8%5SpXG4.%u;h~Z+pYM'_io ,C\,;a[s6:ٴQ襞iaz1fM^$쐸_<ւ6$,LΊ |/~ʷ=xt fU&FnH*|'Ʒ[NI2ܭrvdf[f~oQ"${+T+ǽQ3-Ȑv~ 8Ҡ9zn`cS(:Z)W_c!Y(G^mE!Rr,${C^рt9~!zSVA%S<MT"o,H$ D47-bKU`\S焒]A09=HZGwUDHIH:2yE4*₊ZziD5{&~;CZPGuަ =:&Ww>A7fOq8Z!QS-f|1y\C|Tԇ}it1> |~eאɁ(x.(7)  bk^Z7Rϋj_49~+2ccGb/w3*^0QDڛ*2.(9zr>JK+qgܝl2)ĝEO[!Ui/QozCbhMEX3Cz 7-WRDd/{YeZvk! TphT ʘT<,Q')P }?~4E[v鶡C'8y߼Ȼkx(u~qĦ838+ 1Lz ,J -'PJ瓢@&'D3ȈN-xJNk ".%9 I&  alKuI,~97xC \#^膵+? }cuȢ1O][w)/R ^΂?zOT/d4Lݥ$I*Ln,Ӎ1R֜a#:vߤE,(yKO5ozSrKٛiҷuעC]&R1躗HmQ/K'4uK]tftG//=.Wׁ>` ;Cd+H;=)Rx-RM|}_yAu_*i`JV'U_$+{S(E:nLOb`>xP"()B'.47(dVG}J:(El(ىYJI6j2ce KjƵM~TǙp 蛩D}U;ٹ)äBBioࣨxw3I62 ,1ꢫ&%&&&l"BTZ+)BaZZ־V+H_T YF0䍗y9wf}̝;{{ CvծѸTgOך 8.A[cGq!|sh6 } ͻ [L~GiŇq2&#ﯺԏ:5$Av#W#R/o B3>S">wlG EBGm (R}ar q!TߵhM 2'^*F][q$SB{ZX30e[ڜ}e(|n lT:cUf5I['QDnA!Z<{mo1K!K`ikóN^~,4 ;cg&  MQ%?+/ȓ #飤N)ˊeB~k""Q:C?Ofu] +Gp,wkJvэ [.%XY:G>$x9B^w kgΰHZ*?۫k?6 s4 4BvtM(X!y~[xSmab̹и1+S\z;pP==hp媿#^PiJd*U|xɒ~6|;$ zj 0|))g£^jLpU袮 !N%;F%jLwdӥN3rUu'6R@sis%];2/Og>ZpAfvxW#J ] ZuGg/ŽUcZ>x Nh{~|^1pˎTؘAQ"ecU1a`-IuTq nL( tN1"F9P$.ywY%TJ>J9~ J6mǖ}z9+y qP7ɉW;5/rq80o:Bs>aޢx@q?@foTYha`tJnG⧒yz)o cElXNCE 9В^\fnT7܏+݄_1n ԓBBq>Aa(&_|7w]C<4߮@ 1:x;{1"Rwi p,t2Wc!ejI[Vܪ\h|M) Q@?k΂Ů@ )DMvpà3ŒO**>'EAvŔ vd;Y3CʕB_NC<[WA GIqtM)Q:)~NiV?:u>\j ُRVُREU=(lր 3QzIێ|T$md; ܆WS\uRbNmw7or\n}25G-LXA c%j̑؃wlx巅?EjN+] YD6K}sJqmo><4;"Ǎf}͒'>"t Ja־-0D  D!iRP4i5Y@)f x)z.5 P)-s͡i:RUmQ7?ႜF6yP >unyN#*q}QлߎxԔđ[]"VPd^jf '0Qf雮祱}6#DFLqy>oK5>^a$ =Lڭj8|~J( /N;+DA0F[;Ob~t11Xe7ܖb!<;na[l -+,j(3)(wcԏѱ5q`~܏>f6Ƭ pqWC+7Nx6`pǷQVj}Q1{ǩѓq ej1jN+T_M科\ Oiߥ_=z12~JSa#LljCڼ,ILjt Ji~lO8:8$$;/1`XljZQD#1F WWez5Fzk kK|Ju滘,ε;,ꇣ0^6OPwĄkVj%BՏͫP1(|cթ>{,]x:`N_vU(#l CYkJ O9b[\6.cW#r(%r |68_WAտ 'I6a󜸗<6-t9WdBbuZZ͍PS+ ]܎F?vV&>\u b fBa|z H wHkwU$sF+E[ͷϰRwkȠ qn"s>#gmCТ EdZ6Tc OkѸFU N;LL3Ӗ8 BC4? 0drGJ`pjQS`nqH捔GX-Bsg9lkZЅV(lCg_x9~ÿ oG&SfeS6SY_q@n{ߛC=:ThQ&">+KlHC%Xz7JY:W$ +gQh!vYYo$ P=6uJz5`X×< tnw&ߴ>`^xeTȓXh "t2`'0y^PI_ߕgTFv{*1!T0q!y㤬.%MżBPgn? *!F`N<~؇c{б|E%|H@} ҵ81:#`|EfvcPGGj=*=ꋯs7SqEmXj6U16tġ9`nCt"q_wo stֿuπd -;)A#9 yor9Rl)IdGfv5ѿg4;XB<;3T0@e))V4+&r(OXVOO'L!!G[O?3 Kbpuε\q}yNk oN4BSعd嫵WF|N(u1|_ ä^ :vXnK*p+a{Ԥ:@tZF2^pneZqXd6KZ̑ ]n7h 0ghMfཻBCV*xˑee8SM;4&WlJ\ ;~D }%Wg5<# 2G FF%'"tyPw.l\ 6"KqRD_+ظ,bu |#w 9(P +rCMpkߺ/rU6 &MlRͬύ @=2)G4cCbMʱ G6+ŗ#i)Q*sawfMrlļw!R}t3Y=T=MP&o]Kb6ȀuՅ$T'„ 㨦1ݬ&z0S}nb~Mѐ_CC6 Oa5Ѡ(+sd+]cz qC7Ln<HG,z[0E&['u} zpv[?@­_9SKh?o E|5.hIée1O2HځP\g;(au}Qœ]b&{(!rF| ?@W^Ļ[.+:SLΆI90ŧA 4䍲K@!BݸڄHa >#[:ltw2uIp&BDhđree 4p :4m| m4\֮l4/Qa8u[Z+Q9J%)2%䷅OqE 7*EJ|jWcNk;nmx%Rf/RAs!K Zbο3"jrn(‘ި̨T|߯Ix[Q.yjԎ4/[\X x^~({@4wʳ_ET,ϡL[ڮ&'`'}DBQVqՔpMDh~ !TѭgA=2l7ށ6|F=.l+|u Vt9fzOKxDծ0 o=$5 TZ1|QB04kK9w'T37׼ē: z3eq˭(OkEQ%rO-i㧨G#._B"b#kRԆG Ljep/G#}a"ٰmRtJIxÈo^&}Bճg[qE\"+Hl! {D"hSOkBjyV(>*--ī kx1`qM[Yfe++$#Bw s&[|v/N9XYi/wu =N1ioTYq>TJeâPlWA.ɖ˷vB{עO}.¯].aѫI~e- 5W%pP٫r|'y k() p[ +;#m 0$ xfU9vΩ&j9ncv.ߍ 9s=;efϬ|P z-c9hPB4'PUΘZ9ܗT>lg܌(, zؾ#SVW]8кС\”ǥqf;]4/# ʗ]R8O$G(=S:j&!bs_M;y8N"P)\4=_,6VW`ݭX&< qyESRic=Yj~C7stgPɇo׉fȾcȱ3_]G{uU6_0Z`fM1;!mgpw(xf&L-{'1^nw+W|B~q5?dv1؉ofLW "lA BCծa >a^;0R>PwRQ6ۙ4)5KA' 5Ǒ?Gs9D$keYl$<+ۃn)K #;ɞA:l_Gf7F`Pc^J(ud6c%84YF㞽n^?4ފ)(,O3Yyq2gjIȎ4|:N8j14RNRӡm28 ϼgAE}R*Ljgu*P!+~.,qSo mI%'qtfmŽәS{D}:ֵ᭑P&[` R`YtWa KUGp4"hS}F/'~. MIw TaltG03Ю ^Pg'+!N>#<5a(Nq{HuչxZ.2]?Fawެ!z7b'P,ffmbazR8<'N8w?pߖT:gAc},%g 03gfCf8G=MG}IIeGSNpΜTKF)2x'ؙ B'd)}U1%a6NCu?gx'38 )`JCv&raӺ,d?$3AF ŕD-K")Q U}2-~U W1F=ay\CtʾP;Mb:Q:4^߅iNO'4|#t|)pDlOZAazQsq}qnb$P>sq>ͦPSB5Ey_S/D;1}kE4x;a{ .\Fv'udSQ~͉$*"J΅;zeˆ]Űs#nD5R& >_`Z1ӕ4gVxKcY EܪfM 3z,VJlgq,Mse5@=aJ\ sgttdkeb)A:qCB(oz,Pe"|#,` qϨE1Ⱥ@`^/ZF:jE&Aт's'KeE1'1TN#UTw~=>ҴwYBI%0Fsc8lNp;룉 P1% z $dc–>bup43-1|-\LmYk0؜he6!m >4:]:H}2 0v`N}K.3׫tnQ`$[pܣ%6Z\lW=Q@ g5hr "Cq狝;KIKХSm(mS fJGH><‰}<:vgR3=R -qbΎ6u53:J^xfQME`N} *uVNB3VJn7C}@B8-4A6kP|9Cc Q* {ҔlC: q~ 9>['rZ{ f9{4H+uGqcW*kȧPmO ~uQ`6H.j.KyEbtq dI֒A&/8 !D_2H۴[/TOM|a/ /܀!'f.k;J3ҠvVFmV.X`F^ M^=KɭFb-k\gf$S\fgh=˕,Ky*bMǙs)":vʇNK<f}CyZUYB|/b("D{tJ7˂1 \:O>RU婛Ys!txϡcJ'zt.5M[^xf;4Қ0 \:QJ,}~KIAP@'.+Bu$Te.9 :cuqȢʁjsmaĨ$N,AzZ)'R'N R7Q3Y6>qOt~}nqrEYgjq}uzi\UN ?'1lUݛ?rUZNUP>[-t }63{B*aAxe%/2#dE ʂ%+uVmd\׆rnS-s̎j),o#҄tKi0#m0WkmOkg[*Z.l#/s)q}Bl0g(mhD2iMj9Ml]%'Im!Bm!'IhK|Q m(H@g՚N NM؊K+#wTó>m5PqW6.wltHgٷeoK&*AT`ڽ<1Dd))**Ob͓0FBfXVi+ȦV|׷f ^2^5m-pe=?z,N-2= sz}#QK"WJ a)-vˆv(m#MV"`?lA1ޅ> Lr0r$,?]jMF`PK0K(5G%ܼF`W;6#[3̊\ڙXói˕>Ll{ZS_E3@sLZ*=hzSpl-\nU;$ux.RP0>KͰ m$**6p/̍NxMy-<頍R ?h찢ZɃwg}4x';uT_Mgfc{]~<(- +a\yOAEa 3eإ6,%CtKqmO5r=xgM~Z(rJpCU ٠Bŗ˝wx:tJ>NVXh㝸+%R*sI>1!Lj:m8]Vz%@{2_Z}94g_ \Ϡ3h^4id}t`P;̭ie]x:RT3 סXbt1x}ӠOx3тz[{;=k:mg#hym~~Yl ߚfm I}$jw&MI (VԞc=*zH`N5,NGucP6X1ȧ:lh|ͪC/_O9{7[lw ދ Pƒ_P+਀(V4*bM1TXֆ7[ZG;"{`⪦km>"t]߀e9݇A>zx➎mYoNZ(AC32HmtEw&r 7w/@!>[G,E9ځM-@SPwTy<ĎVŶITPo?UH$ůMڜ>N۵ۃB0} >#$H6,{sg&VUMc<]<= 5 y2S IKz,@4xIPl(ۭNz`RC:u].y`*l_|r6 q:= '1-'/%fWѵ-Bxט 7H;%]Gp]_O]>+C)!t:MO}&ՀXTP91|-r|GDЊȵ4JϤg_# 6+(л&5YxX \_&}ķ_0XZjdo薝_IW,RsBP /Hm#.gqah 7cݔrҬ8[;^Mx k1}v/Დqѥ+>!+U;lT;m@^IKk.v,|1TfYspzf ?!-I\\~|>BL˕2h^~#D5ĮSode#JYhf:\*p(,nrĶ`;|2_ 6h֑7,_7Ak(x R+/1Ȼ#jXo I [TL;s0OQn4MI6cɞkoy Ƕ#'' pd [ oW_Eu?jb 1/>p1%a O^O^k vudrBs1| v%Bc߇_K>\ Y)moⰞwV8c)aU;!KHELlS{9&MnғQlv7i65Ԝ}'~}nAlԭWհ>3( 5(UCNmJ*n:6}J\^Lr'AQ*ʣ|A?ЍؠfAR~} \#Hj(5RNo#чY:79t߶^}{݌f|u4ʹKSDcs`+.p;SIJnP=rǍ>h&>`=f텺>=6co{jseg1Yo8'VVߌL#ΏLxL ,!2,12']$-)VMBq /BUtzr<. lSNz@.KŰM4d`lO#AԩN .tv728A0bn0KZU_k +N&\]vAlB ǿg ^06᷽؄'.'6cj*6'26A=Nʒt&؏ݾ4NPlflFl·NSf &V!xtB(%lRsC%xkJPBh#(sھ2(ޯ J8EA  %m]fHlh?.{B! k.+ NOs{882`^.O {vőIxLIb[E1z?&+tB-'x'}1"ߡx/֛U)PUsP?w V,;_hp ZӒKgb n3HgLktwq 2—tK<ΠgǴ( 3ShBȁp~9m g^p!=jD!&CiT\@'Z G(:/e0Q;9QeAÑ G=uQ/e0(m#݀{*҈oN5.Nw&BK12'U{wərlфqAdhK@ǑG0_ 42+ V خ ~nZaҡ#T+(= V(wv$>w*l:hUul2"O\z_4 >=:#>c< @t##0R`5 3)pRq,y-G, r zI"pY\en`͡2\*Llq6D+GF^(G pn5{rXg {[nwn%1@:l>q{{tsZڵܧ{mD#ʃՃӔY|-Tj:64ƭ[y;qb)F&:`HєIڠ vt-Wv)䐆~.ȅ)g IMz͕]jC ˲i Ew؋dN20!]zAʸh9?}ף}] H ҍ>kHqOH5!!ݯY/xx._Ft $H~Ly6\3䓶3gc]zPG#d4j|͢kߒ_:Lvp.J4y[ 7RI0DLWE/7•K|d:ՋF8jR(V7#_ida Cx)Uۅ)U[=/hc6T͡i~Sm;ˀ┭mֶ֖NF G;Krk'(b&201 mo@} FM.5m;dNa}MBݹ gC }M6@n~Kﰈk Lx*Th+NNT{$c!֢]/ Z0e|4@,3FG-SժߧP HP@64Jy2I{'TafC OL;(1,f7h8~F*(O OL6R}0B{&(=ȕS-SgSudσt$j;I/ԑgV}OFWK:ͫ Ii?׫GcpJ<6EYbobN2O EHԤn2pT$u=U)(m8eC>{(Ø[yjs9vmu 2X2>m^}hL<ɻ?fPФ ߥZnb)~n$C<]lLKQt#t8,#@;67O<4ѡ>ȣOg5|]d:!ƬY? Xs'}^ȶ|+>q+?J5N|C dlxT=hmp{)|:Ao+RFlc[Q$oeR`\Yl]ڈCJQw` NmR*AA%P* $η0[QP]@@<$%cT(YjO-aR^Dmݏ9ԝ[؁A%ng6j%ʣe)f_]cM>+*SJm}KAtK[A}OZ}cia霷q!4 W(퇀AWˀ.'gmtL35\ޛ]F[#!S#tiЪR—T܉ۮw1$5(W/濻`$46Dź{ ]\MjUe',}Ȉ@-`vؼ% 6eJYuvc'#!|FC.¡GYO2O#\oz2Pn<tHg\KD` hil9v@Hs"jFciǣ$;>6g㥿{e0vCrruKO:*Lq`sHN-w]]𨗿 `և(QȑF:p#?w OQyZ2Y2J0䲂'FؕҨ [Te 07vh# ~|1GSui#"9LU17)FJ$\ V Lz `]€ eJ& vn{R'b8gQcDC};MW]2 & 6ぐP+Zbʥȏ_bPS-jեHN i Fm SAu E7$e h}M qh^JZ3RUσ[cig1k )dm0̰֐0G9(OH SSQ4%p`~Tp86[aܗE+m yu)3/ivef<>SFv6}EmE WAoP6) dGk.JM<WCP`i dOr #՛Bo3t]p]=SgiyLfZǣh"򏨀pasNǥfaMNs?0, p1U p!3<o1?X2⪛uҷ7qOR 󹴹pP\:*d[$Cà@Z|K2-S\u;-b1^ T.J+Sw/tTDݴYC[B+f'-d*q͗nT8CQM2CO`sr=0~?;ōcyh+&i1u*")pɻZ̻MLk}=IC D~R+5>y2y0\V'l+M?.ʝg It](Z((ځ$`6 ި*ߕ[GˆOB6@:/F`f͢Br91 Cӭdž1! eF Nz^Ğ) 10V7bdZWYr1"W;K\Sт}`\A7a!=k~lUfw=ƞFt+hKEaxqqKPL[$9pRg(t,Y@$}&ob4 Z4J&}e2 @&Ю& 6}u@8k,q#ξk!w \I c #Ka2'ⓢ&:]g]xkA:ĉ޲ 9Xw PKze 'zo ,HϛGew8;24f{rX\!4tøj}(OzCr;ဣe9Ғ)sPe<`n^Dkq'xgS~JעI9S9vV?l3R fb1?vNfF%s{|L ,w//"e,WW[C7(ާǎUT'܇těaS_~p>k־*wl'~qr;nT/ x1Bn1P=$Yv5 QA֞p̯w6'tm-k.I-@U%Ɂ t2n]Vvc[(-Z4HdWHl-~؋U:W&)*ڎmX(1kHq}q(u'+{l⫯$ɵ8e-+IcO+wC:/'op H)Pd_bfkxnކvY-tHrns'}DvhWv⹺daw KU؄:`U>60i":JŗK}uìjZxLCm{05lݬȪ v0p[1@,-Nk P P+5ⳎX4A XOƣB+GR b~(H\/Xa opy(@I;]]fꁷ39*e/smgewW s~Vl@0x ?4,rCMitO/@ 0V9ᮟm]&~41j}\FI{8D)j{VZtQ.MZֿТ!_ۢ ׼-<<1"([x,R0- +X|9ڂ̜[ u#Bk=Ph CS)i_]BvqiTky:JVݓ ˄MF\|;4iBR-`M l:.v y3S%-E,xbWQ]'qLT5$/RLxE?{2ۓ"#xGtӬ|m+" xFn% %v.`az z ] fen :fƫM/u?_,I뱟ՒAshDcwfh^]a47h- 5&j|u$ͳ["E #b$ a߾95_vPz@.:HX<:0%FQNL[_!.q%akGMyԐzۑiɰ?̀ RYz6o…pk \[,togC".m<2hZXV]-@`9@˱ =)\gM@SJnx~5?tƽV?|(6uFl![F.wShz{0?%KnBU l VkPg?ŷ @CIreUM3u6 JdTFNsB-A*lخ[[%dlL%(&RS} n]6|%&Ғ9hلM=xOwI5_[Kql9Gqce}A;^&Teiljg'@(Qsʑr/ge? }B\>hsAAW>@׵M`]eߦ`}% . e7s_"F_$Fi.׿XW9/T',U6%XcdP1lvs>W ^s.>M~wBc/K9 .~nU=MS~ n& h,` sqm†tʌ")jʯ$m%Z^3IÚ+ita&iMHȑ`M-5t15+bhL ZɳJ=qY֎wL9^B(7~NW̡+{`c7̥+WS=z+}x<˗c gR863e64.($[ ݨčuKva "  ?L խ4:<^j@ҙ*G-O5eQ#o`d)u6q)!Ǥc{YL Lf2tE&G:̽2EV'~@kG"}vEe[je:!"=3p2-tɓ }a.37j){$F+NB|(k)  2wO2$AS4SpA 4~EzݘL58€][z`^8 w^،4|WV˺u[iA3g{\F V#FnJQ ?+\\[eכ1y6t.{a!g>@UU<@7JEϦ.<6Z?J<"cnQsA$us0}&А5X7J%l 3b[ٖ3WP_1^L'3tƨݗT vkqI8o,7 YCKV1aL&YvR23({:FO 2'fVs{Tac'qrB-ij55Lc7' "R_gur%-p{f_$f蟴;B+q`+7~|iODc,BsR%T Tծ߰hťQJ@K%*8-dY V^kuX[ ⋤9K}\!ƇN#ʣs@V\g 9H.m>N(2,M=ca}‭ݧ$:x!PGjY]WGN&"wI+ Zy< a۷yB0 ;ESz:v 6TW[j+)XX]x@zM_b#7&[BLe0+͟)[bZ*ˤaV? tyʦ넽bOF\g2o4̆=3X\ 6N*Svp-;'|(ۚPrZl%1Jd+9a{t`5W0`@ISXjY!j{J:S1iiE4,r/)߃$Uo/Ǣy_Q4k@XIi F΅ڔ~mU?[s="+i(DbQ9Xqnq {zӨ LxcR-J#lq:rKue|"{a-f-.WX촑MsQP}sиzagxbۚAoL}j u19 mjM))w R[-uعO ̋0]$. aZ" Epcذ[W'ŗ˗hc2<1 ʴAX]y%vOFeP@O0:dp$l-pkkVl[yGW~Ϙ؉x'Eu#z{pnYl[ݼz_wx"]+Vj˗߈m :?~ɱՈ \òF%ėQЄ>ǴIV4EH}p_> S&n0@ B߱ofb[7 UJn@n\}ZS Yem|K|q>V?z[!f~)/@q"d{z(CDE׆Cj =M*:tю_&?ZσNa1am2jU?zkq]Q@q'\5"Ud'@B7ęlzC(Y4bF{Nki#KjC /pA'(~m/1 4|utJ>qHWWΑj0%T:9ޕ]G\Dm!E&Faͼ4.m.<%<uX>c"a.|ؗ{0BZCsWUyf,1meuΤX}Ь<|^d[hY@:$U*ΧU05ÔyWK{Bqdl⢜W- ~LZ|R/\ih#n %`=tU1DZ^k5Ulw%|iӠBwqrkUgQ]8~bm7(>x^]qvG"o> ^~% {~dQ 4@=R[Ex$P~T̟Tn(?o+^t%f;åW<&Z#l4~bӠ`;T3uR Ԍ#z*s!t$?P} C$cxKJI%ru#0i<e헰u-ǚ+\ AR8jk.;*,!4ntwpv+ܖ6-R=iE/l gK}P:8XigK&6UB9mK% U 4y@nBd `~.T'ϐȑa2[hr{Bqc=$hV`fdž>&kzX?%":KtV.ʁ=ŭN@FNBdVACM53g!ʋwzihyxOwj2&l;?orFeGB- T7Bԝ?|Y5f$3-}[@ U€ 攫( u2Dƫ0h*}ll-@k)N?湔u|AIlsؐ>Ϛݦ=CnIu  G#Czum2=eR'##(D_w]c.¸_g~B֗\rŭ y]6Ш')=" 9.(LȒ z) el.66pe5u㷻Ng|y6VnDMydBUd#7~몪('2l$6Q1:ů .ẹ_z{H)Cd5*ƅBZB YQZ0!o hXoxF9oN`M$V N鰖:ō;d{bйNMf3'VZ|ˡuqKcWCæ{Q\ >[)^Zkn35w9:!6G^-1=Gsn G$U/~E/5M>1R ,|]+<4Fçs s9 ~-Rpneb8QE8E\ilK-)4KsZcM<L6