postfix-3.3.1-lp151.2.12.1<>,"_ٸ/=„ a#wƿ6h:ƇFq'yX3N I`|b.E -5KMHI&7 g[0>KƗcJt*E+$rcdkwLfxwξ !mDm\gyD$yRRd1i ]zH. X* 7䋗׶1ƕn7W$:i7X}!㈳F['-kb(kO(V {%ؤːzI @_>Kb`?bPd   A  !'/e u&`) +d - 0h ] _tbg$kbkn o5px5t5ttu(u7u8v4F9wLF:|F=S>[?c@kCsF{GHI@X Y< \|]^'b)c*Yd*e*f*l*u+v.h9wUhxXy\vzabbb bLCpostfix3.3.1lp151.2.12.1A fast, secure, and flexible mailerPostfix aims to be an alternative to the widely-used sendmail program._obs-arm-8SopenSUSE Leap 15.1openSUSEIPL-1.0 OR EPL-2.0http://bugs.opensuse.orgProductivity/Networking/Email/Servershttp://www.postfix.orglinuxaarch64 test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in postfix.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in postfix.service ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-postfix-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-postfix-update-$service-new-in-upgrade" fi done for service in postfix.service ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi VERSIONTEST=$(test -x usr/sbin/postconf && usr/sbin/postconf proxy_read_maps 2>/dev/null || :) if [ -z "$VERSIONTEST" -a -f var/spool/postfix/pid/master.pid ]; then if checkproc -p var/spool/postfix/pid/master.pid usr/lib/postfix/master; then echo "postfix is still running. You have to stop postfix in order to" echo "install a newer version." exit 1 fi fi getent group postfix >/dev/null || groupadd -g 51 -o -r postfix getent group maildrop >/dev/null || groupadd -g 59 -o -r maildrop getent passwd postfix >/dev/null || useradd -r -o -g postfix -u 51 -s /bin/false -c "Postfix Daemon" -d /var/spool/postfix postfix usermod -G 59,mail postfix # ---------------------------------------------------------------------------# We never have to run suseconfig for postfix after installation # We only start postfix own upgrade-configuration by update if [ ${1:-0} -gt 1 ]; then touch /var/adm/postfix.configured # Check if main.cf and master.cf was changed manualy MAINCH=0 if [ -e /var/adm/SuSEconfig/md5/etc/postfix/main.cf ]; then MD5SUM1=$( cat /var/adm/SuSEconfig/md5/etc/postfix/main.cf ) MD5SUM2=$( grep -v "^#" /etc/postfix/main.cf | md5sum ) if [ "$MD5SUM1" != "$MD5SUM2" ]; then MAINCH=1 fi fi MASTERCH=0 if [ -e /var/adm/SuSEconfig/md5/etc/postfix/master.cf ]; then MD5SUM1=$( cat /var/adm/SuSEconfig/md5/etc/postfix/master.cf ) MD5SUM2=$( grep -v "^#" /etc/postfix/master.cf | md5sum ) if [ "$MD5SUM1" != "$MD5SUM2" ]; then MASTERCH=1 fi fi echo "Executing upgrade-configuration." /usr/sbin/postfix set-permissions upgrade-configuration setgid_group=maildrop || : if [ "$(/usr/sbin/postconf -h daemon_directory)" != "/usr/lib/postfix/bin/" ]; then /usr/sbin/postconf daemon_directory=/usr/lib/postfix/bin/ fi if [ $MASTERCH -eq 0 ]; then test -e /var/adm/SuSEconfig/md5/etc/postfix/master.cf && grep -v "^#" /etc/postfix/master.cf | md5sum > /var/adm/SuSEconfig/md5/etc/postfix/master.cf fi if [ $MAINCH -eq 0 ]; then test -e /var/adm/SuSEconfig/md5/etc/postfix/main.cf && grep -v "^#" /etc/postfix/main.cf | md5sum > /var/adm/SuSEconfig/md5/etc/postfix/main.cf fi fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset postfix.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in postfix.service ; do if [ ! -e "/run/rpm-postfix-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-postfix-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in postfix.service ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postqueue fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postdrop fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /etc/postfix/sasl_passwd fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/sendmail fi PNAME=postfix 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 PNAME=mail SUBPNAME=-postfix 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 /sbin/ldconfig test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable postfix || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop postfix ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable postfix.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop postfix.service ) || : fi # --------------------------------------------------------------------------- test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in postfix.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart postfix.service ) || : fi fi /sbin/ldconfig # ---------------------------------------------------------------------------~g}]T) .'\{zisRR%'$H%XR1z21w h ( X 8   (   sR%'$H   (  H @H ( 8 (    x +  x\f 0  `   @      @ 8 <_g}((   # M -  E#d   Jz r u M&d $ +1+ 0 uv%^23K T &  A큤聤聤AAA큤A큀AA큤AA큤A큤AAAAAAAAAAAAAAAA______________________________________________________________________________________________________________________________Ze_______________________________________________________________________________________2a578b63978d4658a4982a6cd6cdc8b123eb297be639937a6febed1ab696868d6233f37dc93ae05d476bbeb03ffa6de4d006893a9d5c91d38afb66506d224e9dd5e51380e7ec868a42d336c868fc012ab95cac771d95361504cc6040b8d86221c00a478a7c120c4ef2ad0851c0fbd50d3cba2739d5ecb1be16e6bc4c75792d56d7c000b62ab236b5c5c4db8ad7edec232b2afe95d85c8e064a5c9f6d5308620fc3a8ab17dd75c874d9da896e729c516273900f8e5b80538daf60e8e95ff8666084c8bf2d0d78923734d713667ccbb34b703da09da9bfb4bc1ee1930e29252e5338b19f16f2cfe9cb398e59544cbbeeb4998718dbf231251a41eb31893aed223bbb3d6775b7fc8042b2b68232384694ac3bee6d1100b87f9dcd0840ee935dd2b5d1f8ccc0f7e3d745cf87893b9d1feec45b6e806db6b67180be55e3bf269a399b97a0a5a23df5f84d6c4396e5e1c4c6b10c690300ee392cfbf633002e300ce2cbe523e826b0192c39b42d71597caa8b3e5e166d1e6af98528f046f1ebe67279257987a8bb5574dc385076dc07254f804116424358cc8bdb9a9b53a15a83735def059df3100d111034858b951bed85886ef965e6b0d1e776fdbf45ae21e2f81d797aee72e247d4669ed2bbab4c643153c61a8f9d93e3bc8ec25cf2f1c20f89c2e16569906058e785c9ad48b3eee1736388dda6d1303b68fb53ce18be51a0da4c60677c89f6444d740476b907d17e292ae16eecfbdd150a844c5b045f87aacd11aea0a5c43fb296adc6ddb9dcd4f5b6a67ee386212bd88629d29028243f3924a4c142fac085b0a420236276365e4f84728f8a970d6fb5b22ded860610d0612a52acd3f1c06ea8f43d29aa407e6ffdc0dc4ca974182bdc5b770f7d9370e741cf0ef769e16b5686ca90b10093ce53f1dc9505cb24cf31e56688d228c4a739fd8bbd8819eb235158e86cbc29f880292aec7bcfaee17dc2cb48bdce2ba0d821c8e08d7ae2c7497eff436e16b4a634482713c4efa3bfdf76ece4b89e455afb4f4218a6148eb8534a7cc6a2ea42c5b4be1c455279de3a10fe62a9a86b2f6e752331a873e1e18b670669ee6b6369c58b1a0b7dc05337c6a3a733c81b809a21ba07d283b050399c61c8aa9b4928006339bd1dbebd59081f7ea0bf20381936d55bcfcad72642fdf3be782f4cce5b80154b8c0973317c625378b858dc436fa13d058a683b575d7ac5924452faaf32bbfbd41f816947fccc3ff2fc17554be7bc5fff99d71ebe2eed12c4a05ddf1e305d7155fd9a68b5c948290c05538aedf58e88ddac2a7488aecd6ff7ab94a92159da177b67105cee1625528dbfc9787b25479a83f205e783d01f3acba8f28a41a5aaf1d631856a9ccb484feeb43d97b7bf558f291050ee114a5acd39bc6ab523fc65209ca3eb9b9ba0aa262ac4126165e92f7e50d4b1828e8eff157d6888b666880a11a1ef9db73c0563479078f45017caf1de7e9e83438f48357384c506c24bd7a4884067676dc17a43c1d737a8eba60d3ab7632f494665156d9961cfc75d9f200710be2c198fe66dac6fe7d2204377f9e073b52a488616ec4ae766c32277f60bba1b505e3837ccc29587c0cb4fbf65d20b17baa9463b0fb6d73737159f9e3bedf75645dd7c2254331beea55567da92f3b974d4ba8194ff816617c2faa6edec2450a9cfe004b09f3c37a2ccb4cd6fd2cb945bb95790f96375edf51cc914da2df1d516f93642aa01cb8fa4b9028746a7fa02a4bbffa23c147a7e6e35f060bc3c158b12f92a045d775c44e6d0dd752c0aa24ac860058584c88d06e960b5a57b16fc60f2cb2907b06fe195ccd533255b34cd1b386f089cfc9513d80fe2d1c4be8e1ba570be96cd8862659afdc6039e879f33ec6cf8f09634355f6da80d6e3f96eae9bb97b91feabb672256a47de41e31a0ca92b3c2b9b32d24dc938274c89aebc703a3557a57621dadb59b26a800435ab6d9fea6b17acaef058ab32c140834d421cea3c54bb70fa89f3316a2428748a4726ec348c75a4080a93bfdbec128a832957d1d067706acb51918fb7f922b2fedd58b585dd0be9df3b9be5b7e78fe845b988b44d7eb1eb6a3fc10dfc2b22eca1db8ae44bbb639c0a0ce7c359fbcc383f5ed1f8f292f8dd55125414ae8a7afada39e858c44713976c45c003c028d1461620a696583807f4d5774c1f7b38a1add22b51b0dbf3455395378b3e52ad66ccc9f97c826714f7e6d1a74e9d11a22d51c2cd5c24cd4ce9978284d09e98279eb2464e31509a791c4077e357c1b176da2811d27cacf50cc0d26b458ad7bdfa963d4d8ab6cdf656c131ed7e35f5aa3b974cdb927ccc0741cf7ea9c84d88a618641af929b8b6704a1b5556e52ae12ab39799af01274f0de37a0af108cf7d3f1c06ea8f43d29aa407e6ffdc0dc4ca974182bdc5b770f7d9370e741cf0ef719eb235158e86cbc29f880292aec7bcfaee17dc2cb48bdce2ba0d821c8e08d7ae2c7497eff436e16b4a634482713c4efa3bfdf76ece4b89e455afb4f4218a6148eb8534a7cc6a2ea42c5b4be1c455279de3a10fe62a9a86b2f6e752331a873e1e18b670669ee6b6369c58b1a0b7dc05337c6a3a733c81b809a21ba07d283b05058746de9aaa3959c6dc700a121aaea4c09832423fa9c38000fa73ae4d4315500de1a5dea57dfae2f58f853e684b3a2031448d741198f8f44c433110f6d3ceea4e52ad66ccc9f97c826714f7e6d1a74e9d11a22d51c2cd5c24cd4ce9978284d093c95c990e3bb19de57fdc52eb5a4c484035dd9a20310557c5e798de6330cfbe6be5401113701bd5170d42f368c0da03dd362a096b4b1d3cb184d96a40cd07b02b887e1d15ee3356e8403dfdf05ecd34ab55583264f3471312a422f6a55b200075b7e78fe845b988b44d7eb1eb6a3fc10dfc2b22eca1db8ae44bbb639c0a0ce7c361c93643c159c4b0c0ea97ea8c6876e9d5b6760d4b255cdc024c8debbe3ce62c5f5f6d4de056e5e5a31adafdd6eceb840fa064ba75f0835fd861408417be484fcf8446700bdc0fab2356d3a523c4e83e94c601a050cfb34a64672c33ff1e2a785989f59b5c1d059226aac2dd4de75f128112b89c7010ee58fba3b5abfb60eaf8d216d1c6f6e8a7fa0f2a37f9b527b6036b2edaf87f2b305261171cb35b68853e5de2ed8743f415bb4964bce82d177600ffb593f5c0e7b9115c4412a8a847c4518b2c90ee342c21c3d8a43c1ce78ed6eca689319b2ba352814b96ac85b4d16a541a6b9cacd3e22c49310814f117f11e39d70232d0d4041e4a4193678819164ffc3c1781307c8510cc11f44080732721a834af3f68dc9b8eb2505e84a0ee1f1edf71c2bdb018c19bed98a97e9aa2b81e226a35ae771eb7cf483fff465acb4400ea0a5c43fb296adc6ddb9dcd4f5b6a67ee386212bd88629d29028243f3924a4c15097a362c3755b59ff337a8ffcc3aeb10c57932624185029ea395fa6b9dec6498d2e150f61bc4a088bb6f07e809f61cfe40e1f92475afddf5a0c1aebbbd02cc275a9e0ccec0cae2c0fb18642f2e038b34e8ae3e940e89f13656e279435c48f880b31f312d5aefc26fcea8ef8a5cd86d78a89952ef32e32e3fdca0598cfadaa48cb6f84d4d81edc1e67b5090615b8843e309f42c5dedd2687815c33af0262cef889c8d9227adc71447e3ac6c20acd78e38b803500a6297e3165ca2ada74049474f86b047d722b56eaa8ffc9fb596e573a8ac0c68bcd04e066b3760f874788a4db70ed0012ae1baf9688b7985eed154f7ada9e4e2dccd3b0d63138241ae455db63a3db5b147be29265fe51ba61abc46d44d5002e6a185d3a42a66181991261702f5d07ce83280dbfd59c64fff72dd8e9b1b7c9befe7824f010f9fd8372c1467b796d8f7bcedbf66c3a5c9b426dae9df92a6e37f847bfd0fb9904e90d7b358a58f261e1542c9f903603f476f613353d88d98e11d6c5fe09a5ed3eaa7c057b5992897d0f074625badce53dcf3b66cce6ba794b0ed6e3384503860973419b9ca4a125165066d1055e59a5d019b89bf88359f9886806c578852fd21c698f9c865b6d9a9ce831d769d0673ad0c92d9fa8366427a15fece5a1b1f8e42ab507fd577242407c50e4d9112d0cf22b66fe876bcbffb352d535af923da1310fe2969f5abf6d8efbf5093fa8a6061ed67eff88a9d7b1632859a4a2552e2d1daf9b67afba123f85b713bdfce17c97de6ec1f4f99c4b68c2b34650ab6dfab3a8634b6135e388e9e44381e597a0362b5423e002ab472c5ebfce229affe5fa01343582a6fe90183212a33af100a82cf0e1713145af99df658cda1e0206ed4a0b37e2b61f282b4d3d80ee51e17ab83ff4e34a90e715339224e1013c7431b360dbc388bd3526de0b8dae77fa53d34d9719ae6761cc31d1ebc05d77f44fa2f52d492d2bcc6f643d05b445b4e6ca9f4cfb78227de0a375249c630fb1d518dee4534253ee317d9162452de21e3667aa1df06c7682123a107fabaa611078274316fd54174a9009bf677eae9723bd7cb3641d207b008b8cf88baff0e6a3b6bf02c507e612e80e4f09f1e607d4519653f93fc71c9bde4abcf85eda0ecdcbe763c799b81a8b2e697dfa91510a9b7d2b94e1a4596d9439b80a70d87e2a24c20baedc586902c4db07dce79fc13018f934bda4ff886c01ff21aa6698826970574b14c358776fa958c605e8757935392542bad584aab6673f5369ac133f801523779092909210790da192b095d033c463357c5b20f7be012c6cfe016a637fe23c54dc1fc29218b72dd9929caf1fe6b2c00a478a7c120c4ef2ad0851c0fbd50d3cba2739d5ecb1be16e6bc4c75792d56cf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae5cf9ff922f5df74332d8bff719d3aa03ecdf3eec02db5dc4ea6760379fda5dae539f116a3f57e37b11052fb17ed0f3e56a3caeb15dc6ac1b0199dc874bbc82566f499725b5493b0c4052b49b0521268c66f30b611eaf4392fe284c8f2558d571edc01d67f533d528c7daa17ad57081e461826853b9cd67c9b47d453af229fb37be54bc76e36f9165c9efadb0cd92fe52e5eeecca39f272fb0d9fcd8f066ad075909fa295334c7eb61a38611d79572e3b9807351a1ace2187be7122a535c5136285c8a9ef082fc2154eca502c34966a6b51d8e5acf7072f9207c742ccdf6ad9b1350ea672e2974dfb23a0ba943c154b168d873da4fe620a591b7dd1bca4b50e680add3e1d9b2ecf4ef4719a9375251264af81ac483191bb175bb6cc2e153186446e76695b4ee8491adcc696aad2c87c0bfbb30e0e371ed81b5a8a8cbe9cbc068715e37e52627aeb9074f23fc7c2e2f259feec1719e4c41a96e3c62dc26c0bbcf00edc222c6bd2dd101d15dde9af7cb7337edfdcb216c41b37affa13ace52f952ab10c5048047094fa0f701e0dbde2ad8aae567102d7eaf2ea99dae0b0a94503d919be6bdbb34e6561405aa53440f1dd84602af0d6825cd1058924ab91078421b8adf08a5d4630481103286e3db00ab5ef9404d0f6bea382d8da33afcce36b29e873097cd18241bfa59227151f75fc1125b2475b7e1ff6b77c2277e8f46a3d5cbef6b43ce4f67e3b216d23c37ad331ee6212ecd0d8bca85fb41040c81078db54168579aaa2cd24c8086d371fa5c1dd21aabf5a38581a43048414c49f9f1f7b442e64ed17e39efb4a8119815dff22e6d0c0ad06d759a86b1ccb8c500dbc2fb0b3edb83c9092834393557b9f4eb47a8592cac68111a734049d56712af3ccdedc8bf9377d03a44d245c488e02263c66cf115c8cd5aebaf629337153ac42a318f3621ea3eb2de839c13e7c6a7f6a3f1b1c6804d1ef600098ef90c7d90d7e2f401a0b0223c128651d6800935396d82ea8d9ba8fbdcc21fbcb2143b53f137396e1c3cbe0d40f1161e75c5a2d84a793921209b848fd431fb012bc8fb870ac06e2b5198f97b42dfe4e66fd2c80d63f5ca83a51d09925a3494e74a2a59deb3436f0c2929c43b9a7c06103733a3712c7debd842f7e483d7dbb64f7fc411d5f6daa33a53f81d2595e9a149ba17b04192f87ca8f461a7341279d6d29a0c34a416132ee980988553a817753f9df8af7db94fda9ddc1a6a0a2fedb19906256c9b005ef4d647f858ce9e952420b13295663dcddbca6542a3b15c466d07b06c4c1d4bcb3193e25c95f1cc638e2f8f20f8412a386323f1a15793170eeec90f20f358b8d5704227107c928dd2199b3f36810828d89732cc02c9e42e09764078eb5be9cd8176b260d31b3caff01e8f3dd6d551d6663d81e87ad0317123aa30d6518d69bce9a9807a697379615119b8ff1b7e2aaf71c62ff67847d3c8a8f477521b749c4e07f9a7bbb478b7566084aedc6beefbb525aa2257a53212eff3dd52d0509c2ce214bfcd97dc7a1b885dff9eb5222eeb6a620b87dd52f436e28bd15ed545a8bd79b754103ac939adb52718c89b2a31f7067eb143d505d7de1bf9325ed759018eb9f78de3c03a8b78cc8ddfadb80cd971e62a4e8fb334d4612227f22fc7e5fde50c0b775497ece9c09e080a63a9abc97ce080a0a43c3a2706f4a4b0a45a7ccfd782962e230511068e84e7b31baef459e27959f2fc4c90dcec008e06f9721758719cd5767ff2ca0aaf2c7647589b7a38501e05273c34f19d6cbd8752e86e75ebe37209b2c9783551463e2ca6734b0f7869de3f64bd646786a8bed051d6c02d096077b7b906afb41fcf36f6deacd7af326cc1740ffdaa836925d565369c33d4c460c89f489a3bd14a5dc1537bdf7dd24350468329c69b54580b8f4bc1ce591c9ccec65246c46b254da8e65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cfb0f712bed3a1686b237e087e66b3694ac27a3a4011914b00328940811e88ab636c1560b640e9d4898c3fa819a677cc6e5518c410825f5cbbb788e8b1471eab3aa5b94741409dcf6170a0df131b51e9ace280fccb2146767823cc48c7010c798a1cfad694c1e690464d659f2f3d59df704f9a8330450d22fdef40c4578680a31f23203dfed04846ed6cb2dd23b7f8dd879084c267e9b3f9aec297c69c11bf560885676864022190af93d3c3a59d1805292f11f7e0897e9f3eb2f8aad8a4aee7f6dc15b72480f9fb3b3c1d126a6f7ecbc267af93b5bb2e2b99757ea588109d891050dc8bc2d98eec8cf501ed31b7f0cc41b0bcd43e281b63c0bc8f2c20f5cd103985727b44c0c535d1ffe3cbe755359b9a9e875f5d6f30bf2df052c96aba1335ae0de4c96352bf22774208f6d55ffc7c4be761ba8f2570a3e56f166aea043b211ac17bb2155d56791311c4015db3372f404e59f6ec3387bf7164bc8aa8f3787d9e66bcf18e4fcc782ec7bfd86e702626d61b22ff910b1f1b828342aed5bb67871be540e076dd44d4a0973cb951444e64e25e9be1c1ed7c84d0f359b7e6a3316d0bf69b43d136f7b25b94430ed95a04c685a50ea8f9bca40a86d1496569dae3cfeb128d020378af9da1f59ea26e9e37fb8217de2e97798839b33c203542d4873f1d7dc0840f6b23bf58c8b1b45ec88fadf53c31bb3ee8240c5ba2881db2930f5ca68c1f76180c03f6d5152253cf2e787d52411ac5ad1a24e8bb6078ec62e7e8cf9e5b93676142b3546a5d54e6d32710ee6467454490822b3d682210c53f5c200ad1704d01d9180774664595e65a1730dff01709c874007483d44462d5cc7bdc54e30976c6e319295b12670de80c4d70ae7a428d72d5b4a5e1dc1edf2d942ef014aceac5076b6ba4ae9d4dd377b61318381351e5ae7627e21601eee47583f11f2edae65c7c6e3b910b3fa131f12565b9bb1b200a0491a74e09a50a169b4ce8cb46cf5a2d090d1fb747489df4a62581e4c02a49541a8ad1834196061cab63908d0a30e3443958e70db4b05b61757ea8d40b33eb2ac22b6d9d5ccb25d15a04fc14c0127385bc83bbc14b58d4c98dc9babb7034afcb3ca07c19c952b43b2cfe1e270ea46ee77c91d4863a066ebe01599a6c7d226ccca9683e580ad6046c04b42ac41437../../ssl/certs../sbin/sendmail../sbin/sendmail../../lib64/libpostfix-dns.so../../lib64/libpostfix-global.so../../lib64/libpostfix-master.so../../lib64/libpostfix-tls.so../../lib64/libpostfix-util.so../sbin/sendmailservicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpostfixrootpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixpostfixrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootrootrootrootrootrootmaildroprootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmaildroprootmaildroprootrootpostfix-3.3.1-lp151.2.12.1.src.rpmconfig(postfix)libpostfix-dns.so()(64bit)libpostfix-global.so()(64bit)libpostfix-master.so()(64bit)libpostfix-tls.so()(64bit)libpostfix-util.so()(64bit)postfixpostfix(aarch-64)smtp_daemon@ !@@@@@@@@@@@@@@@@@@@@@@@@@@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(postfix)coreutilsdiffutilsfillupgrepgroup(mail)group(mail)iproute2ld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libcrypto.so.1.1()(64bit)libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)libdb-4.8.so()(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.17)(64bit)libicuuc.so.60.2()(64bit)liblber-2.4.so.2()(64bit)libldap_r-2.4.so.2()(64bit)libnsl.so.2()(64bit)libnsl.so.2(LIBNSL_1.0)(64bit)libpcre.so.1()(64bit)libpostfix-dns.so()(64bit)libpostfix-global.so()(64bit)libpostfix-master.so()(64bit)libpostfix-tls.so()(64bit)libpostfix-util.so()(64bit)libresolv.so.2()(64bit)libresolv.so.2(GLIBC_2.17)(64bit)libsasl2.so.3()(64bit)libssl.so.1.1()(64bit)libssl.so.1.1(OPENSSL_1_1_0)(64bit)permissionspermissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowsystem-user-nobodysystemdsystemdsystemdsystemd3.3.1-lp151.2.12.13.0.4-14.6.0-14.0.4-14.0-15.2-1eximsendmail4.14.1 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postqueue 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postdrop 1>&2 /usr/bin/chkstat -n --warn --system -e /etc/postfix/sasl_passwd 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/sendmail 1>&2_]z3@]rJ@]'$]'$\N\Db[[ZZUZZkZ@Z)-@Z@ZY@Y@YMY@Y@YY@YyYC@XQ@Xh@XX@XO@XO@X7@XM@Xv@Xk@X9y@X)@X lW1@W WPWJWDB@WDB@WVVVV@VhVU5@U@U@UUlI@UXU6;U3Tء@TOT@TTT@To)@TeTN3TD@Peter Varkoly Peter Varkoly Ludwig Nussel Peter Varkoly Peter Varkoly Peter Varkoly Peter Varkoly varkoly@suse.commichael@stroeder.comlnussel@suse.deadam.majer@suse.devarkoly@suse.comilya@ilya.pp.uavarkoly@suse.comdimstar@opensuse.orgrbrown@suse.comkukuk@suse.demichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comkukuk@suse.devarkoly@suse.commichael@stroeder.comchris@computersalat.dewerner@suse.dechris@computersalat.dekukuk@suse.demrueckert@suse.dewr@rosenauer.orgkukuk@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.demichael@stroeder.commichael@stroeder.comschwab@suse.dechris@computersalat.devarkoly@suse.comvarkoly@suse.comopensuse@dstoecker.demrueckert@suse.demrueckert@suse.demrueckert@suse.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comjkeil@suse.demeissner@suse.commeissner@suse.commichael@stroeder.comcrrodriguez@opensuse.orgmpluskal@suse.commrueckert@suse.demrueckert@suse.demichael@stroeder.comvarkoly@suse.comvarkoly@suse.commpluskal@suse.comvarkoly@suse.comvarkoly@suse.comtchvatal@suse.comdimstar@opensuse.orgdmueller@suse.commichael@stroeder.com- bsc#1176650 L3: What is regularly triggering the "fillup" command and changing modify-time of /etc/sysconfig/postfix? o Remove miss placed fillup_only call from %verifyscript- bsc#1142881 - mkpostfixcert from Postfix still uses md5- fix build on kernel 5 by handling LINUX5 define (boo#1149724)- bsc#1104543 config.postfix does not start tlsmgr in master.cf when using POSTFIX_SMTP_TLS_CLIENT="must". Applyed the proposed patch.- bsc#1140521 Postfix can not use ldap tables - add m4 as BuildRequires- bsc#1120757 L3: File Permissions->Paranoid can cause a system hang Break loop if postfix has no permission in spool directory. - add postfix-avoid-infinit-loop-if-no-permission.patch- bsc#1120110 L3: Running postfix set-permissions gives error that is cannot access postfix-ldap.so o Adapt the proposed patch in postfix-files in postfix-SUSE.tar.gz- bsc#1087471 Unreleased Postfix update breaks SUSE Manager o Removing setting smtpd_sasl_path and smtpd_sasl_type to empty- Update to 3.3.1 (bsc#1094965) * Postfix did not support running as a PID=1 process, which complicated Postfix deployment in containers. The "postfix start-fg" command will now run the Postfix master daemon as a PID=1 process if possible. Thanks for inputs from Andreas Schulze, Eray Aslan, and Viktor Dukhovni. * Segfault in the postconf(1) command after it could not open a Postfix database configuration file due to a file permission error (dereferencing a null pointer). Reported by Andreas Hasenack, fixed by Viktor Dukhovni. * The luser_relay feature became a black hole, when the luser_relay parameter was set to a non-existent local address (i.e. mail disappeared silently). Reported by J?rgen Thomsen. * Missing error propagation in the tlsproxy(8) daemon could result in a segfault after TLS handshake error (dereferencing a 0xffff...ffff pointer). This daemon handles the TLS protocol when a non-whitelisted client sends a STARTTLS command to postscreen(8).- remove pre-requirements on sysvinit(network) and sysvinit(syslog). There seems to be no good reason for that other than blowing up the dependencies (bsc#1092408).- bsc#1071807 postfix-SuSE/config.postfix: only reload postfix if the actual service is running. This prevents spurious and irrelevant error messages in system logs.- bsc#1082514 autoyast: postfix gets not set myhostname properly - set to localhost- Refresh spec-file via spec-cleaner and manual optinizations. * Add %license macro. * Set license to IPL-1.0 OR EPL-2.0. - Update to 3.3.0 * http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/postfix-3.3.0.RELEASE_NOTES * Dual license: in addition to the historical IBM Public License 1.0, Postfix is now also distributed with the more recent Eclipse Public License 2.0. Recipients can choose to take the software under the license of their choice. Those who are more comfortable with the IPL can continue with that license. * The postconf command now warns about unknown parameter names in a Postfix database configuration file. As with other unknown parameter names, these warnings can help to find typos early. * Container support: Postfix 3.3 will run in the foreground with "postfix start-fg". This requires that Postfix multi-instance support is disabled (the default). To collect Postfix syslog information on the container's host, mount the host's /dev/log socket into the container, for example with "docker run -v /dev/log:/dev/log ...other options...", and specify a distinct Postfix syslog_name setting in the container (for example with "postconf syslog_name=the-name-here"). * Milter support: applications can now send RET and ENVID parameters in SMFIR_CHGFROM (change envelope sender) requests. * Postfix-generated From: headers with 'full name' information are now formatted as "From: name
" by default. Specify "header_from_format = obsolete" to get the earlier form "From: address (name)". * Interoperability: when Postfix IPv6 and IPv4 support are both enabled, the Postfix SMTP client will now relax MX preferences and attempt to schedule similar numbers of IPv4 and IPv6 addresses. This works around mail delivery problems when a destination announces lots of primary MX addresses on IPv6, but is reachable only over IPv4 (or vice versa). The new behavior is controlled with the smtp_balance_mx_inet_protocols parameter. * Compatibility safety net: with compatibility_level < 1, the Postfix SMTP server now warns for mail that would be blocked by the Postfix 2.10 smtpd_relay_restrictions feature, without blocking that mail. There still is a steady trickle of sites that upgrade from an earlier Postfix version.- bsc#1065411 Package postfix should require package system-user-nobody - bsc#1080772 postfix smtpd throttle getting "hello" if no sasl auth was configured- Fix usage of fillup_only:-y is not a valid option to this macro.- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Don't mark postfix.service as config file, this is no config file. - Some of the Requires(pre) are needed for post-install and at runtime, fix the requires.- update to 3.2.4 * DANE interoperability. Postfix builds with OpenSSL 1.0.0 or 1.0.1 failed to send email to some sites with "TLSA 2 X X" DNS records associated with an intermediate CA certificate. Problem report and initial fix by Erwan Legrand. * Missing dynamicmaps support in the Postfix sendmail command. This broke authorized_submit_users settings that use a dynamically-loaded map type. Problem reported by Ulrich Zehl.- bnc#1059512 L3: Postfix Problem The applied changes breaks existing postfix configurations because daemon_directory was not adapted to the new value.- fix build for SLE * nothing provides libnsl-devel * add bcond_with libnsl- bnc#1059512 L3: Postfix Problem To manage multiple Postfix instances on a single host requires that daemon_directory and shlib_directory is different to avoid use of the shared directories also as per-instance directories. For this reason daemon_directory was set to /usr/lib/postfix/bin/. shlib_directory stands /usr/lib/postfix/.- bnc#1016491 postfix raported to log "warning: group or other writable:" on each symlink in config. * Add fix-postfix-script.patch- update to 3.2.3 * Extension propagation was broken with "recipient_delimiter = .". This change reverts a change that was trying to be too clever. * The postqueue command would abort with a panic message after it experienced an output write error while listing the mail queue. This change restores a write error check that was lost with the Postfix 3.2 rewrite of the vbuf_print formatter. * Restored sanity checks for dynamically-specified width and precision in format strings (%*, %.*, and %*.*). These checks were lost with the Postfix 3.2 rewrite of the vbuf_print formatter.- Add libnsl-devel build requires for glibc obsoleting libnsl- bnc#1045264 L3: postmap problem * Applying proposed patch of leen.meyer@ziggo.nl in bnc#771811- update to 3.2.2 * Security: Berkeley DB versions 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB versions < 3, but it does reduce postmap and postalias 'create' performance with Berkeley DB versions 3.0 .. 4.6. * The SMTP server receive_override_options were not restored at the end of an SMTP session, after the options were modified by an smtpd_milter_maps setting of "DISABLE". Milter support remained disabled for the life time of the smtpd process. * After the Postfix 3.2 address/domain table lookup overhaul, the check_sender_access and check_recipient_access features ignored a non-default parent_domain_matches_subdomains setting.- revert changes of postfix-main.cf.patch from rev=261 * config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be * keep vars enabled but empty- Some cleanups * Fix SUSE postfix-files to avoid chown errors (anyway this file seems to be obsolete) * Avoid installing shared libraries twice * Refresh patch postfix-linux45.patch- update postfix-master.cf.patch * recover lost (with 3.2.0 update) submission, smtps sections * merge with upstream update - update config.postfix * update master.cf generation for submission - rebase patches against 3.2.0 * pointer_to_literals.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch- Require system group mail - Use mail group name instead of GID- update to 3.2.0 - [Feature 20170128] Postfix 3.2 fixes the handling of address extensions with email addresses that contain spaces. For example, the virtual_alias_maps, canonical_maps, and smtp_generic_maps features now correctly propagate an address extension from "aa bb+ext"@example.com to "cc dd+ext"@other.example, instead of producing broken output. - [Feature 20161008] "PASS" and "STRIP" actions in header/body_checks. "STRIP" is similar to "IGNORE" but also logs the action, and "PASS" disables header, body, and Milter inspection for the remainder of the message content. Contributed by Hobbit. - [Feature 20160330] The collate.pl script by Viktor Dukhovni for grouping Postfix logfile records into "sessions" based on queue ID and process ID information. It's in the auxiliary/collate directory of the Postfix source tree. - [Feature 20160527] Postfix 3.2 cidr tables support if/endif and negation (by prepending ! to a pattern), just like regexp and pcre tables. The primarily purpose is to improve readability of complex tables. See the cidr_table(5) manpage for syntax details. - [Incompat 20160925] In the Postfix MySQL database client, the default option_group value has changed to "client", to enable reading of "client" option group settings in the MySQL options file. This fixes a "not found" problem with Postfix queries that contain UTF8-encoded non-ASCII text. Specify an empty option_group value (option_group =) to get backwards-compatible behavior. - [Feature 20161217] Stored-procedure support for MySQL databases. Contributed by John Fawcett. See mysql_table(5) for instructions. - [Feature 20170128] The postmap command, and the inline: and texthash: maps now support spaces in left-hand field of the lookup table "source text". Use double quotes (") around a left-hand field that contains spaces, and use backslash (\) to protect embedded quotes in a left-hand field. There is no change in the processing of the right-hand field. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Feature 20161024] smtpd_milter_maps support for per-client Milter configuration that overrides smtpd_milters, and that has the same syntax. A lookup result of "DISABLE" turns off Milter support. See MILTER_README.html for details. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Incompat 20170129] The postqueue command no longer forces all message arrival times to be reported in UTC. To get the old behavior, set TZ=UTC in main.cf:import_environment (this override is not recommended, as it affects all Postfix utities and daemons). - [Incompat 20161227] For safety reasons, the sendmail -C option must specify an authorized directory: the default configuration directory, a directory that is listed in the default main.cf file with alternate_config_directories or multi_instance_directories, or the command must be invoked with root privileges (UID 0 and EUID 0). This mitigates a recurring problem with the PHP mail() function. - [Feature 20160625] The Postfix SMTP server now passes remote client and local server network address and port information to the Cyrus SASL library. Build with ``make makefiles "CCARGS=$CCARGS -DNO_IP_CYRUS_SASL_AUTH"'' for backwards compatibility. - [Feature 20161103] Postfix 3.2 disables the 'transitional' compatibility between the IDNA2003 and IDNA2008 standards for internationalized domain names (domain names beyond the limits of US-ASCII). This change makes Postfix behavior consistent with contemporary web browsers. It affects the handling of some corner cases such as German sz and Greek zeta. See http://unicode.org/cldr/utility/idna.jsp for more examples. Specify "enable_idna2003_compatibility = yes" to restore historical behavior (but keep in mind that the rest of the world may not make that same choice). - [Feature 20160828] Fixes for deprecated OpenSSL 1.1.0 API features, so that Postfix will build without depending on backwards-compatibility support. [Incompat 20161204] Postfix 3.2 removes tentative features that were implemented before the DANE spec was finalized: - Support for certificate usage PKIX-EE(1), - The ability to disable digest agility (Postfix now behaves as if "tls_dane_digest_agility = on"), and - The ability to disable support for "TLSA 2 [01] [12]" records that specify the digest of a trust anchor (Postfix now behaves as if "tls_dane_trust_anchor_digest_enable = yes). - [Feature 20161217] Postfix 3.2 enables elliptic curve negotiation with OpenSSL >= 1.0.2. This changes the default smtpd_tls_eecdh_grade setting to "auto", and introduces a new parameter tls_eecdh_auto_curves with the names of curves that may be negotiated. The default tls_eecdh_auto_curves setting is determined at compile time, and depends on the Postfix and OpenSSL versions. At runtime, Postfix will skip curve names that aren't supported by the OpenSSL library. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - refresh postfix-master.cf.patch- make sure that system users can be created in %pre- Fix requires: - shadow is needed for postfix-mysql pre-install section - insserv is not needed if systemd is used- update postfix-mysql * update mysql_*.cf files * update postfix-mysql.sql (INNODB, utf8) - update postfix-main.cf.patch * uncomment smtpd_sasl_path, smtpd_sasl_type can be changed via POSTFIX_SMTP_AUTH_SERVICE=(cyrus,dovecot) * add option for smtp_tls_policy_maps (commented) - update postfix-master.cf.patch * fix indentation of submission, smtps options for correct enabling via config.postfix - update config.postfix * fix sync of CA certificates * fix master.cf generation for submission, smtps - rebase postfix-vda-v14-3.0.3.patch- FATE#322322 Update postfix to version 3.X Merging changes with SLES12-SP2 Removeved patches: add_missed_library.patch bnc#947707.diff dynamic_maps.patch postfix-db6.diff postfix-opensslconfig.patch bnc#947519.diff dynamic_maps_pie.patch postfix-post-install.patch These are included in the new version of postfix - Remove references to SuSEconfig.postfix from sysconfig docs. (bsc#871575) - bnc#947519 SuSEconfig.postfix should enforce umask 022 - bnc#947707 mail generated by Amavis being prevented from being re-adressed by /etc/postfix/virtual - bnc#972346 /usr/sbin/SuSEconfig.postfix is wrong - postfix-linux45.patch: handle Linux 4.x and Linux 5.x (used by aarch64) (bsc#940289)- update to 3.1.4 * The postscreen daemon did not merge the client test status information for concurrent sessions from the same IP address. * The Postfix SMTP server falsely rejected a sender address when validating a sender address with "smtpd_reject_unlisted_recipient = yes" or with "reject_unlisted_sender". Cause: the address validation code did not query sender_canonical_maps. * The virtual delivery agent did not detect failure to skip to the end of a mailbox file, so that mail would be delivered to the beginning of the file. This could happen when a mailbox file was already larger than the virtual mailbox size limit. * The postsuper logged an incorrect rename operation count after creating a missing directory. * The Postfix SMTP server falsely rejected mail when a sender-dependent "error" transport was configured. Cause: the SMTP server address validation code was not updated when the sender_dependent_default_transport_maps feature was introduced. * The Postfix SMTP server falsely rejected an SMTPUTF8 sender address, when "smtpd_delay_reject = no". * The "postfix tls deploy-server-cert" command used the wrong certificate and key file. This was caused by a cut-and-paste error in the postfix-tls-script file.- improve config.postfix * improve SASL stuff * add POSTFIX_SMTP_AUTH_SERVICE=(cyrus|dovecot)- improve config.postfix * improve with MySQL stuff- update vda patch to latest available * remove postfix-vda-v13-3.10.0.patch * add postfix-vda-v14-3.0.3.patch - rebase patches (and to be p0) * pointer_to_literals.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch - add /etc/postfix/ssl as default DIR for SSL stuff * cacerts -> ../../ssl/certs/ * certs/ - revert POSTFIX_SSL_PATH from '/etc/ssl' to '/etc/postfix/ssl' - improve config.postfix * revert smtpd_tls_CApath to POSTFIX_SSL_PATH/cacerts which is a symlink to /etc/ssl/certs Without reverting, 'gen_CA' would create files which would then be on the previous defined 'sslpath(/etc/ssl)/certs' (smtpd_tls_CApath) Cert reqs would be placed in 'sslpath(/etc/ssl)/certs/postfixreq.pem' which is not a good idea. * mkchroot: sync '/etc/postfix/ssl' to chroot * improve PCONF for smtp{,d}_tls_{cert,key}_file, adding/removing from main.cf, show warning if enabled and file is missing- update to 3.1.3: * The Postfix SMTP server did not reset a previous session's failed/total command counts before rejecting a client that exceeds request or concurrency rates. This resulted in incorrect failed/total command counts being logged at the end of the rejected session. * The unionmap multi-table interface did not propagate table lookup errors, resulting in false "user unknown" responses. * The documentation was updated with a workaround for false "not found" errors with MySQL map queries that contain UTF8-encoded text. The workaround is to specify "option_group = client" in Postfix MySQL configuration files. This will be the default setting with Postfix 3.2 and later.- update to 3.1.2: * Changes to make Postfix build with OpenSSL 1.1.0. * The makedefs script ignored readme_directory=pathname overrides. Fix by Todd C. Olson. * The tls_session_ticket_cipher documentation says that the default cipher for TLS session tickets is aes-256-cbc, but the implemented default was aes-128-cbc. Note that TLS session ticket keys are rotated after 1/2 hour, to limit the impact of attacks on session ticket keys.- postfix-post-install.patch: remove empty patch- fix Changelog cause of Factory decline- Fix typo in config.postfix- bnc#981097 config.postfix creates broken main.cf for tls client configuration - bnc#981099 /etc/sysconfig/postfix: POSTFIX_SMTP_TLS_CLIENT incomplete - update to 3.1.1: - The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. - Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). - The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. - Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. smtp_transport_rate_delay = 20s - Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients. - A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE.- build with working support for SMTPUTF8- fix build on sle11 by pointing _libexecdir to /usr/lib all the time.- some distros did not pull pkgconfig indirectly. pull it directly.- fix building the dynamic maps: the old build had postgresql e.g. with missing symbols. - convert to AUXLIBS_* instead of plain AUXLIBS which is needed for proper dynamic maps. - reordered the CCARGS and AUXLIBS* lines to group by feature - use pkgconfig or *_config tools where possible - picked up signed char from fedora spec file - enable lmdb support: new BR lmdb-devel, new subpackage postfix-lmdb. - don't delete vmail user/groups- update to 3.1.0 - Since version 3.0 postfix supports dynamic loading of cdb:, ldap:, lmdb:, mysql:, pcre:, pgsql:, sdbm:, and sqlite: database clients. Thats why the patches dynamic_maps.patch and dynamic_maps_pie.patch could be removed. - Adapting all the patches to postfix 3.1.0 - remove obsolete patches * add_missed_library.patch * postfix-opensslconfig.patch - update vda patch * remove postfix-vda-v13-2.10.0.patch * add postfix-vda-v13-3.10.0.patch - The patch postfix-db6.diff is not more neccessary - Backwards-compatibility safety net. With NEW Postfix installs, you MUST install a main.cf file with the setting "compatibility_level = 2". See conf/main.cf for an example. With UPGRADES of existing Postfix systems, you MUST NOT change the main.cf compatibility_level setting, nor add this setting if it does not exist. Several Postfix default settings have changed with Postfix 3.0. To avoid massive frustration with existing Postfix installations, Postfix 3.0 comes with a safety net that forces Postfix to keep running with backwards-compatible main.cf and master.cf default settings. This safety net depends on the main.cf compatibility_level setting (default: 0). Details are in COMPATIBILITY_README. - Major changes - tls * [Feature 20160207] A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE. * As of the middle of 2015, all supported Postfix releases no longer nable "export" grade ciphers for opportunistic TLS, and no longer use the deprecated SSLv2 and SSLv3 protocols for mandatory or opportunistic TLS. * [Incompat 20150719] The default Diffie-Hellman non-export prime was updated from 1024 to 2048 bits, because SMTP clients are starting to reject TLS handshakes with primes smaller than 2048 bits. * [Feature 20160103] The Postfix SMTP client by default enables DANE policies when an MX host has a (DNSSEC) secure TLSA DNS record, even if the MX DNS record was obtained with insecure lookups. The existence of a secure TLSA record implies that the host wants to talk TLS and not plaintext. For details see the smtp_tls_dane_insecure_mx_policy configuration parameter. - Major changes - default settings [Incompat 20141009] The default settings have changed for relay_domains (new: empty, old: $mydestination) and mynetworks_style (new: host, old: subnet). However the backwards-compatibility safety net will prevent these changes from taking effect, giving the system administrator the option to make an old default setting permanent in main.cf or to adopt the new default setting, before turning off backwards compatibility. See COMPATIBILITY_README for details. [Incompat 20141001] A new backwards-compatibility safety net forces Postfix to run with backwards-compatible main.cf and master.cf default settings after an upgrade to a newer but incompatible Postfix version. See COMPATIBILITY_README for details. While the backwards-compatible default settings are in effect, Postfix logs what services or what email would be affected by the incompatible change. Based on this the administrator can make some backwards-compatibility settings permanent in main.cf or master.cf, before turning off backwards compatibility. - Major changes - address verification safety [Feature 20151227] The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. Tempfailing verify requests is not as bad as one might think. The Postfix verify cache proactively updates active addresses weeks before they expire. The address_verify_pending_request_limit affects only unknown addresses, and inactive addresses that have expired from the address verify cache (by default, after 31 days). - Major changes - json support [Feature 20151129] Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). The output is a stream of JSON objects, one per queue file. To simplify parsing, each JSON object is formatted as one text line followed by one newline character. See the postqueue(1) manpage for a detailed description of the output format. - Major changes - milter support [Feature 20150523] The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. For example, with "milter_macro_defaults = auth_type=TLS", the Postfix SMTP server will send an auth_type of "TLS" to a Milter, unless the remote client authenticates with SASL. This feature was originally implemented for a submission service that may authenticate clients with a TLS certificate, without having to make changes to the code that implements TLS support. - Major changes - output rate control [Feature 20150710] Destination-independent delivery rate delay Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. /etc/postfix/main.cf: smtp_transport_rate_delay = 20s For details, see the description of default_transport_rate_delay and transport_transport_rate_delay in the postconf(5) manpage. - Major changes - postscreen dnsbl [Feature 20150710] postscreen support for the TTL of DNSBL and DNSWL lookup results Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). This parameter specifies a minimum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents an excessive number of postscreen cache updates when a DNSBL or DNSWL server specifies a very small reply TTL. postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) This parameter specifies a maximum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents cache pollution when a DNSBL or DNSWL server specifies a very large reply TTL. The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - Major changes - sasl auth safety [Feature 20151031] New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - Major changes - smtpd policy [Feature 20150913] New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients.- bnc#958329 postfix fails to start when openslp is not installed- upstream update postfix 2.11.7: * The Postfix Milter client aborted with a panic while adding a message header, after adding a short message header with the header_checks PREPEND action. Fixed by invoking the header output function while PREPENDing a message header. * False alarms while scanning the Postfix queue. Fixed by resetting errno before calling readdir(). This defect was introduced 19970309. * The postmulti command produced an incorrect error message. * The postmulti command now refuses to create a new MTA instance when the template main.cf or master.cf file are missing. This is a common problem on Debian-like systems. * Turning on Postfix SMTP server HAProxy support broke TLS wrappermode. Fixed by temporarily using a 1-byte VSTREAM buffer to read the HAProxy connection hand-off information. * The xtext_unquote() function did not propagate error reports from xtext_unquote_append(), causing the decoder to return partial output, instead of rejecting malformed input. The Postfix SMTP server uses this function to parse input for the ENVID and ORCPT parameters, and for XFORWARD and XCLIENT command parameters.- boo#934060: Remove quirky hostname logic from config.postfix * /etc/hostname doesn't contain anything useful * linux.local is no good either * postfix will use `hostname`.localdomain as fallback- postfix-no-md5.patch: replace fingerprint defaults by sha1. bsc#928885- %verifyscript is a new section, move it out of the %ifdef so the fillups are run afterwards.- upstream update postfix 2.11.6: Default settings have been updated so that they no longer enable export-grade ciphers, and no longer enable the SSLv2 and SSLv3 protocols. - removed postfix-2.11.5_linux4.patch because it's obsolete - Bugfix (introduced: Postfix 2.11): with connection caching enabled (the default), recipients could be given to the wrong mail server. (bsc#944722)- postfix-SuSE.tar.gz/postfix.service: None of nss-lookup.target network.target local-fs.target time-sync.target should be Wanted or Required except by the services the implement the relevant functionality i.e network.target is wanted/required by networkmanager, wicked, systemd-network. other software must be ordered After them, see systemd.special(7)- Fix library symlink generation (boo#928662)- added postfix-2.11.5_linux4.patch: Allow building on kernel 4. Patch taken from: https://groups.google.com/forum/#!topic/mailing.postfix.users/fufS22sMGWY- update to postfix 2.11.5 - Bugfix (introduced: Postfix 2.6): sender_dependent_relayhost_maps ignored the relayhost setting in the case of a DUNNO lookup result. It would use the recipient domain instead. Viktor Dukhovni. Wietse took the pieces of code that enforce the precedence of a sender-dependent relayhost, the global relayhost, and the recipient domain, and put that code together in once place so that it is easier to maintain. File: trivial-rewrite/resolve.c. - Bitrot: prepare for future changes in OpenSSL API. Viktor Dukhovni. File: tls_dane.c. - Incompatibility: specifying "make makefiles" with "CC=command" will no longer override the default WARN setting.- upstream update postfix 2.11.4: Postfix 2.11.4 only: * Fix a core dump when smtp_policy_maps specifies an invalid TLS level. * Fix a missing " in \%s\", in postconf(1) fatal error messages, which violated the C language spec. Reported by Iain Hibbert. All supported releases: * Stop excessive recursion in the cleanup server while recovering from a virtual alias expansion loop. Problem found at Two Sigma. * Stop exponential memory allocation with virtual alias expansion loops. This came to light after fixing the previous problem.- correct pf_daemon_directory in spec. This must be /usr/lib/- bnc#914086 syntax error in config.postfix - Adapt config.postfix to be able to run on SLE11 too.- Don't install sysvinit script when systemd is used - Make explicit PreReq dependencies conditional only for older systems - Don't try to set explicit attributes to symlinks - Cleanup spec file vith spec-cleaner- bnc#912594 config.postfix creates config based on old options- bnc#911806 config.postfix does not set up correct saslauthd socket directory for chroot - bnc#910265 config.postfix does not upgrade the chroot - bnc#908003 wrong access rights on /usr/sbin/postdrop causes permission denied when trying to send a mail as non root user - bnc#729154 wrong permissions for some postfix components- Remove keyring and things as it is md5 based one no longer accepted by gpg 2.1- No longer perform gpg validation; osc source_validator does it implicit: + Drop gpg-offline BuildRequires. + No longer execute gpg_verify.- restore previously lost fix: Fri Oct 11 13:32:32 UTC 2013 - matz@suse.de - Ignore errors in %pre/%post.- postfix 2.11.3: * Fix for configurations that prepend message headers with Postfix access maps, policy servers or Milter applications. Postfix now hides its own Received: header from Milters and exposes prepended headers to Milters, regardless of the mechanism used to prepend a header. This fix reverts a partial solution that was released on October 13, 2014, and replaces it with a complete solution. * Portability fix for MacOS X 10.7.x (Darwin 11.x) build procedure. - postfix 2.11.2: * Fix for DMARC implementations based on SPF policy plus DKIM Milter. The PREPEND access/policy action added headers ABOVE Postfix's own Received: header, exposing Postfix's own Received: header to Milters (protocol violation) and hiding the PREPENDed header from Milters. PREPENDed headers are now added BELOW Postfix's own Received: header and remain visible to Milters. * The Postfix SMTP server logged an incorrect client name in reject messages for check_reverse_client_hostname_access and check_reverse_client_hostname_{mx,ns}_access. They replied with the verified client name, instead of the name that was rejected. * The qmqpd daemon crashed with null pointer bug when logging a lost connection while not in a mail transaction./bin/sh/bin/sh/bin/sh/bin/sh/bin/shobs-arm-8 1607526617  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKAMNO>QRSTUVWXYZ[\]^_`abcdefghijklmnpqrstuvwxyz{|}~3.3.1-lp151.2.12.13.3.1-lp151.2.12.13.3.1-lp151.2.12.1 smtppostfixpostfix.paranoidpostfixLICENSETLS_LICENSEaccessaliasesbounce.cf.defaultcanonicaldynamicmaps.cfgenericheader_checkshelo_accessldap_aliases.cfmain.cfmain.cf.defaultmakedefs.outmaster.cfopenssl_postfix.conf.inpost-installpostfix-filespostfix-scriptpostfix-tls-scriptpostfix-wrapperpostmulti-scriptrelayrelay_ccertsrelocatedsasl_passwdsender_canonicalsslcacertscertssystemcond_slpconfig_postfixupdate_chrootupdate_postmapswait_qmgrtransportvirtualsasl2smtpd.confsmtpmailqnewaliasespostfixbinanvilbouncecleanupdiscarddnsblogerrorflushlmtplocalmasternqmgroqmgrpickuppipepost-installpostfix-scriptpostfix-tls-scriptpostfix-wrapperpostmulti-scriptpostscreenproxymapqmgrqmqpdscacheshowqsmtpsmtpdspawntlsmgrtlsproxytrivial-rewriteverifyvirtualdynamicmaps.cfdynamicmaps.cf.dlibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.somain.cf.protomakedefs.outmaster.cf.protopostfix-filespostfix-files.dpostfix-ldap.sopostfix-pcre.sosendmailpostfix.servicelibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.socheck_mail_queueconfig.postfixmkpostfixcertpostaliaspostcatpostconfpostdroppostfixpostkickpostlockpostlogpostmappostmultipostqueuepostsuperqmqp-sourcercpostfixsendmailsmtp-sinksmtp-sourcesysconfig.mail-postfixsysconfig.postfixpostfixLICENSEmailq.1.gznewaliases.1.gzpostalias.1.gzpostcat.1.gzpostconf.1.gzpostdrop.1.gzpostfix-tls.1.gzpostfix.1.gzpostkick.1.gzpostlock.1.gzpostlog.1.gzpostmap.1.gzpostmulti.1.gzpostqueue.1.gzpostsuper.1.gzsendmail.1.gzaccess.5.gzaliases.5.gzbody_checks.5.gzbounce.5.gzcanonical.5.gzcidr_table.5.gzgeneric.5.gzheader_checks.5.gzldap_table.5.gzlmdb_table.5.gzmaster.5.gzmemcache_table.5.gzmysql_table.5.gznisplus_table.5.gzpcre_table.5.gzpgsql_table.5.gzpostconf.5.gzpostfix-wrapper.5.gzregexp_table.5.gzrelocated.5.gzsocketmap_table.5.gzsqlite_table.5.gztcp_table.5.gztransport.5.gzvirtual.5.gzanvil.8.gzbounce.8.gzcleanup.8.gzdefer.8.gzdiscard.8.gzdnsblog.8.gzerror.8.gzflush.8.gzlmtp.8.gzlocal.8.gzmaster.8.gzoqmgr.8.gzpickup.8.gzpipe.8.gzpostscreen.8.gzproxymap.8.gzqmgr.8.gzqmqpd.8.gzscache.8.gzshowq.8.gzsmtp.8.gzsmtpd.8.gzspawn.8.gztlsmgr.8.gztlsproxy.8.gztrace.8.gztrivial-rewrite.8.gzverify.8.gzvirtual.8.gzpostfix.xmlpostfixpostfixpostfixactivebouncecorruptdeferdeferredflushholdincomingmaildropprivatepublicsavedtrace/etc/pam.d//etc/permissions.d//etc//etc/postfix//etc/postfix/ssl//etc/postfix/system//etc//etc/sasl2//etc/sysconfig/SuSEfirewall2.d/services//usr/bin//usr/lib//usr/lib/postfix//usr/lib/postfix/bin//usr/lib/systemd/system//usr/lib64//usr/sbin//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/postfix//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//usr/share/omc/svcinfo.d//var/adm/backup//var/lib//var/spool//var/spool/postfix/-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:Maintenance:15285/openSUSE_Leap_15.1_Update_ports/c7b332c6ed53cd0354fd0509f4f1b665-postfix.openSUSE_Leap_15.1_Updatedrpmxz5aarch64-suse-linux   !"#$%&'()*+,-./012345677777777777777777777777777777777777777777777777777777777777777777777778ASCII textdirectoryASCII text, with very long linesPOSIX shell script, ASCII text executableBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=6067e9aeee729ad364c2bbcbe224e2676825901e, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=63a6fab4df54e8b094841a6d44ada45ce1934cd9, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=c4554ea2cf5398221b88641e6c8f3003292bd993, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=156a967c3425172dd5069ba11887327c78b39fbf, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=ea72f8adb2dcdbde011505c60dcb6b9866d745cb, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=7265efcf7cd5ade4369d8508b6dfdd5dcba6a68f, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=0ef490fb72aac6748a743ac42fe1928a6599f179, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=3d6de3640742af7244a743d0de505e8c2a2fbf09, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=46a66b2ae2a77d894c52e30f81af6d01eec9331b, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=5483c0ac21abcce62fd20f57cee709c640d35af4, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=59ec9d85ba66df741f187e8dcf49c6ca88bd4060, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=b3ad3336ad0d07832b7cf6ea6c1faedbfbcde0bd, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=6b7c4eb3b9368860e885cd7542b6422c37a31e79, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=49eeaeddb84c1722d3b7f07aedcf3408c7982070, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=06d2bc34b9df21d3533593870523b5567c8f150a, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=7cc1f636f168d069d06ed6fb29f723c0fe8c2927, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=29f2a699e6a207e88634a0061bbf95fa6ac415af, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=1a2981ee718f295b8c3d0a5a53aaf1a4b7e421f8, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=47914ebef38f31e8ea1727daacdface65a6f187a, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=60e9ed55060f721b778d8c7125687dcfd172f403, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=e4d1c122c100e824b22b0b5c302337712c6e8ee7, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=8e0cba0e67000a78ee56e4672622a1625b29a03c, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=bc5f9c7d8b42764e91aa39b5dcc9c02f230f4ca3, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=c6bdbf6dc1cd694ad99906bb539b71f39534ff3d, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=545dd0e2cebe397f95a6e6ec33c73a287b7c406a, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=5d81c8381bc2e7488ac37e892f01c90703419549, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=6a9b5d0206844e3ca8db098c9862bad9509dfcbb, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=11a10cdaee729b1c34628ec29484767a31308e92, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=32bfdf18268196e987d118660d1ef00914409179, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=5edd7ef0660cd26cf7035ec910cffaa9fb87b545, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=40fe7ef75b0d2bf6de1ec8655eb093b8343a7f4d, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=fbfb66fb22a466f3eeed0922d300bde4025996e4, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=b832d4222ee83758e299d293df072603698212fb, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=4a43c6fe0763fe247f313801b08ba526ca6b1cf5, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=b06847e8e2b37099684bc45dcb6ac762df90fd1e, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=0599bbd0ba2848ab10028a708df61a5d43739c14, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=fd6853fa4db5271b4b903e132230aa0c892e8bdb, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=84c40882b25e5979931f9d53bf27c6b4628cc50e, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=554afb96ce51698f5b006b2d6305c9804a7ca721, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=3b4500d5fc6bd3eadcdf41a8a74caee05b25603c, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=77d41ac1fc352fa3d8af09290d32670acd4d54f1, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=802a96cb1d33811fd6864a4cece6a118f045c2c3, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=52a190462f14c36d7ff28ec10cbfa2f25c692e88, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=6f476c0c131f0f0586624042d9bbe3917575bc11, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=1759a36c83cdec99aa309b77a5496c956653a900, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=7b03dfad0ea631242517b7182dec2d2dc33753a7, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=e55c49ad054fcb3360a3e68848de9f0dbd0397f9, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=b1efe536dfcecf7eb281b11af2a9ec594aa20ab2, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=bb83eea1544498a906142325e31bb2a119a344ae, for GNU/Linux 3.7.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)XML 1.0 document, ASCII text  (/6BIOV]dklmnopy(.4:@FLRX^djp      RRRRRRRR RR"RRRR RR"RRRRR RR"RRRRR RR"RRRRRR RR"RRRRR RR"RRRRR RR"RRRRRR R!RRR"RR%RRRRR RR"RRRRRR"RRRRR RR"RRRRR RR"RRRRR RR"RRRRR RR"RRRRRRRRRR R!RRR"RRRRR RR"RRRRR RR"RRRRR RR"RRRRR RR"RRRRR RR"RRRRRR R!RRR"RR%RRRRR R!RRR"R%RRRR RR"RRRRR R!RRR"RRRRR'RR R!RRR"R&RRRR RR"RRRR RR"RRRRR RR"RRRRRRRRRRRRRPRR$RR#RRPRRRRPRRRRPRRRR'R&RRRPRRRRRRRRRRRRRRRRR"RRRRRR"RRRRR!RRR"R%RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRRRRR"RRWk#I`F]D͊#utf-8021c3b6f60c60eb5b92c3fd7e72afad0280f540cac0d4028d50815aaccd0dbf0?P7zXZ !t/l]"k%rܮGVeo3Fse~6CX[$?X.8$cbkpNGh@(w{$4OamwHUz5ֵGiex\F%kZI.TGsYq"\1f7ׂXîͲ乬5ݤ~^ /Ƿc؆\Ѻ{L,XQ>1$CHj>fEN2N-:"AX7qo:H['n~׹/h㧅#?HEw݃ B2LqCuTgԐL3>͘ix7tw+_w6O\1KQ ֊&ItG2k9Dh9TrpR՞vRj,FLW6Txݙ5JY9i򲯂E2Gk.&_ U?I};UUxIo4Qe9*zW2 H~P JRlGϳxu Dl7Y#@*Q3Րڮ6>UTlCHաO+oy^g*JۍP)JHh9^\2VE(Q-7cl'^Mnljм䈥)4Q5*Ej4x䁦f 1A7"zY#)P,WDyI5xY(t_Lq&5Jt|[?>}\o5i&ӂ -9aK(D?G<\.((gv"B"jP)Yqn`=xgzJƇQGTJ# W?—*w''?f=^O ~(*Nz:\cP&oNQ`wzoc,DmEG[$jQ+I0y:<<_#u By;!z 'Y5&]h%6e?jɭ-y}qH?ptf\vk֖G| y}.s4Dz 3斑C1H?X rXۭ]j!%~i)*cv^}WO%l(}o1OFɞ}ћFB!'.t~{Pg޿j Qu(UjR$=sT5"{|zX;1qjCCf!cQӟcXt܅iq!â/>Ơyi-efEUe¨?H*ʶ;=Ok2̽x58ji;kVT[[Q<$KĸM)w-j^LU_RFpDE.nԓcP3$$ : @UcdaQ1k|Pw3+uV.5 \L8cN)ag4x'n=N5&c< f/[ I<7K]U.W6ؚFB^rb3_&dBhBW#tOw+8pNEc,c{4Qy("F +#Zw% 9!UHr5竔 G*  Wu^#J(i>f C++JClOScR/; ܓA㩩$(X&k#i~mMWyk JS.9 oXމh (nܨSa=1H%LGjAgj;o*E8ݝ6_;%j)F}rJe_hHrTx3WJRYb@<_T&L[f)+{::4ZbtY@Aq۪K̖L;ު^_lNÚ!Y=n߽}>)<2Bv1D>3Y+ӡOso3I̸d i!VϚYU!w/ֈL{$B >νҴ hwv#dܥ[^$oRHXQ#BL]j쟻8Nz2~% s笾,͌ }#:v-,Z'Da_Gt=,3Ę RDwؐ#tvgpkoC=r%ɤEvC83%[§U⽧Y6TlY[a [MxHT~O绾\]w卤κ&Ov)fI.1x$ fSi90^vFߐW0~mFBӶv~4 wI%qH~(&/Rz}0x(Fg\߷6""Nk"YoRF_E^hj}"8V'tA(\RXw#9HV!lzϛ`" G"'xn!sbbthRyW p[*fz4qNZ~%Z./ o#TȔG7o6՜jvW6kB$2i"Ae: 2gC|9)lc"ӱk_{vdEc8lP%b=[LRߌ$\CYAq(I>RJY6 eb,q %WJ*<,;bzf<(8$ z#F 2xM?u6ʽ-ݶu2o4kbbi8pX;wVb3U+t؜&pp2װ6kI~4|dy}Oa 7]lZ?~fߢM>±ÊMi7n\^v{i5tR+V۪Ą%'3ۄw8$6=qr1f~@xg͛<PzFj\=c;U_q74%Y fN$VPDoLcP&wAsFh0dZUL7\GS$~7%4Ԯ=:1[6]حv1fP=sPmZ" 29\k<~Y$Tr, ST"\xLؽ0" j=&%xJt+:4I৓ľSH8Q% +0񼯖m؃4ՔI\bLSeˎ& %x" &bb6/`o!/FW^c1 EOLuh\9F UW7ڮV c>CP3)>͏rwAo3x9(&-!vs>ʀf /lվe?tϻ4RP8]+Z>'O;8r\x;RL1bS' hGe fZͭKh$6q/ЃFa0F]Gq0QG42řP,P,U 5 ,#̻B :F6U[$u*x|V.DM0ݏ ƼO-6- + `0m/V)]R8~E2 0 a&8"m=92>knFu#KgW8֠^,2O(FӪDȡK!0WWx̬:Nå7C6ccr?Lix_nf"Tfߘ#Da[v?ۻ禐J1 dD.}eT#8y=,A9i@HF&繣Q9:#Eގ,Ap_xM,U-{cQ!uCP0WH$Ҥb.Nz6؜s=dNOpwg;9O6:#T`[񘞷Jˋ18c4e Unƙ(0ՙh@CK2V$2Ʈϝh;\ZAJ=P uhI eN }~1ZB8HnT}C\ QwlOEn,xX?ٯ^P:\{ ToQw=oXT[@ pǖݵ&ؾ<[=0~ ? qr%Ϩ~`feQ^YoFrCa$#9a=-/VEhʷzEoS㴔J'ży\z,KhzCNGzW`Aę}ĘС??\&n X[A҆&1ǸR'LfCl cP2JĿY\Kgܯkp89fk.(e492< Z&,ޮyDm]h|.oӐf6ۉl|w N;X̓55rŧ=&=1I>]IjHf-SXݮj"d0照~O]5.tINx'FvB•YC҃pI,9x*zN2 3j+Ѫm=o<ʎQvשa;~*z`0 4w4!$4"H6ԗx4>^%ų]k IY_ݿi42 5SJ Ώk0]~cZP#o|O-bL=hgn9|AgJD#ZYujdR|:1!:jfO,@ ^ZTͰYGh6W:KYApN-/KTMPY s^. 5ͧW#E͇|iGH ` 2Cp6o:DT߾~`NqQ۹VjAI. aY(㌚PF[PŸ7,)R^OtV*wY@*QH C2Z2Ҹm҃BӴue(5'/)- 0 ]xSjw,9zs%|}PRx&+ΔmP)_PLlc0-' O]f}̥ÄۏOQdpZ.D=eerC{..q Eq@`OD"|6Do|RY{'pa:_ڂu#Lf/ev֣S8LMXڼNYѮR'jC٘`A[cL6#]t`PÆJ^vyT b>Sg?%`]#LH>Vdo5u(qUAIo뷪ʱ5X¥=/d!EUut晋HxCъ%|M’?0^vѭl4sHG*Hk7:&^ 5swFO\[}sͪ+w~еPP,7Q\[=\_&sθ X ›!aE]()"a v{1QJH(p0rȀn%oaXP[l>:L3fUWNK]WY4mF8u; 9@~hzA`.W}c l{Kpm{_/-d<ݦ=GG`wHfň{r:Z+2W=$S9uwR]4%nKXV+:u 3@Dr'b; 4P 0&iKA𓶻,-Oc(W6y'+IhD}sLObxu҂kO0C< "Z0Km^ `^Yx/`2h@#G|IO9-`,APmSGn`:Sohm2- 1 C gSΒ7;C@`sS4̿Gp߮Pgft]YA¥.={[em`,LF/"XB J?zz1\[dD~=Bx)OQ&o1I" t)'iEnl#rOc׻prqAj}e1֚TjV7g d6Īc9U۠k_k z@h] .6fn" rKD5%l]*cuĆQ."%wWvyAONG2;lZσZf*~fL$> KS?RJĂ( a&K1wdFjz f΂ۃ.ixH=uH]5LGVU!6 xh"w#B8Ъ ے`qք&pw'PNABAR6Gb%P#{>Fo|қ:a8M~dϖ\ rD9...x,_Y%LDV mvOTcQ>K\RH> 6' @<!P>f> TK~F f(tL tldё3Ze 5(0šʁ޽E߅ m {1Cxl:mǒj=gHghB|5s/ԫOn0Ul? J&gmDtb9OslGb9,Ϗx)ZK(FbMU 1n,Ld{`IUImlԗѭ:ͨiob__߬r8qs])W[F!H7Ԗp>ʜ/Ζ~ftPE`.%*3 =% Mڵ3dBb9#YVo .)PYkC*(6_5Fąтz$~HVj~)Ga.py="7te>H8rfi ^A܎yqLD&`í/Nt|tJ{б&h}^#kw9\z$W* ~+)ͥ[^:nN nZqm*&M.tٷi$0cO'] gyX f[KJd/HMMm86轷shox"Zɶ_ 0m. "7@w4 E촕 1@/_c)?r`%AdZK8G55G ԁQ}u8_mlJUMo$ 8Fhy}vAXq,A!,,sY(IW/}'m38үˡ`p>fKst/uؑ9 <M1lsTn!HpWfuaQBR~Xr!RXg\qM&(HPWT&TX+'76p(k+%T~N~h#f; C=恱ml&5oT}7dD`z6 VcV!jNj~{{G%QZzk%֔'t$YxsbnּdV&ͥyӾ0*6o8Iæ`Cܼy+Cq(-ԽLx!&&v#FUxh6MH2ɜp`B;c[)(:D+d\e}XnnSs@|5Jg>" > zaL`s)t9o`saͪ$g r6:&T"/7:|&EAZmV~7witCL_ E*N$5<œ 4p-FgC՛D  5Ԉ!Ǟg*=%27pƵ ~v< )x=m~˕yڣ?ƞQ%rsS<㸆%K'vciuIvXc"Ky^ZAmUG::ŗ"cL)3,PJSNcOl6/Mb??@Cm6|ea0|w Z";cx>#7Q1pդ;$^깻ғ(În)"l=&'%`[/B8ìz\%4_`[zeUq=ܭ*A~AmW\-~@5/X{4<Ƚ]YwM￑{tJQ>oo:VeṶ~ϓ%rYy"3a^]|ŕJtV[4uL/cmb!ljxP`j]էSe]\uYeT$bKM MF/0p7h8^, μV4`FD[$860 z>Kn0iXkI֌()Χc-$s<.l[?7(IA|Wz$Y:򂂮ȥ9)^xB-7yI7JͮBޮ8a*:2<ںyBׂiƭ( N7.!%m`@& 4^5k>E+QbЕE`*NO횞 BQ3ZøjېrInZqvrd9^bJtHhbʫY 1yԓ0҃ۮw ~? !3ebE٭؏*K-㦵 v' x\jo -^āʼ]{D1qLi?Gy _*p}BYkA'4Y6H-ZaOrU89dž&5ٯT䱕7j[`$)|4ÑƆ%n!FU{5pU#m5f_'鹁88VGH71.v< o2:7\eE$֏!) ;~(w\T(U?t,m jΘSSy|d,3گq;{"783/oP~.{+=kǃĦcNe`Lڝ 8XyZmT|%( [Phwv'A0b"mwܳ"VW;#88cf5ui-cAF fP. D"UJp FM+5w[)Y4<0aP 蒝@PP;4ݬL`}%@PV5VD_n%nc&-"k'< ۾?;vYYFa줒j:Hy/4!b4cs YBP0OwlLȨlfmsT]]Tp:3XO62n]󾌊G&\ k\Q$x5Z(^^+`wi0E9B%4Gj*@o%dl/'$ 8ُWۃz:_CտOu-t<剌ZNto@ !FMg̗Ldt(/$3GFa~#Fknϴip\̎][`gV];W)’eۓկNG؇޾gE,$`'|* 1~YrX*MVp~bFS7U.]E$Q-m*P :^IvW6bIu7IE!tށ@Vhu{w%,Z~ ~ gG(=v #cJ?: *([F*W" M%$:|dZx=ݮ̆5Lú_]SN,ļpG]pK&V|…#1r kS|z <4>Jg-ŁťWZ]ھ\2kO[yhs:)#!*0%dPohA)+9}8 dEJ*,ɱ"Ivܕxm·5 X}ЈtR 4\sK#75<_̋nP .ƂDA~W5 t]+nBx\  BDnt〚f7z>[oGb Nk6r7;-H F߆vAʞ09 ݗ@5%N\t/Vt C]؛ !;8O1 Ŭŝ:}ji^e>oV)mw pXjs:k^HӋ0$9Mh=hS_$cPP3Tv(8PZG 1b~R-3,q#:CHPc0 Gk;fBPpE=W HOaX ${~Ϩ7*Y.1r@P%u N{YT:&\qk6!:Oq3F`CiV$W2³GZ<2#eg2Ȑ_//U(HQ゠%S"]\ȣT_.a[Kɢ,FaH} \MP=JZg#En?BO!#{$@cgGKѣ]rBz.dVBY&㜖y60$^aۀPeF@Is% )2ǀ"QzB r#qۇ7D2WK)Inj]?Hth d&%O ыnatAN^G{P:; d5kO;~5!] ['_W4WV:$ 1:4 3D{U򁴵w;/£"cb秆%CVwHa/fDAY cV6 {GcP$;w#°k[rFYul.t=Rv_[u${o$c鎈; MzظxsVSW+;ԿŰAާn9a'[7 Ő\^tI:&Φ1V炼 峘>Kr*%!B^ n Dϊ|1&\y{ + Nq*E+0F|HhL_Fp駟pRPP“],Gf8f5"V㹒s%Xw(ugh{ c@J*r(pхS <(u٫DKt^_{0HiSW2i_qbƓ gmT%&uG2@ŔMĘH<fQ|B)D:Bs-(FǾv/koJD_~Rv"*LޠE(cC7kK.'(x|ŀ<; $@i|Ddػ?e`UQR/z\ExS^vkX~ 10 wfpt:#/r==LMXT.,2r_^ق/\  PR!W^xAi8'HR?i oU'!}h,oE7ՓW I]}X$n,Oev rP8 bChn\ 1[|mwd b4Zf8*Ua2,cF\+*}vpź4j9GKKOA\ԄXB+o>zG+.Ƒ#gL~q}'0 n͢HEu S/}yn7kw߫;xb^@ Px#"k; t"SͅGصvϚ6aUAZfXC Xj^_8&'22mVR;lON-̕&smSM:RYpWxᛉ(-65؆ӨN32k|f M:3/qЃmz؇MEv]ϥwz$-4zejQP¾XK'DXf*Թv Ey, ojG'U=m%4ˍ̙@ 3}ztT ?fFs`L"AL:/J9ƯQ'òwf@Q_bCq^NJnqi |fO{В <(C"ŵ5a]O"m#^ȸ逝OXsr/!x(w=q_M]w6E]UΌ $![a,&;vad:4.ҋp W[ORu5 F?ԣnP2.أd\S'V@M7gR Xz: _]׏h3bHoOP@՝ƁA&_5Qlf皷-poB[~`2^puWp+ `ŨΈր{|]CC@AQf#ՖtDMgF#_eѷ/;#j"@-KDxsl荿h6ZYtdBhR2${N.T:E>9hL8VWJkRx+ &ش)@ՋL A 8 .[ՐT6YS|;"_ |8݆B׿WJC-y%^nqL-UAκB\JP<1\BGfp1`-?`NX3=gϊuJA~YcNg%JWTc&UFչ;Xظ|ľvR(MJB+xxC՘TP6OOc;Zm{{/gnrQXmu!{1s/%xzNJ١^kIe6Eؽl?zog_0j0&?tQCs6$_ ElzR-.n>/-6Qe{ ?a5@q?w& lx#`H 2ho`yj[4#Mdm5a)tfȓ]Q_R{Iߌ_6QVrA_D">p4G/HRT!?,ɇ F"0VΥ Gu:2gq` .Eh'Sze_~Fᶷ8ld |5|܃hR떆i$8k=]Kx;S'oG )Oޕ /)֯s0}C1.(NVC9iPiڌ˳1T&(ʝĆ'RAgtoȡ#ɇc#ϴ+{8;zx?*¶[4u8sY!3L47n̿5ܵ`./c6bQ5#a&{w;KV9Wu~ S N:K(4/*U8Q;  ,%wiaQAe,t8Y`V{jOJA@wwz@*8=Gc[nW=TTυGi♓9H}i %P5a5XEqm&fc|a 9a.ER9q| #d``^ۿ Ñ]4 kHHOC / D@;/"y1>VZ،+nlۉ!,LM0}l,v:*Q WiဥXKdy) Y2cv򣟪W]dג-u]XtcU!-0W,$ }XY)aAY#^[ (,ƾSǴOu:H,_w$6C6CBW@39m?+Xw_;f/O 09i>x[v׃Ԓ(c׀FKwPsT u՚u?\j'7S*(J$h5"V^kr]vkybNX0yb{.1ԾV`r8ꓪ3\/ГՔS(wzJNިm$Ec[+|b} !A O#935o\ǡUuL Lʄ@D#4yƈIWY3y0@Շ6#<<}0EVaI+:|J؂7F?ǒe8k߁n0![[VPq<6< r~{![¤e ú9 }Z-ߪʎKd\\\^PPg-ciL^kE (h)fM;P1Hsm='f0.aC#Єvk!B!/ʘ*Fe['%^b=l{M;tBZ&0!Ngӆrg@CBr?XoΘh `>\YzV)hSR5xnyH̕c[=Lgte.lð?~YZ c'rV>>.H3:-["BlĿtK-8cE~ R=(|..x0:ɞ;`|?+X.[]~Q>&StQ;%Qm}!N2rIbL%pjW4"[jKQ Ҕ۬DSSt$fsx*7f{K% @K`4>J>k&2J͊0jy/ Ҁ679S9RsvGX&NJ[\6|!SRE<iWo#˟/#" Un ENWLwhZ%~"UzrJoxZiխ`=u^a!GPOJ'_XjGB6C7 ݙ)mr# __x|]&Prl^r۟_DruB Y8=M?#e}2Ĺ?8F{DuEP4uI /KƎL$ 8Ɏd}䲲GRM2ۃ67W#ͽ;ŁPYO3b^>oEB*4ɎZU\įhMGeޱjU]Ҿ-Ƹ"F~V5x^tV$3%lM)1b[#尢/Dt;mjSu,4(/_ R-Ja$pєǶ]aj_T'л'`6AdxZ*i/\'HeW@$XfX[Z >,KJCSw1P-2fL+e7egPŸZOؾ]O#SqZ+F%", =dW$N@1v@1syK oof&0DRzwI}Fg]OI|$8`N@/I⿏\[KiqK'MF"Q=%LER&|hQ'"~w U6N6BDl{KCaC͑Pl馍uȱ2CYngHe3*on5^wT'.lUuHN|ҳdNl"2ar[CJC<܏*e(.sڋ )قۺ1%qj5Qg<3ɛßq1H 0;r'R 8a*")p j-kx+,vJwEj)`O Ɍ?k[t/&v-Y^Yk}z 4JO߻?O ;x3dm{ܾ#%lyɘs{`'UΕX\L%4q??vOHaDNC-*ߍ2m!7hU%oMADs6Spn=z;:A15cm/ }q&kk3~Dž5g W7!3KIցR3`-$2EL !cR*%3f7J;W=6_ ixOH$zN3yAXn=/˿.1d=9$1vCP_rG_%aMs|c80&TPݩs™!˫uB(?G|I9N%U1 r0JF\$Ցys3s(\a?Quɣ 10csFרU= OVE3W*zv/=6|LI 1d}39Vra3/W"m> `V_%5U{GAe4kT~jV~&拙fD-k}VG} &r݆9%-f_Ö8=h򒊯Vvڻ|C jo\)hjf *9!H)] ta/R3ox ?Z75"@5b 7ȴ(fe ל/ߜ@疣qt V`ɶ!S p}Af2|CPoscS^L>a-4LY5M+q\\t)wUk,Z .+vmSmԎܸ,I#;RXc6w_~mb↪X'_i-RĽ[S<B Bc$*=y z1hqX sIwK>QTt$PVe5\e,Y`w\!X73w#l*]PPۅ+w /~K% Qk_0GzF'y5{ѽOn m{9O'@d? ,J-A$}FPX۞_ڀ%RkGeN61jC Y8Uo=g6//~NH #RMtctѳ=*dqovj q1r# D0H.):?mQ^LPQ߹`2~d;0 e{0TATlLl,B+GHZk7?]^F<Yrխ-0fvZ79L9 6v eT F\rHASR5팧ۚy ~Y6nlL1{3 xɝkCаm(g3%j<`y]=ދ+oo[ߧQBPQ ؂ I+A4/𓊖˼cdu>vIP5=C2a,_59mCFpZ1oueaL"d={Pͦ\7|M`WZM-h@lr0vj_ YdQ3ϨMuFqr'UhȵqF q4gF)+Kxx: /p|Z޽&)^˸+ĊMXt gV&}oxfOާUu7)=[,t [!3Gף(. W[O<}OÌ1)0FF+{+mFU|JT7:!߫.+6YlMxq.-k}pCI(Ø7M ?04 ٚ xkƒkqn5Q~5CJe`[sZ'e)NNQn0eLmD$"+K,2.Y1{rHvqI  kRqIn`0K1UJX) |]CWlMl/ ?baI>E dOy$4F)Q;iͮ#~tQl;_7INm|k{!IsK KV=6[ _p E'ufVlAG@ۗ48D\K`|ܾ=L:n Z["+q%cx:<5 -LUo)^lpX+7 uѫӎD>iJPr>q{Sw;Hhy&)I`'`CȆ5R)ioy&jA4I Bvi *@8HiAڎGd U{6~rr5GƇPs4s}ys,Wlb/Mm-[C+O qjW5!ozµN+ lyͿp+"vwDg@ʯ^~ȸh{ƛ* I]Yfbs Az)\L/X]Z|^f(XCdH+PSƓe{P:(K "%9] _f#*oNz&c[+OO_:-` )EГy,) Bh:B)C[C=ˈŞ*u0RwDznrbo}L$rKy}9(>h'uOhQ=+P^2MvnBKMـQe_{`g2r͸yU<%V.FnZVT0@JqڊK-V;+ Q6` ۚt ,Z,E%̈́!睳^%O7' ݚ-6jN{G\Ɂ%>q$zE' >Ϭ]?f11bGD{s URř_PͰ۪LJF7R C!\ /?L_u旫g 4wi°+L'RI BvSz,}+Pe!CR#]*EaMʛzUNÊ31@k}m., ߏ+ LlMp_љYC:+3<7j]?gdF@w\9rk"|'A[W??v:뱇H$ӖELʾEKU9@MtePϲ3;}NDA{gAḾvmZjsYYea; wG%1j-cRx|wtɷ&Eqcdz)aH"gR"G{9 SiJ#d/[ocCh)@gwFdQۏbc+?CqT6&s`` ,sW 2T3T1M7q@C>3R҆\ *.yD xsXcV밳r06terP_xUO4A68@ƚ._<`y((H19 :g66Q_M&dX=Hp^LjH?̜np~IVs)rpdz;H}~Kg?Fkt L䊽is}etv$Dkf>ڙfީ c{]6a!r|ôXAD(M8^uGU@U`<7~`F<ޚwlTkchrP7p0rv?e҃ V(fo(;E)qj{sS`-j(?g&M}[w\.1GP aʑ~G1pd{J=CBmv(Ҭ =5iE]G6DtZ  MV/7y),)]eE o::mUƬB9.jŰ_Ē0ٲFz'8:)<`a֞z6]L|VA ,6>C!bQ',1"^ĀHֱ7zWtG>ߕx/'Lwȋ*管aBb0 eeXx8>BSB5cl ./>[(J;3&l-򬢯ٝ(eId5xq\3)'>Ŗaa1(z KRj|#$O=괩6'6?T.3]XԈ(}D Irl.m'rkG@%!D}V* ?$Ysn6g~[5:̜ .Sy .XyGZKX@a@1$د1{eN s6T G"0(Qm^D+SS(CsFXc9"sǣٴͽ@ưVl{g3lqmhS,zn B ۃye]VlmBA_ZxH8Zawj w|dLcs>[gbBǁM-^ÁPWq",] KT|NWh._~tw`]j=PQVؚJbB2͂iA "6z/z.&& h?fĠHr!1 W:½E#: ȍ)CQ)>K"A^]T},*nŨ;>7.\ՁAO9e&IJe,yhHȅ]%ӊAx8"'fgQΰ o*D}.Y^&zٰ7B%Rwv{j.LjXqqs}Q5ǍIF E JcC^Z )\by3kÆ>triZıDp T0 P;4 $ky`UK+@E{ gᗿiLqǧ_yB .*d`Y2Lŋl -ZvR`+#w}+=mR!Y-{9}Ą!{ڂOi3U٨bMBtqǔk|#9x#EGʏo,5 9N,r'4 f/ no IzN@bŜs,^%RZ7K\I{e=ξ(NBcZ>jz bU'h-[0{eŐ/Oя"U~NΩՆ=)pֈҎ݅ Oz&Cqk%2ŝRE(pռ_l4 Y=F S5^6,|!= y|: 3/Gh! nf:0Tfj7Xk h! ?8Г\7"xLN ! Rjņ?4L60d-eфǓ!Um#ÞP|KqӅAsT" 91X. J: /\*q̗P<7b@8߹ u]NϿjxWf*2@Ra|7Ĭif/4Hhbȋ܄ .-`ׯ& _/ aq/%F\6{축uq~V.hluQ1c+C6.fr! VW{AP_S\Z%]jhNlRz?@K2*/)]U2zv´zqeӑ*VS]p 59S/ӏ~K@&>iDU gYq4ޏӜۑ+ꢞ; X&9#GWQ$ẂPǨܺru1r-ꟾfLieLhS|lߣb2A:İ];sil#:'Rei . 3JF zy1Vi%s5Y(};[24EpwRmScꖿ-<ȞI3.陝KwE>% ข&٠-*[!X6^HTN8DGaN~7ҡ‹@I͊d X,mE]caי1 1}WRRH_PT~ǿ/sTKJ=\G ic-I Ttn ':a dNP"Rbdi/{.Tf1 0F++?4to0T9a"&Fh:a`z _|~]enfA6kOL![l]KuI Q\z#ݔ/53HEfQ!uo1s5 mYNY!g2F|ENºs湽 3\dm l~++ҭu95tRd=eAϕwLz7s7C GDPՃVhIvuʡnSeĴ9M o$Z$+9Y[Űh=' $Ǔw{ ,(֮<ɤI;wϓ}h\*{hԾk&3{JKt'Y &3ݚcpŤsI߳WG~?goQFBf^&6rf h $!>LqOS2A+tƅ˚"\'Xr3Tb@m U)M'dpO Y)``SGR.2B \㬂')G"v4ch,9#30st  *Tv1[T v4+O!Odfq:hڜjڭ\ +@GmJh VK.)Ջ-`)e' (By$맳v#gwg]*Y|3Y'~Yaw4oQ]ԋ>ǓkCf$&#=PȺv/vεCgPk(>VG;!#{'RHDZ-QPSN^Bud%"#,*ac wlNPNNurK m8Ծ橸iIn#)7>Yo.zDV.m̊>~"zԩxM]w'C02*Aw^tQ AЄhQTFACH'Hg#􎌁1 QyWq(LgR/|okeҫ$JX訃j,`ZB*kweՉV|2f$3w39< { {2'zyʉj#i/ɊJ̀M JWfՃ- 4eĉ[ a>݌g es:yJ\EkEmi`,gڭhs;d5r]['MZ5[lLk-O'0/6g{'2K\푪!B>>1VAWX0GtVYmfo캧xX2t>v58i(\]1_n*]:*Y'U hB.Ӝ4oԚ,=pKT|?ώ?O%Lx{`{QZЭH^I#= Rn BC+\EL .珏Cn'}&܊qY5_7쑷ct@"Z뼯&ɢqԁA`u)Ec/|RyJUdAI F`ƚ5^ ?L I4vq6.5Y|ΔÒ/f<ݧW D3t.qBEE4/,RCi^-4'rh1D>݊kWPeQIP.>1z>םmTzmG2)r6Fv#A/sqI` rHq gV{p[!4٧ҿ䇠.eM12GXY|*-‹2ڔ*UH쵖FjNj>xVpU:#L4ҲjWsn~nBIXYxj>{֣ܧG7.^T$u;&YMV+#T|ɮ 8i<*wK;-Jo7TföW5з+:v\+*w8$ Ua|jUb ("ԕ'rp"Xu(=ڵY?j_(kp ґ㝖,kɥ. D[1HJȖj")'ٍdJ+=}0Dή6mP#:kà!IŇ9ꪑ:=^!FRU'~Iطy2"\ )yeE/@cs:eFHd oz]\zn_ jsvb7 S/K^ ^h|; {׿G YB(WWri0\?ُߑLRQB+>֞[w uǻgkbUbӱ3<+0 pNX2W}픘tRo\5JcB}2: bP\,x!_r"X|Ӏ;؎OտRC|~ hcPwCP#np[ \Ǡ:0W ^5 MhuڃBu`(o[\57z"Y;K,+JΑҟGwk>+-T q&M\OHsjdBBfv*XpN #|'~/ZH!.\Q17R#g!y)?#EHFV2SJ]Vn>qf @f`8JLj͵UiȵąhUt lVQC[o^xl+?@^#+y5ȸ^v|-+g>/s@ ?tiBzm8N+ (FjoO5%قn/48ȌR癸YSmB/N!BjP!qCuZU0 C`-33,3sB;_DD3& Ks}@Vbt;Yi@WwZ+Tn…9&grZ= q9e;?d zK{ pF S`0{3v^ooF]2/1stn@Ay6s` 7e93[hQ F+bN9tt00I:/̂>SVrk3~?} 6v cXCARQg'^6i%Ikh_i|]rAA*vq[! ͢ChǘR@aJ- O8x58lӇ/ ",JJ)bruKǡGV.B~%jCif~bAm[]W71Z-H>De:,8^P >U͍7H-*GEV/w>V ^[rA'DU@>.`g!o]«stePe!H38 uY|uPƱ/WiW)x+6JV?¼??m">rV`uE$*zf:/[l\QBY1qcGip5)=djA c4pu7OB,A}\xD59rvXt&_#27_]k_A0&ARWd *0ƛ5J{{LϽ/DuZ K7e =)+tF\Ib: yS?kJ16x߀{Fs>6@b^o [5!F!5ZYDp{$qE%َGY8ޒ'@pL}FϛI**135R@,~멦}p| _t\Y<ލOj@^g{ V0.\怄 mܳCjK#!Otn=L˸΃+ \nC5FL=nШ<QHFCom2.|߳þ jNdYf#N]Au3=kYPQblӪ2՝.EP"ur{@`(&c6/CE/" ȁP+`&{盤R0PzWck8 IF~JmAɌ'{W(+(w;*fR=_2Kkh`ĎwZ.pVSS!d|HV@qW+U i.KHǗ :UfMeFm^-C wi,19~[~JǺŃRJVFѭZh0O9Og|YHl7 &^nh..Vzb5 N`fRP$l{Ojy>K4Pkld$j`2l#݉6 Mxص9wPyzcu˴rdtr7a׌a[6C̈y/A@єTo H0̚k G-Or_p$ٲ?~ɘN 4GۇYL-A0~G 0pR f]|9>vޫIUۜp E[4%-TWξfyJodAp Kj򝍇ǭ\{wC 8Zp)8v3ȑ"ă> Tm;@q#H*ۗj7 ?'n{7Bq*.@h3'b[H,l:Uު*vzcydXrؕrow/l8 EF6\ȇ;}e ( @ k<ܜ*ۙ6 E5?cmW*Op\/bĺn3 xr'l+KQ  ۰V+pdav-0q<& ,bѯФ;z[7`%"{CI?~8^~P:~..y u+`-UdIkiW\)I й"V`q$SUv0Fx 6I=!jhoQx&@`}Š;}"Ɂ/yDw=]mn\hS.%o}w Kf+Su®xV8RzKlF0a`ް򟛘~#&]gi`-A bè3$vd!2/]-+;;9kKǠ>O? lϟ?).ha%cqWN:$t Db: RȨ]^40(E0꘽e/E#k t}VN,k@ G rd"UBfv.q>`6]6R뛖' t-ӱ+p Bm'4Rzm85emfXS(.؞Js/9!UUwpmACݲ9eǴnp4Vg |8$c/"&Rc*b@Pť`tKPv.-/y6*(AX~L#)QΉ g3;#\OW-ItBߎtps(e[-J\Ambʹ#hiBU 5 S:cFzYMd*j1a`U8kMG') yjDq{OYȼzħPz8,69u%`6~s]|~;x˕@)ڊPNLwa]儝)coHm<14S-(Tw97sn p13'a:\kJ. RqQ{WS2Z<(z`o v_bOy=nH;+ZLO7Q%|!K?l{FӇCT=OUҌ ~GHIF+~ÆhAE ɵ>̡%/#+瓥Е$s: #SCThXuRö _K$q*nA8qp2TEQ5y=R?ovpRoX:JMV)g'- sOHZˆ@#)hjaB;7 lZ(GIn ⊱ЍOw"ǩh3̉q8au.Z4tq\ DHt6B6怪t_+\ft@p k\ e8ٷ[n`lLm%V5X#7 ܸgz+A.i2#QdV% hM ň2Qڀ\}V?Z >2wHMymZrG$JKUCtzmCU:4mWLB[o1W_qC & yxm0%Mrq"GP;=O!S t}căMn*7,Ҫʃ Y%yHM/I!t4G/t.?rT20|O W꯹Ӛ y7 ,Iعq"֕EU!4@8[]^qEWk+'ν 9(~d> =eC4Ah`Czcafc0@wr߾iO$e[ kfZwj]1>)_W 7ЖQ1X#kPv J;@P $C.ҥtgc5V@$ -qԕ9&=gWȁw AYX)~Mo4B"{+o+0邼`N5v1Ai ;as.@hȞyhcI2W0 B2N^Yq|+ A6ۊϏ䬴dщe I=Tȵpy$}]O/DmZ[ZWy~]e+~U r@4HUѐ bK;FdڜEsvwJL/qdقkߨU$#/bvvZʴARYlm r9Ƣ"=#4 s%asoPiԖaT '[\b]⪂ۗ ;l~۫ݜ0F'8C<`#k*†I5Oy;Nbʡ3,%c\^K(:mJCp.ȡN;-71~y*"zb@xęjTf%ᔩENw"Eor^o {k29TH"B4G>̶w,2M &e-FR)Nj{j^a^9+)Ma@ei\]eftat}?$W8R괖,(*~DfM[FviQ.Ic쒲y΄xuE]vPqI{{}dT.nKü%KaoL, ;ITU} so̰/jQѺDV%`>G1wcQfѠjXA+}dDs+mHwQk?ꂆaB.bWBk;Uc]tM4xЈEk s4zpf)\Z aYjI?@yఛvv*} wPi8x@sL+;I(Õ7|P< { ͔ |[s <%FK1rתI-i ?PY[cPϜ3FJCȡ͑&ռ6HpD>V6 ~+U[ˑ\$A@=L*ӷbk!v6h ДPRH˰M-V1wݿtTGm*kQ-l+CIDa>RNῷ-G9-Pf{":[0MA9<< !Go9Sao(U=,06l:3)!,b5ֈY*3Oa9gd >ZMd. 5ZR)x;hv ڕ8L^ 6!o{]2׭#R*I@O11>.gʉE pv;O5* Ӧ:+M{eiNpsMwtzYh!qŁҟz`'r2v.vy&TՔ}uL{xDuBٿ oq/EkJX+))k$*?LHUIe  ֡~CMFן1mO骇h*E' 8ݹ nNDсW00_'mKl;MWuU6儗>8SbUr!ϝQ5J+1$ٸu7j;䞊7CP WȅHVnpqN7C<bu^92vkrkX']%M˛.!"+еa ,B;vӎ5"^uO+n`14i-8~hWVN vby$pGCsOZ+y 1KQԈ4"8a^Qf)ly;zηu\ɲ%:.*q H4bS _\*--LLo+ZXcy$dfYTuZ qoT<4jg('\۳{aaӪ v]P=B Dw5Scyфьq a_ÿͨVp,IH; _lV@%F<#8 T` kMd#>>B#Vf'| {Cz,@Y6 sچ31EP!TNlE v7c8=|W4ѴB4Œdg >>Ř;wGEB̨1QhϜQ|βW4 yݤ~ m\uvۊ§f5|%FGd4OFU s%Z& wۧ/p%q"vs0n̝LAjoA/ՃX4pCbu:>C֋!gᖷms9Io{:Y>[R 83G?FWI5̀LZKUC f)igKi˽BqYyHOT|sh@ 5]7p[> gэR!ԝU1%3 `V1JAZaJ/8A//hhPRpN7@,/" h306w0$> E`e"7U]ԛ5ZhfKUKk8O ńxRC;5rFMbN(on?r,G'8y}7bD؜҈K.ܰDg)lq`y"O?~)ST ,A(yB4* :@Fp9!#}j Մ hu_R!^yrP/^b*e&Z]4{;dW⨅Gf<򞌻vdFgj!rz=cw`2OvӋiL}|'ӂ`)HgھZ9C=Hsx1 Hr΋F!*Ԋx+I$B o]%A!NQada*R?Kx*Ux|EF.7 2Ԡ|ME-YQN rRkݜB7nb01uE\ow-AW+~>e $p :^e(犅*W< lc YZ