aaa_base-84.87+git20180409.04c9dae-lp150.1.1 >  A ZܷI/=„ ۩Mq]ۦ4mT74C@H}d.ѹg,˜Aelj)SsT~p!L[`)5?#>m J3`D|CV ꘰YH%GŰI:q(/ېOł={yE5sKvxOUE'+N[ccEˠ#la|}.ƕfLwf&!*p ͇,,Zc1sp9.,Mʗ9513ec10e6b63ddc8b23629a890658ea81d1aa94cedc0beb64249996150484f21803538a8eaefb809c7e23da1cf37176effacb708tZܷI/=„g'}SSu5yK}TbNn7'أmgQ7?-k?ÍV@XQ' ~Ƨ-@b:puǩMLD=mu.]-q8\\7Xn%Ki+LQPDdjlb~;ISw;F Y]ߋ`xT"b{ë_25_}7Tů O'<ˆMF fak1HEWTxlU`]TSdzBPSHśT;R*G>pK?d % / E $ == J= =  = += ,=-=.=/00=1$ 1|134$4(46(4784@9:@:Px=I>QBYFbGx=Hl=I`=Xߠ Y Z\[`\|=]p=^Fbc*deflu=v w=x=yz(0DJCaaa_base84.87+git20180409.04c9daelp150.1.1openSUSE Base PackageThis package installs several important configuration files and central scripts.Zܷ"*) LOCALFILE_CONTAINS_DATA=true ;; "echo "*) ;; ". /etc/rc.config") ;; "exit "*) ;; "") ;; *) LOCALFILE_CONTAINS_DATA=true ;; esac done < $LOCALFILE test "$LOCALFILE_CONTAINS_DATA" = false && rm -f $LOCALFILE done #!/bin/bash # # # post.sh - to be done after extraction # # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # # Run this script in C-Locale, or some tools will fail. export LC_ALL=C test -n "$FIRST_ARG" || FIRST_ARG=$1 # # to make sure, /var/lib/YaST/bin/bootsetup runs fine, delete # /usr/lib/YaST/.configured2 test -e /usr/lib/YaST/.configured2 && rm -f /usr/lib/YaST/.configured2 # # there are some installation with an etc/psdevtab, which is only readable # for root - this slows ps for any other user. starting ps as root, creates # it, when it doesn't exist (readable). So simply delete it. # test -e /etc/psdevtab && rm -f /etc/psdevtab if [ "$FIRST_ARG" -gt 1 ]; then # boot variables dropped after 13.1 PNAME=boot DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in PROMPT_FOR_CONFIRM CONFIRM_PROMPT_TIMEOUT RUN_PARALLEL FLOW_CONTROL FSCK_MAX_INST KLOGCONSOLE_PARAMS ENFORCE_BLOGD ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done # clock variables dropped after 13.1 PNAME=clock DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in SYSTOHC FORCE_SYSTOHC BADYEAR HCTOSYS_DEVICE USE_HWCLOCK USE_ADJUST ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done # shutdown variables dropped after 13.1 PNAME=shutdown DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in HALT_SOUND HALT_POWERDOWN_INSERT HALT HALT_NETWORK HALT_DISKS ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done # variables droped in 13.1 old_cron_vars="MAX_DAYS_IN_TMP MAX_DAYS_IN_LONG_TMP TMP_DIRS_TO_CLEAR LONG_TMP_DIRS_TO_CLEAR OWNER_TO_KEEP_IN_TMP CLEAR_TMP_DIRS_AT_BOOTUP" PNAME=cron DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in $old_cron_vars ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done if [ "$MAX_DAYS_IN_TMP" != '0' -a "$MAX_DAYS_IN_TMP" != 'no' -o \ "$MAX_DAYS_IN_LONG_TMP" != '0' -a "$MAX_DAYS_IN_LONG_TMP" != 'no' -o \ "$CLEAR_TMP_DIRS_AT_BOOTUP" != 'no' ]; then mkdir -p '/var/adm/update-messages' msgfile='/var/adm/update-messages/aaa_base-84.87+git20180409.04c9dae-lp150.1.1-tmpdirs' for i in $old_cron_vars; do eval v=\$$i [ -n "$v" -a "$v" != 'no' ] || continue if [ ! -e "$msgfile" ]; then cat > "$msgfile" <<-EOF sysconfig settings for cleaning up temporary directories are no longer supported. Some of the features are provided by systemd's tmpfile mechanism instead. Please refer to 'man tmpfiles.d' for more information. Here are the old settings for reference: EOF fi echo "$i=$v" >> "$msgfile" done fi fi if ! [ -d /etc/sysconfig ] ; then mkdir -p /etc/sysconfig fi for i in language proxy windowmanager ; do PNAME=$i SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi done if [ -e /etc/sysconfig/sysctl ]; then echo "merging /etc/sysconfig/sysctl into /etc/sysctl.conf ..." /usr/lib/base-scripts/convert_sysctl mv /etc/sysconfig/sysctl /etc/sysconfig/sysctl.rpmsave fi test -e /etc/sysctl.conf || cat </etc/sysctl.conf #### # # /etc/sysctl.conf is meant for local sysctl settings # # sysctl reads settings from the following locations: # /boot/sysctl.conf- # /lib/sysctl.d/*.conf # /usr/lib/sysctl.d/*.conf # /usr/local/lib/sysctl.d/*.conf # /etc/sysctl.d/*.conf # /run/sysctl.d/*.conf # /etc/sysctl.conf # # To disable or override a distribution provided file just place a # file with the same name in /etc/sysctl.d/ # # See sysctl.conf(5), sysctl.d(5) and sysctl(8) for more information # #### EOF # # create mtab if it does not exist # if test ! -e /etc/mtab; then ln -sf /proc/self/mounts /etc/mtab fi while read file owner mode; do test -h "$file" && continue test -e "$file" || touch "$file" chmod "$mode" "$file" chown "$owner" "$file" done <@Y1S@Y@YY Y@X:@X@XO@Wڍ@WQW@W.@W9WYZ@WN@WL+@WX@W@WKVVwV^@VTQ@V/g@V/g@V/g@U@U?v@U:0@T@TD@TD@T,@T@TuTPTTT @SS׌S@SϣSSSǺS@SS@SS @Sl@SNpSB@S@SnS(SSR@R@R@RJ@RUR@R@R@R@R@M>@M6@M5M4/@M1@M-M,F@M# MM @ML!L!L@LLLr@Lr@LLډ@Lډ@Lډ@Lډ@L7L7L7LҠ@LNLNL+@L@LLL@LzL@LwLvW@LuLc@LQm@LN@L@IL=L1@L@LL0LGK@KK@K@K@K@K@K#@KKKKKKŮ@K@K@KK@K@K8@KKKKKKKf@KK@K~}@K}+K}+KzKy7@KwKwKl@KO@KMKMK(K?KKKVK @K KKJ@J@JTĴJ1@J1@JH@JJ$J@JJ@Jx"Jq@JhPJf@Jf@Jf@J`gJ`gJ]J\s@J\s@J3J0J/@J,@J dJJ@III@IcIcIo@II@Iд@I@IIm@werner@suse.defvogt@suse.comopensuse-packaging@opensuse.orgkukuk@suse.dekukuk@suse.dekukuk@suse.dekukuk@suse.dekukuk@suse.dekukuk@suse.deopensuse-packaging@opensuse.orgopensuse-packaging@opensuse.orgopensuse-packaging@opensuse.orgopensuse-packaging@opensuse.orgopensuse-packaging@opensuse.orgopensuse-packaging@opensuse.orgwerner@suse.delnussel@suse.dedimstar@opensuse.orgrbrown@suse.comlnussel@suse.dekukuk@suse.devuntz@opensuse.orglnussel@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.delnussel@suse.dewerner@suse.dero@suse.dero@suse.dewerner@suse.dero@suse.dewerner@suse.dewerner@suse.delnussel@suse.dewerner@suse.deopensuse-packaging@opensuse.orgro@suse.comro@suse.comro@suse.comwerner@suse.delnussel@suse.dewerner@suse.dewerner@suse.dero@suse.comro@suse.comro@suse.comro@suse.comro@suse.comro@suse.comwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.deUTC arvidjaar@gmail.comaj@suse.dewerner@suse.dero@suse.delnussel@suse.delnussel@suse.delnussel@suse.dero@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dero@suse.comro@suse.comro@suse.comlnussel@suse.dewerner@suse.dero@suse.delnussel@suse.dewerner@suse.delnussel@suse.dethomas.blume@suse.comcoolo@suse.comwerner@suse.dero@suse.comro@suse.comwerner@suse.dewerner@suse.delnussel@suse.delnussel@suse.dewerner@suse.dewerner@suse.delnussel@suse.dewerner@suse.delnussel@suse.dero@suse.comlnussel@suse.dero@suse.comgber@opensuse.orgmvyskocil@suse.czwerner@suse.dewerner@suse.deaj@suse.comaj@suse.comaj@suse.comlnussel@suse.decoolo@suse.comlnussel@suse.dewerner@suse.dewerner@suse.dewerner@suse.delnussel@suse.delnussel@suse.deaj@suse.comaj@suse.comaj@suse.comwerner@suse.dewerner@suse.delnussel@suse.delnussel@suse.dewerner@suse.dewerner@suse.dero@suse.comwerner@suse.delnussel@suse.decoolo@suse.comdimstar@opensuse.orgro@suse.comcoolo@suse.comcoolo@suse.comwerner@suse.decoolo@suse.decoolo@suse.comwerner@suse.deaj@suse.decoolo@suse.comaj@suse.decoolo@suse.comwerner@suse.deaj@suse.deaj@suse.decoolo@suse.comkukuk@suse.decoolo@suse.comlnussel@suse.delnussel@suse.dejengelh@inai.dewerner@suse.devuntz@opensuse.orgwerner@suse.delnussel@suse.dedimstar@opensuse.orglnussel@suse.devuntz@opensuse.orgwerner@suse.delnussel@suse.dewerner@suse.devuntz@opensuse.orglnussel@suse.demvyskocil@suse.czro@suse.comro@suse.comro@suse.comwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.deaj@suse.deaj@suse.dewerner@suse.delnussel@suse.dero@suse.comseife+obs@b1-systems.comlnussel@suse.derhafer@suse.dewerner@suse.dewerner@suse.delars@samba.orgaj@suse.deaj@suse.dero@suse.defcrozat@suse.comdmueller@suse.delnussel@suse.dero@suse.comwerner@suse.dewerner@suse.depth@suse.dewerner@suse.delnussel@suse.deuli@suse.comjengelh@medozas.dewerner@suse.dewerner@suse.defcrozat@suse.comro@suse.comwerner@suse.dero@suse.comro@suse.comro@suse.comwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.deaj@suse.delnussel@suse.dewerner@suse.delnussel@suse.deidonmez@novell.comlnussel@suse.delnussel@suse.delnussel@suse.delnussel@suse.delnussel@suse.dewerner@suse.delnussel@suse.delnussel@suse.dero@novell.comro@novell.comwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dero@novell.comro@novell.comlnussel@suse.dewerner@suse.delnussel@suse.dewerner@suse.delnussel@suse.dero@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.delnussel@suse.dewerner@suse.dewerner@suse.dewerner@suse.degber@opensuse.orgwerner@suse.dewerner@suse.degber@opensuse.orgro@suse.delnussel@suse.delnussel@suse.delnussel@suse.debwiedemann@novell.comaj@suse.delnussel@suse.delnussel@suse.dewerner@suse.deadrian@suse.dewerner@suse.dewerner@suse.dero@suse.dewerner@suse.depuzel@novell.comlnussel@suse.dero@suse.dero@suse.deaj@suse.deaj@suse.dewerner@suse.dero@suse.dero@suse.dewerner@suse.dero@suse.delnussel@suse.delnussel@suse.delnussel@suse.delnussel@suse.decristian.rodriguez@opensuse.orgwerner@suse.dero@suse.dewerner@suse.dewerner@suse.dewerner@suse.dero@suse.detrenn@novell.comro@suse.dero@suse.dewerner@suse.dedmueller@suse.dero@suse.decristian.rodriguez@opensuse.orgwerner@suse.demseben@novell.comwerner@suse.decoolo@novell.comro@suse.dewerner@suse.dewerner@suse.dewerner@suse.dero@suse.dewerner@suse.dero@suse.dero@suse.dero@suse.delars@linux-schulserver.dero@suse.deaj@suse.dewerner@suse.dero@suse.dero@suse.dero@suse.dewerner@suse.dero@suse.dero@suse.desndirsch@suse.dewerner@suse.dero@suse.delnussel@suse.dero@suse.dero@suse.dero@suse.dero@suse.dewerner@suse.dero@suse.dero@suse.depbaudis@suse.czro@suse.demeissner@suse.dero@suse.dero@suse.dero@suse.dewerner@suse.dero@suse.dero@suse.dero@suse.dero@suse.dero@suse.dero@suse.dewerner@suse.demvyskocil@suse.czro@suse.dero@suse.dero@suse.dero@suse.depuzel@novell.commseben@novell.comro@suse.demmarek@suse.czmeissner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dero@suse.decoolo@novell.comro@suse.dero@suse.dero@suse.dero@suse.dewerner@suse.dero@suse.dero@suse.dewerner@suse.derguenther@suse.dero@suse.dero@suse.dewerner@suse.dero@suse.decoolo@suse.decoolo@novell.comro@suse.decoolo@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.decoolo@suse.dewerner@suse.dewerner@suse.dewerner@suse.dero@suse.dewerner@suse.dero@suse.dero@suse.demeissner@suse.de- Update to version 84.87+git20180409.04c9dae: * In bash.bashrc move ssh/sudo source of profile to avoid removing the `is' variable before last use (boo#1088524). * Avoid the shell code checker stumble over `function' keys word in ls.bash (git#54).- Use %license (boo#1082318)- Update to version 84.87+git20180208.8eeab90: * Don't call fillup for removed sysconfig.news * Adjust path for script converting sysctl config * For ksh use builtin keyword 'function' to make sure that the keyword 'typeset' really set the variable IFS to be local within the function _ls.- Update to version 84.87+git20180205.2d2832f: * Move /lib/aaa_base/convert_sysctl to /usr/lib/base-scripts/convert_sysctl to cleanup filesystem. * Don't create /etc/init.d/{boot.local,after.local,halt.local} in aaa_base.pre section. * Remove dead code from pre/post install sections.- Add /var/adm/backup subdirectories to aaa_base-extras, they are only needed by this package.- Update to version 84.87+git20180204.875cba8: * Move sysconfig.backup into extra subpackage, where all the scripts using it are, too. * Create systemd timer for the cron.daily scripts for backup-rpmdb, backup-sysconfig and check-battery. Move scripts to /usr/lib/base-scripts. * Remove suse.de-cron-local. If somebody really still has a /root/cron.daily.local file, he can move it to /etc/cron.daily. * Don't modify data in root's home directory * Don't create userdel.local, this isn't in use since many years- Update to version 84.87+git20180130.ae1f262: * Really remove /usr/sbin/Check, obsolete since 8 years * Remove ChangeSymlinks, 90% are obsolete, the rest is dangerous * Remove 14 year old outdated documentation and dummy scripts for Java- Update to version 84.87+git20180130.36ea161: * Remove obsolete/outdated manual pages (route.conf.5,init.d.7, quick_halt.8)- Cleanup PreReq and move some parts to Requires(post), so that we can deinstall them if we no longer need them- Update to version 84.87+git20171201.65000be: * Revert changes on sysconfig language and make lang.(c)sh to use sysconfig language as fallback or better use locale.conf as default. See discussion in bsc#1069971 and FATE#319454 as well- Update to version 84.87+git20171130.974ac5c: * Better parsing of sh variable settings in lang.csh- Update to version 84.87+git20171129.a45b936: * Remove RC_* variables from language sysconf template (bsc#1069971 as well as FATE#319454)- Update to version 84.87+git20171128.945b960: * lang.(c)sh: catch if ROOT_USES_LANG becomes not set- Update to version 84.87+git20171128.aa232d3: * Add wsl specific code to profile.d/wsl.csh * move wsl specific code from profile into profile.d/wsl.sh * Remove obsolete "make package"- Update to version 84.87+git20171128.a6752e8: * lang.(c)sh: handle locale.conf if sysconfig does not- lang.(c)sh: handle locale.conf if sysconfig does not provide default locale (bsc#1069971, FATE#319454)- Update to version 84.87+git20171128.17ae554: * Check for /proc/version before using it * Remove legacy code for /proc/iSeries * Move fillup-templates to /usr/share (boo#1069468)- Fix installation of fillup-templates.- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- use TW versioning, 13.2 is misleading - Update to version 84.87+git20171120.d36b8b1: * Fix double sourcing of /etc/bash_completion.d * create wsl.sh in /etc/profile.d to set umask in WSL * Add support for /usr/bin/fish (boo#1068840) * Get mixed use case of service wrapper script straight (bsc#1040613)- Update to version 13.2+git20170828.8f12a9e: * profile: don't override PATH in WSL * Remove passwd, group and shadow files. Remove %ghost entry for /run/utmp, /var/log/wtmp and /var/log/btmp, systemd is taking care of them * Remove run/utmp, too.- Update to version 13.2+git20170814.cc9e34e: * Unset id in csh.cshrc instead of profile.csh (bsc#1049577) * Restore the is variable within /etc/profile- Update to version 13.2+git20170731.c10ca77: * Fix csh.cshrc as tcsh does not handle stderr * Do not set alias cwdcmd for experts (boo#1045889) * unset unused variables on profile files (bsc#1049577) * Deprecate DEFAULT_WM in sysconfig.windowmanager- Fix csh.cshrc as tcsh does not handle stderr messages within {} well (boo#1044876)- Fix copy+paste error in /etc/csh.login boo#1043560- Support changing PS1 even for mksh and user root (bsc#1036895)- Be aware that on s390/s390x the ttyS0 is misused- Reset extended screen TERM variables if no terminfo - Better status line support even for tcsh - Modernize /etc/ttytype as tset of ncurses use it- Off application keypad (keyboard transmit) mode - Missed a meta prefix in new inputrs.keys- More 8bit key escape control sequences for XTerm - Do not set INPUTRC as readline does know personal as well as system inputrc also make /etc/inputrc do set know sequences for both vi line editing modes as well as for emacs line editing mode. - Do remove patch aaa_base-13.2+git20170308.c0ecf2e.dif not only from package but also from spec file- Update to version 13.2+git20170425.47e703a: * Add Enlightenment to the list of windowmanagers * Add a number of audio/video formats to be colorized * Revert "Avoid NAT on Bridges. Bridges are L2 devices, really." * aaa_base.pre: drop some system users from aaa_base and create them in the respective packages: bin,daemon,news,uucp,games,man * Remove /var/log/faillog, there no application using this left [bsc#980484] * Remove users and groups sys, mail, lp, wwwrun, ftp and nobody- Make lang.csh work again (bsc#1025673)- Update to version 13.2+git20170306.3deb627: * aaa_base.pre: drop some system users from aaa_base and create them in the respective packages: bin,daemon,news,uucp,games,man- Update to version 13.2+git20160915.106a00d: * enhance comment for NO_PROXY variable (bsc#990254) * Fix spelling of SUSE (skipped copyright statements - they need more thoughts) * fix regression introduced by fix for bnc#971567 (bnc#996442)- Correct logic error in usage of variable restricted (boo#994111) - enhance comment for NO_PROXY variable (bsc#990254)- Update to version 13.2+git20160807.7f4c8c4: * switch IPv6 privacy extensions (use_tempaddr) back to 1 * history see bsc#678066,bsc#752842,bsc#988023,bsc#990838- Do not use the = sign for setenv in /etc/profile.d/lang.csh- Follow the bash manual page that is respect --norc and --noprofile- Update to version 13.2+git20160609.bf76b13: * Mark scripts /etc/init.d/{boot.,after-,halt.}local as deprecated- lang.sh, lang.csh: if GDM_LANG equals system LANG then use system defaults- Update to version 13.2+git20160530.bd5210c: + Let the ~/.i18n values parsed as well if GDM_LANG is set (boo#958295) + Remove spurious assignment to unknown variable term from /etc/inputrc + chkconfig: return 1 trying to list unknown service (bnc#971567) + chckconfig: add --no-systemctl option + fix typo in last patch (no-systemctl support for chkconfig) + lang.sh, lang.csh: allow GDM to override locale + There is no kde4 anymore + Removed '/usr/bin/X11' from PATH (boo #982185)- fix typo in last patch (no-systemctl support for chkconfig)- chckconfig: add --no-systemctl option- chkconfig: return 1 trying to list unknown service (bnc#971567) - Merge pull request #26 from andreas-schwab/master - Remove spurious assignment to unknown variable term from /etc/inputrc- Let the ~/.i18n values parsed as well if GDM_LANG is set (boo#567324)- Update to version 13.2+git20151221.244f2a3: + drop old dns6 hack migration from 2002 + remove more dropped variables + make chkconfig -a/-d work (bsc#926539) + avoid recursion if systemd call chkconfig back for sysv units + fix non-working line breaks - make _service generate .changes- Replace UNICODE double dash with simple ASCII single dash (boo#954909)- Use the `+' for find's -exec option as this also respects white spaces in files names but is more like xargs. Respect status of screen sessions.- suse.de-backup-rc.config: trigger also if only files changed that have spaces in their name (bnc#915259)- sysconf_addword: do not insert spaces at start of string (bnc#932456)- Merge pull request #19 from super7ramp/cleaning-references-to-suseconfig - drop references to sysconfig/suseconfig - drop SCANNER_TYPE variable- Merge pull request #25 from ptesarik/master - Enable SysRq dump by default - Revert "fix /etc/init.d/foo status return code (bnc#931388)" - Merge pull request #23 from bmwiedemann/master - fix /etc/init.d/foo status return code (bnc#931388)- xdg-environment: reduce list in /opt/* to gnome,kde4,kde3 (bnc#910904)- add SOCKS5_SERVER and socks_proxy to proxy settings (bnc#928398) - Simplify version check- Handle also command lines starting with the env command as this is used by gnome xsessions (bsc#921172)- Correct the boolean in /etc/profile.d/lang.sh- Even if GDM has done language setup the personal ~/.i18n should be sourced (boo#567324)- Remove the official patch for fate#314974 as now part of systemd - Merge pull request #21 from arvidjaar/bnc/907873- Avoid sourcing /etc/bash_completion.d twice- Fix spelling of SUSE- Add the official patch for Fate#314974 (bnc#903009)- adding more info to chkconfig list mode output for systemd (bnc#863781)- remove no longer supported sysconfig settings (bnc#721682) - remove /etc/mailcap (bnc#856725, bnc#842938) - add Makefile target to update mimetypes- update service man page - always pass --full to systemctl (bnc#882918)- Muffle libGL error message when run under ssh (bnc#890189)- add inittab as ghost config- Add ls.zsh to file list- Avoid trouble with new ksh93v- 2014-06-25 and zsh shell code (bnc#888237)- Do not touch nor modify permissions if e.g. /root/.bash_history is a link to e.g. /dev/null (bnc#883260)- Avoid libGL error via ssh (bnc#869172)- In emacs the tcsh may used non-interactively (bnc#882579)- drop hint about PREVLEVEL from after.local comments (bnc#886176)- remove "text/js" from mime.types [bnc#812427]- drop re-creation of before.local and add a comment about not being supported if it had real content (bnc#869177) - mark /etc/init.d/{boot,halt,after}.local as ghost (bnc#868416)- remove fate-314974.patch which was not accepted in git- Enable service script to return LSB status exit values (bnc#880103)- fix error message if zsh sources xdg-environment.sh if some pathes do not exist (bnc#875118)- remove mkinitrd script for mtab- For tcsh: be aware that sometimes strings in variables include a dash- move cron Recommends to -extras subpackage where the actual cron files are - update COPYING file to silence rpmlint warning about outdated address - adjust mktar script to new versioning scheme - implement legacy actions (bnc#861124)- move tmp file removal parameters from cron to systemd (fate#314974) fate-314974.patch- bump version to 13.2 and avoid tar updates- Avoid warning from grep if complete file is not found (bnc#864282)- remove etc/init.d/powerfail (bnc#864044)- drop sysconfig files: boot, clock, cron, shutdown as none of these are used anymore- Map the generic terminal type ibm327x to the terminal type dumb- Enable service script to reload systemd if required- print parse errors to stderr (bnc#860477)- handle targets in /sbin/service as well - Check systemd service using LoadState (bnc#860083)- Avoid journal output as this may take time on pure journald systems (bnc#859360)- Do not load completions which depend on bash-completion package (bnc#856858)- make rcfoo usable for not enabled services (bnc#856986)- Use only bash and readline defaults for fallback completion (bnc#851908)- change mistakenly root:users group to root:root (bnc#843230)- Avoid NAT on Bridges. Bridges are L2 devices, really. - Fix Default tag for RCCONFIG_BACKUP_DIR- remove {c,}sh.utf8 as testutf8 is a dummy anyways (bnc#849258) - fix chkconfig --check (bnc#851374)- chkconfig: add option -L to only list enabled services (bnc#707823) - updated comment in sysconfig.language for ROOT_USES_LANG (bnc#505417) - tighten regexp of ignored files in chkconfig (bnc#828820) - protect from reading home kshrc twice (bnc#848697)- Add support for mksh - Do not use bashisms in PS1 for unknown shells- Adds a minor fix - changes JRE_HOME only in a case it was not defined before (bnc#841284)- Use systemctl show to list the properties NeedDaemonReload, UnitFileState, and LoadState and then check fore daemon-reload, masked, and forbidden services (bnc#843123, FATE#313323)- Enable old boot scripts for systemd in rc.status if not already done (FATE#313323)- Fix last commit, rename the actual alias too.- Rename _ls alias to z_ls for zsh. In zsh strings that start with an underscore are reserved for completion. This fixes bnc#836067- avoid leaking kernel address information to userspace by using kernel.kptr_restrict=1 sysctl - bash.bashrc: source vte.sh if existing (bnc#827248)- 'mountpoint' was moved to /usr- move sysctl directories to filesystem rpm- move sysctl defaults to aaa_base (bnc#820443)- Add bash completion function to load completions dynamically (bnc#821411)- Require xz at build time (Who has removed xz from default?)- Personal bash completion and bash ls alias (bnc811030, bnc#799241)- also check /lib/systemd for compatibility (bnc#812291)- chkconfig: rh compatible check mode (bnc#811870)- Mark file /lib/mkinitrd/scripts/boot-mtab.sh as exectuable (bnc#809842) - Compress tarball with xz- Remove boot.localnet also from spec file- Update version number to 13.1 - Update to git head: * Remove boot.localnet * Revert "rc.status: allow to pass options to systemctl using SYSTEMCTL_OPTIONS" SYSTEMCTL_OPTIONS is now handled directly by systemctl.- Do not override /etc/adjtime if HWCLOCK is already gone (bnc#791485)- Avoid to stumble over missing /dev/stderr in boot script started by systemd (work around bnc#728774o but not solve it)- remove check whether systemd is running- call systemctl to enable/disable services (bnc#798510)- Let the bash check the winsize only if COLUMNS is exported (bnc#793536)- Also source environment for tcsh and bash if sudo is used- Merge pull request #1 from fcrozat/master - rc.status: allow to pass options to systemctl using SYSTEMCTL_OPTIONS- Simplify and tighten the bash prompt- fix url to point to github - change summary to say "openSUSE" (bnc#773245)- remove boot.* again, new insserv shadows them- Add aaa_base-syntax-error.patch: Fix syntax error in rc.status.- merged last bits from gitorious: - from froh: - /etc/bash.bashrc: add prompt to the terminal "status line", which on most graphical terminals is the window title. - from fcrozat: - rc.status: output initscript status before systemd one. - rc.status: educate users on which systemctl command was started - rc.status: systemctl 195+ allows to not specify .service- readd insserv for the remaining boot scripts- readd some boot.* scripts that are required by insserv for not ported applications (they are empty though)- Enforce creation of /etc/adjtime even if no /etc/sysconfig/clock exists (bnc#779440)- also move the file to /run - generate utmp in /run not in /var/run- /var/run/utmp should be packaged as /run/utmp- Ask terminal about status line in bash.bashrc- Update from git: * Remove /usr/lib/tmpfiles.d/loop.conf (bnc#784963).- update from git: * remove all files not necessary for systemd * move files to /usr and leave symlinks around - conflict with sysvinit- Update from git: * Fix typo in /usr/lib/tmpfiles.d/loop.conf- update from git to get the latest change too- Try to resolve the bash completion problems with ls (bnc#725657)- Create loop devices via tmpfiles and not via /lib/udev/devices.- Fix linuxbase URLs to point to the current documentation - Add README.packaging.txt.- migrate to _service file to make it a bit more clear the .tar is not a random tar- SuSEconfig is finally gone [FATE#100011]- explicitly buildrequire net-tools for /bin/hostname- honor $SYSTEMD_NO_WRAP again (bnc#774754)- fix service status for sysvscripts when booted with systemd (bnc#772028)- Add %defattr to make files definitely owned by root- Redirect test if blogd is running otherwise it will never be done- Fix /etc/bash.bashrc for bash-completion again: the previous fix was not working for non-login shells, so directly source /etc/profile.d/bash_completion.sh from /etc/bash.bashrc (bnc#764288).- Also remove an possible but old /var/log/blogd.pid before initial start of blogd (bnc#763944)- support beeing called as rc* symlink wrapper (bnc#769902) - use systemctl instead of loop for --status-all (bnc#769902)- Add aaa_base-bnc756012.patch: unset ftp_proxy is not the same as ftp_proxy="", which can drip libproxy over. (bnc#756012)- move environment settings for malloc checking to separate subpackage for easier handling of the feature via patterns- Change /etc/bash.bashrc to work with recent versions of bash-completion, that put files in /usr/share/bash-completion.- Move boot.msg away if writable before initial start of blogd (bnc#763944)- fix boot.localfs for new mount output (bnc#766035) - use /run, preserve /run/no_blogd for shutdown- Drop HWCOCK option flag in favour of the adjtime file- Bump version to 12.2, to prepare for next version of openSUSE.- fix return values of systemd detection- remove mingetty dependency from aaa_base as it's needed by sysvinit- remove bin from mime.types for application/x-stuffit (bnc#743741)- rc.status: also allow to specify files as /etc/rc.d/foo (bnc#734476)- update mime.types file (merged old file with upstream) (see bnc#720464) - add primitive script to merge mime.types file- Try to fix several bash completion bug caused by fix for bug #725657- Oops add missed double quote (bnc#752061)- Yet an other bash completion problem worked around- Add old request from gitorious- Add patch from rjschwei@suse.com: * ln binary has been moved to user tree. This addresses bnc #747322 comment 11- Add patch from rjschwei@suse.com: * The initviocons binary moved from /bin to /usr/bin as part of the UsrMerge project.- Fix some bash completion problems (bnc#738501)- remove requirement on systemd to avoid cycles. /bin/systemd-tmpfiles is only needed by boot.cleanup when actually booting the system using sysv.- chkconfig: bypass initscript enable/disable script if service shadowed by systemd- fix alljava.sh bug introduced with last commit (bnc#722252)- Make alljava.(c)sh friendly to third-party JVMs (bnc#722252)- Added "application/json" mimetype to /etc/mime.types (bnc#741546)- Strip boot. also from rc symbolic links (bnc#739217)- Use since_epoch of rtc0 and not raw system time - If CMSO clock is in synch but nevertheless off by more than- Add --listmodules option to SuSEconfig; (bnc#736086).- Fix spec file for last change.- Remove tmpdirs.d handling, use tmpfiles now- random seed start script: use pool_size from kernel, not the old 512 bytes (bnc#730736)- Ensure /sbin/service is not clearing SYSTEMD_NO_WRAP- add color aliases for grep variants- replace mtab with symlink in initrd already (bnc#727758) - introduce SYSTEMD_NO_WRAP (bnc#727445)- rc.status: only push standard options start/stop/restart/.. to systemd, otherwise use the normal init script- Enable direxpand patch of the bash (bnc#725657)- Add comment about systemd and runlevel in /etc/inittab (bnc#725138)- Change most aliases in ls.bash to shell functions.- Make completion for sudo smart (bnc#724522)- mount /media as tmpfs - resolve symlink for rcXX -> XX.service sytemd magic- cross-build fix: use %__cc macro- Remove redundant tags/sections from specfile - Use %_smp_mflags for parallel build- Handle boot.* initcripts correctly under systemd- bash completion: add a space for unique results (bnc#717934)- check if systemd is running and notify user- fix last change - update FSF address in skeleton file- Correct check for COLD_BOOT in halt script (bnc#709825)- remove more occurrences of boot.loadmodules now in mkinitrd package- remove etc/sysconfig/kernel, lives now in mkinitrd package- sbin/service: skip *.disabled for --status-all (bnc#690282)- Add support for clicfs- Better support of quoted file and directory names (bnc#706075)- Do not use CDPATH for local paths (bnc#703682)- Let various bourne shell source their own local rc file (bnc#703855) - Handle CDPATH for bash command completion for every case (bnc#703682)- Bump version number - do not install /root/.exrc anymore, it's obsolete.- mount /run without noexec (bnc#699799)- Enable container check for devtmpfs (bnc#696026) to be able to use a static /dev within the container- add back telinit q call - fix group and mode of /var/lock- Set DEFAULT_WM to kde-plasma, bnc#687781- boot.cleanup cleanup - make /var/lock tmpfs too - bind mount /var/run in boot.localfs - drop /etc/sysconfig/sysctl (fate#312343)- dont' enable boot.ldconfig by default - don't enable boot.clock by default (fate#312407) - remove reference to runlevel 4 from skeleton.compat- drop /etc/sysconfig/sysctl.conf (fate#312343)- bind mount /run on /var/run- fix wrong logic in %post- Avoid tput command if TERM variable is not set.- start boot.proc as soon as possible - don't wait for bind mounts (bnc#690871)- create loop devices in %post (bnc#661715) - don't mount /sys/fs/cgroup/systemd as it makes programs think systemd is in use- rc.status: in rc_wait test for existance of binary- add COPYING file as requested- Avoid further trouble of the plusdir complete option of the bash (bug #681687)- Do not cause the bash to expand if dir path starts with ~ for the HOME of the user (disable plusdir option for this) (bnc#691883)- Mount memory based file systems found in /etc/fstab (bnc#675542)- Start blogd only once at boot- Fix for bnc#686186 and change for fate#309226- boot.cleanup: when cleaning var/run, try to symlink /var/run to /run- mount /run if needed - /etc/init.d/boot: mount /run as tmpfs if not there yet- call osc ci after pushing changes - make it work with older git- Avoid waiting on bind mounts in boot.localfs - Be aware in refresh_initrd that modules used in initrd may use options in the /etc/modprobe.d/ files- add scripts to make tarball- Avoid to trap into execute escapes (bnc#678827)- sources are maintained in git now. Adopt package accordingly.- bump version to 11.5- Add missed ESC for screen escape sequences- Work around colon as breaking character in tab completion - Allow arguments of command done by sudo to complete (bnc#673663)- Fix minimal support for the old fashion rc service links- Tag interactive boot scripts as interactive as systemd uses it- don't time out waiting for tmpfs (bnc#671468) - make malloc checking configurable- Add minimal support for the old fashion way to handle services even with systemd- Use new rvmtab in boot.localfs if available- Redo fix for $HOME/.kshrc readed twice (bnc#560152)- changed LXDE to lxde in sysconfig.windowmanager- For plain bourne shells use `command -v' instead of `type -p' - Avoid world writable temporary reverse mtab (bnc#665479, CVE-2011-0461)- Also do the job for tcsh users - Be backward compatible to support existing sysconfig files - Fix for bnc#668180: redirect stderr of pidofproc to /dev/null- changed /etc/profile.d/profile.sh so it treats DEFAULT_WM as the basename of the session file and parses the value of Exec into WINDOWMANAGER (bnc#667408) - adopted the possible values of DEFAULT_WM to use the basename of the session file (bnc#667408)- fix typo in SuSEconfig manpage (bnc#662695)- package /lib/udev/devices/loop* to allow on demand loading of the loop module (bnc#661715)- at boot make sure /etc/mtab is a symlink (bnc#665494) so util-linux doesn't need to do it in %post - don't wait for loop images to appear as block devices (bnc#666150)- net.ipv6.conf.all.use_tempaddr has no effect, need to use net.ipv6.conf.default.use_tempaddr (bnc#494958#c2) - set default values in /etc/sysconfig/sysctl to empty and mark deprecated. No default behavior change as kernel defaults actually match.- fix loop module not loaded with /etc/mtab symlink (bnc#665092)- Fix kernel value of IPv6 privacy in boot.ipconfig (bnc#664550).- fix mounting /dev/pts (bnc#664692)- rc.status: initialize terminal settings only once - boot.cgroup: add init script to mount cgroups - boot.localnet: remove useless use of cat and avoid ifup - boot.localfs: don't update mtab if mtab is a link anyways - boot.localfs: don't consider nofail mounts as missing - boot: reorder and simplify mounting of file systems- Do not call `hostname -d' to avoid DNS lookup- avoid trailing dot in HOSTNAME when no NIS domain is set- Test only for bit 64 (clock unsynchronized), if zero the kernel is within eleven minutes mode (Thanks goes to Rastislav David)- Touch /etc/init.d/after.local and /etc/init.d/before.local (bnc#659206)- boot.localfs: do not abort wait for udev just because /dev/.udev/queue does not exist (bnc#656028)- Work around broken network setups for login shells to get variable HOST set to nodename - Do not use NIS/YP domainname but DNS domainman for HOSTNAME- export GPG_TTY="`tty`" in /etc/bash.bashrc (bnc#619295)- own /var/log/wtmp, /var/run/utmp, /var/log/faillog and /var/log/btmp- fix typo (merge conflict overlooked)- fix postinstall to test for existence of /var/run/utmp before trying to chgrp- Remove get_kernel_version_fix_plus_in_kernel_string.patch after applying it to file directly.- Use group utmp for /var/run/utmp, btmp and lastlog (bnc#652877).- Do not set ENV in /etc/profile as well in /etc/csh.login (bnc#611966)- allow chkconfig to use different root filesystems (bnc#507382)- added service.8 man page from fedora (bnc#621286)- Make /usr/sbin/Check a bash script (bnc#626629)- keep /etc/mtab unchanged if it is a symlink (bnc#651555)- remove weird filelist generation code- remove /usr/sbin/Check- move chkstat calls to brp-permissions in brp-checks-suse- export ONLY_MODULE so modules can act differently when they are called specifically- enable malloc debugging checks.- Do not remove /etc/adjtime but simply correct the third line for applications depending on CMOS time (bnc#650719)- abort if kernel has no devtmpfs, can not help here (bnc#648408)- Use refresh_initrd if TIMEZONE has changed (bnc#638185)- Add sudo completion bnc#639744- Fix for bnc#567951 - cshrc now allows xterm titles - Fix for bnc#631454 - bash completion for regexpressions - Fix for bnc#639392 - make pushd completion behaves like cd completion- add leading / to pre/post scripts (bnc#625763)- Recognize "+" at the end of the kernel version correctly. From mmarek: Starting with 2.6.35, the kernel build by default appends a plus sign to the kernel version string when building in a git tree that is not in a clean tagged state.- switch SEND_OUTPUT_ON_NO_ERROR from yes to no in postinstall and only do that exactly once to switch the default (bnc#622203)- let boot.swap disable most swap partitions on shutdown so LVM and others can be shut down cleanly (bnc#631916)- Add a sysconfig option for enforcing blogd even with "fastboot" and/or "quiet" found on the kernel command line.- add a split provides for smooth upgrade- split off aaa_base extras subpackage with: - ls settings and aliases - bash completion - other generic shell aliases - quick_halt/poweroff/reboot script - some default cronjobs - modified bash.bashrc and csh.cshrc to split out ls settings - drop alias for dir: that one has its own binary for a while - recommend aaa_base-extras from main package- get_kernel_version : use O_CLOEXEC everywhere- Newer killproc sends only SIGTERM as required by LSB if -TERM is specified on the command line. Use the default which is SIGTERM followed by SIGKILL if the timeout of 5 seconds is reached.- change default value of cron sysconfig option SEND_OUTPUT_ON_NO_ERROR to "no" bnc#622203- Use alias shell builtin for ash and dash (bnc#619756)- remove malloc-debug.* for final release- also skip /cgroup during unmount in boot.localfs (requested by kay)- Reflect name space change of former rush shell which know becomes pcksh, cpcksh, and rpcksh- Add support for the rush bourne shell (bnc#608727)- Implemenation of a workaround of missing console messages in blogd (bnc#593957) ... depends on package sysvinit-tools- drop chmod for /dev/shm from /etc/init.d/boot (workaround which is no longer needed and gives trouble now)- Avoid error on not set $TERM variable in csh login (bnc#560917)- set INPUTRC in csh similar to /etc/profile (bnc#560917)- add usbfs to tmpfs list in boot.localfs (bnc#569569) if "noauto" is changed to "defaults" in fstab for /proc/bus/usb then the fs is mounted at boot time (for some legacy software)- skip remount-rw for / if "readonlyroot" is specified on the boot commandline (bnc#445189)- added smart_agetty manpage to fix bnc #342580 - fix self Provides/Obsoletes for aaa_skel- added /etc/tmpdirs.d for snippets to be called by boot.cleanup (shell scripts to recreate things in /tmp, /var/tmp, /var/run) - move code from boot.cleanup to /etc/tmpdirs.d/01_aaa_base (all related to fate#303793)- Set version number to 11.3- Add screen control sequences to inputrc (bnc#598903)- boot.rootfsck: do not use /dev/shm/root as fallback but /dev/root- boot.localfs: update Should-Stop dependencies- removed /etc/rc.d.README as well- Use feature of pidof(1) of new sysvinit 2.88dsf- drop /sbin/init.d.README and /etc/init.d/README the manpage is "man 7 init.d"- boot.cleanup: do cleanup as well in shutdown case, faster than leaving it to the next boot and can speed up boot sequence- add NO_KMS_IN_INITRD to sysconfig/kernel.- Add Forms Data Format (.fdf) for acroread and co (bnc#573202)- fix typo in boot.localfs (bnc#584090)- add "lock" group (bnc#552095, FATE#308360)- drop boot.sched- implemented more primitive status calls for boot.* scripts- implemented primitive status call for boot.rootfsck and boot.localfs- do not put ldconfig into background in recovery case (bnc#582597)- Add changes for dash and ksh from Guido Berhoerster- move remounting of /dev and /dev/shm to boot.localfs (bnc#583247)- add chmod for /dev/shm to be safe from udev- Fix $TIMEZONE description in /etc/sysconfig/clock (bnc#582292)- No longer call zic (the timezone compiler) from boot.clock for creating /etc/localtime: this file is created by YaST during installation; there is no need to recreate it at boot time. (This code was only executed on s390 and in xen guests, too.)- enabled MALLOC_CHECK_ and MALLOC_PERTURB_ during testing- make sure options for /dev/pts are honored (bnc#580924)- Fix issue with chvt hanging, preventing restart (bnc#540482) (add --userwait to chvt call)- remove bogus splash check from boot.proc- Rename meta-mode to enable-meta-key in /etc/inputrc as bash 4.1 / readline library 6.1 use this key word- fix typo in comment in /etc/skel/.emacs (bnc#558055)- change test for tty1 in boot.localfs and boot.rootfsck (bnc#564325)- /etc/init.d/boot: use devtmpfs for /dev if available (bnc#561990)- do not rewrite /etc/adjtime needlessly (bnc#570245)- set NO_PROXY together with no_proxy (bnc#569310)- clean-tmp: use ctime instead of mtime and add -xdev to avoid crossing filesystem boundaries (bnc#568990)- Avoid to source/parse $HOME/.kshrc twice (bnc#560152)- fixed JRE_HOME typo in alljava.sh (bnc#549395)- fix example in sysconfig.language (bnc#557283)- fix some issues with boot.clock and xen (bnc#550697)- mount /dev correctly also if devtmpfs- same for csh.login- add '-R' to LESS variable in /etc/profile (bnc#554513)- added SEND_OUTPUT_ON_NO_ERROR option to /etc/sysconfig/cron (fate#305279)- remove bash1 from /etc/shells (bnc#554131)- wait for raid arrays to become clean before shutdown or reboot (fate#306823).- disable malloc debugging again for the release. (rm /etc/profile.d/malloc-debug.*)- Use /bin/hostname for HOSTNAME instead of NIS domainname found in /proc/sys/kernel/domainname (bnc#540981)- Remove SuSEconfig.clock and simplify refresh_initrd (bnc#538357)- Refresh initrd if CMOS clock is set to local time (bnc#538357)- Use option -c on grotty command to diaable escape sequences in /etc/init.d/README (bnc#543957)- Use configurable meta-mode in /etc/inputrc (bnc#541379)- The halt script should not shutdown network for iSCSI (bnc#513928)- add bash completion for evince (bnc#540013)- DO_FASTBOOT is now yes/no, no longer empty (bnc#538362)- fix CLEAR_TMP_DIRS_AT_BOOTUP (bnc#531514)- boot.clock: check if system timezone already set by initrd (bnc#534816)- etc/profile,etc/csh.login: remove output of /etc/motd and faillog, already printed by login (bnc#528003)- drop hacks for sles8 from pre/post scripts - make use of sed -i instead of manual handling in pre/post - aaa_base.specialfilelist: drop the ones that are not in aaa_base- Remove INFOPATH and INFODIR as info knowns about (bnc#524541)- fix typo in boot.cleanup- import some speedups from moblin boot.cleanup: use xargs and use -m option from mkdir boot.localnet: depend on boot.rootfsck instead of boot.cleanup - adapt boot.clock to changed hwclock/util-linux: - drop --hctosys for utc case - replace by --systz for non-utc case- Fix expansion bug in bash completion without loosing expansion of the tilde for the users home directory (bnc#524224)- Move udev and net-tools back from PreReq to Recommends- update alljava.csh (expand PATH like alljava.sh bnc#480480)- update mailcap for text/html: change w3m call (bnc#479432)- Bash completion: make file type detection independent from file name for b(un)zip2, g(un)zip, and unzip (bnc#512386, bnc#512386)- added recommends for netcfg (bnc#519337)- now that fixed glibc is in, we can enable malloc_check again- /.buildenv is almost never a directory...- change condition for MALLOC_CHECK to test for /.buildenv- do not set MALLOC_CHECK for now in build environemtns to continue building even if we have a problem there atm (bnc#509398)- Make some expansions work for bash completion (bnc#493303, bnc#487252)- Add missing line in boot.clock- At shutdown boot.clock should be executed *before* boot.apparmor otherwise it may happen that /etc/localtime is not readable and localtime(3) may fall back to UTC time as system default (bnc#492921).- First try to support root fs with type aufs (bnc#491890) - Use usleep to wait on udev- Disable blogd on fastboot or quiet boot - Move mkinitrd scripts to mkinitrd- Avoid possible race between rtc_cmos and running date- boot.ldconfig: remove most of the checks / run ldconfig way less - boot.localfs: STOP preload during fsck calls- boot.clock: make status argument work and add argument timezone - boot.clock: for s390 make date command accurate as possible - Rename mkinitrd script setup-rtc.sh to setup-clock.sh and add boot-clock.sh, also check for including boot-rtc.sh the existence of the rtc_cmos module to avoid fatal errors- boot.clock: write system time only back to HW clock if kernel time status shows that clocks are unsynchronized - Add two helper scripts for mkinitrd to add and load rtc_cmos module and add /etc/localtime to initrd (bnc#492921)- Make boot.clock more tough due udev timings (bnc#492921) - Remove /etc/adjtime in boot.clock if left over (bnc#495417)- updated alljava.{sh,csh} (bnc#492820)- bash.bashrc: append history to avoid override the history with two parallel bash sessions.- fix typo in comment in bash.bashrc (bnc#487742)- touch and chmod some files only if they do not exist before leave them alone otherwise- MALLOC_CHECK_=3 (bnc#481582)/bin/sh/bin/shaaa_skelbuild32 1524414268  !"#$%&'()*+,-./0123456789:;<=84.87+git20180409.04c9dae-lp150.1.184.87+git20180409.04c9dae-lp150.1.184.87+git20180409.04c9dae-lp150.1.184.87+git20180409.04c9dae-lp150.1.184.87+git20180409.04c9dae bash.bashrccsh.cshrccsh.loginhushloginsafter.localboot.localhalt.localinittabinputrcinputrc.keysmime.typesprofilealljava.cshalljava.shcsh.sshlang.cshlang.shprofile.cshprofile.shsh.sshxdg-environment.cshxdg-environment.shrc.splashrc.statusshellssysctl.confttytypechkconfigrefresh_initrdservicesmart_agettychkconfigfilesizeget_kernel_versionmkinfodiroldrpmlocatesafe-rmsafe-rmdirbase-scriptsconvert_sysctlinitscriptslegacy-actionshostname50-default.confrefresh_initrdservicesmart_agettysysconf_addwordsysconfig.languagesysconfig.proxysysconfig.windowmanageraaa_baseCOPYINGsmart_agetty.1.gzdefaultdomain.5.gzchkconfig.8.gzsafe-rm.8.gzsafe-rmdir.8.gzservice.8.gzlastlog/etc//etc/init.d//etc/profile.d//sbin//usr/bin//usr/lib//usr/lib/base-scripts//usr/lib/initscripts//usr/lib/restricted/bin//usr/lib/sysctl.d//usr/sbin//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/aaa_base//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//var/log/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.0/standard/3dd5c9878412da920b90b7da8d4afdb0-aaa_basecpioxz5x86_64-suse-linux    ASCII textUTF-8 Unicode textemptyPerl script text executablePOSIX shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.2.0, BuildID[sha1]=d6d5403ee7aa2394177ca0ad198ad8770575bd80, strippeda /usr/bin/perl script executable (binary data)Bourne-Again shell script, ASCII text executabledirectoryASCII text, with very long linestroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) R R RRRRRR RR RRRRRR43Y]n-aaa_base-extraslogrotatenet-toolsnetcfgudevutf-8717b87cd01cff47bff287c8aeb189a6ba43e0abfaaea7673fb6cd7efac698b43?P7zXZ !t/7] crv(vX0zk=}ܑ ב$>ͪ w'cIOros~GEg`ж:3s(P hA:uJJޮRn: ='hOV[ʂ[5ضyb~ʼn}!,COmUϭ&~N BxܵV sH8vW t1җ {mSF:+]2#F07ݮ8Ҥx{8W] kuOX,KJZj;c~R7>Ĭ L9GR]~܅d) PвژAZ]}ByP,)8aBO6ŷV'.:}IhxӰw:Pq#>]6%Q W z%:T 7n"(|WMVVޙ1g7Pv%~-Dheѷ7(ak=^>)? e>r7qB' ܒT[M!gIAMA޻0 %F)O ?9V={ٞbQdcˑ ;IW.*aA<ϟ . mwZZbk%v|jDXBl/P]#pZ@_`;%=酭XSԋӇJo v&]vή,KE}~}lل23%;ժyД &OV*SitQxbԖ<lT3î~T<$Ϻ!0ژDq!hluŀg>A.QP |@DR,;\W }o- C M~s$z7QUѽѳBR б‹həI`TS#dėuC*Ldp2_|gɚyx֔+bXW9q,0 "H4 ^ \o+wenț:V,=]3{Qs"o/ qɩx|þۃu{9 ,i9FHΪ w/Xf,)N"{,?p\697ƅ7I얥K |蹋D,”t{&`HH7nmY'upWw[w:Mi$B܂ЎBmPKX~J[::`Rz|6!a#W4Wz:K"s iI@q&=,GKkDߒglϣ%iD&(kr"m[}Դe"89{i? {R7'Lr6bkLCgsݵܸ1OiQ a8wΖ+^a{O?[8VG cE̥oo !EP`(`bR '-AG/!r L7T# 4kIz:&ҀJJ3y5lND8$mF=H(v+ݧlKJm:/4K|.zmՅQo<<"(ooM/( എpEy1|w_l|9dZBW)"Èw@y[nGV) @=3r2vDAtUӬvDӤԭ rZL]a a`̩I1yȢyEL)U.e9 |W =p،翡k(OؠD2ug &`/_t?QOlD!ݛk®,o)5j2șםMk{9̏75ޫC({78G3'Bat9'n)tlSٜJPzts+f?BF4~&Դ[\9E DT˙E>7ȴW$*9r":~F֟J 悙r&6]{ n2=WZDzsđ*^ J=rҥ97]]9yXylkOA0NۻJtuw=G1?*Ut8 7ȹQ3tfBee8<,ltqVD}J0鵊tL|/ !tqU)59zNR^wS6 b%4(|ɵΐuq}o?zI J,(Hٷ:\^;@_.i47@ G7dOh6~AԶ|NIhП2E1ܮd@j"7gNV#7ngǂIuWQfJ&ӯTUuƼ td{+Jsc۲Fto|7(R  42(B N_1w'2e;k%lhW:0߽-:I.9"g| =pp 6c9X Z [pGN dDM2 N"a鶾\d+e+ПSڽ| (NUĩ]IԪ=W5Ӹ}G Sc"&=Ifvi1`Ј!e(jpF2/!aƳ\ GQ+j?p в-"h>FW Z$Yohx w9HPdb{-9n C4qx)9&/=}ȰYx.Măd3>XqPi/;I@d+3'Ԅ(WHfd%'$,^)CI/ 򲍿fN6/VyЧ)_7' ={gmW+Q#բ%Q6i"[T?8Q GyjIZFV0x' @iOޯ㓭a 9$C-RTYiƹOM RWQ} Ԟ" ˤU*e1 FԏЇJC9$! kLE&Lڂ4P?\J'nGDtfYjw/aMCNȓn`}X7l(_r< EN/pd.k魉 lu Bu(DZ7(^y`%- =my4=Ms;h7<~FGPy И_/=g7wO)fnCc _3+:P7Z\,DŽźh|8}nm4&nH*! 6Ìu3?2\P<|iI[,&- O^骢ɫ;.ovXY)B&(ZO†gz Q#d.S5e}vֽwꆭ>s8yS6 lb- |bc2,0,{Հ°]z_'e0j3=E-uRTe)?/|`nbd?\|xPH&  ߘmq}jfƆ Y7͊m6q/0fSs.g$'-Ǒ%]M>Ƌф҇uuCЁm.WLWT$Xr_>+HFѾ 9Q|}g)c E%$T@lQы顸ft9GnFqf3B'^ɐO 1دE7 j̺e)t<&A6=[{|pv/8~魠̸!uve]cWChKIL?yf4h=6TKE|T K7IȱiXCMP gŹGˋL;o/@jϥc3HI͈CCwj|ӡV%7#}OT&Kz;G ߫%|9c* s@h@[8 7 0 t8# 6PsxlEVL*Εk'aK.)Jq&.cdvziIToGxo• `[o)#y-TaJ!TgaTИfXoz麧+&@P F9egx3V;gjݽxI6Sb48J k6L^ѬSOe[%ׂ{UCBo5$풇~b *vj63Öuͯ/ CźP|]>oב2>Ew!LbVuj$aR׀LkmQgӽ R]vW 1:;";)57 {: WKWhCx`}2M*;k5@Uy< b8D@x1Īrd /SGSm?ڗ!aѦt!ZU)B-!-Kp_CB!AexVY CpSZ=Be7.ش r]v|X:I'a/J+N$S>u^f6EDv8SZ}!qY"}u(1W^o8X^0JԏOH-u2\_nzG AKpşW -Va5B=DHfOOL=qdf8,;O,gg4g0,@Scn75T҂x-Sm>yWyA x? dޢr-[9_IPDNs&;5u W )5c%53a<-N0Y{OUqV 2`{˪L&hm^w;,px8 ]P? 1n$ס1Fz~j ꫂ-:i-`M_OpUu`9=ƟkH%#U÷rcL t]ꊝ)B "koSޗ&aoni˾"j E *\7 YԐfnI( SUU(,G2#`֦179]?, ^8@ `l~q߽i`QJSg|qd#CO8΅Z#h% [Y,td {ES6>7@KZ'.T%Q\Q1YvO*ݹ&Z#Em [䄙 ~Lnu"kqc|mI.~d+7T\7)dKw& VJR< !!*M'MMg &Ķ(*X#@o `/VOZ3.foL9e ͕m`u jf3޲CcFr7L! ױKa}kFo63B '=x_6j@!uxYܹn!_hGG Twsײܾ;+԰}oF1R!_ Vxy7nž}][o3 1j|4(1J!I;2$1x-yV~W%|Z%.l uPjUSq͒C?f|~X]LpVh]/ʋGS[fENpbs]2HȶlBhBZ|YN5 sl M{ۨ#d!x)Ä2H5$N{xѾ=ڑ|꙯X8ԃQ!ԥ0yhebGҧag' Ҩqk'.GňҢ[s8Ԛ["Tt)CZ`1`߰q3Q47Lܳc+A)Kx =zD!{]VȱN]j9am6|Ζ*BNب;Ebgǵpk΀XGl)ng[c1p45YZLZЦ_̓1G2ۖJC|f,:x\SEoċÇ`#}䃴1W:M-GR"]FlNo)Ff*$BbhG¬0bp]@.Cs-_4)%O7^tpkMṍ#-oOP13LzϱZ(O"ȸih}eUs َC0ﳵ[{+1)T{օQ Xm:fa !)S ^ݛZf3OG䃘D3:f#&i.lWfht݃Wr 常6闵w`cG(ٙ|'cn4RJ"HNe2w T(c2B҇A9UxL b׼Йǡ a 71SݴEa ݃y gtݻP;FaZ w 4=|*ofG"[}.W .fs9Y*ć+"ذO# r@%ie6NO5{e+9QyD?p{2%Ǩ΀ :ZN팧379T`n&6? |)i ͊4xr9٣4bƮ8#~x9Vo49pʂI%9,4*+h9G-ȓدieX~vcI\Lid,z7`N<,}΀z'aʠ2?ЎW78i̡JtdI {*!MV?Ck%NuA^w:RɅU۠I C|a("Z5xXG3+>ɣ@5{L]Z*vlջ5?5eo@P6'rf rWě U D`(وSݳ})d2amKLre%n಍6}! $d a>s}7<[tn8T"G~ {Zh^Z:I^bb>Ԥ@6='>p dݑGG+MPJ^R}76!t : v;agS$aS]س}2UPK;FV9S1ޢ?'e'̛D[x1<'VPm=󆩬Ӝ`BQhl5'lHV31EARc1۾:FzZUؒhqwkʹp7Pv.YIzY+0GP -& )Ʋ=(< ĥ2fZ 8d@gbbd.ĜKV"~OɾJyI 'NނuV&1;/}I ń"k&J(݀D+کQɕ(,R [%9ߑۙyʿJ拪?,_d + F6iJB}s -5ii@42) AidZOڋ)ؐJv,-Cwo <¤Y!VR&ǴZ^ûC7,Hl̩Pc[N#IezHh&WM%h*@3@7YuЌ Iyuy)8:oN|!Z,Kۻirf(zYKvnEK,WɯL`M%Cj̷$$\8+[xv8)BMݫ,4yPPE^nS yKD^Б@r漗:(W\$JМ6u>ԋ5~*/cTM2+ŝmi ]veͭHQ{AB9wB`L Nm5`U1c.@TP~~tA'i| ŭxl`Z*倇jD z譞Ik6$UkwmQ[***|x)za d g]@_+SZp+|eRx96 o9Ѡ^s= -xŲ"AM!# ih-h>jseM"%'0>,) +RhM;q"X_NDP8PG%G>^߷Xz,.U N2=6hO._GCʅlU5 cD+ ֳN qIkzI_?^Ln%%N 9|YB*gCbxZڬWώeAр2d"o.[~!Q췶?;O U?IݙIgbg520f"`8%ɶ+seX† xEm]c{yy{Q?s5"1C5ѽb|S~YⓛgLd ]T+ƭӟ܂]@N̅CXŝ40%\є?z=i+i K{R~֡qS30էSOpFU7LErzg'f14ʺɪ%Gvzh3,z[8f^:7>EGĎ[KWo-9UߌvĢ󬗃[$>M5-՟G=yREϹ;C eLs.# RJJhe1 >_ʎ(b^5^4,佌 aGU[[ +Edժ#8(S&, T)`nfwv;D\ kqRMAWD"9oCl,F%(X\S`~)35ib|g"Ρ""RW 90+2Pq8!R Pv wZru1or2eq25U5O&ލJi]Ka#C׈C12itN,+O.˦W5`L+wYVA.ӃZ`֐th&:jVڠg3̗&*=6U/`ۓ~_<Ԗ@EL V$\aE2u՞I,6><$>O=Ɍi#4x ^H}x 'wrap܈F|/k,J9!|?K^bP1_Kx'F.R  `k^w''Y,l& Y :p1H(qnq{>1_Ab@XB4۶v"Y$E{{:msK]EŶ(> M)*h\kĆP(s>􋮄@b[r1=_a|KHe5]/^f5 &YPѶ_% ܌i& R.Ǽ唒<rc#Zw2L[<ZF)8)? JN@cic"#Vn>*ST>r C6r\,r08?q5r16+{"G'օ8Yoo?׏?*<~u-_R'BtWXLPg}5nYL8=C.mey'(ؕ}7S7;}U, giOE^)diƨ/zD,5vl\n nWF_k UUq%pL˸I Y=zoBR<@sAK WhX3z^z~=,Ş=ss ,%SB۩C.u$8I G) ;QOrc%l;ȘKOZwׯWOe#]mD5jI&+HJ+_IVLE>ֵZhz}*!*W~n420Mq{aMuO?x|pcXdeTijؑA|jnQv&BJ1^ȣ}]Eq}3{+CNHZaqTF@WO_w%p1`OǧO)NtG Z22IP}pU Zf`(d`B SW۱<_IVD[jk , @LCC v0۟]55BhQOYȚ!F-htؖpY`[ 4f7pJM3Uӻͣc+r͉e97ܲ>8Ơ"jP萗9*{gq-m4>CWVfH 6~!u /4 agCœ^4.ⲧ_6/tj[lGwh?z kD=/Go[/xbMKR4_u\zX{ώt) 1tD- y-1IWH-H Ut4t.^.$.bOYv_v³:f)););KX&$X \vdUW j:'2D. ߝ'rkYfDC0A$xG`5rgFCy\wGX,e*h<}ʢ޶DS5 jpyZ֠rrɒSq3#ڙ,oqANf[j Lcxc? Gck>\PD.m4il09䤞Գ '^ KԒq+3;7:`apj2/&K}TI^Ni(J6_dRטM-P;p bֺm@6È32w* qR`V6=fU {͓dV^4@&]uX[g2Jk([N $_ 44} 1^՝0 _vw 'F% *fJUYOs L`E`i%]FyjǝMnnyաiyCI(4C ɒ|?S NAUB$i/-rM\Yr~ƽIhx8i \Zfd/ޘQ{]5IvNi=eg5wⅳ*k@N`!`^5б&ʪr5@yI)#W3,'^:=_8>ו 5 bhǣPGP._ ouW:2&NgI︂ Q,=p4L(uΥ4 k ~м#$֑\ S;D[q6ZsE*W G+6X%&$̣+^ .&bkFVFX]XdJ4=t~+„סi@KA<}ʓH){$ `;:SSo[&Jyȑv[|OC5#U 8H|O/'(,Ǜ1ξ/lw]ӏx*jtLQVn~OzuB%ޞ9 g*+vC<\gH0U@N }-kϴ%+ЕfEOY^\lvbElu*3j58|Q IS1P!.'缁֨(1-_0:B9, ǑXygb'~x*ygunThXrUv AJU`V?P~%=SF`y?>}#8$ 7A3@~1Df释*" >wA؆l)S]5~Xf6_p FC|ݤ*k]8wim"hrRdoC-g<,A1 J \73zLP?=c &?HQuw.+֊*LA`AqŮQn6 SG,NtsI 5?gFOshExV/MxʹJ۰-/ ӱfƐ[e'N>.la4*s",vjyuBc^خ*I G[ G */j15VR|u0*ݳjGB.aYQ;{4ybt; pFɩ?v )4{G7\N6~ /-uP f{ry2׷Bt5woW]i7 6Q@E}݈"F@TI9 u߅[ ufS9fy>\SxZ|X h;?b k2ɳ3֎B|QhEgX@*zaOv fƙy| ȿSZ±ALH55'x5}˖q^&\]Klm4(}0_5Lk\!Kg SEbr 7Y(~͐7$VݚF%'mt@{aԻQGFL 睰Af8N ӼqFZza2!y!zdٳ"OE`w[KZ/M:SM1̈Nu6`]s/]xCsk<?n^~+wq&!o+& Rxi`o0Qy*gv]]7thїრ]!_gH4؇5tWw*G0y/ය-(#h\X&LGf?ؗfS5qOQ@@tDSxI0GGAq]qdoh~)f8^?)=xv} c R6) #H~2ظWԂ(VL J;7%JG0d`RSBü97d &ׁ H+u-!R]&9.GYm*0fQsUTA(t3 Ô.Q[Ã:U9SQ:!Iqo8m1fZdd4O9xgs}XɪrYTw .E\>y8@1\$Ҽ*eQ芍dNd,]ӈ#孲-`jz [)M%/KѸl_W*ДD`.=@?KbryɲjyOYU ԣ8:!@ J> B'>}E1M m$#GlVw`Is@|%'Pi!R&[=XjRUma;ͧNNTEa"{WNlkL|$R&)lb* >ڈ&8T8s*J܌HޢBP4j4[ю#>i/]Z r$n\YBD9,:(Q-@Oh@ޠ'D$Ph+=NC*wV tr9RTzAj%%{ Ɋ`щ <|co91I3ŧ*KBMlQĉU Q:v!G^9$jm'øʼn}t9d` qaV8O)[eVpXo~C+h\:#O#[tFF~Kai5cj3>bv[Dӂ@cUrQ$("ko;GiM%޷H6egyhmVr?&CмDOe' 5mDN/V,C(j$e+)ᯫo{* ^ys%0 1oےDN .̦ym\p%) L!E`éY(-d؏8K Br&l|Fy8'l"i:сMWU~A?h9" G75meYF~0f1?d ȩkI_'dcSqbAOġQ ;|:R"yp(, } n^6iq 0CfQ9r8 gH@V(h(VS}tyQn32IbӠ|qi<$.)Tҗ͈|DQ5/8e&*O$d6Z.zᗅ|=ypvۣpy3AèNbSC_tAtxlm ݧzp\a&hf{i{tX! ?,mjRS]&d[\ BՍfĴ@uz+ "&>6Vvw(;wwNC %S 3+%Oz4]typ&zpjÂSEH`ci 74y+#䫩9HPT29]⑞`^x#[?)RL6EN dgKvH~OݝnZ[tfӨ0tL{f2Ԯ4Y7Bu>׎ùab[lMS"Ƀuo-;9kߡ/`3t~rل±#`N1wSPFomA]bHh.xIA]aU\ {-{ڣ/e֎jЯ;ב1=,;V;l LOr<ҰP/_.Ȝ |b81>\V]c2F dO:OW<>tu;E&3=MW8toQ{_d&U)P:y+ Y2Fk@|sR̂$>u?Q]4=* ;#Sy6wQ׭f„=NȤ"&חliFA͑΅y Iߥ%S [mقY?j_#168:ȝ./-GQK8c<~Qnߋ4D[r֦Bk]aȐJ_45%mqܑLuH12&elQ A=3W455la7!A+.!wk O#kd7U'k}ncEVW [B0I kd\;nN+1A7s2,HE$}D#a#9iU-c%I!4b( P)i3IcvMKO^dLK0.:Ti9kLn!q1K)1բ%tg ( BHaQj~^HvN 'lEot2}fK|7ݻL<%5z)lj U^0y㋌IVe4;9L3GBCH~rY&IBQŁe&urP`sj$|s' G.[^X6 $[L|J]~mؚ-8+@5[cڻ;4 q;K"Y'O.pyg4]!axɍfЩ`y?A3:-aH;TMwwpx? ]h aЦr:gRE!gM<|D4y &KoXV~"ֈS"6!I-N;IWЛAPJOGv,Ka? 3q*lc1ܼH v]xSNHb&L)2K[¦YT\K ?VJSE.>?JZyQO7C~w(7w5T3dNkVg~}! ަ1`~dqZb^Htm7+v9 ܾm{\M-Ղ[#Ҿ\/h|&IP^,[;:hd2D[۬Jv2fXCqWL `7/-G$Ӑ<&#/ջS{Qp'g3.U!}2UZ:~SSXA::YVq%6A DJ lɍ-GrOFBv{ځ2jx2(t3JS)7BlئSզm8H 7SPF̧{J,K%0>g*UCu'+Uѵ;Hx3zl)`P~=Ş ߙWG9w!ѝV;Dh\9珴-ҩP^KV yHdCA>Qԟ*y_ˑ0XҊ`;D@gL?^Y "WNj0G[-V[}h3˻^69d랐0C7U%fvbW#?Iَd{'9eOє%t8(*_OElk|4@2OЌ<#(u܎f"'[s\ƼXm TS}dxdXAdn_}ԑϽB$$% Me`-}ƹFoeXuúhR/Yݺ'HkS[lEuRy5" U3%*(el8Ή*dICD+hzdSiT,pBs>9ln<'~E2]0"b`^3EU ˰M_c!q'繣Әt[[VB }S#N 6dBa]8 jDj@YtA1!X& _o**!yM;7k~Kc+[pqOU+Zۑ 2@s֚KeN2Ac/뗱 ?C(.mVo_R:Q]0isS>Im k'GGD* ?GAF3ܬ_!xԊ+yտ J+KՠU1[BOa|tBњy:ݗQTk۟-/c0}s_YJ2jǘ8`9967=!A[m= Bޒ|4+!TQ1P&,xYx# |r 97-rڒ33MjWCv|g*)AnpҘCe8~T?BFK-8lEaɻɚu)ɘJ TA2#t.t=SW5:8Yjϰ MNJ_E n8U.L'<RƇPR8`:Ԝ:?vpmw4p( 2Zp?9*s8nTz\I`>lB-(:5cDÒ VB%ȶ&!Sѡ;Hg<1)}t Zw-U"Î s!d! m贝q6`Q #pb%!ad=G7ė /OL8|m+"9X8KVՐ:ObqH"EH`̪R JV& 3;.2e7;UvobCXڨNc@SLZu~3R04\tޏM";S`g;,$t2v9o~ufB%' ߠ}˺JؕUN}n%Rkf_Wnl[na5  EqEOp0Vܔ;> ]nˡ2,}Q)Y''K{N8AIp?/)H'9"yAd⦌9u /Scb2tqb.OXl0񞅼V<Ս gT%*\\ IѺX2{[dj NhU7QЙgB}{npx?[GYPՏ޸cu{ +wSdF(WNJ<| JQ~=1 .~@ pҗFHa67i"Sla"Kowѹ׀CwbG/{P#gs4Rnniャ:W>`5ai?yzH8aZ3n=/]%ZXy*U+C\[Ï| `yo{ 'h)Ήn:VN!QuLOb ,[pZh&\<ȴάI~%e숋}We1o DO:f\uB`pѿxMivxO8Q90 KդF#ٓAu<FrX caO6$EIxueg6wP`cZ% ̷ " [^-5>veLMC?vN h`vME$e\ We0~W#3 a_x?3@iSт )%[ZKbiՁ Ǐ5gŰxJCRI;kڕ>'!;LRַ> D5#)&$u?uթ%"|T֜mFґG ܍Mۥ@yɠ||O r[LZ, WX'|74! up '.2ƹkݠ[Ϯ`-e)sn =7mg|>M:݃@]9-\i1zEj cvIΟPHm&D B&|Vk$%ꚠGa+Z8..y l.vNN㲵L~6%>)p)k*B"B@悩s~3f5JOxCx^|rCH|.g,V[e,1tac!]PKA^\Oqjz 2?b@*z*œ9@5wm ;dx5f]x"t',sZ.d#fԉP==ǩb7I{O H/p\HKlhT`,m^l~Q:g R0!Szʈ6c6x)Mk;*k1eR?PJugkǔY:ɾ6z3UW1&g]KXƩ LmwcCcmΞYޏR@H(ONZBjn-LO6ְ I~ /̫L.ݮ6k#KkQs&OsN7ͱ:zF %0]!v/5j<$J۴&cK] c-fhr(8ןWiG@"1Pa޺ +)~Rm taȴFw&|4-9ypr-O?.Ĺ0XAx/`1 ܚ~D+"Aq1l"pS]U8_Y? GhÇQd-z4Ugoʃ\ f4"f1d\Uҹ9Z)7lr?I=O95dd%j42@)/V¬ <˭ˈ,+qKt"wtYM˧ĥ?Eiq d #-ybCeɹmFӦq@~i<"gczI\|N-e$$w:2K+ư\źl nht]-6tzmW…H9)vj\M1D+up č?+Mފ蘋 ,e4.6ZVoוZc4@['yJ”# E% HcGeua]Vߟx_Ս-B|B2M^HZic83 &LzƵ+iVڼ}=;ZӒ@PfQP/\Mgpc xTk7wq}j{C MM<}K#0DZ2O{Y y%zYf|V"uy(X>3+7+E!/{d HlLc < f)97%,~3m񋸀7= iF3;oaCբB~G|kPL^5n,},8A#GoJЄ71j064r'2HbIx^F+<hUΡ d&mzo}wݯ7 W:*QB8oC9@f 7(aC0RSzBi4yo|TҋX'&qã?$`[E,w?u8NBFST~]DK@lBO " 1%|{r0^1l~Q-p߿' &!}cg7qݳ_"} ct!m< ~F/K]w$}] ]')p6`2`/#^/x+ 'c9b6*6"rBI7D|۝'/CPzfY ?2Dw$,'gܴ(y6hy +M)Ygk$*‹dE)`_*"xE1YW`гuEys7muuP{KCI -}]m KrqQȟ ^1QKMӪTK)VD |UÍ/ʶ#IghkQ {o1c܏w)왴ܞ02ň +Ym/߸09V*u3m|Dظ)].p)P Wꊿ*aFH a~W!?K]KZJs՞{c`mBN_Xew/iv aYQk@2;5Dn7f3_ngMw9WvMesAR,) !7CLY[pkm Z[XɽQYe^]`*^/6M`  f)dѨazʬ7M$CaM|5\osż6ywV2X7a`9%G/-oC@w(^_JQ,cu;E}]{m`xrkrGG9o+ 4Z:{跄Ü܍vc ^'I9 } O_F|uembIxn gLlL{&L`Kah'AB,}aUZN ڴ݇ *"q)XlBcxWnoB^A&}{m2q[W_"OB<)ЦY-GӽHf* zR<ӰJBWœqz"r zz -L'E?6S\4,ܺ~vNmWp]6=ȧ@_r KbpZ\ @ pv1"f"-5UIdc-9([[fQ|].i<{20rA<~#ȴYԮmY]Պؚ7CQvb!!2 ydyM$&]3vǔM''| LXN^R)osnLkL`%Q2 ÃpA]6 dh! k.PsV ODPA=9BwqI0HL`.#.}nRw'!@ ޏ#ٞ[D+fi8꣦ˏ| |뫖 yqQx*P}:%aU{*EȎf|@jv I<`<[G6L(?,j{F5IlEf#^; i@sdtm6] $.!,UfvD(7H E`s!<'4 -7b`ìa=:g~Iܘ,m{v>q%+ˀw+ UԌUn: w^U$yqu'd]n$+0[T"_奿gǭ֑& )_M>kT"ƺHd]Y>wآϝzd(81S Mg\N洮_A G,wg "m HBJ͛[C-gʵEbvL2VkHzqqe ݸexOЖm0 p0>8?2^l$-@ɖF!H`ͱքn1Jj}V0vM[ |rʊbz2$Ʈ]hF]=PȶKR?uҾ[0cӸijC阱@P;VE]=Is0cpI+`6"pۑ#h&O'>b%~Ǘ-4ܸ{tկ,9·,+>(2%"HS9f . x/y?E;} `O@ezvP|)u/;d}pQXfCB!-W \>$^-)/2̀}* d]3eS}Ϯ@܏gBZ;f"0~5rY;΁sĚOuHTTQ<{v\G {RK Nh˻C4 X~'؂UJo|lj.b֫ -x,(׻: ky,:гºOZAF3x^91c]{ݚ3Rdt$l܎`,^DoѲ_;t_?@ku[9[Ό/ri 4bxURuW$.&U?ʆ3 Kzi 5:-xM@'ᚽyLZIo3X -'W3Mw%Հ6:4e>0)r%`/,beBqT'azԵS7 A%7N&*. %39"TIht'(Go|p*pڜwCRWd'xuIX}nIWAXVɈ MiO7XJ}t(• 070ʉ~`#y Hi1yP ޏ,v^2^-ʙ]IOiq0뽌m4N[7Թ˃~b)`7!8=忌3jKq;K!2?>}gh) Xl]W7 ՗N1͈D}&Y:iƸ$gY²)Ԡ"LCآN!%YK4?DsUU\ȪQ~sl9HDQHl&=<k)"Mn 5_o#>z ztw^K?i6dfu˻p> igwHv68#.&$+&A5a|11y\S#_J^9Q=hQLIᒋ`N݋g1dcHT?R,e\͏Ww;RC8`0h9<6lHc&6rQʼn4j"1AtאQ\4υ!-TD%lpa23T|2/z,`kῺ9iB|\8J,&N!HGguZQ$#ՇͅBxVg,='v0yS٠l.$[ 2Pe[(2eT rJh*lF`,`V"݂5Y0!9%ZV.hsZ2"Md۽D i\"v<ԏ`jMeq_p0CdVN e0e;HGBRzx]/D|ByED xwQWA}VYac3L0JmsfF c>-uUZ 6Ugly$PּNUeD/ 2?fHm)u!/.g&sm-+_wn8>WUQ2wd..'5B&S"Q,끦1r)tAqh=[ $z@εXOZfӸK *?N`ʹ$X.r,~nO~SH ~u#NNCKL!k vT($({Eq0He:I]Y o AZC-9e}<l;C<΄p^>% `- /rS2I;X?:<=`pәUzJ4It|Vhm#Y|X.z?pIgܤJnEX! HNkZa&G*]`UMnH|K=%^']tn+c$:*FZ'%˿g}}kARY.#_Σmj|丵5cbWX ~פ*&NN4b->d#uWRhZg]7n\3)\ (biT׍?*ּG[x JX$s&BI Ĝ_-#wdi-"mD`R-͢( |@M–^R S}>RI0<1|z^%'i刑zG}j8'+i;c I(űZJ4AGe:5x4<ߍ eRXg5nĬ@XEgHS8,}U1&҆ 6%=te@_(^-ۧ һJů:N+w18$XK+P| xUU!9* c{K b(؉܄s\JJE02@`PwTK9)_>pihhb,@컧]OHo/Cڹ==ْl"Ƃuܓޣp58+'_{nZ{Q;aV{Ym#io{<|Ŏ|V\L$O-d1q~ g~\- efXY,p6.LLBɼ1τȢWhgЈ;ч3+iz3ēr*@3$E36K"%@(UPL޸AhqѬ:ru{Tic(eAߍpU%Hna@Vk̃Q#V1d)f&a^sY&_.}|AML0pC+D] O#B.K8z1OK$ O^]ZŐXabXM&Rb}{ 8F:pO۫]oMIgVU#YrsNlh`7wRImWS}?ONRﶃŀ))ᱵ`5;)lpe84ҝ~eGXŗ}hnAD.UcF%FpxuY}OơǨ} jW8\X[_iTBXy33d &0nbʅ.i3^pPM%ѲL@&ˆg,\˲)E&A}$JVAPQ`^T j**},6x8_Fh-c#˽VT3{R8y$#/ gO4-f|$j#^Ls*um  1QLU]dA .Cf u({9 KEo+ecW/ w0Y{ufa`vcR8zzCԱ+s&-遀3 pNBL$to҇/e% ߜS3_!+~ނ󧌗y;pz$_܉2h׌j"FrםbFOsmi|އN^D6z vz2J t>q-}tY ͠S7}"6rN'DOԱriXSH4;fSYin,HfjNWFBVk^k).'3^gsKJDJ93*T`?*x3C:";TaIO='ϖx!GT#o:. R95jzV25j/#vМY(C+x~DSc lρR_΋m됤%l9 M}YωNSPhj_+ţ$_LI3cp+GYndN|ڋJ _H׫~ݫ(64IP.3^|kr}FSD| Sʣw%m.y0dV$#%lb]ߢosmu֑Ųۍ8oezr^]{S (Ɋ˭5Uw+Pc}̴=]6[襺i:کl7T&5o#l701sbhn)|0T )h&[Mݣq?$$kNXQ"_^5DbvB!:a;%$*t,(3dldR]4:B1h"{z;J:!Ce,št=(pbe$#&ǮP/x +GצZ$ 8]K iF+/\6t8,sՁ!kLWBDp|7bY1Q ?rK$V//;v- c'B;` ZgNryk&[nqO VenNTIDUT`6|i J՘R8ρ%xs51:VTE5@'}yi~{.9QanlW m2^4e$ʸfͺ]o٥[!`)Fzދ7ihvhi#'I/dUCװ+"la(\N巟iЖ6(AuVW%$}PWo >g!vøC,Icj.U*^;J\"_`q!`PRL(&?G#s ,0ĸĄb:\T9L &=4)?&U\<ԑaS*lbA3WU!vӤx_R%Fv@ n7QՅj}0R%f&A0ѻ(xJ~Odr:҄@̹VοF=-( 2#ФT">? Ԛ+_ؖZpL@&~ة;\vܜ6#Jx2IF+MwM%CGon6z{* <-^ViiЁ-G }m}R(D}|XNpXs u*^7Gol= 9mѝ}z-XV)3DZxE&>#‹Sқztl3O:i91|g^7 ~8w @xH^wDBe¶2ѝWh`D;&6yIx7j ]ݤy?[OHm]aѣƒQtCN^] =>H1( dϚ&5r3{#I[PA @YrIQO,nhj]&+x[ղDUwƷ2Qi֭s a5,B 8ng-Pc?`|"W@|,%}r/:N4i _ @Vʾ wD4}eQNxyP)f]䚬*wRDT~ܷ[ҋh,tIn0\U% +'._7*J|fa#.c^kO&*ó2Rm5R\lR!wb]pK2;Ī*aR$I-Wu.sGPf^affघK&_P Pb~S,u0uRTW =|# Γ ӟ<ǚ,Lh ؉lK`-t칤:Lm2`1%b]:c5{4syi. sTŮ>5ס N&{}6@Gfsfp)P25&%z$}c ;WLNiFMaԥө$x]Mz"b6EI{wQ'<1E]dȢb1|cBj&zk`Q ӶcYɀ_*PR>q`qT:J$X ]7p 0fs_QÿxL0F!8հx?M\N2Aonq"⼓|[R.eTK݋T~,N]Ř<{.ПVݟሔࢀrӨ`#0WrCM!-tfƉ;>L]^qb9]ifou[8yi>Z)(jb²R!yj\BNJ;:`l-Zf?"HXξw~3:w|c l\A rP%‹y@cc1qivyqSjGWTNF\HDu:MySp*}%5:. cOQw9_K48ڪ$aN]h| ֥Gh~r?vk'W)sb 2+J޿&^8+E}\2Kz]Ͷ-rB4wҗz>Ta78Ye_{g3wQPOְ4@-(e!14qm,&f$| | ` \  X\*Uao?=D<Ss}jvXU>phs%nTŷJ;_LK:sr2 ؀!.YJO3,,HhAwȧE%Dwd/R4#2keƒb6\9j>y^re?cEAgB)rɔՎ}r021<nF~ C1V{!~s;juޑp-uNr# oz`O] 7Ihr DQ)**Ȳà j^ LQ7އP0g@K?shO* / Dd=/3_츌*H6/9Gt7+nLkmS{I5j"pq qxCOe_<O`? hQ&+e\K{I{O FweTEQ"i(JV:$o}.1z\Ȑ!<+KKQ)h=OyP"P NW#&Oq47C3wv}=ZksJA* !dGs{] @%~e$C3dJfytg~ܭv0qVހ@KI';| Q|1vc-.:kL\ce؞+ˆ^|e<9@r/,t;UL5/pjefU:u"rq%oˢ!MD x.fd$BBy|ۀGFhT$7Zg5 bw:Bǭ <㳩6up_혿"cSyVqV1v'OBȿ %}8Pފ+2ſMDzZu"ގX'TRG{Wqf"}  ֮:VI"g1w4قaWeb{Kuև rfE9 QCN),ľ=CEYj77G9Tygu'0֠Q_#!9#r`3Z29z2*N3CM**8Gdb\(?(4?P&n ߔ$;> ~)BwW-JAn* J61G2l9 ,+~WH~ܳe#Gm(WmKo]uS!hP}CoaSwKrmuxsdC$3E 2EIDvf͜szeg]_'{y3yZtʑ_k<ȸf3 {1A(o(@RЁ/B()VHOo՗lA~i)LQ$5E3R.: oP[9|mZECʮ ݢPQ zy> -+YMs E9lh[|TW{TtW=2.U"\I[_αR R~`jϝ/Bav)5ZVbŴVbSp|^D$l[O[~OV+7kq[S̈́>](ܯ#7ތ>Q\$sDII|"D# ˄vYƒ`<=G4E6>Qvv:~xznWo̎, x{dxD[h-@XN?4gX eђ,r ;$<01 00LVRwՃ0Yb{dQ͵?!O+8B.o$hʉn/¸u5QѴ5U KhR-w `:`Tc lHYjg P%f^djP֗#ŐGFuRۺ[cy&bvՍuP~! ,zM%ts'PI9ȇZ@i2 ;` L<.8FC9O>YՙLMഎĩ(JM䱴=uH޲(tmcϴZ3+`#z陦-n&0} 0 DvB*HZc#0Yh'7%K) _HQKqr[=NHVo8+ KcZ } T". R r#[S|/rԉf، `\B]y}\ ߼ . {R㖘rc?Mq>Җ;[DWIr s 뵔t-!)R^"Û R꽋_Tc+KKw݃ z0jABZ2 (3\GْwW69\ybN"xxRR^}rݑVp;UJ׳V;P{);lN/e=,퓺zF&N y.fP (8WFq>mX+ SoSnݧmG1P h_{d ,ƩZ"z{*$r fxW$e%ެoVAŨ[ {0\Ѕs(Mze=n< ];ݩR3!Y?@| ]!k*v Ƚ8px3pmwRPfTE"=x[pqm*bz\pآ=,YErK sw@5ި% Sy _yT>X{򼛽=1q-51< |{ÂO{ K7%9|^Qdž@U)L^+E_} e̳G$}oFUh?͟79^J: 'z-yh(/r6fMR'b_p7uӔQqmQ3f-E,ӂ {22gҮA!]_0NPbח,Cr]R*lXYe2e7Q(PW TwTrqgHI.tPfpg;֯ ո%Lbc_Thm'5(J(T:} <'O E̹ - z2zeI5G&Kcu?hX혭51TZ 2S!5QcjLøݴpiZ9B>9Z@?5"j6ܯBj: ,OIk f,#ce|~#GEwyB 1w w7MxQ-y!~ܠǤDNxt{&MT ]ؘ Ok/Q@[[ :)<0r3td^F;W L: Nv72>9UbvMeV-lA>̶nG J7ȏ؏lك?BAxoX8<[kQIAWi@= ^`g|p9g*FtvǦ:BB7 ebkf/ 6;33sLY~Z ~]M\?g逢m0V*iTQcKbH)bb4l}"9)X"S|7ӭO1l*ȫ¸k*_P2E_c6bmPK&zbZ[tNʨvϺw:L%/u E$[s@;5`5: yRϩk# Y&Ӳ`-|GÑ| [<ۧ'x}xci^D凢t.թ9@M򛨠xtBd`J`ScY1?+otI9M Nqǵw9>3,~jKSL1., !U +w-3ί&t|71RZasT΄2>w DZ F}/uG_QrsF kn'@&)۩ _U4AG,%ZM867C@Qt/1-Ͱ'+JL?WaGV%dA sLEn)<.$s'u8? |G"K'޸L?VVI`'|aĨvr;5^9e4.*"g|DVP1'l;&8c lw9̞ؼbN!jkp(KL{AFAտz%)hjqaiʺt#B~&@M2܍y;ZVт0&wR(0K+;`X &]PpApBᣯJ RVpMOf ~%S-d;`E|c*q6P0iN8L~=%r}u@pW..G^r$aoH֠L; ^~-ٛ V5!%h򶇾YXwϿ.۱- "ǜJM%M`,{W.!,PWZ !.M M\myLKo̪ mI)􊵜RĪ{Ψke Y6={Ñ&+ZC"ػkY]YZBo+|x&<+BةݰE ^s&-r~X,L5 / ǿ-',=F:]F=qL쵙e7Xx2vWaEx+)o* = +SLM2?dT֡ą^'9r1ņεyG\`zǔae*v빟I$ҿ8e|Jc؟h^SZ?jZsj@|Nr&KK9oOFJh=ab.,FF v8UQl춱l3k,ju]d:9iE Y'{tf Q.-(5wP1a6tM'L=(t%g$ _e{++D1)H; 9^fac͞YOc??A֞\+@@$y|sVMH&IHhFJvs N㲁6a|-HLsK2;Nd\h;k6y\ gXhN"UK7/Y heb x H*vvd*\eϷ,]p022]˂']G|W2A.S#n<㢎XkܯүUL4/.wlnmQMwky0sj~b[-c`A\Hʺdhr7u)Ut ]t&O?\GӾr_^$-q۠% %*oc_f?dyTFFA̜^(+lx't_P{oR%q~1(nT&f#KO\cd <%[sU"{0&'9\"|@d+Nf-on"h\n#؇ǔbcWȧgmla0a Wn훔p/60w\[en g!|3hHbHҡN;q ND隬WX$Czȓr3bryQ8Apn3Pݛ=RBڃ;UA#!joik[EG#mXW$pTndUZE][>>E !s 3e~)IM{5ݮ{TwQRy P!2a˞( ui؎]|HnDR~Z[Ѣ{(D4zOdCͻ~]}im^,ﵞhYC7 ;BxX7bON :†Ajfx,cYJJ-x1XCwr,݉%eD=') ٓ6{<Jz_fjԢ sHG0i`E}!mjj-'کa+ڦ+Tre7r2楴?n/hծf|(Xi /:nMHޘozyOaNo;to҂6GN3zeGo'2adpMYpEj<81)l}æ(p".Boct^kH[\%sS.v|iԷ"H8=r l%$ Es}wG?|>̅m.VaD+Fuůb Zl̆NfT\f`c\Rq)&nV1ͥsț#Bܹ\EmL\/P;"t?=]&]1\ZzO;'/4߿ ?H޷Fʂ#7+@xH?Q[:(])2!tMXN|J_0TynH[>`<om/6c`NWK7R(8{(So}x=h!6:B^ߺ\R:\bUp!=Xc] vD+rE$C-N2XP{lUo_-%X#d7`|-$^0 AvMJ|84\v*]}Qԁe$P}ZIJq\*3?׫m,F#jTڣD4(=;Dav f}%ydt[J3\{&>in~OQD+:tj. cMfH6?cn:HLe۹qhV5&SM1KN%#|4Yu^[w QWZ"㾵\*? GrᇷdWooAtΈn|,/f$*/>$Bcƈ6p!_JbL_4W O7i'r?1HrJ%N63[m%B9yƷX(Bsq1 QN]JO]3j$€xLlI輱S ,a̕_9t( USt,*c0lď!@۔m{2vk^d[WwT/(:n뚀KN }mJš!w8la>xk?~M_DćZ(McCrԁp{%T҈Nl V!ܤ2f)ŜH@gb|k<hYd0 ! &pkHYT_N,YZ]BR_ [M(zb*fU{fM3m툳Y#ͦ?_Dk?ep-%vth:Ք@M9`#ߜ`$&`ԽGQq17y?JI¹ SƺH1"z'[g;V1-PyH:+>]M@v:]ie!6p cڞε]*k%Iû} nEp94r]4}^XO9aKU 49>}cr$71\ )4 kdi& R.):|AQ'\,u-²P6j7yL+ ڷbuUj5Cqh8?4ms}x SA=jM /^,Fк}G$%AU g^V(6S Bh% Ʌ5FfDɋD\ȃ]au Eᙃ-8dɓ@,6 <,[DQ-;UzTMdP[* yơ|="OgYʀ=P^Hb4~=F`K~GFeЅb q|ux)3>Gfl˯ 0蛛NKlD-@χZqvŒ""|p%Sڌ(ֿAiH_&8Cyi!F4s ƖȁΚ363 Vy#:hsw޿I5)2ZYL:FezK;ЙQS2aJoFHe̸*KM:YٴCR[mՅڋi /s.QbDݏoZvCaAJC L_vH)8Jʄ΃ɓܰZ x9ۉAX+y<֜q,Hm)p <ğLpCp9NNk67@7&ǘ +cOr1 E)݋U.Jaw:ykBf{oL袺Ws-=4 Y7-ޥP>MF EO:)@չQlcO*XQ❓m{vV0`btUY(]', R]г[ _,m1e>{yk0S$S9ljo@bwRmuD,G l@tr`o,vr6:oCxnVm;>wls U.OJt2t{ɶ7Sq_֍97Kl1&<&&@p7H{KW-|=p1USoH< 5 ;%X&𘃙?eJtg-oW=EւVȐ$y[b 6H.\E6qӉ N&a[!;!]tB X(Гz0j K>E/E]W-JrPZ*B_99 Gdd#DǎlzJc4d`eN:J]x%32qSؕ=M 9w,oqgO**M glV/ úBk^)2FC0ω %H1[߸uևsmݩjqa"+dih_Wq_5EQ-JC,+ðkub?ʓN_>O_9 9vYQ Ҵ' ?#:bz3M '仞C-LL.`7bcڥJQ (>chK{_@Yy0:.t,wʉq^Pk;Qv9š0(&#EA,v;m9sfY7[CioSWWx⼗lɦRBO#s:(PP)y,MG6??zs+^RXzh-“K8mhZ+$hb$Z`fOq(xpTв^^;ulY}·khN+$? Q7kۆR*3}lFPPo3*~θ8wq53>$AZW>n!AK`x-vrYB޹:%7\yJ-J^nނͿKScnsDocO*^wZ > ۔hxՍoq G}ӲcYY"f(ٛd M%4f,<C<(l!m3D[GT@ )`"fee' I7O$ìqڵ |pfF'%ɂ! $9g35+0^_+cV!b c  Pv!eE,|mwr8RWu^|$ui nPߣhk"fm?U₽:E}o4~"c 3 J@'ww-A]4<[n:7\|Y%AN$q!gdYN_lG.44ն'4ZJ; 9ʩվ˩)v|M$EB҄gʮk:{iy,?HQ8*'b'R>b[$W'X8YQ*ָX+ϫ]Vy;4a4eT|^(F6!5# (v6piAX|dc.Z^юա(]* K%dȀZ;8[ t1 \FVxN~2͈$uq'y Y@`I(/ ?4_Vzafs32LCw&cSA8w90E3yE`ǿ'ySO:/GEKx`+]Päp+V(ӧTs[#>҅Nm,=]TƗa.q;fI ]< ZGݕIWE@ 1fT1pqdd` e{q>_(abnR{RWGYtϵmP ?*UQ`,r8ϳ y,LwDk[y dc+\W(s` $)-/`} ۉJB#,F#UXp8X/o^s i6 oO em`@:Qa8M>͝p 04Aycr.Id!!=~].P cIDԣ1ÌrAkݒr6p*ޞgR\BհkUr ?63P5* z7QtV`CM*Jě/Aǰ x=x6n|2Ɋ]2E~^b̢.(*_/PD !NJ2-M|5H7^M` =!BY8{gZB}V5!XpC4:Ix8tiby%}z !7= 1""QE2`k&Q%WfIDPu= d)rɠ)lդr4iP{D_7;&HeAT/8_|*`|Ӈ6LhQH"ujJl}'LBM1Xם9cؙAL! {XFyNx;eoOƖ ZB>/8t$2(x ŏiC,섓'ZA\YD`F"`AL$)a TQ%Ʃn˙zo>M>ÃT 8 Ӏ[2?j7#FވRta)uXVt:zhSғ i5wg74>~ߕ[AgOzu*Zl+U(ܷDγpZ /,S!zFұl5ns1 ]C-$ q\R>}`fsx.ȿh̕x`m)L>b$.Ï%%cegv!'t6p\bgt6ۭF}W”oCwx5]Ba+e6)$$f*})QUszAo Oe _E%oYZBY8:1ӧp& JIB`8WUjQ iL/Eq6AB*W(Pp3y/( ݇ǘUq˴^`}x95xʟmNk3fYgW[F+ڠkxt)M F.iq%Ї$":m \Q< >mrq[%ޅMEފ: w6 lkT>zћ övCgL %L;d6??_^GXʸ#$ONE 5:lh_-Mؗ[͡DE{ۜ,Lm*ߡ%N̴j#CwH8Ek4\/2Э0FCLNh~u+lG*͢-Zvd#:f u-I WRrUL2m.9Z:WIR iY۶T\썢*a^ʏMQVa`QG{je4j_<r\KڧJiZ-ǦÝw\_P{AdTFLd-u =m]ӈkl?aEzO{'K2%s1I}6|^4-se88ADȫ"$| YŲr;Gd0"vDmĩ_t)!P#t4 IǴ?>?p)qn_s) = [!4ޜ- l.Gp] ZCu g^y@->\AU 'U6pK𒞶w%| W*ēv *@_l W%A NluN7dz-$h-*Mes܏!F˼9'eE\Wk^.8>w :)BaGdȆfx;&ݚ͙)FBlxM1Zd<~kCh~Ak*Yb{x!iu] t#c/$; ;PeI=ax-bg|XϳF u`:A*!]'j(ďTuznmcZgܶj_{˿[eѠ[*W 4OAݑ>' mmC5M$|dz"~fG3]|W?qbQbm@q( _z5!uaq(L^:;Bi pTYp0־#e}vuyVҸڎ#Bx1aSЭ+Sq+IZKyI (_D`!x2Zs$_0MVeda\ LJrIaCLI SmJ=!GQm4dXS`ZKM,sbT:ghP?1*D.Ψ~L UiK]oX|w)$>?n9xwβk eމ[p7HicXI{6yʴoI_29D7BnqnaJAx.~miDU#ʅb.j̛Ya[b~XFf@T pB] h?tެNJoQ_OD)bN\)4j'RU`sfcic]qUS^߄ewX bMBh Xfj$w'Սj|y-bI$^e0EJ:O-ĻY$pIQ]c? A$ x. | Ŏl=\8@OqM΂(3}j_pА^|ꯒ :)WFMBRc:`' WmCJ)Y|Jjx^3 D?ʊã6^vVO?;*Gf⸚~L"6-[Gk7>lPVågKpTNm~Ə_40 94PcȂlgrug`6)@V(8n9Z;Vpq æ+Zp TaMJ;+(%EDʿjf~)vǚeq-{I`-߮%t-i'ߩ+ H'Cc[9ՁAI"w !!Whu(ڥ,.wWjW3\U^̝L~p'&,[' !1ŷlAnVvM119U'|!F!Ǭ.kO'Wt߄&)Ln'JaɆa M^UۿCX;2e%deCE=[# ss b̐QrɪߧGuQA]H#w/}rL](^2DR lH-=mt]Ï._d\/Y)d@F3gHc!ꔑTZ_"W ΔCJ7տ}UtЉS:vba&(Ӽ׻t-=MuQ\.gTEUͽE'+1d T,H^"6d\r s&Q;rBia<te8ZHsjM ҂emיD(KjI$icFPjYJ|[ H~h;9ZNOe>l3ªe/bAS j## ~HyrQ "$Ds&S)}nwV +pvmL/u.N1Njenw9 Bq8^йHqnȝ/0eg۫ј/sEMbw(l?Dc48B2iX?1>ƲO1mr*(e>%\fr.Sil?Si b.=I{KR'X2h~:}m;{*PqӾ1g%yPd! ɤ?;i cI|.?ca$<^żax*,w_W9RWpiC!w6{|X ,93xۃ;?`"Z@ "׉|,1$9Nà ݹDMt"Te'lȦ幈?)cEүi_(dafEL !9C] U]2׮ ^i1:/pubtd]!@nu\޻S өc}2PyY-m|]#k{(-H;) 5ZBngu}xgxƶ; ܮKV6|˽&{Ű&nTUyeY\?oyT ћW1'~\I̋]$v_ꏯ$Wx&m+.l7YVY|ȋxZ/؊mԱJ>7rQ2 ɑ`X`Yc|*X:lya;gKCl 8ݢㆿEc*qmcU뮺1/H3}b:i96(WJ*yr5)xʖu&lpSCUbzlfKtv n e>/z]uYWj}DQݝ=+ ۰gWSɼ#hg(ol~bͪrM%ߑ9{H."׺mtoEtVyfK+^2>{8Zj${TP;C6騀QVBwj,Y ,aCYe\(nt=ؙZ_puhnCk=I^^3# 5r0R< 8kH@in_: tRݠ1!KzЂzDg3\sTz[hr>Xfġt Z590"3%Q@*?"8=3yIF֝3f̰s۵7o1l{9ueƎj!:3gV&^F(E:l>Nx?B.T-Q"١j%B?Ӡ6{|s\w?;H|UjS ij/h6.PN_$Whdž $YRomUYl)|IKgqFB/wW3آ') Y\m4펌?O>I**"{_b:`ZZrH4Rm YZ