util-linux-2.33.2-lp152.5.9.1<>,ax/=„)yx"o~e1i 6qlRktP<4T)w斴Q)gldkVbƦq^^`r ]\+F0pL.U%_K=>ש?PG0X7;,RQ"'T=јqqlݮtvKCM*)R>F;`"b_b傛 R 1x7|BSekf"DŽ>DoC5Y#?7E cAɂpf;>Q?Ѱd   G /8I bnNI  ", (  d ataa(V7]8c9c::c=.K>.S?.[@.cB.kC.F.G.H5I;TX< Y= Z=t[=\=]C^RbT+cTdUneUsfUvlUxuUv[vwxyX(z 0<L^`djѬCutil-linux2.33.2lp152.5.9.1A collection of basic system utilitiesThis package contains a large variety of low-level system utilities that are necessary for a Linux system to function. It contains the mount program, the fdisk configuration tool, and more.axarmbuild02GfopenSUSE Leap 15.2openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgSystem/Basehttps://www.kernel.org/pub/linux/utils/util-linux/linuxarmv7hl if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in raw.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in raw.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/bin/wall /usr/bin/write /usr/bin/mount /usr/bin/umount fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/bin/su fi # # Safely migrate PAM files from coreutils to util-linux # (openSUSE 12.3->13.1, SLE11->SLE12) # # coreutils with su were upgraded (and su removed) before util-linux # with su was installed (see the Conflicts above). If the admin edited # the PAM file, the seemingly no more used modified file was saved as # .rpmsave and the new clean file was installed. As we want # "noreplace" upgrade, and the contents of the clean file contents has # no changes, we should restore admin modification, and rename the # clean file to .rpmnew, as it would happen if the file was not moved # from one package to another. for PAM_FILE in su su-l ; do if test -f /etc/pam.d/$PAM_FILE.rpmsave ; then mv /etc/pam.d/$PAM_FILE /etc/pam.d/$PAM_FILE.rpmnew mv /etc/pam.d/$PAM_FILE.rpmsave /etc/pam.d/$PAM_FILE fi done # # If outdated PAM file is detected, issue a warning. for PAM_FILE in login remote runuser runuser-l su su-l ; do if test -f /etc/pam.d/$PAM_FILE.rpmnew ; then echo "Your /etc/pam.d/$PAM_FILE is outdated. Please check /etc/pam.d/$PAM_FILE.rpmnew!" >&2 fi done # # /etc/default/su is tagged as noreplace. # But we want to migrate variables to /etc/login.defs (bsc#1121197). # Perform one-time config replace. # Applies for: Update from SLE11, online update for SLE15 SP1, Leap15.1. # Not needed for /etc/default/runuser. It was first packaged after the change. if ! grep -q "^# /etc/default/su is an override" /etc/default/su ; then if test -f /etc/default/su.rpmnew ; then if ! test -f /etc/default/su.rpmorig ; then cp -a /etc/default/su /etc/default/su.rpmorig fi mv /etc/default/su.rpmnew /etc/default/su echo "One time clean-up of /etc/default/su was performed." >&2 echo "Original contents was saved to /etc/default/su.rpmorig." >&2 echo "Please edit /etc/login.defs or /etc/default/su to restore your customization." >&2 fi 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 raw.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 raw.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in raw.service ; do sysv_service="${service%.*}" rm "/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 raw.service ) || : fi fi 8  rI ,,&Pv,f,&(V,,,f0fPPfl58V,f\f,,V0v,,%5v,&,&, ,0v`%&\,&,f,vw05%%,V4644%04v0Ef(FU50f,v,V6(V0xf0L0,V(v,F0f0<%+<D@%,FP<f0v&(f0v8f0&,0%5FP0,0<&T,05E,6Df,,v."sO6* {j /@<-W~5I4189q  |{)z[ w&f" y  9 6Fo FgR I a %A5 $[  !} @ 3a9 f n l  h o ;` z%8N218=R'  2:fgR#72 Z*3&  = UKA큤큤AA큤A큤AA큤$$axoaxpaxoaxtaxpaxoaxoaxoaxoaxdaxdaxdaxpaxdaxdaxdaxdaxdaxdaxdaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxpaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxtaxoaxtaxoaxoaxtaxtaxtaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxuaxoaxuaxuaxuaxuaxuaxuaxuaxuaxpaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxpaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxvaxpaxvaxwaxwaxwaxwaxwaxwaxwaxwaxwaxwaxwaxwaxwaxwaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoax \\\\oG\oGYSYS\~KYSYSYSYSYSYSaxoaxoaxoax YS\oG\oG\oG[\oG\oGaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxdaxoaxoax|axoaxoaxoaxoaxoaxoaxoaxoaxoaxpaxoaxoaxoaxoaxoaxoaxoaxoaxoaxoaxpaxoaxoaxoaxoaxoaxoaxoaxoax|axoaxoaxo5655fa26c992216450f01d2542b4cb89b1f80ae10c87835696c0558d502c94ec2b8fbd3e79359f3f346706c2be23404b63a13dd283ec2844f58c64251cf469466f4ed753379ef4cbee5ec667cd35a40e48a1b00564df64b6b1653664184e5016628c28f88b7581a346de64b27527443321e34a60e80df5920ae9a43777c2fb93c3ea012930f7f9f2b9e3041bbea0caf731a5a613c3547addad581b7c209592fd6805d57719e0c228934166892750c278b222c2562b31f2a225ae1688614dc8a552b4d0e84fd0fb35e9263c319503e81a1219c7e4b52a6cd68c63372d2fa7116194b45d97b95571c56c29d9f5604503fdabe4070df1d5ef2bd159d3c1710c370f3266800838dd16a28a315517f0ac00fcfdab774e062087417548201fc8bec1e83a8fbaa56802f5786cb0d63b4e557462179bd7416e717adb8aefda9245f9a0a66305d11d5a4181a7026f3dc1d58f688a6d5dbbff8cd0b0d13d206e4473c24079e87b65aa9d155d4e2a397cdc9403f94be3523b483378089184ad57238aa1cfc8ccd2db20202274c1930eb6021a9e72ce012ab6b55830c1063603f017be3ae3cc1058507010f243dfc5a07593ab475b8955c450f0ebcceea6e7015e04e5f0deaf6996f8b0c5110a008e9e879d1d9c55cf207b15934498babb8a47dd854325f6743fc5e433c65e0ee1d2293b00cebe005105f40f6af6c783b9c03195f4fbdff5826c7d0a0b229d61c0187e027cda5b35c25c1a6d5fbacb68f5fa71f2fda4afc9038475100c38316365b56e2541451e9c1b2fdbe24a2b89d539a496b176e6b927be18398d9dd927eea7a94834f1023de3b8e5cd613700873302cc2740061ec072374fa0c2c4510bfddcbf0f0dabee5853ec8201ff9861b9e52bd0afdeca416deba25d35771f6b67197efe0ebfee232599516222489f8bb24f22d4c2bbd4ea34388fb35d95c0eece4b3f04cbedfb79da8007c3daf81e37af15226bbfe2b6e06760074a117f6b14724b71af6c259fcbf076571fbf04ee5c3c2eeded99cb1cf46623dfd9429da20edd0a7cddf372d08c8d7eedc030a45635b75cab4764bf6f1f7cb1926c3d5bcd3701a5eb7389e41cb999c0affbfab873c50f0478c28d607a1fe192220fabd8a2207af648ceb3d7bab248c55a07921729a061ab4a05d6acbed8de49424802d63fad486cad8c5d30ae294e995c246799333261ca5fcf360cbbe370110e23817424d77d2da6a48c829933af5f5a9dfb2910c1c72a42b72bdc069a7ccb038dde2f91b20af3458fa6871257f180c46a6d5517bd7391a369bf77ca05c7346f0846cf71a385083e7cf0d6d590b90505ebaaaf913fbfd8f6da0ba2ee5fe2a9a579a29dc13aa00a20e2945fb9a7774bb6a3a6c7b590783339616b3cbe09fa12d1b84e7f7de006d3c7adea5e8a07e4db4e353503eb5547f38a56ff5fbcda06c194a09569dda119b6d7070eba85f5af92cae329185c706d1af65778742479008cc9deab92ccb319b0c1a74e54cb5d8adcf1cbbfe05467347660af67b0d1d63a1e4164ce5e5b30c0577d6aa1ecc558ac4201fa72fc492f4141b342eac7d27b447d2807cc5b03cf2d7819ffc1bda2b298da417f41602f13123942e2de63680d2db6897c9a5136a24cd720e706119030474beb37f6048ef140083b85ddc1f9c71cd2016c33653ac9a8f798fe63edfcd508381bb63f9afaf73ba8cfa5e8141c7218bb772fe1be017f320862e491819be53a740125ab5e45f52ec0adbb7a9147e90b8f11b6f27ffd97793f4165e58351c00083021e27492b4f56e6d58a37681ac44aa4c11d13bc40ede6e223ce1fe7592ddebcb7fe0cb73045736d8c009ad7da5c13c8a08ba6a11aa4188624a0121fa5f16be3993c9ce3b4cd2406157d90a1d58bfe0074c8a377e3ae997d0b6482abe0b3694b089d91f2e09918b62ed95dce5dcde4351397e82adaa9438e508769f1c9a97b503ee1e1e321252239c01e459d1604df53d2a224ec569951ede88e967397b4cf5c11bca3c6ae10a770657009ab7de21209990e158e01d50a74e0a5f7b89b2a606e59859674bcf382a5e36f994ed219b7e05a5ea7cb3df65fa31632a23125f6836e3516b8edba1d25dfd049bcd80c5ed08d96c750e7cdb4e9d6d1d4eae45636e17b381b425d21816ae3ae1f797b4742712fcdd25f857198539427cbaa563c1efe44be2ec5c56ad88c7cbf0c9640a0035e765409977b1f9a15fb7ee0bd6a77bd4f835e55f50ddfc59b8bda84a29e8f5d994b2303ba07388cf6ad0c9c9bbd51832c24629fd04f75efca883931af31b7bc0714f066873c7a63b7c8b4395a82ef9e50281c7d36d92eed858bbb27dc82b5b891f06bdc31f47effc12d589159a02fd624b6f39921679483efef83a8302da7ee3a53f8208b6804c0ff21bb18b5ffd824ae77db730c83204bee9dca4df4e38cc167e56f3590606e09864efacff3c8ff55fec884223f470221a98b66d8e5a05f67041bcd223101d39bed541e346d37e56aa22b0e870b8de9d23505deb85e332ac39793aeb05bc4f5ec415bf443ba9de27418f6c1474393f8b103b16341dd5e9b6bcb6e281a8e8e02fb9bb5d791ed68ab94d7253b13279a28b0ed9d14f61dabe942236354d931333e0a47fc4ebfcc69ee733b43ffd9fdb8b35d4a0918f6e08183016404d80d46026f87ff1eecf8842deca6aeb7aa5462f14106d892aceb1a080d894289938c3bad59dedee068c7978fdda0129dd3123d3249c6b62a133807011272dd5e7767dc41433fc7321817378e78c2736debe86e20884e5210358e56a289208117dcaedd4862ef62383ce5eddd7cec34557d780bf04e2014b7577bd091140d66c703029ca611c685f7314c83c8e6960604294c444c188bb328a8732c5d9c8ebc308dca65a60864a4e85f03901a02b9241af74a4e45b8a689f0c7dc3c8b7a656b1ee562ddcbede38f9639c6aabec7c140fb76a989e8810952d3dd88b0e591698ca4a973a0e2ad408cd9d2c4df6da3ee0ee088fb5583c229cd97203862aa56bc6f85826baa9688a3d7d7b8c8598feee52e64ead11f55def5e1589ab0a352e469dd3897ba94b304a52eeb4079f08b1661c9e1fc24376ad52cdc8a6163c9b1bc453cbedf84e71873d924788871bdf1a58a7743c3a298726ac04eb06e6c7e7bfaf39b756ae36eeb34647972fafa6204c58e30d70eea1bc0277d3a68eb91e226ded821afb53d2a7cc6835a1424e6f9833a41527ed0b7979e2d51b2189ae65e582487b095c0b686569983017505f86dfe5ed56418d3370e316e724ea38c7d7dba24ea6ba32f2645023f98b618a1f72d2ee30f769ef867248ac9ddb525e41c684bbc5c637812445b8cb1478391cb1c8a0c56c6be3d80c4f96b02c0871769c25c4dcdc320e3accf9d78bbe27cf3ba69b360ee3c97180aa280519b7e50c3e2d8d96e6b1b676658668978115a2d1f6363c14b809d42d7d44f78911b02604571941ef1f86b351a3d1671929fde6587a5005bdefda863fbedc8acc2588ee721668979414fcdfdf3d5515a2d09b6ae23d7ea3fb9fa81607ac3a481783b97094334879a9dd10b1bdbfded361120ca666ddc6b027afa6fe158e062dad32e41b8805f7dce2d1822dedc48f0837133e01c2ef2f5deecdea302d7764e04653f2cb442822b384271bff4b16e9cdabc487434323bb364122dc72ddbee086bb562934d36f2df1a977a744349f5f43932a796fcd68aba29dd36c3ca2e552fd48c86f2ec0360e224a98889e976251a632818c9fb76492a838967b7a7c8f55f7eeeab7089013ad659ccbb68de49faf22ac23689ad83cb089593fdf32f614228b2f10e597747074c21ffec5a0eb6959d1449d4b0ef4987895b8ab1871000f8876da45ec9ba6adce70bb451b540965097ffd545f5d100ef3fee7b61a7fe9d66118dee16307013a98b15b95c72206cb40f598204981fd2244f34ea02c82ae12e24a37ed7ec684f80b0651d7fee247fa55ec935a04349b85b8f2893cdbbe462b747f950b56ee11c3ea70889bd597473128d9c712a8e43aee8a6ef910257f0dce1784709cfef7c13fda9fbed148687905448c490d438d1a6941969da740ea3d0f98225c9d763ee6ada7704e9c2cc47cfbf8b5c60207eb48274d2e8d0f1c9098760e883569c8880fc1fa0f03acd3eef18848f8a2342c3e2f481cff1a956c67f62ac3524a812a02e9d8c39b79078822dc3614d607d77633aa697e50ade103ca3b3e4cbece7b5ee4966b63d53aa19bc03e73333ba3997382f5f6d4a90fc8fed1d521cf9956767d6b5b3c05ffd689e599755e57f61dd25b595165052efc165346d00bf8630e8eae6257aa1cb16a48f8e3c535c694796c41bdeef64d0d798b0807b72dff46fca82f90f6bdbeeb9dbcd815769b866a3a1e3b8bb483defc1e3147eb915738750351434b209cb3476c93029d4987f5b862686fbe3e643c4929525e704b7c5aca283ba20af58c343a8b1bbf381624717ac63000cb7aa182d023363dd4db90ded743e75779add6b5482845f0061998458acdb5f0cb88b412184647a1c76ea72204dcaa68c3d9b11cfa3934b516ad311d25ba3f05c957388cbad8bbf44ee6168ac4bddb7e05ab0be77c3260746e1dd68b701725c0b5ba96ecd94a91f86f5aa523da0c77940a3e217fd588faa41b433743935b7391034e10ef770247fc86089bcecb846fd11a6bec50ad23478cfb7d97e47d16b211da4a6b3b46cd2ddce847d626294c42d3a5884ee7044d5fd79881743a201ef0ea9384a80d9e1e29d28afe6d7c56ed241eb18bf5d0ab8386e38d3585e2aae7df57231545d5ee7182af846b3fdb34063a560661c5e0a2c2b0a1fb771ac450792bdff60be5bfba603f13ae969b1eb352e4c262da5eca1b0dff1552c71b811eda1b62d243ffabb5b1b47d9bbb0f542a1c9e8e939af45e1070e0f2e1d9ba2889e81398b9d95748ff79c3e82ae65be3cc7fca8babaab862df30f851ae7b1a0be85686e0d8d52802cb6cb3abbcce92b00bfab486646233f16890bab2f82e5deb53bfc0fa2bc12e4c7685acbe4f8b708c7cc141a88a1fd430703258c7d2e6d6c278be16049364ee6e7cc8e576b3581831296d9247dda656107f59b31f3075c67584e4b064879e384fd8352a59bba47337bdcfa25c20bce0008c98c7c62ef4993ff477a5be1244c49d9028d40a96a0cf5bc733b8119636253fc7562166ba96e9daee6543dea174d1846ebe06255ff1d10a417ff38a199e3cf10850c08b282041ab74b343ac1936a14aa1c08e57da7eac008a2c5e26bc6118401c55a3d6753b342c109723189de6a06ed3f574c7c47053bc3baba8906c470dbb676e5a4e7fe28366d4bc4400a3882ea4defc6cb31a8d624a2c6d45301d1496f1e085e16e782f99929d849316f23de115bb71585e17d89cc3cd975aeb03fdc405609675c42c74a573a02cf966930bad9a8fd1642aa853d3b384c5d0e0250095351504fb7cfad9f87f1a9c16184c91ee8db3d97277da4590d5b43a31008857166a1038afbac06bdeb61badc8851eb6f1c153df1a07c9c2f3bffa048fbd05d1ef775384087440a08c852ae5cec0990942b3e239d9bae331ea237d6dd457575746e382d07fbabf9ad70f4ec23b0db103c742d655c8e9dbbe3e2d59f1b711abe6a241c91a8211895e624bf20f342237b951779fb457d68cc4bc7900e6db044becb5419efa109b77ffadf32a9db482f3941d0d22c12b5feb8a73c71489f7bf83693a9c3b4d3d27e97d8b0ba7d43682f8dd8eee55591d451aa0b4380e1cd01eb887a91528dbbb9187ed14d2995b77066141f0a0b67dec82d554a20909466eca6a3e8f237eb709b7f5b4c6238548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f66bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e4d3265f8264768dde09b2962b2b19f1dd23b5283430b64b762d24515dee93cc8cfaecdd8f38c8fd02a9a6fe9685dde62da40bafd69412d0da67cfa86af3443e60189319a7ac414b0777557a29e5c6ddd32ec3a4db494eea31c193bdf80add723b974276352ad7e8594fa6fd62210aff842736758d3d2671c17e06605d892743952021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66fe337b3898cacda9485085c522d9306a043146cc52c780bbcf2c65b8d366f095a5cd7dd59ef1558c7d5bf8fe58581eb6b173f823b21f1e83598328de2d7695060a9f48f15ad5f492bd454b781d293dee2c123c3947df57f4c709365c624fa72cff775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02d1478a7f29aa6e2ac647acb10a2b1036bf2e2cb98e9627abb43fb1bf6ac561ec2eddd6f947b6246d18959c173aac7112e1e9b2d523ffe852f88011dd2e4836c60d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df840332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae51994ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8feb2b95abe8caac7840120e9575816d9e02dc8d08fe883293211f6f88389dfd874f9052c2e8991509621e742d39b65beb9489deef2b2b1f7a443f05acf11db46c80e2696bcb4fb7642418d3aec96f7c2931cdcfdaf245786ee3b6cded99e22fe7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b37100d3ec98092ad7a2c698c1865015368d7be5fead7d3ad171def63cc78658b6b20ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d4bcab470cac90909b105e525171e7bc0ad8fc60b0d98503f4d46dfad8060cf9e1cfd65593d59333936ba7e71a2306d7f0c33f9a7cc1f68ccc3232eb2815b93e68a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173dc8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa2509065959266652a2153e29fc80a3716fb3efbddff33a33590eaa20773d0b694e3daf55497287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93b736ec0a304992cfdc981ef92d854827fe5192a04cfe88e68f48b3e1b320773de036a5c87c232e9d9d3521dc9ae4208726fdc8efcc48941e69111f761be3e779650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df8257b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb5648d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9afc1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1b90a36595a7585f33e27d5028c66fecb8db2f01832240b70527aa93f9d93c486fd5315672633d2cc96166fedd130416e7ec9c37a87f8afe57dc906059a4fac04a33449ad64a9c1e51ad0b82fc6afbb07febd5650842fea214231f399d7f3bf4daa873021ae3d172211a649626f466efd53423970ba15d29d6f5ce4fc5d78fcc9e1cf77f54f0bd20cc47638b163a4b4adab20f4901ff4ef296cd2a9e3ebbb6577f2a14123adff1db7144fa503b2e939d9383055e7b893a7730e146dd93c32803218e67a52959c1dbcd2d3706e6e300cb28556ecd1257d1289a629ffbf7a1af3ad4b9350fe71eac2b6927a0e0ea228c4d5d809d96320c0c2db233af2c6e522ae941519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259dc60762eff4f9768cda50c4e719c869ad6f2d9396f48c3bd4cb6c5bb90e847a3bfd4885b8a4a683c1058210fbecf4c291cdc3de9a968128e7051eaf2d7a07c81de3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868ddfeb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9ff546700af22030dffeefaa6b13e9ebb7c24538adb0941dcb98a9d68a6426640f874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5d8e9402d77ee0e8fa37c13afd9202eec1cf01b204d02a89442e8ff3999f14bb96fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569be0692d25787a3625816b07ea00ef66cfeada23fff0016cf0a37efd95ad84b0d5ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aaef626d1fe1fa53f3fdde633d2e038dc3d081ba609cb8dcde53a8e1a40b36ef2de00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9bd6a324ae3d54016e7defbf7259e750bf86b73c5f9b822eae158889f17945167c58d1c51c587e26dec022c31a4beaac423f4157b858a35a28dd6d3b4575f1111fbccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda53306ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c3019ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f37d03e1a9db3c6d7539b46ac99395811c6d33a00c33ad400abff2765e0618bccf163759953aafc083e9ee25c20cda300ae01e37612eb24e54086cacffe1aca5a1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36d2d73796990694d4b07fabae50c6613586f14e0c337507773edb6cb1b04157c0dbf03fa8a7f4e7213f709a811cf2015f4f87f35d5b21a35852c4c5e66d6489b325ba4b00ff4accf2bb91fe311cb2d1dbe0281e76cab759ca73f043c925b773bc716ea1e75c1f6d2bb3480863ccb9f145a222dee237f766901083fc3f0b88464469a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48d64e54868b437b24aa682bc015f7761fedfe39badf1904691ba1c91035ac9decc4c0086a5c5b0e45a7c1880a818d6ae7f99fe074c6507ab0c2f1a1149781012dbc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e684012a040afc44337e73ffcb2b910180aacf09566b784f887e82255a09cc42689d503850447cb9c3d7e2f2a99f556b88d944cb9b15be6fe9a0d9699ee62242b19412f6543a2cbd41ff073f81159a4a5dde495a8dc886a4625fa019a41f93bbec6ce13f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebefdd32f1977f3b0867a2bb57e225968592e801f3e377ca2f650224a43bd9e4631f4d68fe8cf7592fb68dab11d587e62d11d210ab1326efa7305b0c75333e9d3a9d85cbe4e3188622b8cb91e5035471dce57ce09cf92ac28d947f69bd87893161e36f33f176094a227c2072557871f688b3838e23d441d92772d3e77ab6e38e109b24b124b5650413dc8e80309858c4d74a5152b6f740a49c1fd1c4daffd87fb56bbc05ab9605c66201bd1282ae96033f1e66cfd0d36dbc62c21b8a616fdc62bd8224a5db8f04f4ab2aaf273e64e34c1ebef97847c8e775e667dbc30491d185f077a229727999483ed19c5723766ab1cfec330b9a4cdd6a2f818112a32020debfa8ca2f6f2e9a39378c1266f8b74f17b894e3c8df9e3e34b8055f94eb8386d1fd26ee32522c5f95d216d1772ed6ef19c27129db52bbf7322ee6830e21a49fbc72196922f57bf3ad449709a7e2d7b41f456e57672a2e3fb3d0859dd26a0b2cd98af139f00c19cc052f5a7d2acfa55b749e73156e06563bff5c701bbf91fd6966de541f04f17c44f8e86315d378f7cc390bbe6396d4eee31a54282b1f2510272818249d7953269290a422398c54cabd6f4ed079d4d4c7d5cea9a57667fd329e3f07d60785e2b92bf2fe9de094db49e063d96f1f457f373d4e218a9c2f3490290ca38777dad882a31faf7a8ee995836fd75cca7c81cde7bee356de8d60a3b5b51781b8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b8806439b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6dba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f88177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe5514335620e8f478ee4dc4d26540448d39469091ef1d8e3fbbbb8bf753206ceac747d43e7186cab280cac92f84348cdd664f23808ebf10e17a004a27b88cb828aa6d25afca78d31cce79875476356e3c1f29f40ecd7feb00cb084f4bdaced6b305ef00bb2d4446c260110608fe9ecaf98b972cd20115da5f9ba96ebf2d7004f746f6d7eb4712e93b19cd4e2bf3e573f58c0ce0c6b9a4216a4f2edc0560e72c3781ef3d33379fd761172d824c3178e31fa99ee9769aed661718b479dd9e4f4152d03157b758f03d1db5c2e9c071a31441e2751e53cba6009e48c3f4d7941a26bbe5ec40f4a9ac0515d018b254775271b0ff9e03c0c7fb8a7bbb4637a5e35469b1669aa68d664ef23704d0be745bac27e12a4253a65c2da14077009e3ef20d417607bfc0fd73f27b8f48312119002e879ce2cbf551e3160704988ca7abed7a2dfc8171709bb60141d6f8ca2afde124fd65b0f82a8dff9fc83c6ccd09fb70262920a2f1219b0219e834c539d215e5817cb7c34b991f64a35d64139546a022e9959d5c5a416295e0d20e54f9f8dc0661de9e943b8e883cbb4da8b86a8da7e42490fdea9eb0fa19e506405161c2d953724622e66246766e7b73d849b788c2bd3b73759f2c4c48e7c9c7b3770cfb9919c7b93bc3cdfbf204a3f2ccae25aaeeda1c230eba1a5ded8e21738cefbf22e0e04fcb7879820f521a945edbb73e150d39e69a937d8e0e5def4e2bdb31c876a76d782464bc6f8dd5b3c336028dd810121d52eac5f1ecdf107c2cd3c94eae7bf8f985394ecbb2e2efc9e3bf2f7be6c74b12b8139e73b36d4eecd6e1739bd54c46619af14bcfbd87f2022dcae2d330b7c62b37eedd717a4874024a5018a37edd5a8521dae838bab700182c23b2cff8b388252e5e5628db1ccbec6b7082753d6464377ec0f41d17ffda8520f7792f55028b62c4b81b006ee508ba4e1a283a55e1964c0976c438ac12754704b2e9a5de193219f438eaedfe207f145e1bd7a35b84d54ed3064f7ccbae82f537c8eb40878eeccc867e28170ce806163d620e2ca8e4736efb7dcbb1c85be97231fa6f341a0dd1f55f1825c4d23695b857457273c1902a1b901d7c6f8e1ed983216e7c4fcc34fa4fb5320b27568ea283f432beda02c0e46c6b5ccd52b88b6372814075a94766e56443103489fe435b10ec8fb185cf400b994a4c73502f63d6c8ff688faf076f7ba4bfb6bfbf02feb62a9c312ac933a54af674435601e2a6d817c005eaca21f214d71c25813dadbe7cbb553fbb64901ed73114648f19a5402a964035ced5c9e879dc1be9fdbb59b8e8f145406070391273df9fabefd38be1f1add1e4a89aa1345f2d1fc1ed37d9f25d1a31edad9d7d8acd2f3808c052c553b813230d0a289dd8607e3d24b67a2958f4dd86eb05d92ecc722640faf7084b4b4a4a0873fd87b529a429153caaa27842741370c31b688f4b0bd9a424b586f12655c127a05f0a317ef5b2b66bf65bfab512f9d81f51e5c8a58cb13f5b182863947f2cbfbdc29bd7604178cf41d6c5a6e94d060cafc6bc3a48069ca94e58d1a13c02afc0733d8ecba71e77d77eea40eeb29b927c97f767d881d0fb0806cbbf8ba116ea9231294c9918c02805a696f9e73430f4ff6a5e67ed5fdec97d3700863fdd0c9b0973dc986720bcc07aae05312ab9b9606891ca351f19642a32b241178434aed89bbc7b627dd97101a60fefe739f7dc17898c815beb058d77da45ce0915c0c1453050f1f3eb1b7ef4c7672c7031cd9058b8644ab9de49b0fc358aa148a3737afbaec2a85f9870d776e60661b362ea84ebe79cf0bfaa1dc2aa0ef05ec8956b3309fc5554a7259df8c555a1713d1fe50df796baf96e8c4ad1b3237b4b5bb25b8d6bc9e08120341ff9b357dfe8e61ebc9abdfd289b595969463ddc0dc9ad4faeccc99560e7d8beefc40876beb2281dbb37d3cf392295ecee4c8a5137477b879cb8366068d8ce1f0b9a910d9b0811e42829d6e433c51c151a0c215eb6534e845fdd41db9fab4e97ad6ad270177538524c6f67cbbedeed4f2fe8da2f1ab8cf96d05ea878ea7c8b8b6f1430a2bf41dbaf1a2d606942ca3ba600add07b52de8a4d3a0dcf8ec755dea89ca27e15a1791a437d4867f3b7512feadb73ce35c951e10cf3a296f69cbdc0f3878a90c8611140bbe6427ce9a93d4638a334bc156c1f253f3a601be2cf1481d8df2ea960a7589f1f60de6a3fe6e67240ac9fb9d11ab756e8eefa77fc218cad0f1d4d7d3e71b9c8bd95834136a473dfaaddcf3179bf10347c93f46b5f725891105f4827277ed5b51b27d9c77b39677a8ae86f2c0a8cdee3f292086b52141f0a239cbc0e99f48b7ec984e63d500cef0413f119a045551af3c22becb17ec21f4800e449bbbd9eb9be2200c93b025e1bb3480a8911684f2b00667d45d9d2457ff566e942417fbddfb27c07dfe75f92df2aa8fa8ff8dfbb723d91c5a98011a4a5dacb229769ec6778232cd331ac54fb925d473888d8b2639e0834c0c5ae7246e2deb1cc529c4b72922299459cf9412499881f8011366096f8017deecb857791cebc44cc392f41eb25e2ee2a6211926b7c398d72e685b0fbbda9144fbeefc7eccce9f288d82fa5572ee6065aaf80c7511239541a8e1c94e2f8c4b7da93023e58d6496fc965e55d498f60e22064a8084c57b0a1eadc377cc6b8bc3d7baae466855672ed41260357912b77de4f5b0bc51932bf6601f8deb6070933e53f14b79e1bd01beff29a9df222b42870db72be580eb27d4a7b38077686e9777c2e322b311c378a25adb267f16cd77c133f4d9597603750eb7b0b43570c3fb49f01129b0232a0bb741e436882a498321cf4fb435aa2e4ca95b16dc448a331d7801191de5249b9bbbdca42f410e4b81461596703fa32e89ea22eab558219b58f592dd7996e0677e8505f6c1aadbc7b8393452f28e10969564f289413ca59efd12598a6f282afd426f1097f2bcce8e9bc1493e38022a1f4b3c4d33ebf2a635f2e50dee551df2df277472b3e39d5ab204d1b850a00a7e477d31300be20eb13b07ebe2d4152f3e807c77dc40241850011024bbf625c8b09b5647d714cbcc1dbdbf45dc932387b99adb60db0b1b6a8f8c8fc7afa821df3972f07160553cd1b5687a7f640fc2fee62e4a87bb1b3b9273fa4cfa0358b0a0e581af01750922fbb54b51f8f98b7cca8306c2a02884d82445c3eef32f0d83c5fffc5185b4ae195d6a449b8e57c15a9ad16cbeb1d31538e9e232c89f299868ddfd3a4d54fc5a8c6f24baa8b29f8acb7d7d58b9fc0a72b727649007797fecf7e3cd8b378247734abffdc6047bb1cf7d56752b23b01f853aa02e97f5c2cf00b50b1f0cb1ddaddedba6b009a41f1536f6a09d695e2ce05bf1ef7811ac010e4781735b3d3e6ae2591515f952efcd15bf43d4fc590e408bf56ced51e4e7a3b82c1b358d724b09d507014a0b1df31aa11a209ec361c97a1744ef5743feb943cbb3e92ca5c170deef22a778d5a53d623aae30846799f31778fe0817f2bf9ac9cdd8c6645d6a27d38e349a3b0f1d4a0cc0a4ccc58f2091b58ffe301576aae346bac7f1022d44498834cfe465b5df6606681cda24c3d6381aa4b4dca1637273514e4664360201ee37bfff43ad350d522ced2a9a17183c5d44fd80228b72974feacfa7201ca9164b490c1c9feec1a00208f1014f8cba51ab9908ce83971fcaff614926b8977eccb914a8341dafbce18e222729c168536ae068077b7f448c270d7ebb2c7b4f8166dd15bf5cbec4fccb9bbc51b71779e4e96bdab075562e7827f9df8d0dc55be3027138877652c42c17646a7e07fbe95a1acd8b5595c3e206eb00a7af81a0e08027472c4f5e7caf13f35c3ab4a8ad85d4f615c2a52dfaf9464e74fad85b1c76e9009fe2162297c8a6a902ea38fdab368c05ced734a0f8736693eb3352a2bc2a03173233613fa921873bbb126a0c096bffe698480bfa7595b112441fd53bf64a158491b30c491c51ba595e58eede9ba7ad5607d50cc337519a57ed13e9975e6f5ff7157a6170eda4ebf3f02d5b0797455f13ae2e776c92eef59d7e5acf80bb9831149cb02c22d901e47dfb33c33a51731fea76c034228d117dff10331f0a12ffa53dab43e31df17f5ec2938014275523f4465c4b5d1b63bf5b9e1eefba31f96a4296d3f9635ee432124f45b4bc9cf1c6801f5a5533dfee4a6bf43bd1e629dd051928cf7fb7edec391d901d37be350115536240c3dbc6963886450fad67c176e35e78f086dd73812639f681121f3b5fa80333c963e6b84a5e8b39fe20b2f3d0c2b56284c9b7698042a6286addf1c67b12b45fbbe279365f965162d0775658a62cac4aed0df6696c7299883671d4414c6286cb09f4465dfd1f840643337995e7cf604c2f7cca90c0b7a0f2203e868000654c64d35e888afe759da938b3599f3210cf9935377086e5b3b391ebf2375aa6a6ed6c5e2d94daba0c10b10b8160c9ba619e55cae1113930cf743436a0da6c27538b2db2611ef590cd6cf128b65953a99bbca4c302b300b4144d6f96497297ec93396571bf510093e2777e9d181d47944dc2b3e217a4a270f1cc4602498927bf63109687da068bc0796a8b7f47a39c8ce940615623af25cb8125eeb56f7f9f17f9e9d50e6078b1de6c5fed69b76be5ae6476a7c7d043c0d91b3bda7a405d81953a8d3566a0fbcf4d56ff885e946f9e96abb01365d4d4c68d443e0580ce366abc363762e2e41ea27403a25e0f2715d608026f08827eaa7ca87ff557144b1d194713756c0aa65de4fd26f0bc2b26e299c0c7fbe3b6f574ed47c2ac644d45bcf07d752a69b0625f9f27724c140965c69959990269c3b82b0f8376031cb1dd26e7e92390db8a742c8b6207112a0d799dde6f9e8a3de7c74de7ba0ce1d71216e2da4fffb2c438bea6b636b9388784708af9ec11d5a70b505a2698f54d8c9550e3af39a9e253545cd042860637731f4e0a971d1d1e8cac3eb90168cbeabcdd27ec10ad1ffd14902be3b2fed85c4ac21e788a51e1dbef86c6e1ca3af17168e6f6175bcd76904a8279f88caed634ae139983f57d15b7987efa4ed24f33cb231c802728390f44b08c292fd44e3c44a435fbd2f03cce7fd23ddbbff52e64566d2fd7a067dbd26d11cc1b793f2753fcd946ad/usr/bin/dmesg/usr/bin/findmnt/usr/bin/kill/usr/bin/lsblk/usr/bin/more/usr/bin/mount/usr/bin/su/usr/bin/umount/usr/sbin/agetty/usr/sbin/blkid/usr/sbin/blockdev/usr/sbin/cfdisk/usr/sbin/chcpu/usr/sbin/ctrlaltdel/usr/sbin/fdisk/usr/sbin/findfs/usr/sbin/fsck/usr/sbin/fsck.cramfs/usr/sbin/fsck.minix/usr/sbin/fsfreeze/usr/sbin/fstrim/usr/sbin/hwclock/usr/sbin/losetup/usr/sbin/mkfs/usr/sbin/mkfs.bfs/usr/sbin/mkfs.cramfs/usr/sbin/mkfs.minix/usr/sbin/mkswap/usr/sbin/nologin/usr/sbin/pivot_root/usr/sbin/raw/usr/sbin/sfdisk/usr/sbin/swaplabel/usr/sbin/swapoff/usr/sbin/swapon/usr/sbin/switch_root/usr/sbin/wipefslastsetarchsetarchsetarchservicesulinux32.8.gzlinux32.8.gzrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootttyrootrootttyrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootutil-linux-2.33.2-lp152.5.9.1.src.rpmconfig(util-linux)ejectfsck-with-dev-lockloginrfkillutil-linuxutil-linux(armv7hl-32)util-linux(fake+no-canonicalize)uuid-runtime@ ! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(util-linux)group(tty)infold-linux-armhf.so.3ld-linux-armhf.so.3(GLIBC_2.4)libaudit.so.1libblkid.so.1libblkid.so.1(BLKID_1.0)libblkid.so.1(BLKID_2.15)libblkid.so.1(BLKID_2.17)libblkid.so.1(BLKID_2.18)libblkid.so.1(BLKID_2.20)libblkid.so.1(BLKID_2.21)libblkid.so.1(BLKID_2.23)libblkid.so.1(BLKID_2.25)libblkid.so.1(BLKID_2.30)libblkid.so.1(BLKID_2_31)libc.so.6libc.so.6(GLIBC_2.11)libc.so.6(GLIBC_2.13)libc.so.6(GLIBC_2.14)libc.so.6(GLIBC_2.15)libc.so.6(GLIBC_2.17)libc.so.6(GLIBC_2.25)libc.so.6(GLIBC_2.4)libc.so.6(GLIBC_2.6)libc.so.6(GLIBC_2.7)libc.so.6(GLIBC_2.8)libc.so.6(GLIBC_2.9)libcap-ng.so.0libcrypt.so.1libcrypt.so.1(GLIBC_2.4)libfdisk.so.1libfdisk.so.1(FDISK_2.26)libfdisk.so.1(FDISK_2.27)libfdisk.so.1(FDISK_2.28)libfdisk.so.1(FDISK_2.29)libfdisk.so.1(FDISK_2.30)libfdisk.so.1(FDISK_2.31)libfdisk.so.1(FDISK_2.32)libfdisk.so.1(FDISK_2.33)libgcc_s.so.1libgcc_s.so.1(GCC_3.5)libm.so.6libm.so.6(GLIBC_2.4)libmount.so.1libmount.so.1(MOUNT_2.19)libmount.so.1(MOUNT_2.20)libmount.so.1(MOUNT_2.21)libmount.so.1(MOUNT_2.22)libmount.so.1(MOUNT_2.23)libmount.so.1(MOUNT_2.24)libmount.so.1(MOUNT_2.25)libmount.so.1(MOUNT_2.30)libmount.so.1(MOUNT_2.33)libncursesw.so.6libncursesw.so.6(NCURSESTW6_5.7.20081102)libpam.so.0libpam.so.0(LIBPAM_1.0)libpam_misc.so.0libpam_misc.so.0(LIBPAM_MISC_1.0)libreadline.so.7librt.so.1librt.so.1(GLIBC_2.4)libselinux.so.1libsmartcols.so.1libsmartcols.so.1(SMARTCOLS_2.25)libsmartcols.so.1(SMARTCOLS_2.27)libsmartcols.so.1(SMARTCOLS_2.28)libsmartcols.so.1(SMARTCOLS_2.29)libsmartcols.so.1(SMARTCOLS_2.30)libsmartcols.so.1(SMARTCOLS_2.31)libsmartcols.so.1(SMARTCOLS_2.33)libtinfo.so.6libtinfo.so.6(NCURSES6_TINFO_5.0.19991023)libtinfo.so.6(NCURSES6_TINFO_5.7.20081102)libudev.so.1libudev.so.1(LIBUDEV_183)libutempter.so.0libutempter.so.0(UTEMPTER_1.1)libutil.so.1libutil.so.1(GLIBC_2.4)libuuid.so.1libuuid.so.1(UUID_1.0)libuuid.so.1(UUID_2.31)libz.so.1permissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.33.2-lp152.5.9.13.0.4-14.6.0-14.0-15.2-14.14.1 /usr/bin/chkstat -n --warn --system -e /usr/bin/wall -e /usr/bin/write -e /usr/bin/mount -e /usr/bin/umount 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/bin/su 1>&2a^@a^@`T@_ǁ__@_~@_s!_D@^?@^˳@^@]@]Ik]5@]$]$]]@]@\\}@\T4\G\U@[[[[;e@[(@[@Z4@Z؄ZJ@Zľ@ZZ}@ZqZdZ`@Z]@ZX@ZJ"Z7Z%8ZYéYYY@Yp@YZ1Y=0Y9<@Y9<@XX-XXX~@Xf@X}@X@X@XXXn5@XRXGX!@W@WhWhW@W^@W=WX@W@W4W4V]VC-VC-V@UoU@UcUCjU@T@TTTԬT T TT@Ta@TAStanislav Brabec Stanislav Brabec Stanislav Brabec Stanislav Brabec Dr. Werner Fink Dr. Werner Fink Stanislav Brabec Thomas Abraham aabdallah@suse.comStanislav Brabec sbrabec@suse.comIgnaz Forster Martin Wilck Stanislav Brabec sbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comMartin Wilck sbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comtchvatal@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comkukuk@suse.desbrabec@suse.comsbrabec@suse.comjengelh@inai.debwiedemann@suse.comnormand@linux.vnet.ibm.comsbrabec@suse.comantoine.belvire@opensuse.orgsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comjengelh@inai.desbrabec@suse.comwerner@suse.desbrabec@suse.comsweet_f_a@gmx.deschwab@suse.delnussel@suse.desweet_f_a@gmx.demsuchanek@suse.comagraf@suse.comsbrabec@suse.comsweet_f_a@gmx.desbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.defbui@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.defbui@suse.comsbrabec@suse.comsweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.deolaf@aepfle.dedimstar@opensuse.orgdimstar@opensuse.orgsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.deschwab@suse.desbrabec@suse.comsbrabec@suse.comsbrabec@suse.comcrrodriguez@opensuse.orgsweet_f_a@gmx.desweet_f_a@gmx.desbrabec@suse.czcrrodriguez@opensuse.orgsweet_f_a@gmx.dedimstar@opensuse.orgsbrabec@suse.czsweet_f_a@gmx.deschwab@linux-m68k.orgjengelh@inai.deschwab@suse.desbrabec@suse.cz- Update to version 2.33.2 to provide seamless update from SLE12 SP5 to SLE15 SP2: * agetty: Fix 8-bit processing in get_logname() (bsc#1125886). * mount: Fix "mount" output for net file systems (bsc#1122417). * Many Other fixes, see https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33.2-ReleaseNotes * obsoletes util-linux-agetty-smart-reload-13.patch, util-linux-agetty-smart-reload-14.patch. * ported util-linux-libmount-pseudofs.patch- ipcutils: Avoid potential memory allocation overflow (bsc#1188921, CVE-2021-37600, util-linux-ipcutils-overflow-CVE-2021-37600.patch). - Fix ipcs testsuite (bsc#1178236#c19, util-linux-ipcs-shmall-overflow-ts.patch).- ipcs: Avoid overflows (bsc#1178236, util-linux-ipcs-shmall-overflow-1.patch, util-linux-ipcs-shmall-overflow-2.patch).- libblkid: Do not trigger CDROM autoclose (bsc#1084671, util-linux-libblkid-cdrom-autoclose-1.patch, util-linux-libblkid-cdrom-autoclose-2.patch, util-linux-libblkid-cdrom-autoclose-3.patch).- Modernize patch util-linux-sulogin4bsc1175514.patch * Try to autoconfigure broken serial lines- Add patch util-linux-sulogin4bsc1175514.patch Avoid sulogin failing on not existing or not functional console devices (bsc#1175514)- Build with libudev support to support non-root users (boo#1169006).- lscpu: avoid segfault on PowerPC systems with valid hardware configurations (bsc#1175623, bsc#1178554, bsc#1178825, lscpu-avoid-segfault-on-PowerPC-systems-with-valid-h.patch)- Fix for SG#57988, bsc#1174942: libmount-fix-mount-a-EBUSY-for-cifs.patch: Fix warning on mounts to CIFS with mount –a.- blockdev: Do not fail --report on kpartx-style partitions on multipath (bsc#1168235, util-linux-blockdev-report-dm.patch).- nologin: Add support for -c to prevent error from su -c (bsc#1151708, util-linux-nologin-su-c.patch).- Add libmount-Avoid-triggering-autofs-in-lookup_umount_fs.patch: Avoid triggering autofs in lookup_umount_fs_by_statfs (boo#1168389)- mount: fall back to device node name if /dev/mapper link not found (bsc#1149911) * Add patch: util-linux-canonicalize-coverity-scan.patch- Issue a warning for outdated pam files (bsc#1082293, boo#1081947#c68). - Fix comments and unify look of PAM files that were just changed (login.pamd, remote.pamd).- Fix /etc/default/su comments and create /etc/default/runuser (bsc#1121197#31). - Remove /etc/default/su migration from coreutils.- De-duplicate fstrim -A properly (bsc#1127701, util-linux-fstrim-A-1.patch, util-linux-fstrim-A-3.patch, util-linux-fstrim-A-4.patch). - Do not trim read-only volumes (boo#1106214, util-linux-fstrim-A-2.patch, util-linux-fstrim-A-4.patch).- libmount: To prevent incorrect behavior, recognize more pseudofs and netfs (bsc#1122417, util-linux-libmount-pseudofs.patch).- Fix license of libraries: LGPL-2.1-or-later and BSD-3-Clause for libuuid (bsc#1135708).- raw.service: Add RemainAfterExit=yes (bsc#1135534).- agetty: Return previous response of agetty for special characters (bsc#1085196, bsc#1125886, util-linux-agetty-smart-reload-13.patch, util-linux-agetty-smart-reload-14.patch).- Fix problems in reading of login.defs values (bsc#1121197, util-linux-login_defs-priority1.patch, util-linux-login_defs-priority2.patch, util-linux-login_defs-SYS_UID.patch). - Perform one-time reset of /etc/default/su (bsc#1121197).- Integrate pam_keyinit pam module to login (boo#1081947, login.pamd, remote.pamd).- libmount: print a blacklist hint for "unknown filesystem type" (jsc#SUSE-4085, fate#326832), and add documentation * add libmount-print-a-blacklist-hint-for-unknown-filesyst.patch * add Add-documentation-on-blacklisted-modules-to-mount-8-.patch- Update to version 2.33.1: * agetty fixes (drop util-linux-agetty-smart-reload-10.patch, util-linux-agetty-smart-reload-11.patch, util-linux-agetty-smart-reload-12.patch). * Other minor fixes and documentation updates.- Drop rfkill-block@.service and rfkill-unblock@.service that functionally conflict with systemd-rfkill@.service (boo#1092820#c13).- Update to version 2.33 (FATE#326844): * choom: new command to adjust and display the current OOM-killer score. * libsmartcols has been improved to differentiate between numbers, booleans and strings in JSON output. * fstrim(8): trim all mounted filesystems from /etc/fstab (-A|--fstab), new command line option --dry-run. * hwclock(8) new command line option --delay. * mount umount, libmount allow to mount and umount filesystem in another namespace. * rename(1) new command line option --interactive. * setarch(8) does not require architecture when modify personality like ADDR_NO_RANDOMIZE. The architecture argument is optional now. * command su(1) new command line option --whitelist-environment. * setpriv(1) new command line option --reset-env and --pdeathsig. * fdisk(8), sfdisk(8): print disk model name to simplify device identification. * column --table-empty-lines" allows to use empty lines in formatted output. * wipefs improved to postpone BLKRRPART ioctl until all magic strings are wiped. * script(1) extended to store more information about terminal size and type to the typescript header. New command line option --output-limit. * libblkid provides BitLocker and basic APFS detection now. * lsblk is possible to execute against /sys and /proc dumps with - -sysroot is specified. * agetty(8) reload issue only if it is really needed (bsc#1085196). * cal(1) has been improved and extended. * libblkid has been extended to support LUKS2, Micron mpool, VDO and Atari partition table. * rfkill(8) has been moved to /usr/sbin. * dmesg(1) provides better support for multi-line messages, new command line option --force-prefix. * fallocate(1) --dig-holes is faster and more effect now. * fdisk(8) provides access to Protective MBR accessible from main menu. Sun label support has been improved. * lscpu(1) provides more details about ARM CPUs now (FATE#326453). * lsmem(1) supports memory zone awareness now (FATE#324252, drop util-linux-lsmem-memory-zone-1.patch, util-linux-lsmem-memory-zone-2.patch, util-linux-lsmem-memory-zone-3.patch). * lsns(8) provides netnsid and nsfs columns now. * rtcwake(8) waits stdin to settle down before entering a system sleep. * Many fixes and improvements, see https://www.kernel.org/pub/linux/utils/util-linux/v2.32/v2.32-ReleaseNotes https://www.kernel.org/pub/linux/utils/util-linux/v2.32/v2.32.1-ReleaseNotes https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33-ReleaseNotes (drop util_linux_bigendian.patch, util-linux-cramfs.patch, util-linux-fincore-count.patch, util-linux-sysfs-nvme-devno.patch, util-linux-lscpu-loop.patch, util-linux-libmount-umount-a-segfault.patch, util-linux-libmount-mount-a-nfs-bind-mount.patch, util-linux-lscpu-chcpu-new-cpu-macros.patch, util-linux-chcpu-cpu-count.patch, util-linux-bash-completion-umount-CVE-2018-7738.patch). - agetty: Fixes for reload issue only if it is really needed (bsc#1085196, util-linux-agetty-smart-reload-10.patch, util-linux-agetty-smart-reload-11.patch, util-linux-agetty-smart-reload-12.patch). - agetty BEHAVIOR CHANGE: Terminal switches to character mode when entering logname; echo is generated by the agetty itself. (In past, logname echo was generated locally by the terminal, using the canonical line editing mode.)- Fix runstatedir path (to /run) (boo#1113188#c1).- Create empty /etc/issue.d for the new agetty feature.- Switch python-libmount to python3-libmount.- Fix local vulnerability using embeded shell commands in a mountpoint name (bsc#1084300, CVE-2018-7738, util-linux-bash-completion-umount-CVE-2018-7738.patch).- Do not run rfkill-block@.service and rfkill-unblock@service as it is just template without parameter bsc#1092820 bsc#1093176- Fix lscpu and chcpu on systems with >1024 cores (bnc#1091164, util-linux-lscpu-chcpu-new-cpu-macros.patch). - Fix CPU count in chcpu (bnc#1091164, util-linux-chcpu-cpu-count.patch).- Backport three upstream patches: * Fix crash loop in lscpu (bsc#1072947, util-linux-lscpu-loop.patch). * Fix possible segfault of umount -a (util-linux-libmount-umount-a-segfault.patch). * Fix mount -a on NFS bind mounts (bsc#1080740, util-linux-libmount-mount-a-nfs-bind-mount.patch).- Integrate pam_keyinit pam module (boo#1081947, su-l.pamd, runuser-l.pamd, runuser.pamd).- su.default: Set ALWAYS_SET_PATH default to "yes" (bsc#353876#c7); add one-time wrapper forcing ALWAYS_SET_PATH on upgrade.- Use %license instead of %doc [bsc#1082318]- Fix lsblk on NVMe (bsc#1078662, util-linux-sysfs-nvme-devno.patch).- Update to version 2.31.1: * blkid: Add support for LUKS2 and new LABEL attributes. * move rfkill to /usr/sbin (boo#1076134). * fsck.cramfs: Fix bus error on broken file system. * hwclock: add iso-8601 overflow check * libmount: * Allow MNT_FORCE and MNT_DETACH at umount * add nsfs between pseudo filesystems * lscpu: Treat read failure on Xen Hypervisor properties as non-fatal * sha1: endian fixes (affects util_linux_bigendian.patch) * documentation updates * other fixes and improvements - Fix regressions in 2.31.1: * sha1 on s390* (update util_linux_bigendian.patch) * fsck.cramfs on ppc64le (util-linux-cramfs.patch) * fincore/count (disable, util-linux-fincore-count.patch)- Combine %service_* calls again.- Provide /usr/sbin/rfkill from rfkill package (boo#1076134)- Add util_linux_bigendian.patch solve two failing tests on ppc64 (sha1, uuid/oids)- Integrate rfkill-block@.service and rfkill-unblock@.service from rfkill package (boo#1074250#c4). - Remove unneeded release based conflicts and obsolescences (boo#1074250#c18). - Remove sysvinit requirement.- Fix Obsoletes for rfkill (boo#1074250).- Update bash completion conflict to cover rfkill file conflict.- lsmem: Add support for zone awareness (bsc#1065471, FATE#324252, util-linux-lsmem-memory-zone-1.patch, util-linux-lsmem-memory-zone-2.patch, util-linux-lsmem-memory-zone-3.patch). - Drop util-linux-losetup-Add-support-for-setting-logical-blocksize.patch. Different implementations exists in the new kernel, and it has a conflicting implementation in util-linux.- Update to version 2.31: * New utilities: uuidparse, rfkill. * su has been refactored and extended to create pseudo terminal (new option --pty, CVE-2016-2779, bsc#968674). This new EXPERIMENTAL feature provides better isolation between root's terminal and an unprivileged su. * libuuid: Improved to match * libuuid, uuidgen: support hash-based UUIDs v3 (md5) and v5 (sha1) as specified by RFC-4122. Provide UUID templates for dns, url, oid, or x500. * libblkid: Extended support for DM-integrity, HPE (aka extended-XFS) and UBI superblock. New API to hide already detected signatures. * libfdisk: New API to modify grain, make possible to completely disable dialog driven partitioning. * libsmartcols: New API to move columns. * column: --table-header-repeat to repeat table headers. * libfdisk: Use BLKPG ioctls to inform the kernel about changes. * fdisk: Improved ^C and ^D behavior. * cfdisk: Dialog to resize partition. * look: Follow the WORDLIST environment variable. * losetup: Added support for --sector-size (FATE#319010). * script: Follow the usual semantics for stop/continue signals. * setpriv: New command line options --ambient-caps and - -init-groups. * hwclock: Reduce system shutdown times, log --systz when using libaudit. * Other bug fixes. - Drop upstreamed util-linux-use-tinfow.patch. - Refreshed make-sure-sbin-resp-usr-sbin-are-in-PATH.diff.- Update RPM categories and summaries. Do not ignore errors from useradd.- Link against tinfow instead of tinfo (bsc#1056171, util-linux-use-tinfow.patch).- Ensure libreadline usage as well as _GNU_SOURCE- Fix prerequirement of groups tty and uuidd (boo#1057937).- Update to version 2.30.1: Bugfix release, more details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.30/v2.30.1-ReleaseNotes - Drop upstreamed patch util-linux-lscpu-cleanup-DMI-detection-return-codes.patch- Make sure group tty is defined- don't conflict with sysvinit-tools in Tumblweed anymore. Needed for Leap 15 which wants to use a different release number scheme (lp150.x which produces lower numbers than the conflict).- Update to version 2.30: * Many changes and improvements, most notably: * The libblkid library has been improved for hybrid CDROM/DVD media. * The deprecated command tailf has been removed. Use "tail -f" from coreutils. * blkzone -- NEW COMMAND to run zone commands on block devices that support Zoned Block Commands (ZBC) or Zoned-device ATA Commands (ZAC). * fincore -- NEW COMMAND to count pages of file contents in core (memory). * lsmem -- NEW COMMAND to list the ranges of available memory with their online status. * The command fallocate -- supports an "insert range" operation now. * The command "column -t|--table" has been modified to use libsmartcols. It now provides nearly all of that library's functionality from the command line. * Security issues: * hwclock - no longer makes any internal permission checks. The System Administrator must set proper permissions to control user access to the RTC. It is NOT recommended to use SUID. * CVE-2016-2779 - This security issue is NOT FIXED yet. * More details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.30/v2.30-ReleaseNotes - Drop upstreamed patch arm64-lscpu-use-sysfs-for-table-access-if-available.patch - Refreshed patch util-linux-losetup-Add-support-for-setting-logical-blocksize.patch - fix compiler warnings for mkzimage_cmdline- When when hypervisor_decode_sysfw fails continue with other detection methods (bsc#1042991, bsc#1039360, bsc#1033718) + util-linux-lscpu-cleanup-DMI-detection-return-codes.patch- Prefer sysfs exported SMBIOS3 tables in lscu (bsc#1033718) + arm64-lscpu-use-sysfs-for-table-access-if-available.patch- To cover release numbers of both SLE12 SP3 and Leap 42.3, relax release based conflict with bash-completion from 13.1 to 10.- fix util-linux-losetup-Add-support-for-setting-logical-blocksize.patch - -logical-blocksize was behaving like --nooverlap- Conflict with old systemd-presets-branding to ensure correct preset migration (boo#1029775, bsc#1012850).- Drop "codepage" fstab migration needed for SuSE Linux < 9.1 (bsc#51950 (suse#36950)).- Keep dependency on insserv and fillup for compatibilitiy reasons in Leap 42.3. Too many poorly written packages depend on it. (Marked as "sysv compatibility hack".)- Update to version 2.29.2: * su(1) security issue CVE-2017-2616 (bsc#1023041) * minor bugfixes and enhancements- presets are managed by the branding presets package (bsc#1012850) The default activation state is defined by the branding preset package. This also get rid of the only use of the rpm preset macros so we can kill them.- Merge SLE12 SP3 changes to make the package compatible with Tumbleweed, SLE12 SP3 and Leap 42.3. - Drop patch tests-script-race-on-force-only.patch from SLE12 SP3 and Leap 42.3. Upstream has a different workaround. https://github.com/karelzak/util-linux/issues/296 - INCOMPATIBLE CHANGE for SLE12 SP3 and Leap 42.3: losetup -L changes its meaning from SLE12 SP1&SP2 specific - -logical-blocksize to the upstream --nooverlap). - -logical-blocksize can be used only with long option (bsc#966891). - Include SLE12 + Leap 42 exclusive feature, implemented by hare@suse.de: * losetup: Add support for setting logical blocksizes (bsc#931634, FATE#319010) + util-linux-losetup-Add-support-for-setting-logical-blocksize.patch SLE12 & Leap 42 specific changes: * Fix for SLE12: bsc#956540, SLE12 SP1: bsc#953691, Leap 42.1: boo#954482, was obsoleted by the systemd update, and skipped. * Remove --enable-ncurses that is intended to force non-wide ncurses (boo#978993). * Make release-dependent conflict with old sysvinit-tools SLE specific, as it is required only for SLE 11 upgrade, and breaks openSUSE staging builds (boo#994399). * Obsolete these patches, now upstreamed: * Drop upstreamed patches (tests-script-race-on-force-only.patch, util-linux-libmount-ignore-redundant-slashes.patch, util-linux-sfdisk-show-pt-geometry-1.patch, util-linux-sfdisk-show-pt-geometry-2.patch, util-linux-sfdisk-show-pt-geometry-3.patch, util-linux-libblkid-partition-loop.patch, util-linux-libblkid-wipe-offset.patch, util-linux-mount-reuse-loop-1.patch, util-linux-mount-reuse-loop-2.patch, util-linux-mount-reuse-loop-3.patch, util-linux-mount-reuse-loop-4.patch, util-linux-loop-reuse-01.patch, util-linux-loop-reuse-02.patch, util-linux-loop-reuse-03.patch, util-linux-loop-reuse-04.patch, util-linux-loop-reuse-05.patch, util-linux-loop-reuse-06.patch, util-linux-loop-reuse-07.patch, util-linux-loop-reuse-08.patch, util-linux-loop-reuse-09.patch, util-linux-loop-reuse-10.patch, util-linux-loop-reuse-12.patch, util-linux-loop-reuse-13.patch, util-linux-loop-reuse-14.patch, util-linux-loop-reuse-15.patch, util-linux-loop-reuse-16.patch, util-linux-loop-reuse-17.patch, util-linux-loop-reuse-18.patch, util-linux-loop-reuse-19.patch, util-linux-loop-reuse-20.patch, util-linux-libmount-cifs-is_mounted.patch). * Refreshed patches (make-sure-sbin-resp-usr-sbin-are-in-PATH.diff, util-linux-losetup-Add-support-for-setting-logical-blocksize.patch).- Update to version 2.29.1: * lscpu: add aarch64 specific names * lubmount: Disable disable ro/rw mtab checks (bsc#1012632) * More details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29.1-ReleaseNotes- Replace raw initscript by a systemd service doing the same thing. Based on previous work of fcrozat@suse.com (FATE#321122).- don't install bash-completions for uninstalled binaries (chfn, chsh, newgrp, pg) - for now remove procps dependency which is only needed for tests because it pulls systemd- Replace pkgconfig(libsystemd-*) with pkgconfig(libsystemd) libsystemd-* libs were deprecated and are gone now.- Remove no more supported --enable-libmount-force-mountinfo. There is --enable-libmount-support-mtab, disabled by default, exactly as we need.- Update to version 2.29 (FATE#322090) * cal: possible to specify month by name (e.g. "cal January 2017") and use relative placeholders (cal "+1 month") * fdisk(8) allows to wipe newly created partitions; the feature is possible to control by new command line option - -wipe-partitions[==auto|never|default]. * findmnt --verify: the command scans /etc/fstab and tries to verify the configuration. * mount(8) now rejects requests to create another device and mount filesystem for the same backing file. The command `losetup --nooverlap` reuses loop device if already exists for the same backing file. All the functionality calculate with offset and sizelimit options of course, so it's fine to have multiple regions (partitions) in the same image file and mount all of them in the same time. The restriction is that the regions should not overlap. * lscpu supports the "drawer" topology for IBM S/390. * sfdisk: Support for deprecated --show-pt-geometry (bsc#990531). * libmount: various issues with cifs mount (bsc#982331, bsc#987176). * libblkid: Prevent infinite loop DoS while parsing DOS partition tables (bsc#988361, CVE-2016-5011). * More details at: http://karelzak.blogspot.de/2016/10/util-linux-v229-whats-new.html https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29-ReleaseNotes - refresh make-sure-sbin-resp-usr-sbin-are-in-PATH.diff- Update to version 2.28.2, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.28/v2.28.2-ReleaseNotes- Update to version 2.28.1, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.28/v2.28.1-ReleaseNotes - Remove util-linux-libblkid-wipe-offset.patch (upstream) - use the new configure option --enable-libuuid-force-uuidd instead of sed'ing configure.ac- Install klogconsole with read permissions (bnc#990837)- BuildIgnore util-linux: it's part of VMInstall, hence part of every package build. util-linux itself can be built without its own presence though. Helps with some rare bootstrap issues (when librtas changes soname for example). - Drop usage of gpg-offline: this has long been migrated to a source service that checks signatures on checkin already (osc service lr source_validatory).- Do not BuildRequires bash-completion: this is tempting, but it pulls bash-completion and its entire dependency stack into Ring0, which is inacceptable. Pass the correct path (%{_datdir}/bash-completion/completions) via - -with-bashcompletiondir to configure.- blkid: Wipe corect area for probes with offset (bsc#976141, util-linux-libblkid-wipe-offset.patch).- Remove incorrect --with-bashcompletiondir that breaks bash-completion, use path in bash-completion.pc instead (boo#977259).- Add librtas-devel to BuildRequires on Power platforms. Needed for proper function of lscpu (bsc#975082).- fix build for openSUSE >= 13.1 (inclusive SLE 12) - drop build for openSUSE < 13.1 - remove old build conditions: sysvinit_tools, enable_su and enable_eject - cosmetics: reorder configure options- Update to version 2.28 (bsc#974301): * Many changes and improvements, most notably: * Now cfdisk, sfdisk and fdisk wipe all filesystem and RAID signatures when creating a new disk label in interactive mode. See --wipe[=auto|never|always]. * lsns -- this NEW COMMAND lists information about all currently accessible namespaces or about the given namespace. * The command sfdisk supports new operations --delete, - -move-data and --reorder. * The command blkdiscard supports a new option --zeroout to zero-fill rather than discard a specified area. * The command cal supports a new option --span to span the date when displaying multiple months. * The command chrt supports the DEADLINE scheduling class and the new options --sched-runtime --sched-period and - -sched-deadline. * The command logger supports RFC 5424 structured data through the new options --sd-id and --sd-param. * The command losetup supports a new option --direct-io. * The command lsblk allows to sort output by unprinted columns. * The command mount applies the nofail mount option to ENOMEDIUM errors. * The commands nsenter and unshare support a new option - -cgroup for work with cgroups namespaces (CLONE_NEWCGROUP). * The library libmount has been improved to properly detect already mounted btrfs subvolumes (bsc#947494, bsc#972684). * The library libsmartcols has been massively improved to print table ranges, multi-line cells, table titles and to support continuous printing. * The package build system and code have been improved to be more portable to non-Linux systems (BSD, OSX). * The package does not provide fallback solutions for openat-family functions anymore. * The python binding for libsmartcols is available in separate project at https://github.com/ignatenkobrain/python-smartcols * Other bug fixes (bsc#970404, bsc#975082, FATE#318444). * Security issue: CVE-2016-2779 is NOT FIXED yet. - Remove old util-linux-noenc-suse.patch- enable last binary- Update to version 2.27.1, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.27/v2.27.1-ReleaseNotes (fixes bsc#950778, FATE#320552).- Change condition for known fail markers from test for armv6 and aarch64 architecture to test for qemu user-space build- Update to version 2.27: * Many changes and improvements, most notably: * lsipc: new command * unshare provides a new option --propagation= * mount(8) supports read-only binds in one (not atomic) step by "bind,ro". * GNU readline support in fdisk and sfdisk. * JSON support in libsmartcols and findmnt, losetup, lsblk, lslocks, sfdisk and lsipc. * script has been massively improved to be more robust and less complex (bsc#888678, bsc#930236). * sulogin supports locked root accounts by --force (bsc#968733, bsc#963399). * colors support by default. It is possible to change this with --disable-colors-default. * more information in cfdisk * fdisk provides new commands 'F' and 'i' * cal supports the new options --twelve and --months * rtcwake supports a news option --list-modes and --date, no support RTC_ALM_READ and RTC_ALM_SET fallbacks any more. * Many fixes, most notably: * fsck: now supports -r {fd} (bsc#923777, bsc#903738) * Fix fsck -C {fd} parsing (bsc#923777, bsc#903738) * better handling of multi-path devices (bsc#880468, bsc#924994) * flock: improve timeout handling (bsc#926945) * lsblk: display mountpoint even for top-level device (bsc#943415) * colcrt: fix buffer overflow (bsc#949754, CVE-2015-5218)- Add licenses.- Add %systemd_preset_pre and %systemd_preset_posttrans that will do one shot presetting of uuidd.service on upgrade. (bnc#900935#c46, FATE#318949, FATE#317727). - Remove one shot presetting hacks.- Build with --enable-libmount-force-mountinfo the rationale is identical to the following commit message --> http://bit.ly/1eqf5GO The default behaviour is undesirable and fragile when using systemd.- Update to util-linux-2.26.2: * many fixes, most notable for logger, *fdisks and mount * (lib)mount, add support for MS_LAZYTIME - disable libmount/lock test to avoid random timeouts - socat is needed for logger tests- Update to util-linux-2.26.1: * cal(1): do not segfault when TERM is not defined or wrong (bnc#903440) * logger(1): major fixes and enhancements * agetty(8): support /usr/lib/os-release too * some more fixes, mostly minor ones, see ReleaseNotes - re-enable fixed tests (fdisk/bsd, ppc64le)- Update to util-linux-2.26: * based on the git master branch of util-linux, remove backported patches (util-linux-libblkid-unsafe-chars.patch, util-linux-libblkid-overflow.patch) * zramctl(8): this NEW COMMAND allows to control /dev/zramN devices * agetty(8): supports new option --reload to force already running agetty processes to reprint the /etc/issue file * cfdisk(8), sfdisk(8) and fdisk(8): support sfdisk-compatible scripts; it's possible to save your partitioning layout to text files and (re)use it in all fdisks * fdisk(8), sfdisk(8): support new command-line option "--output " to specify output columns for --list or print commands, do not abort when fdisk -l when device cannot be opened [bnc#886790], [bnc#893712], [bnc#890351] * nsenter(1): has been updated to work with the latest kernel changes in user namespaces supports new command-line option - -preserve-credentials * unshare(1): has been updated to work with the latest kernel changes in user namespaces supports new command-line option "--setgroups=" * swapon(8): supports new command-line option "-o " with the same semantics as -o for mount(8); it's now possible to specify swap options on the command line by the same string as in fstab * fdformat(8): supports new command-line options --from and --to to specify tracks and --repair for broken floppies * getopt(1): has been updated to the latest version (originally maintained outside of util-linux) and refactored * ldattach(8): has been improved to support GSM0710 and intro modem commands * logger(1): supports new command-line option --id= to specify PID (or another ID) allows to specify --rfc3164 or --rfc5424 syslog protocols * lscpu: recognizes Unisys s-Par as hypervisor (FATE#318231) * libfdisk: the library is distributed as a shared library with a stable API and a standard header file * libmount: provides a new simple API to monitor mount-table changes (including changes in userspace mount options) * libmount: Fix mount point lookup (and mount -a) if the path contains // (bsc#931955). - Fix lack of I18N support in util-linux-systemd (mis-compilation).- Build with FULL RELRO.- define upstream source for klogconsole to remove patches * klogconsole-quiet.patch * klogconsole.diff - remove openSUSE 13.1 specific eject permissions, did not worked anyway since eject-fpie.patch was removed - always call autoreconf, not only for splitted packages, skip autopoint (gettext)- Do not try to unregister an info file (ipc.info.gz) which we do not own. Already in May 2011, we stopped registering it: "do not register ipc.info.gz (not provided by this package)".- libblkid: care about unsafe chars and possible buffer overflow in cache (CVE-2014-9114, util-linux-libblkid-unsafe-chars.patch, util-linux-libblkid-overflow.patch, bsc#907434)- Update to version 2.25.2: mostly minor fixes (including boo#908742) - re-enable utmpdump and ipcs tests for all archs- Use util-linux:/bin/logger as split-provide, /usr/lib/systemd/system/fstrim.service didn't exist in 13.1- Remove pam_securetty.so from /etc/pam.d/login. By definition, local logins are always secure. Remote logins actually use /etc/pam.d/remote by way of `/bin/login -h` (such as rlogind). This solves the problem that root logins are erroneously rejected when using kmscon(8) or `machinectl login`, because they use ptys.- Remove known fail marker for fdisk/bsd on ppc, ppc64, s390, s390x- Fix mis-compilation of libuuid without uuidd support (bnc#900935). - Fix uuidd socket activation (bnc#900935). - Remove obsolete sysvinit script for uuidd. - Remove no more needed uuidd permissions stuff. - Replace PreReq for obsolete pwdutils by names of binaries. - Add fstrim service scripts and rcfstrim helper./bin/sh/bin/sh/bin/sh/bin/shejectloginrfkilluuid-runtime/bin/sharmbuild02 1635258139  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~2.33.2-lp152.5.9.12.1.02.33.24.00.52.33.2-lp152.5.9.12.33.2-lp152.5.9.12.33.2-lp152.5.9.1 2.1.04.00.52.19.1  dmesgfindmntkillloginlsblkmoremountsuumountblkid.confrunusersufilesystemsissue.dloginremoterunuserrunuser-lsusu-lrawagettyblkidblockdevcfdiskchcpuctrlaltdelfdiskfindfsfsckfsck.cramfsfsck.minixfsfreezefstrimhwclocklosetupmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapnologinpivot_rootrawsfdiskswaplabelswapoffswaponswitch_rootwipefscalchmemchoomchrp-addnotechrtcolcolcrtcolrmcolumndmesgejectfallocatefincorefindmntflockgetopthexdumpioniceipcmkipcrmipcsisosizekilllastlastblinelinux32linux64looklsblklscpulsipclslockslsmemlsnsmcookiemesgmkzimage_cmdlinemoremountmountpointnameinsenterprlimitrenamerenicerevscriptscriptreplaysetarchsetprivsetsidsettermsutasksetulumountuname26unshareutmpdumpuuidgenuuidparsewallwdctlwhereiswriteraw.serviceaddpartagettyblkdiscardblkidblkzoneblockdevcfdiskchcpuctrlaltdeldelpartfdformatfdiskfindfsflushbfsckfsck.cramfsfsck.minixfsfreezefstrimhwclockklogconsoleldattachlosetupmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapnologinpartxpivot_rootrawrcrawreadprofileresizepartrfkillrtcwakerunusersetctsidsfdisksuloginswaplabelswapoffswaponswitch_roottunelpwipefszramctlbash-completioncompletionsaddpartblkdiscardblkidblkzoneblockdevcalcfdiskchcpuchmemchrtcolcolcrtcolrmcolumnctrlaltdeldelpartdmesgejectfallocatefdformatfdiskfincorefindfsfindmntflockfsckfsck.cramfsfsck.minixfsfreezefstrimgetopthexdumphwclockioniceipcmkipcrmipcsisosizelastldattachlooklosetuplsblklscpulsipclslockslsmemlsnsmcookiemesgmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapmoremountmountpointnameinsenterpartxpivot_rootprlimitrawreadprofilerenamereniceresizepartrevrfkillrtcwakerunuserscriptscriptreplaysetarchsetprivsetsidsettermsfdisksuswaplabelswapoffswapontasksettunelpulumountunshareutmpdumpuuidgenuuidparsewallwdctlwhereiswipefswritezramctlutil-linuxAUTHORSChangeLogNEWSREADMEblkid.txtcal.txtcol.txtdeprecated.txtgetopt.txthowto-debug.txthwclock.txtmodems-with-agetty.txtmount.txtpg.txtgetoptgetopt-parse.bashgetopt-parse.tcshutil-linuxCOPYINGCOPYING.BSD-3-ClauseCOPYING.BSD-4-Clause-UCCOPYING.GPL-2.0-or-laterCOPYING.ISCCOPYING.LGPL-2.1-or-laterREADME.licensingcal.1.gzchoom.1.gzchrt.1.gzcol.1.gzcolcrt.1.gzcolrm.1.gzcolumn.1.gzdmesg.1.gzeject.1.gzfallocate.1.gzfincore.1.gzflock.1.gzgetopt.1.gzhexdump.1.gzionice.1.gzipcmk.1.gzipcrm.1.gzipcs.1.gzkill.1.gzlast.1.gzlastb.1.gzline.1.gzlogin.1.gzlook.1.gzlscpu.1.gzlsipc.1.gzlsmem.1.gzmcookie.1.gzmesg.1.gzmore.1.gzmountpoint.1.gznamei.1.gznsenter.1.gzprlimit.1.gzrename.1.gzrenice.1.gzrev.1.gzrunuser.1.gzscript.1.gzscriptreplay.1.gzsetpriv.1.gzsetsid.1.gzsetterm.1.gzsu.1.gztaskset.1.gzul.1.gzunshare.1.gzutmpdump.1.gzuuidgen.1.gzuuidparse.1.gzwall.1.gzwhereis.1.gzwrite.1.gzadjtime_config.5.gzfstab.5.gzterminal-colors.d.5.gzaddpart.8.gzagetty.8.gzblkdiscard.8.gzblkid.8.gzblkzone.8.gzblockdev.8.gzcfdisk.8.gzchcpu.8.gzchmem.8.gzctrlaltdel.8.gzdelpart.8.gzfdformat.8.gzfdisk.8.gzfindfs.8.gzfindmnt.8.gzfsck.8.gzfsck.cramfs.8.gzfsck.minix.8.gzfsfreeze.8.gzfstrim.8.gzhwclock.8.gzisosize.8.gzklogconsole.8.gzldattach.8.gzlinux32.8.gzlinux64.8.gzlosetup.8.gzlsblk.8.gzlslocks.8.gzlsns.8.gzmkfs.8.gzmkfs.bfs.8.gzmkfs.cramfs.8.gzmkfs.minix.8.gzmkswap.8.gzmkzimage_cmdline.8.gzmount.8.gznologin.8.gzpartx.8.gzpivot_root.8.gzraw.8.gzreadprofile.8.gzresizepart.8.gzrfkill.8.gzrtcwake.8.gzsetarch.8.gzsetctsid.8.gzsfdisk.8.gzsulogin.8.gzswaplabel.8.gzswapoff.8.gzswapon.8.gzswitch_root.8.gztunelp.8.gzumount.8.gzuname26.8.gzwdctl.8.gzwipefs.8.gzzramctl.8.gz/bin//etc//etc/default//etc/pam.d//sbin//usr/bin//usr/lib/systemd/system//usr/sbin//usr/share//usr/share/bash-completion//usr/share/bash-completion/completions//usr/share/doc/packages//usr/share/doc/packages/util-linux//usr/share/getopt//usr/share/licenses//usr/share/licenses/util-linux//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8/-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:17098/openSUSE_Leap_15.2_Update_ports/fc98bc68cdf53afef0ed29affd6f8244-util-linux.openSUSE_Leap_15.2_Updatedrpmxz5armv7hl-suse-linux  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqqrrOsttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttuttttttttttttttttttttttttttttttELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=02efb04518d1824b25811088b38b900a58a82d54, for GNU/Linux 3.2.0, strippedASCII textdirectoryELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=7d133674317ba1b123fcdf832db21f739bc79796, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=60ffab191280ebd11446e0e4978c98140b2e8ce3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=e51401cf285cac950703a9269ec373e530ecc4ab, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=3184d0da4ccb4e2e0804b48eec0afe7011662391, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=dfa05f97ae21634d87e74d82682a57b20e7dbc09, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=086ce1e621f0431f10a08918d8876e17f5d50267, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=2fd9ad0965b2d4c1c32db46eceae0ca4e5bbda05, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=432cb8085a674ca159fa7e85a221317344d3a434, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=54887e710f7e4e10145bffb80662f4db61b445b1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ea02505b1a7e5f8247bbde1782579e8dddfea413, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=2c6434ad73f958ea810725fe439afc63a0232702, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=f0c57e5aba6ee76d53905f717e48e3c23490faac, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=5a71eb18cfe9f17030f136e7ff0c560ac2f6a927, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=b133746cd1cc8675472f3e7fdd68543d9254ced7, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=94744ce61d0dd60da09caf9cc83613f8c59b41c2, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=0f65c0cb86aab696cdbc5106e62e574071942039, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=b477e1cab48cdbae42fa98a3f94ef756411b7872, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=c95965144a682bdcef4bcba76d5f5510f1fcfc6e, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=631eeb0cd07b3af3c46ef1d58a9a2b87fbfd8194, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=1edafb9f0109fa99e54c547c00ca2b66864ea40b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=92c7ed971085e6d9e52e4ab8616257f3b0dd0b7b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=37e760f3cb8a84fb77b8596e45c02d15e7bc5498, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ba85b4993deca77d85be3ff622fa9088633462f5, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=89047fdf590bb7111d7f058ede9795ed9bd2371a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=266a4369a6528817c4f3b0245534535deabf5adf, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=6a43812eb241ceb6b4686f77e653fe672f2ed340, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=4362572fd1f7d4a22427cbd8085077f20813f146, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=40385a26a36a64083f6555283b2b49a1f2ea4f0e, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=bc7172f57c549cc0368262d10c4c23de1b1ae6a7, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=dc546d4dd970dfb0817af036c94261709fd262ad, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=26b1ae621de6a6dc0e51c6f2ffa51f6e4b401111, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=21a0cff03d32d83b97383e2e490eec9d617c4091, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=af54219ed0c9053d6adec3d50e3ca9c1109b04ee, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=0c77baea0169195c5e7bae6e7839d08afe510a09, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=306d80870e00ec3c5e22f0e3e2da18d188998515, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=92f20b6e5aa9763bc621ffff82134e56741d1da0, for GNU/Linux 3.2.0, strippedsetuid ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=40f85c30f7fa3c64320340f49de7d774d7e821b6, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=5e288a2142792d873e09e1599401e235c0313d1e, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ff3526f38d4513efe78950e2171c6639036bd4a2, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=01561489ffb9f46ed123afcc9e08aa8344f14ae1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=7a18d0fa591567be104f7298f7f58559bd1623e7, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=75d2aa88d0cbed742d2bf047fd0aacb6ae6f90c9, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=a7b18a42c74d3c0be5bd2b5b32acb5bc197388be, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=fbe63f6f4b19e8d36f0e95258d300882f3cb90a5, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=113bd516d41f37040371c797ade0fbdeb8cfdce4, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=e166b4d8092daf47cdc6a95a3bcce2a5fc93aa01, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=10ccf3bdffd5a2910adab63275a2a975defbf9c3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=137eab4aa059be555a5e05157c8a0722b742efb0, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ab9ed957b0660260f0661e8f748d5e5492e11c5b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=95c5cfad8f407abefeeb5d22a0fea3e8cb25a840, for GNU/Linux 3.2.0, strippedsetuid ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=76fb34451010244547c19074e1abceaeaa00e3ee, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=68a97816bb57993a0ba049e5336817c381fda1af, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=b3fcfcd3e2c44e5663259962923db27150806e4e, for GNU/Linux 3.2.0, strippedsetuid ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=554fc7beca261c0c0345c65fa162638c86e53970, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=b1601d6e7ac978b78f2a3d7c61f93f2db419cb05, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=29b637a13f56a557c6f9c4b6a8f55a4867c6ddc9, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ff4c3bf859a9be9385d5d4808848f991b4dbc072, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=a59869e57ee3c7345257dd3cca754178c339f93a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=e32e1fc2793738bf420e2161558731c96a6e96e4, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=cc8e3eff5c555083b7e16c1deea04412206d6fa9, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=bc32244acf83ffdd06caa4225ff291f7781029b7, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=7850d9f8e1683df44a4ac7499159b62a8ca9c01d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=0efd5a8fe665648ef4271d17da556628ad715e92, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=0e574cff3e6de216c8267ecc3a1cc67d4f12ae56, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=93459cd749f97c08a4be5c2dab392e390f9a380d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=20dae3a03192712ab508f1563dbbc2e52a6739c2, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=127c383118a906f4d3fa153c8a9d1f801379fcef, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=a6bf434af603aa188a1731ccef85ff2c0c41d060, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=841b08be7cac1a83393619dac3e736c5299b19db, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=192ca5cc94f7a528aec2cdde0f749bd92fead4f0, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=7d41fe69a8475059983e979c8e558935425f76a1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=457b4ae4ce534ea02d2fab5cc09200fbc530b601, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=e47723abda899e65b284eb3ef0efbeeaee86d392, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=2f6acfc51db081db325ff52bbfba2522b8e3432a, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=594eaa57c297552b2f162c9bad6e1f83bb77ef26, for GNU/Linux 3.2.0, strippedBourne-Again shell script, ASCII text executableELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=7331e080795292a661fb2fb3a0c4ac5fcd4d43a6, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=092a51a8353737ebeea26775c1ee93715186d421, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=c34ab52ff01a4c2fb89a0785d83edba06b23a83b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=2814e54dd517802ed8e49a55f93874715a58b33b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=867724dfbd59a3fffa1c93cc20e14bcf75a805d1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=95864baaf7d361a64949b64d6ccfdc7ab492cf5d, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=52ea66decee712b77a2a78572acf89069ef32b2b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=90976227927bf6a7e7115913b2f7d3fac21a2db7, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=f5cfddb0ffad0bd49c7ed4f9c47d3ca66ecffa55, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=7caca22d5ceec7fbc2e0e6ddab71f826584c468f, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=a32ba8eabf9c8872acd96b2b0da5c4b3dded4684, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ba527306876e64a5a51a7069b8f9d7748b0cfb30, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=631bd8e0fcbf8ae15976bcbf0a160983e3183f97, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=3912f4cfcbae620c6090d6cba4108e0226415142, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=f64038f90b163f72183f08be8d49dc06577e9477, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=a47731b7c7343ced71122cd8e3b6f1781ea477b3, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ee55f0f5270293da71ef114700b062af07c007bd, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=4c6a8fa1d5b9dadb6ee659fc81e3598f7f9bfcf8, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=79749ceb789ddf37a869639ec1351a0409166943, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=327259ceac718ab94177597146762c27387a9623, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=9f5618f59367f5bcfc6b503f59ab0df39f8fabc2, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=5eb46b0d9118b5d6c7db7d558a34d93a42884ac1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=64ff2c69c1fc1b68870beb8b406e274007edfdac, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=273b9895d0fdf96ccf4aa2622d7535b4af82f49b, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=8909b224136c45486a25d45dffbf472e8abcde89, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=741d76d6c7cb5b4236f4f75cab57d28dc0b81a48, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ee3fec65a1c2096c848898fc87166d3bb7377a63, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=0d4914ac7f8f844e395ed436e9cf42e4dc82b7b5, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=59f2c52135db92c6cd408280b5b6cbfcf3429dc1, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=89d8ec3999e7a78b632bd4a83b86c36c8113e9ea, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=2c1d2520e43f47d47cc16264d293cdcbc81379bb, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=4c3dc8d7022e78cdb18c099c2fef8ab8aa1fdf65, for GNU/Linux 3.2.0, strippedELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=ef140aa3f6cda6307a44add52f64cf4002444406, for GNU/Linux 3.2.0, strippedAlgol 68 source, ASCII textUTF-8 Unicode textTenex C shell script, ASCII text executabletroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)Algol 68 source, ASCII text (gzip compressed data, max compression, from Unix) &*18>ER^ks~*6DLRYbs|*1:AHOYbpx ".5=EM\bsw} '                     RBR R@R!R RR0R?RAR R/RR R RPR!RR0ROR/RR R R!R RR0R/RR R R!R RR0R/RR RR0R/RR R!RR0R/RR R R!RR0R/RR R RR0R/RR R R!RR0R/RR R RLRMRKRIRHR!RR0RGR/RR RER RPR R!RR0RORDR/RR R R0RER!R RR9R4R3RDR/RR R RR!RR0R/RR R R!RRIRHRNR0RGR/RR R R RSR0RJRNRHRIR!RR7R9R6R8R:R5R4R3R RGRRR/RR RER R!RR0RDR/RR R RR0R/RR R RPR!RR0ROR/RR R R!RR0R/RR R RR!RR0R/RR R R!RR0R/RR R R!R RR0R/RR R R!RR0R/RR R R!RR0R/RR RER R R!RR0RDR/RR RR0R/RR RR0R/RR R RSR0RNRLRIRHR!R RR9R7R4RRR R3RGRRR/RR R RIRHR!RR RR0RGR/RR R RIRHR!R RR0RGR/RR R R4R9R7R0RNRHRIR!RR3RGR/RR R RIRHRNR!R RR0RGR/RR R R0RNRKRHRIR4R!RRGR3R/RR R RR!RR0R/RR R RR0R/RR R R RR0R/RR R RPRRR0ROR/RR R R0R!RRR:R9RR)R,R'RGR&R3R=ROR/RR R R!R RR0R/RR R R!R RR0R/RR R R!RR0R/RR R R!R RR0R/RR R RPRHR0R!R RR(R+R)R-R.R,R*R'R&RGRORCR/RR RRR0R R/RRR RR R0RER!R RR9R6R5R4R3R RDR/RR R R!R RR0R[R/RR R R!R RR0R/RR R RR0R/RR R R9R6R:R4R7R0R!R RR3R/RR R2R R!RR RR0R1R R/RR R RR0R/RR R R!RR0R/RR R RIRHRNR!R RR0RGR/RR R R!RR0R/RR R R!R RR0R/RR R R!RR0R[R/RR R R!R RR0R/RR R RRRRYR!R RR0RXR RFR/RR R RR0R/RR R RHR RRRRRR!R RR0R RGR/RR RR0R/RR RR0R/RR R RR0R/RR R R!R RR0R/RR R R!RRIRHRNR0RGR/RR R R!RR0R/RR RWRBR R@R!R RR0R?RARVR/RR R RR0R/RR R RPRHR0R!R RR(R.R)R+R,R*R'R&RGRORCR/RR R%R R!RR0R$RFR/RR RYR RRRR0R RXR/RR R R0RR6R7R9R4R RRR3R R/RR R RHR0R!R RR6R9R5R7R4RRR R3RGR/RR R RR0R/RR R R!RR0R/RR R RRRRRRR!R RRIRHRNR0R RGR/RR R RHR!R RR0RGR/RR R{DפYΕ9Oܖadjtimextimeutil-linux-langwhich2.33.2filesystem(minix)utf-88a83fbc567707bbe22277fed89c1b5ec87aa5996324234144be3d5d39518b63c?7zXZ !t/ ]"k%dN0؉ӪN/e o}L|a""Oqu]ȳ}#XW٥*Wu| Ũ6@Zzppj<Iֲq< 1B>Dv|a IQysbԊ>R40E(fao+ϻ+zbT E G:] k^Ac[?KHnzR~n'uB훝`hd^2p-bxEH=@԰/>2Blc9??d5jR^LUvfäV'V J8Q Z'^j<`%|B̐ @>JY2B#gS-K49ha`Fc"Y]oc+%#.2՟"{R.jMܠD옪 "3+Inq3ݤw3@HP5;2,2#&N"Ձ~ @ڿ)f^Yb(U*Y[:@ Z4_kaY?Ò-b Y(ם*Dj)psI4 w^R#r,{O 1MNuoCϐbou }kSsp@oXe{PRƢi:+;..=S_+Ո0xYZE"Y;0Vp̓"I4.Xh P?޼zL ګޔh:ζ (m)n)po|4Ғ[͘G ]mlit K?,rmNcIU5Lc' 埠^k;_zb'oQ5 sUK043Mʤ/X?!%aa; b=`_^?9 ÆO,,.|Y\"4x9#xGʯcL2<-yɄwjࢾ'OeousEޒ2v,)g X䪀?ӹ߂`Mʪ1'8űRA]#<[۵R݂Od@D&*|U~z);Ә=&,yPѲt<ÞCo\?I0j}o_].Y[Ԕҝ0w 뽟a -±1Wn>cqah0ZZhoo\Z݋؝KW%u񍇃 x|F ?M 8{O C}6եVZkYc͍K[ 1t Ca]])g, azB;dtb2\X z蟓ج4[kOK9/f$"/Q[)߱{(Zxv0PHcJ@CE,~QD~rQ'r7Lh eimv4gԶ!ʹ^IjU o.cFCz*-BT=^rk &_$; u!Z^ljЩN D{w:(@hILITܽZFkVYWzӱ„䗜ܗi@˂8aM$8N̕Q¸(ot"}N?_k_'8 $N\sp`F([u]t}z}jJ8WKUlD>bF\\V/bcڸzVI0..B<4\tXްqф$"ih(A= -VȷܑPT $Z\y>O7O~d9"+t6|קg37!~lv"IVP- jּ4(0Pwh|ZE.Hki1 NY,J6|A$*^OM)+;eGCM\L*}g0P82qbZXо)kW1S琓 ۚoٲ"wc[8=RKNU_=nxd,g "fG<]#mY FxjxB 6׿ߪ{߶i!bVi)odY{ xȟc`<oMW/)z\wN4۱Ʊ)o儭 3j (e~=5hJЊ4^Y[J+,`=Pgp@:p'sq"N>k b{²򢈪^F~Dy|CTvwt,`e*18j?S&ͨEG{7i7v7 <7ɑPaFE3K0t @] Uh9!V5'[jj;L#b!35. + CcfOE%&ݜ^;Xt[vBhɼ 'ʋj5G@uZ}&K 2LI.m}>!m/ b@9?(9mk$WeܷE<Ssv:fAb?n.'DH 9oc^>jS5QTS.b1t*E P$.kx;"pEM1_"Av^V(؅0-^u+Ec6GoL<Gemȷ+oV~5Th*M= G/tȔ{TZ\ -@lZ]` I9I+F]7 UvV Y6!)MfC D!OVRgWϴ+]Fڮ*P6蕕ds \raseoVepiMc2Ci]pI=r5TG1wJ詧ԴѴSxݧeFƟ|3;rh_Llddk׵+] 4̽}g㢙W`&t}Anܚ N@Lvia6dDP' ştV&aߍҧ]szTykX:Ώ.:*/6eՖb{\)jM1}=U5O#:)劲'q&ڸ=#2Px^ゾjmL O +(vf&1@Æ.@UgH.0XMd0fmtoT. K&JBU8?kiMId p9K{2YۂK,P]^Q:CԘ{arBHa}mУtSEَ\ Qk =?~!"P 5gB֜a@ CH)r>KGAkV5')ЅWfl#cR+`$QLc+Ty!vZJ++F7װ]Ab 9v~׼baL*]sl=& 6Eaj@LJ_n [X}SX/P:G9hUMn-+̃oW|rsX%p6+ j*H"5gfE'1%5]+^ J\J1Dm_!KG ;G W亝aCx_iy`&q|Bvc)BM;(:K5\ er9NX+Ҡ{8rU;zW-f ҳDJ1iG˕V I[H/p08lRԝ|2Taٿ;arNN3Re rL:4e)`'%yCq~(-U[b!lK.<H/P/! !>_I&|kN؃ 1ǺPyQ|gzI}$p=uzt f=|~ȶrᯣlfFJI" l, k][~?=nCmR.Ң m|9]^&1qѫ}Hj*M5=UUO@^B9"wR5Cc4DuXY2UXB0a_3FъJ1x*yVjy3|f ql2;/ŧٟܚ:NnF4A;ӻvM㻴g wj o{cBN:=MLj7LϖhHُ^0K5 zjS7J3;c@|O+k&l`{"fMKx;k-spĿzSmQ'-Y>()Chkf)2v42Jv!~iQń7w5 O" n]N?.Os/ab/l Ppiy^BxܿQooxՋH#\cA or%̚NֆŒ*)O̼]d[>ZTQqT. 1On Vq![sX ӅPpN$Eb5BA1 ijP##*1ϩ5$ǝVK_UdH_v;hA:(]$_~tnokc ^QVýE^gS̑# ҥF1U ,\ % 6ׁ⢖ }^\ /k@G}MS̪07gg[ZٷL\)rҲ +.Uhqφ;8!RTߋnW5 \ַwYIBaw}@Nj'lS} 0t Ȍ#qY~<Rq/J9ٺ$gWVho$q8Јg_в"ꪨS7D=;і䒌n"Ʌ詉HZ`= #A OuĎ0Qo{8Pd:/~F8zd}ÛRse:6S_\[I\+V igzjgOdJU? XO+&aF4)dd|'?_;SBjg]:*832`ϔ &j K/~^xpRԃ>G<^T#x raF|LW %0R\NjFxI[Dً?yVYؐhgq岕<*}3%ܾEzV2]&Bi FnN@,F;Ŗtun{Jb۲0VckSA8C"r|`;rq"rYqUyM;v{ap2 B3^rbӢ^p;a8 MdѵÅXJIlog?.A?xIFjxD@t/rp6QpԢV=NNԱ@\NFQMIzu.QZrԃJ/<`.ũ]*OFʼnoCAdq3$Y2O۵sb ^hޟxe\?a!&_\/)@j@.2ڜ}BIߎzu~\UiA 9 1S27\ G4zfRj;cAjWG{\oEE%w .}B+$oRp[CK#93G!1ԴkR-Z\IDJsyF )UXY HW}DRJ sZqu3na'vWp4gjo|/#i ^3w`4dE[My=9FmGlzM,j˹r\&>)1mU)E~'o9)dh59K=K/y@Cһy&[ BhsʮlrѕGN'ꀧ+a/=2KMG40G7kSr žJ.i?]/ha=s0Dj=FUewZYiCQ؟=FͻP< yL]$"s*̯KHf`(d5 jI:S/jW_a+R7VA׮QC նCI6懑#X[i1O\piKy{dx>,_j,.ܗ4y`Tw,@]E0r8o+"FMp KfTΜ&f]=PM:+xZri1.riekX<_.#5œ*MdZ= P ǰXl(ⰰGMHd:r(;cDhlOhD63jQz(4e@=2arOA>i`q]7iу~=]y8mH܅2'({J޾PQbsBSR7ӱݜVtͻ!4S\7wKHK"pvؔѻז2){$cKβ,(d2F4 -ز:r_p> f* …<ٲS׻:5{n tx9:Q]^nSLrQ,xAQ}Dza'QBg\PȇNgهκ!`dʜ(mW^c9{y(&YU Y {3l'e^"Ҏt|]Ie݅v#2 S!I׹TOylO r~eA}fB JEPuq#in"#Qj#@޵E@hȠHֻӗKdweJIX4}I"{;zGXØ`%m^ښ؊xzL' e 3Aꇿ)ŵph6`ĽиA-2-ݹewwl8߯ԅ^FC 3;IroTmLs)#i n>gV*}jfd`QLe7q:}uuP*|Y &G`I/M]WFw}EOM@gaPox>nu6]K ~z*?`g.G}E߂5XUW'KE뾒)ź3Mz(H fP柉Rz*LeRh_kIvw}Ⱥ5u?~O~栜 g!˵rZz09,ovC)_j& %rw1K (M1\ysaη @Msu:eL6_Og[n\h{fl~/Péinߓz(}P~χtȫd9Rf4W(P*mٯ_JXSE:a~Sut6cPZpW*a B0/\TpT/L6^k܃[Ͼ'n&bUٻAu7+5kf78V(z~d|*Y~{^ ̻/D*VKD0iqo!P{Aw /mdj9.~\:6;d$!NyFyKGUŰ,z*7qv !G̸ ADhu h4]S4Խn McmHg ees z^LsԷw'ݷ6Z.3vp׸¥KZL0ɣ/XI`JPz6*Xo-q{*/1nQ$ly5rFd=ek/8 =.|xa6ݒRPe+ܦY9V9s3$P"y)> 5f~?QydkxU%ŅZJtچ|/*9ZصEj0f[ʇ~*WJ`³f5(?eΈ~Z79sr4I4-Lt{[\k? SƅnUzI29LB٩`bO'WKA9O8=&= wRt*@PD*s7~ ^uiW?9Cį:aE,|:mQb ,*t*4첺hy}dU-!thI‰ 9+V !k^$Jx.eQ+ UF2=`Uw i'P̘b}cP<3ήbxHo wEWHc_Mpn(Dbw \u{B>qKBMy'5B[ YVW?evrjiuuEy8qұ)DJV(o̫F<7D=is@}>|d_G+ΰ|f[ۜ}+S"{]=3m yKWa^ޝL41a& I'jaq:K{F=70 agihEPّYdc4BI^ÖƄ\q-DؙKE{ {Y-#LZCszMS{oB(1ЁPeD6Ks'b٭v>XbaѠ[]ƐG&d P;,+Lg1)a,uAlq3gY߼p W22 [ו`_kgxrú1V9h8\Khi`aqbH.-oYx^n\WV5 CX$Ԛ3>!=;gc;NZP`dγC(fڨΎU^+,XE ɾdh/~6Hn :U>E+1Ƶ$F! )]V@9#ipg?C-ymlJ#aчs=ߗDdLI"Ĥ>uð/NDM6 ӌ_hٴ5x|E( Oo+mq5!BJikU {Sk p2.WSMdl>zRo26B0sEB1 fnmdg"պtʹ,_L88KyakYg^{g{#MKWZއ{PIF8ڠ&9[Ҥao)&h/x}u&1ݦ|53% :KbR_Yy`28e2F$4]3L@w# [uF\˩脮B-nAis NW\6xo~}׃łvAῊe)/\//0ʏ274ݧBxLz=Th OUUOdс6nVs'kh.س U܎յgi7׺ު+OCzn 8kYZ6Jv9?6JxŔxx~Z?=#|nC:#_1vy+.LhtmB4萣η`lbƿcW3P$婦% q,bj]7X4dzTpNWȩ dK{?\U*f99otAU<2cNQ%:i;ikP<]_VNe5NsZ4bܽ [2"gc/3xumuE[TՖQcML7ZIzdqHA2$7ce5+R0{iWFDtԲ}E$fWUCڿ)xW^tIV$h.nL|9r,*ҭ{sv㉣h `.F_RD[Px7 0:6N+8#ܦ"=6|;aOॿӻ{u*pU?%*[v&cѭ6cL4|BWh(!Sh BPuA},rJ_;Y"ZfZW}Jp9e'DNg=H!W+ 4fg' ЉVk6N'Y4ݪ-mwVNKC?\(1<1x<7!Mog}}aʊ*TƜqX>Khb]5X8wbX 1<*)L (.r9BQmPTKnʜڄlP޴ҐN9K Fl{ӢW&UʆGpiƃX`o(4|Dޅ{R(%ϰdC.7(f]maLݦ\ν役9'A?kX4D0=yG㻥E[3/{ -W)fSyfhX-\-"/lqfEכ4\פ[ wwXcUv x;{VV{` -W,=G­d3{d Raz̉{J)#&LJ=_[Sg4* M3 TFGa"=xE-n˚ap ݔN<U9ng>1\6 })'ٛB !/휩 ̻,(P&kꒅ)mVE[mJt.i?n5S2\_pH*$DOC\7pĨwƊ}Pt_Գ=d~}`ۄAW{a ;W>GF4Ģ15*!FE]׾ɑo`ıT3!k5nSF#YLOpknˎўca>v ]J]()-_V73@H/݊z5b+b.P>vq\ D2p1~8 gCf7m354 kVy'y^ݸ G3 #5d-aXz\Lo1 >FcsL=en@ene Ȭc! sMލ[]j[p,m eYD>g ,7|hG\)?xV%~0QGh'݋hf-:OCO0zmxnvAӷO 6 T)58(Ǽ0$(^ `Aw&v@pfGWI\Adf d8AXY"0$4k{|3 !-7" $ᗄ.im_jIH1JJ!#PYW|BE& YPdLt3vZ+Mba;-2:V%W;P-]m-Ci wqoi[T- iIaE>m3ʬ e_[CyHBBGE뺦&?OES|7 J: i' 4r WHx` "wKRѭCyK:1>QyĻŪ{(Uʋw3H^~ފ_Vߤ"`oa?Q7}oBE15t'M8f4 oiĀnwK9U]YnO*:;T}tkTZ;ma9ͼXeRIW O% RyYAKLb֦/jmx) b+[tA4`'P]-H=G(Ygv O%T5>' wl Pz1#95Z_wݙ[u~6K/REvt/`P5hƞE3/?QѵuPƨi/Ҕ6w\EMKukhgG%o<;לsEϏlL5>(ȋ$NDUB`bdƋ@.ȜAo{DeLlhs_A@5VBkd}A"/Rn]E/uyb˴ђћѻ+-Gu  H9Dv'Т ?ؙ䳱 ' WQڍkܩ{kNMf0G@6#l`h8s@ WɈQ[+d|64O}"WN9z1N?lC+͆\:I0!KFs*fugY涬jH,W$9[Ca? `(Cюt&=ڜ d}R,i(L U|t8J֨uz"ϒ:nCAe{O$s2.}e({K T; I뮭щ3(@9u@yAa&? Owf)% 1%B-"mHGyoR (Y&cX;C1)ouilzP9e;"&wiK|iTa߬GIBW|I{MY1 M׍ 9#JWӇd&㜛L~`)Q?ȣ0Y GZߟ̄mMB͏D \Y7$:,-(\# Q Qmt%6l\$S`qw>A `k{L6^\xQZUXJOWjyvZ1cAHNUt0w q_y$10.P4hѶ2$ᔒoA[Iw7bQ0q^Iʁ m'2ǷGoJ-z$Ԅj~p H/vxI֝p3g]v4S%5ǀm֐ufCΩU{ . 1i]K!bFn unO=?PIBx$vy)pR ^Sշ}t nXL@0޹D/Hؿy=gkt+eU5i׉e迁CoX݂$ң̇zڄ+^.Dy2)PvW} S|'Y4tkH)qtGy4,7Ţ_^KۥiyKpy;=,WlCR&64<4)tZvBK\\CZ \e oHCO_X' oiq4*R3o Wqmtj<^=*[97P&tuFqT/A;< +޹xTAm!TP4dMEbhs)րl#>h\PnE֓wBZK1;U5m{4y?gK4  O]5ZJF߸'-pzl_㒡0$p: y;[|pK;srEQQ;yK־1D7ӳJ%E1ŸinUM)5qXy2K/;BpCް^t zu1+q,yV<[ )-ܺ"R,p6p #oj)3zxdԽڔ6bȭ1ED<ʐ=0{iȟxtɗ9\V4sT*o{ ɩѐYVA|Hp\( ;UհE;?t98+47A6,J!s--> Pe^[: f,% ޵M'%r|vG* Juq'3>p0jЉ{xYh'"cZh\B S 8F@KSK <p!^f X69|6P$[nen|Vof5^篹3-E s¡m>^<#SG@[>ؠ4j~ ֮]k=j894&P&ѻʔJPLA}L(ई9fإL4X+kS{?' R{y5QǗ1ɦW 'sJē/v^dCL Iϐ`'w0!ې,&' 1.o8!Z$ !V],ywa/M]y7*dͻloKb(fɂ͔sSir:S3\(ߏ)lYӜ/94nSP|.FJy-$XޗosA3ưh x[ݴ5Ou&?=~2)N{6ͩ bg b5bAIx2:L#*Y Gdjz2/095EՇ$Oo[1m,J䖾< |VNی(uӏ@C-) 9Q+V+7Wn~R e&/Y@2!!ttXևZ`vg+pɏ|Qu.pƩ}yvjfа?ҀN20︓ 'C*;EY(l᪹OeuKBc8M.PC28Xe1:*\9M ?9jgόuaJaM=p 6{fD4'ͳì Io(4nVħx4 `\޴?B!}}UA9Qk.mےCxznXڸmؠ}LD7Etv3hLGHo.Ksys孤4<ńSp 8&mǹl0T]D4ֳހ oE E9B&ޫ f /`Ilm4v[%bś&E N%l/q R[40Fueőϴ#P͔&A$`$zMLii 3 (EЬ2(Lum;hI|,A3.HinWEڞpH mp!I5wc{c>u\ZvD嚴UWvzTZ,p]Tr#6 |%YB"6&He^C>>Ez ( ZT'-`tLR #J2@wa{ D'8MO-S#NӚb/9ʼkdDwT}m$# t*FF&;1$NY(S4OkxB%/JWofP(?\0" nQ/8ct0,C h&O樶o;*w#a^-6gyHDz\Fd&?܈*)˹0d7)zX\-Gb*I;e{^\ l=v0vN"HLeA7ݚa8=W381jdOZPn%>SHK@qоV "N7)Գo0"bnP@ZjIS0l-r[yz=8 L صDmj>JMy3yƗd,Px@&d!qqG&A+(akө%› C)+1qANYnm˫a,/;]`0 tX[HC{}ક#Wꑐtm!`MsI_`Q_f|iLJ*\%JQէ2I޽k&+p%E7\dy #Ђ+kG}!rI-2lb(pFGJrT3'xL!-ҶPA&s uWJ"<Һ&qqUؾނ{NZd&14^JH#8@39YpCP6q1Dsb"&{hNju،pxvUKP ִƇ&b+)ΥiQ@g:Dmxv^!v6e6}ȣ0c1)5r@5v"`='Uv$@eWF|c{hVmx`'VjW# L]4C]\WUWPBX48_ 7ض@WQ R͂7(25,JZ-,gj[녊$LRBKJIpV+kI* bVSE[7LYANOG(G. IحqkpfǠtjzZ%}<'Y)꽉v;1 :QCtDbU],Fe"DmxܹAD1ΧdA@iь;WRWDmvQ!3aq_(Ʃ9Ifv;0icALBN;g0Y<}BpS]msz[zFx3pE /4bۅm8ẼOfF )G{U%PL4K]T*k% }_4ab{k}H [VRB[ҌHLHaA[t{4FRiV1. qE<8tq|Y>[*NO (wҮXWYۚ#,y1j^0-;o׬Li`] xI;8bAL'XZq:ѿ[hZ0/.#!"nZDՈ+0Rf[z<$6:1/LW-NApᙀȑ=@Zie> } 份Wv`G_nT^Pmˎ+S`+$"cFX`BvM\dPċW~b8 6>Q?eEbLI dĜ)1r2/S҆?( ޻!(\|sKMr3H{ ;C~^JZjUO9%x l.(|* m ](<ȑPät~Ur`Wvf$p$RPti{A*=b9Ł]4ze)]  _gU!9<]{]kCYI %I}S5bHlX _RB -(S1wFEIu.W_%$}O+D{>m~b7fY n5cJqPǓcф ˁ;]P~=) Uq;|MH쏩9~dkn+;:Fgju;.+z9Ip08 WtpwbҊKl;vP&\;:vci7{(Y.?HP:иYz]\&8Rr2{5/5G2ؘl.|K%[Hr2V*5K/r~z_YcQޝ7bgmRDEV8i'1Oia+'΄9Kl|/ 6ۘtE]SA#GF7ll3}}q8$|_|ěձ̛UgA(JwSax/Y7 !!Xa"V}r*iobdt$UCYKbe*SDs#* ~MN6.|ޟT5tD!Ci_ /n,hp4k؄]cHWmhr(< ?xMpƼe`<%llg~P(,LNrէJhV侵`) Cõb-z\ḍkk< >ՏQկhiت9t'$@iocT4dJ$iw5`^GߒXj8p"tcj8_Mqv ſ"ARjZy93u{zP.4A!ّC%[QW?",˜0Rʺ!zi+ΑKj.|؈^,hoL!Č"Om4Tu:bpa)5 A%'}+7F _!͘I@(?':JJ%cWd]ێ ¹:P5Z>D~| 7xvsdPh@ `Y#$:w5DQW4=q,sp2CqzY( V?qYYwmKjx;GikM-ton+ 4n1l3܂a-7ӓh֩(ˡR6r\**vKmԖT(7&pL#宣(epP(aL:,bG^K @*RLF[} |ke ;ZAB_41 ؄ҽ3R,:6k/³8=3~@k1 kM S:#}|d`rRcRrf֥߾SF=O3OND!d\Ϝ6V7#܂7I^8R! F "[ 3qaO!͂kKLe6].<b#-wkCůiFw?Vڮ8Q3syJKP$OԧI,[y3e~(Lo#CET*[PM}xRv`J{+QK>Int&jL Ҵj9_-"*#j=`RmuM:5?8$@z̿y/(o,L%K׫L`}&-T4J_,(#.1)s\ VITL."kBe7Y a?99L٥.PkCpLLi ^3Y!L.tW&>Gx+0 u= t< 9~R~;zxB}]u1Ӂɶ3Y6uiズ٢u^j.#Z}3q뇸8Q[45YGrMfWYF_1$!a ^eA|JϵNnQ5BqueМ0O'2TTwf6RM<*؂w"*EP"3"G 05zZ=*Do5_*)f\eBKT?:A}Ây`@Vظh* c뫄q HP\[yU]m砈oӺI7(% n~G$ձGs%6&'y&_J1 !,kSΖ2y5sB:b :.<<)'Ʈw54,9p8#U!?KE|Nv/=EnZ .Co6Zy < I*S -##} ltZ.S!,:_d؛_ ز/@s_b/+4ĄcHYD2w|tu(u`ڡ7 ~KqP D~R4ԏaf4hbQ$b$H/0ߖ5).@2Afbֻj3u)w0pȏM+M> 'yhYHՑqe8ciѮ:ʯ lS+Dr5mAHql+7U!Wu},L{=y:ef-Y_: Vw+o"JżE-}xcR2BwZGY; %p)+wx&OP}tkfJVk0 պ J:ʁjM)P~w$j2)C @號rƔD$75BU,ƨ]wNxyT,mq'̷wYOAvB&GII|I\kęeH9T`EzjC ʫ6J]$(EMJqA3#:Jȿ'UFbWtmf |v%GG3vi&{"|8DmUU%E7>tWʐ_vucНGWŞ[|65tjDs0V|R#cQxYf lk5|nJS= "mVDLN+42\6,ba]^Hdrm(x@_\D[^5a+@ m+yKx_H)=HR7&E Z@xBߕQ=`'Pp+Z~AKFĖU3:-ms` 3?5TؠvbN"9'c قv,%@:q?SߨL:|dRK1٩FM#{QYy0{);: !;y1w?@h{?qT e「ژG,-#h`m -nDŒ5+o^G!؜P@Pz D4 i z 7M3Yb YShgG2 xugөh0T^/隌֔Ǣ "CW7T$J4Oo18,m-t߻t`WKo",U@5.#\א}y_5r,ސt@o=CnVobzyd1]1V{z4pF R8>%{nK^?)5'A,Y2<2BrʂXȢ1GU1R2C \%7o/so~׃\^X{$V3 y>n$A'cf㥭#i{=dZ4c]B& ^c tҢ+dpVxfrC\]e1Fԃv)o;_AdjQ&XV̓XX1]kYVeGOk'{3oLT QM{e?` %KזQ]"Q:@cV}"(a5Lꁓʌqn?4si~DIM~|UG9T+Z|ׁ,n-pRL7v&]k0~%dNDqZL4[Do,!r)8[kxjbcOge+zJْy#^zWʗȶ=!l0ĝ6` l rF};#PjDjm_ejثGbZwTѫzl 21RV+S$IPm?=/Q#?$s>|bd1#8@*XwEU1<$;p; Bd(Jvb0l{y!S.[cIu.%YG-N2 >)~B,Mң #!&+ִPdd6TKj*9-1J_]YYS~Lr,FrMV1M(}bw#c=#XYkq9=}'x 錿(XR(xoU驖D uwy?4()҇M$Ix+CK6@u31!*ЈjS|Wi_:/*rK)m{@n#}Bb@zV&u|dIlvG\ɺ QCxd²g9؈6Fg&nu%qSTETf^?M{_w#e,uns ?AۛMZp.u!wʙު<{nj?"d{+0L` 32mѽ2B-z̯-X{jz']γ "Eu ?$="]Gd˦*U|%cC-DLե 7 ,(!9pSfuө If6s',\~aJk[76p'dxVjANAl@s_XK>Tg6QD*(.$u?Hr^lY0+^evoP՗/5] n¾&r6HS_4a؍GF=v1brf*㚂k”T(4 Dވ*O piG?A CGe NgHmn..չU< )!$ T10脼0PY3kL .Ggg!!dg!paڳP=E(~ǥPJvGy92i Y!! *kPΪAȝ^Gut܉#-*?̚MpWW][s᱃51Ьt(b9n\OȼǴC:V\pɼ;UHZ.Q'97PoM!V%bծܰՅ45U$GML~ t.yQ5T+/Eiyzy@LeE%WK=#CyF[#oNn w/ē;Nt֮4LocriDv6G- '6 7p{^Дm 8F|ZI" Vૻ!%qVY2"8[pUEs+eeVA< Pziٽ{X`C?ۖϰ0ΥA[wy*:9g+$Đ0M=YL.B9taPyJiH|017q٦h[qM-.Y| 6m-7# V\mMA~GyE =F0T{mݶ[w`ch^;bܣ~n.pl6>җ\˫ C_+n=4EJ#Ҳ{,heX)j+-Ƶ'wfbvk39UIZs8 yql',f3^&Del61̙EGԸ9AFО??x[j4 i3wUD7mBdV0H6KϘ"?1Cu0jD~IbWRZ#$ ^X&B'Y;q~Z{޳{ɈޒC+%h6r}fr6vqOD7s"G^Of**/!GmZj{o\T0UmH'z΁r&>&FYp)qLݘ*yቧ6bVqwȭneB bΩ^z\NW Jr˪tXQU$[HPjO!C?p}!ע/@e5ihޟԴYRJŔA9f+h{bLJTFDR=-`v\>m)7+dR,2Sx9u1#|_!_ `X|cX$6:q>fb\ Zv%7 5R})n있O}?}06K!11V|Xm7fBy$X4N+6x INrň{} O7;|%.WC'1NܫAHrgM'3+/zxSkY,Vz֍Xw6:~DPδ"k9,@AB"EV 걚sܫ_JX/4Қ&HM"՟)6< ŪIy`&`EY;/T Kun#^[:+WG{#64swvXm/-_p!OaOބBۢ lٖl)6HDpt׍E&4e=|ApfrD lf6DCCzȞHu|2 qKigo;y}~cL@ľ+sΡU@&c]'vyriJt%7Qќ)<ڿ+Ȣmck"Ks54KF#2օW8&;|ގ&@>A/dx!#|,zYEë7b*mAf򭑸r>$]K&-dJs᥸ (Jơwl =5HSrdZ(wk'Y+ϗJ}|x{mKeEL)W҂i2 I(Eoh8 0L#I #!C/gF;0(^~]!J6`gsBa r\a~(Ɛ3k y! @Q"B'$>>2gIv)2Vy!RcgV I[usNKy 3Ը>aNpr"z-  򍝃oת'ƁQhKb0T&ܽ4_BHht96L? PB7f L~C|Uf,ak@OuW̸ً(X|`1KX/*;8T@/"s?LbZaնG,ٹQ]= `TJ]̠X.e}Yk]i[&Sd4d3H@/se?LjP?9,Cgg].)?}mhos|p:ب$?P\gJi#<^@O"tp:uʭ$X_KfYЪx2aG\hlרWue|-1cڨڑ$#] DLl\!m&}3XƜWxU3lR>H异sEjL}貪.x :dS7p0ՏR7i4kk!`/X\?[*KPm+zaLJVZs X'<ܥ{̓)t} s(I:\V6HHL sۻS ^.ßңd%ch)5 볣6P fM C_{17rlb<*6\Op,}=LN@WhO\E5-|VӇ:44*Ph}&kbLJD^8ʪ64hT6zݞ=|\nlPݨ_x,jx̿GLud5Ш}e;q AN&;=WJn,Rx꧹SLpIm$7#(vlb\y;?CoBy_N1J#=,2Hǘ|0^26˫Ii^1P2Of. ŗm3Vt8gJᡐQݍ)!,GXڀWE/C!UX(򜱹êmE>xE'cϞe3࡭EtzQBXnj"YCDP QR/`qrRΗT9qtйOp0; 1$ӗ'|\C8(%}&~j3G 6Q|םw Ex>u(Hbe .z-d~ɪ#u_|{lF5phTYMDt U!]Y6GQ3C "hĽCX ͛ BbsZ>?R+zIl.x'p50e/Zu A.),k2y'eS?\i25zW/_ȳqO\F_  -;|uOq8g~\,̳|4}:,EB:pD`k-a#$j eL&C]:g䒔đ9kXۊvp^p@ji+Y:CKIa7'F:c 9(Lѻ {e*gs7M+ˆ]#q ]E `q ?'J/"y+bm|Ap ~+6_]=@OP( zM E_m~!圜ƍfP /DQ`2)l>&V<˭G]` Nk #WTEnJMnhcIsJF;'nj8N _019͝,G~|B J3N.: Q;TSdt5H(R|vqŴ*7j @]/#_>br.Qd(/U/owNɾ8dHн9%B_G:,B')| `*$m\锝HpDZQ?~+S5:g^f+e[GsԚ~as_RT?*?o4ː6Ƽ(^N0= OwO' IL ݎR l愥51;p/g bϽ 7A-j7w=/>W{[cCd-ˊH AA*s9M \ BQѦD4J{ +JϫGUKk8(/ՏpysϼC6N*ob! X$+g߂X3=/} I'ey8 ˆ6\b-p})<-N5:.WuZ,cQj&%oՑ7;%Dhh]Z]@~(D{@4^v|ĕFM.ik] Cc6@c ^Ep;0VQU&/@ WxKBP8qmK:^ '1~imoXyKoVl2dBIl3{f<~'W2%DmvUIs>")ގ~/hqWGfDq%Blo/lיG.YV!~؄?su w[eх`z6OvO[No!s+]Z[e[e"G;LZyAV-N]F終dǼX9O*t',S%pUn:B[{\YHC; "،KF3~:ʷv*Rq*fol‹QTOhԫ؂ ^DY!3ҥR6CnoP/WٵeX'$ @]EwLG\H ReQ]VI[W^?Qj~rtD/"d٦|=ؕb|NXׯuMVd=ەl9&M`:#.cRXyW)7>F'k(DzHn9*PR`A3w.!ȃ=tj[@U ݻFC#TH5HdBbT!ȯE춦}.F5K‹r|FmNNV޳Ē qz'MN*Xt]_JBl좜 ^')92*vD?-V-Wr\ 8VDi/B R$+k hBT'gmGE}<.F!kM&fL8jLF}!~@m7}Knk%=|'*6/uuڅ A ;~U7 ƥ '1Q/ ‡V @/?ȋ&ݜӆaބ9fBfh94x倎Q 3AF$#^+eu3'rıbh#fM9>P"GǞ9oMJǦ c}tcXk<(kxDݽz`<#%F GVsYeЃ(Ar6?leǚLH_82Q{bC4Yb|k E%βi.߇,u2h@W[~Ԅ=OQ^{ƣ 2"+d_: *ӭe{_&e1kE8$Aێ#U{5-]>OeRPP*pj現t\.b4.&Iٟl):DzPH`$2Qw÷K@/_ּNp<@!x4?. bf3o>-7?+٥j([~#K_Ytً[3-0%tl&q+ǰɳCOL$M~3fs5lpjߥJ?.!6aCMFW#Q`1W8D-nY+̈́fv)]?>YEp Fʇ=I5גi&S<]pa |^^aPPPcJ, _/"c$_3XWZ̺"\WK,ؑw (!oö́j 铉=/dj[Q& O.]y0ӤƖdjHHLn%xp'{貗+v ʐxid ,b d cmFЇw k21f/@|%T_'=6{tŐdߕ}AIAldurRkE{3}^S,S #; ili1t.drgnN# јw/"4zu]qߺIJL&0UMøKL54|do X8YjXLz/=FmyW9}eGZ8-|I$po̞hau}Rzۅuм\J:6ژ;b(e,IF DN^~J|.\:83^'?ׁRESK'!rsr/Z4W˄MzVJݻ̓':.?&%n_UPd ^);bkHel㡑7ko"Nl* 7˝Qd4.08GYep-kr(_^ܐ~j,AF»24zqF"E-8caE }r;{*sOob~u.p,i= 7Ƀ[egU#@O2<l0F䐱qV{ҏR"Y}}L%0|w$U9lkɖ9}T5eltHd=bp|K(; \ɴ/o$G$w>= 12eh525l:,TLD:/ ixÀ#"֑cy ˮDFOCM..[e޲*T^Dά穇7XSyw0J!sh|&ew˽7] CII#9_!7 Nsbr+sK5z+,͞MwQ3R/dCgx!p퉆]C>csxo ~ط 7VM{01ǞnN()O~PR#7e k1ZF(2'"]jh +;/o<m(h@3}#޳N4ѡovNj'1EBH'u6'ރ Qt;2%'F2>3mX@"Ց|FbT@{x.RaZƨ9f=WΏ4N MB,X1NXdfN>EftxN^ќzX(Y qgCRp!eWg4_S=ج1ڳ}#!Y`'"{9u~_g8ߡøxdYf4ht&͆l Yև T,C,OxbXd-6˿ v=W +㫔˓;ZE }F&OO]d._WiL<y/"-O B ۙYv-pysE[8Jɼopʹ 5&exeؽsa[hdU 2aX5*ڊ-ou?NT ِ{nT7zN 툒z;1dy`j`jI$/$AIֽS:ho<6hxĀzF&#msE` t\x5T#pln;:(҉a-oy@vӟiň̪5?rS($p]S)-3 OL 3@7V.?tcv~̜ZYiӔ=(ʿ(яzrC݈(7(^ԙ~2B&޵2 ښ݅a`PŒ tW9ϫ~uui+?xaH`OCtIp"5;!\ ErUG2wQ=0b9tˇj0DF DpauL9'ߨڛb/UJ[ ER`f&jv&Hb&@: 9eԽT ɀţ [JJڧRxaw,]"WMxA~ Bx6넮%N.Uۚl(ARR4$}Ŧ Oo?:y~0D m/>AZFaR]KAqo T"4c tA>51li閊nX$W~l"h?7|Ѣ^kX/F le~\]\ 1YX$xF$?jKo'"\{Eqӫis)iMбKK m %ePGk= gYVm @Qf;vg7͙]=]wɖKZMMMXѣn37퓑ܕxG,w^k>h6FbU7؈B2&m`z? Wvꫜ+q@0ؼ2WI%c2TFҨq Vpl>cJV O}0}\ ׊W3g42J(r,a)_ P;VuƋ3MfJ6Ӣu0N"pqE&~;+jAt6}De FTO8-(Izb! d084[U,Vz-L:4AK٢&7ߒ PylY67g([^EwKT9B}.YҾ͎8d SFvV0hS9"jg1H~W>۝݊K @}Ҕ-D~NiO:3eTќ਷?Gj֭\r}L~l.oĤ#cl'D; ']w&rjpA]^aɺ6NZ`@{cԌlXhbyyv5_\JQ 5}5•؇:],"UYwrclqKmKnLeG@RZC~HsnA?ONzꉘBxPxN#RH8fνƋ/ry6]N%3`ҽ]j3`Jbd'e@]KфZ]bocd /d%1*hyvlL"}|lׇ>hmZ ZUEr'Y,_rİc-sp|%K"” F=a+N}S;Ȅ Bs\2.uՐ|Kw5,70Fyմs~]nDZrjk٨4( $64ԄnoUNQhoza807<Nh @7*e@//lM +E% [RsPX-C5?PDfJZ: 9R%vHj"Tൄa"t5-"MQʸ/xDJzyd x.hT nG]:x3pȑimqä-1T3XeJ(:i[s>y5Dboߙ ZνoGmaxV}%GZPMtio͐6>)8cG]t]+DezY{P/ =$W7[^<>nrX MI+e]P",l>:*w)A+@Ш٨EL ML@=ڭ!7aTf)Km]}GХ ,/0(#1*Y")xs`(]wgR}mxwkb/DT6.O6J(40.z]ts,8I3;^790zr cs/ A "2*N6k3ze )t/DNsf)~!ӛ>[N~fq.(NYeNwO ӻ5i y`.'}}äf0ÈsM^$@?Jr@v?sdD&$ymƭcVMKium'گ"[teJW~M7$cmړ]&>Hx!6Y`~Ujt`21ޘkuⲞy[̵|7}KmQ#Bx+T4mH3Fle[A@73fL vb##?- A)Ft b'}1N.`kXNf0Yt5ooNPjiB޹giV&Vs=,lҰ`hwW8!ק^o[J~Hk1?`ܝ\g<t1~5`2Vɸod '_eDRrMt0wnvl4kVU2p7d}YcQr"HڬT&44%?h1ُQ[g5Ş<{5̯l6Z[}I{5ZE*Gp}L1|,b([gf*Q̵@21y|6~Ey-wi5IGVd%g҈T>3٧ y|[/F{ndP?(u fLFO:XqAD"ҫ(yZ|$i]6yuk&Xס=RiSXA=T_@\Ԑy)/ɽWoƛ^l*akd+iM+¡Qh  mA+^j%YfUl҃czl= Z PmڣT9&'n23d&p|*\uLhˢfÉQ浓Q{2:]s̴edք* ^o>1} FsNzIY/F166L/406˺*KV_+V~\1/\L0G; 1@ItFgm`w'%ɰ7p*`}X}@EUzɍI&W@VEIx;Ǟ,I=D„݊f߫!}k9G+ކԑh'QVߢxUǺiuM~V gLk+jvHKRM>穗+t oStCJ"nxoEKb8qEH'a_`wc%bU՜J:Gh#zBC_*;dDy n{B&u^/ztƲS~΁wBN/('Qg' )c@!ɿ)r8"3zLYց-}fODRdSM=l&,ʸu32s8wP\zmXI.s"Q-u_9\ؚ}x)<@X|Ͼ0MApG|y%C~8>7a 3_UlLlq^9CGZVtkm:9lsH?n# R=ȩ3_ǖ@rsWVnP9Ƀ~ P=Za3[N jM= һbWAThԼ*u@ W dZږ}4\)@.8dA1({j(O7<ߚQ W^Ld-CHUiUMQC> Vܑ׎,}AQG*5RBWP ? <Ⱥ踵xI'Bn }%fK,y!<`ƴݫQu |OȄ>U2XM.\TD#I"mx) TSѯ ş)̍m0:cuڗѧ$\sݟFh7=nfబxJ)FLW@k3PimeoLJ*=>|0[>zH`|/VJnA(/Xecz:B0 ;_8hڃEA+aIەC}lY͠P3ӋB'r:ob^i\"8Y`q|0n!UÆ9-|A.|7^'7w-urn]k&w7'z$;i[$ ;L\e*k6.g"z" rDTn7b$bnQ)7–:P>%LQAj \V~<#ns53V7;ѯa:s,&th z2kw哿CukDv_=z v+Dm@B9v-{^QNcIgs?Fu]OcnX[|T;@P_AXSj@5Y6XSH|G(&Y=@<လ6M#Owi^G0OcVU4.;ѤOoGyJL=܏ljQ/rP \0l'%;e5c5P}m{{* t!P bMj P/}{y t{WZ&Fk:Cj~.l;6K4M%%']\o'fohڞLi,lj]oq 4d~VXv+7;7OmStAڂU]ARίSET)^_́"ڙX Ú;1PoCJ)4iQ'޳YK&څl)QD (,F N{'Q \=w\bb^I({ oM띆KD* mr cul}^Fh1;ߺټI']-=W>z{lfEz ׮i`5K@mZ1`ǰЇve*/cpճS; dV&R@ITI~r3bW O{k 2;~7Kd 6֔*E9՛6Q໯ݐjӴ'$nP Gx{Sf;?<ƈ bFQNl-'=Dt@/8o _3t9^ZR,/y'Ym~7WWpjG}›^C [ [GGɿE: =8Ins0hi6U 'nȇqٞ$zU=A_*<3sq:G=+Ϧ%&?]Ug)Pݫ堨[uD[FPH}s37 ⒚iuPWY@kjֱIOJ==k$Xt~< 4EZ/=稇Ls,2%Ma,r?d1_X54<"O+ZfsYPYC٨OO Mb:, Jq²d֓8m7!0 `~:47Ayڛ=xmgFIwA!pk5|w^!Vj cv` E i;tͫSn ꟫҆^LIL$G"koˤAlvlk ݉\M(&YwtXi%ӆ]5SJgR%Hb=qߤy^f;$a<05Ѷz,,gV!*[lyѡǾiXUp7Ւ#A;yX`Q!B|)9T&X=s@_lKg*qEJ4ZsAcsC3 '/$x qJ /m8O#Ϯj$FL~V̯ UD!$e)wRY w;mm% {;aǬqiGN[MG`^3$Q"€4]{_> ނٜoKFtpBNΣ9Q(f^enR< fnqԦ<]Id$K[KNv"ɹejKb#Jhk$kP3镑Ǽq^ab?m4 H" Y[1\}9{B%,@`\"c'BڦLy"{(+Ӽ~7uvL# z(COQiozCwR*C{G&S<~d"zYU=0LW5C|?Z~eYBCRtXx#!_V3ڠ#u-9!ȡkNvH7"Typ1Q_rX7a/luE#T(A(>@DBMɸƞ2è9uGD8{YUt>Y-zͰE 4,zJ $JҴ>xźQ3+ߚ밻Xbۢ? auP+.|H;%$"Z:i]XVcU=-]I…wk#V: 'E'ȋŵ"^`83fU PX_Nr0Cy)4H*2@H"Ss= wP. `{cϺr) g-gkƠN4G3#\G<%Y~A"Wg~Rd-|lfuK".c`Q"BhR]x+KvM_|um)«*uJJ{hYZ4'Eq osB,iBU݊5lk%{w3ՖTЍ8WV=1ۗr_t8/ڌt6>$0NۍxJ vezz,"hC*1Vh :ZۇۨR7q Cx a6> R)N7M4JIZA5JxR(Bm ^M42)1St_֓ǃ cqyj;k\,FԖp_7?z ֖0  'evJY6`d~ a⁶зlKc gk ]:]qxm0uQj9£9 BkxOfJ6WaC6Ѭ+(S6;؋*`PAoK|OAL]t}cFqR51V "ϥkI W|~6#e?-)br߳a~@2jŸ90?c&Z{C(DSdNJ_ZAIpC`zw5>;*odD6(qfAtkvqW֡Y8JI\|A R"$9$f4v$) vI0/݋IgU滶SHdaS-cJQ+弸x*Ld4*f1*uϗhjiEеyoBǗ76,\DJCB.T<% AztvqǶv2?/W >1Olü+]S:E|?JW @!o'q~/ޛ Pw#SAZ "|HYKQvxwYR8J{$i.x =ae,ݚZ!;cL8Ģ\+!ě캱$rQᩫ5V,`jdD#!C5TgTZԤPHSQc3+Nwzm#G!L*H`WƉGYtd%/nVdI^yQ։LR E=2};=- ?ZGm}-6yH(Lauwה\Ū uLgxktиB<$ܨ1_^WAE'`3o}Z}(ͳ">ԸT>{3of<btw p{Q>^3!F4#cOSx\Ifqؓ\X"T"K?CC&ZO# l %è0Ȑ(TY\,E HM-G3;wւ!l Lm+-G.^>g l+wgۚ[>zL^L| aHDNJzA@2Cn#x IځC8VP\!/8?xl1r._bO'ǂy:kנ;z8X&)Z XDW4F,tpښJt"z1x8 f $LAx ;$k_oHPN6ͱ^R#HsWh /w?\lS݌tmyBFLCFD?A 嚭wJIq+wFcηVb?$njz|ZjU/?5bJNo-_1mcCMp0o^KأvɅi*#`7wDVq<,Y'YN\DyߠBg:PwqnDSO Hs:# H)Y1b̀JvBR0?xe`c[uGɲA|Q/'j턵}{g=d'RE rqʁ*sE+^B|DZ9|/dw-L *IY+Wo ִUs by$2Z-dX ]ЃoEѿ'p~GTE17JIࠡOjD$„sOUZRCP7kP yoG'UH' a3¨ ̭ur?55ȵXweP_tGyМG V 9cdNt" (yA@-Ŕ ~TM\B%ꔱ̌U=)HQt]8C<D[Wki+;>I{x!Nz2W 0gJFѨc LVS@'.wsنM,%7nYdtkz2y-_."L_H%za#jswt8o\ܽdvb>x" K2V˿#-vd>aJom^Ыs"ruCi pPy?j̷p/FࠞYp9$(o=Lktbg-װkݔE"SPn x)2lIȶJrئ NguUgZtתq@8ܫocT~, 7jٔ 4hF rA \ dtBbon|/ .]/,6YFQ'oIR0mԘ) ZV~k_3ȆcθoX<̴9Ne9 ֥sh-iRn Ѣu^H~.++0m*XP5t(hx璖&b邊VhΎ̫WjuiBsLm-V q"p Nez]^!ct24z(p>o-)b]Xk-}ŵHhDw5mD#Y&oK'Ä>sG23QذR0/qq%dY-Imػ:>0Ql!c9;SiPZN-S3h ? MM^OYY[l9 UtxlsԷx0YNס]G;2z9.R< 7&R!K$gIbzj@d V#:X>`w8zBH;s)W7<>Ǯطz{XX13o'wow7J-2n>MB=^a)9ɹwCFU<ӹl} }*fJV^5L }?eJ; #C?z#M&ٝ{AN$I~t,@ae#k-r^67eou]ƌ"pL}P rek; r~ ozۊ42Z 9(@kluJ?񔾸ct%B.D&GXG*A#lĽ۴; 1o;IGhc#OFu=Gw¶LFWMp6 8Vp WTfdbqof"jy,0\L7&]K;@"h[k:SvD/i]W4ȪM)`lOE;BQ#Ͱ)oZ89 m#Կ[[JRfZZV}~M^q/*޶m[~rt&SAvTډvu0f1oA~B>pzn}QrIQ@EX }g{BN@L%ɶ\St^pu 764V^Yw~Mx#XMM8ϱ^t]#?rvnv6aXg߶Wӕl'6ٌRYru6MW޻n̅{BE~8~Xs.9-&M>GGnr!b?4&Y6ъQ{ΑQ bc8*`ʞ%Sg(*ώ}H[vU>w@;{|e]vab])Eo^U7Oz%]{dTe<9vtO@1TWY^ֺ/u=9&R-`5븉 )BiIO#?䊦~ּ'wq;1nrc VcdM̷$Nb@P'l|nQ9̠AYO't$R-R!Y i܃ ݽ<ͻpϘрʯ.26wHTEoAdd/Td?5ruy*23u *)t }Ӭ qǣ$2<4^e%j`njGZz/RFDD 785]*] )/@?AL> Td"em֧aG{ y_̝=qCq-瑳-M2I_Nz b.B NKFaT {lWks;;%r YZ