openvswitch-2.11.1-lp151.2.3.1<>,]^츋/=„*n_GT'Ģ^=p,2 hpyrY8'q ()ӱ!KBn^W9Y1@ynuG:+m+v0rMS0x2O>s'N\'g;$dLT>*YZ:_h:TK6. x!`'JfPAC"m{(97gOZ@z7 #;r-_  P ^6aQ0Bai%6lq;QwIέ 3|H`&ϞcǏ>QG?Gd ! E 8Wou| /rVDV V V  V 2JV 2V4V5V77V989":\"="(=d8=lA9>pA:C(A=&H>&P?&X@&`B&hF&G&VH(8VI)VX)Y*Z*d[*x\*V]+V^1b4gc5d5e5f5l5u5Vv7wALVxBVyC^zEtEFFFFFFFFFFFCopenvswitch2.11.1lp151.2.3.1A multilayer virtual network switchOpen vSwitch is a multilayer virtual network Ethernet switch. It is enables network automation through programmatic extension, and supports standard management interfaces and protocols (e.g. NetFlow, sFlow, RSPAN, ERSPAN, CLI, LACP, 802.1ag). In addition, it supports distribution across multiple physical servers similar to VMware’s vNetwork distributed vswitch or Cisco’s Nexus 1000V.]^lamb59FopenSUSE Leap 15.1openSUSEApache-2.0 AND LGPL-2.1-only AND SISSLhttp://bugs.opensuse.orgProductivity/Networking/Systemhttp://openvswitch.org/linuxx86_64 test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-openvswitch-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-openvswitch-update-$service-new-in-upgrade" fi done for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi # Save the "enabled" state across the transition of # ownership of openvswitch.service from openvswitch-switch to # openvswitch. if [ "$1" -ge 1 ]; then \ if [ x$(systemctl is-enabled openvswitch.service 2>/dev/null ||:) = "xenabled" ]; then touch /run/openvswitch-was-enabled fi fi getent group openvswitch >/dev/null || groupadd -r openvswitch getent passwd openvswitch >/dev/null || \ useradd -r -g openvswitch -d / -s /sbin/nologin \ -c "Open vSwitch Daemons" openvswitch getent group hugetlbfs >/dev/null || \ groupadd -r hugetlbfs usermod -a -G hugetlbfs openvswitch exit 0/sbin/ldconfig if [ $1 -eq 1 ]; then # Follow the upstream strategy that no running openvswitch # configuration is changed on upgrade so use fillup only for new installs. PNAME=openvswitch SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi sed -i \ 's@^#OVS_USER_ID="openvswitch:openvswitch"@OVS_USER_ID="openvswitch:hugetlbfs"@'\ /etc/sysconfig/openvswitch sed -i 's:\(.*su\).*:\1 openvswitch hugetlbfs:' /etc/logrotate.d/openvswitch # In the case of upgrade, this is not needed chown -R openvswitch:openvswitch /etc/openvswitch chown -R openvswitch:hugetlbfs /var/log/openvswitch fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do if [ ! -e "/run/rpm-openvswitch-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-openvswitch-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done fi 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 ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.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 ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ) || : fi/sbin/ldconfig # Do not restart the openvswitch service on package updates. # Restarting the service may break the existing network state. # For example, openflow rules are not automatically re-installed # after an OvS update if no SDN controller is used. Moreover, restaring # the OvS can break remote administration during the update so let the # admin decide when it's the best time for an OvS restart. # 5771f476573445710834234a6a9f7bd999a027e7 ("fedora: do not restart the service on a pkg upgrade") test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : # Restart of ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service skipped fi else # package uninstall for service in ovsdb-server.service ovs-vswitchd.service openvswitch.service ovs-delete-transient-ports.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fi99Ӱ (2 1$B)pxpEp=8*+. _.  lb QHQ g, hTB9 DQ{ ]RAA큤큤A큤AAA큤A큤A큤A큤A큤큤A]^]^]^]^\n6h]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^\n6h]^]^]^]^]^]^]^]^]^]^\\m\\5-]^]^\5-\m]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^]^f3a964ec349fc812cefe43d35e8e7a3fb28632f582f979e669c3e3386600cd4160fadba19393a58aa8fe34f79845c9b6f1de9cf588a8d4dbcffe3f734e4d3260aecde004a3af466eba40e1d34db8eab480919520e6c7679e8a7c0a3074a47546bd4fd1bdb10fb8aa07124e110d0b7cf1d1151021eeef94f924009923924c60d348368a38fe10d9749b98c826cf9becb4781bffcb464e7509971cf80dd03e0346c4029dd8d5129374816f81506e2fc593472f5d1d21bb1380d657800a0bd937e83f6fb0325b7f9d689d5bd71b4758cd7547248ef385abcdbfe0d99edefe332ec1d371a7cca0306b993ab76577cee2d9ebc3fbf29a967fc0baadac2fe85df1359c588203cb6fc735bb40cf922860e6ddd594b644285ae6a89bb953117e5d71334558cd7ba6a47484b0199eb9cb185d91263c7142602f6d0bb1a358d19d235df11710bbeede98ef256444edb8b956ba460646db99145716492c964f6b4d3d1e13cf3a0c7165cbc84bdd4a07dac8693944e28c0e83818cae551202475a12229dcfdfb075f227ffa6d8f3455c83a16e9810b04cf33af05afc75185aa669cb23895081452dcef7f36d395f749d425fbce072c1d164d2ffd15bda98a486c31b8cb95a2277694c7867182f8f0b101e17c14661e8d9d41a3065133130f9c14b021babb4f141dbdf70e81a40fb6796e59aec51ce2ae12fb512e915932dc6109f71a152e6cac0f743490c283bb7abe87edba6809c932edd0031ec4a0d87522c60e7f68ba923b836ae6a021ae9249efb1a7128162390311a2c5db893aebc78ba0f5dcc77aab09f9ef2adc5bbe8ab1180bd0dcc624d8914347c628b72a6e22f5106a45867fdace6845e795037129d9bf6abe76ff18c8989b03aef18e437755f08cb45ab1264dc58876967ddb71f44473c1799a81e02d6a0231efcf87d8082737b7bb65df0b67111744ada56b0f2c5073f037d1d1861665a514eef90e34431bf7a4bd19b7af070dde37308f1021719b8d96c05df9491f8b49e0316d68d295de6acd1bc204ceddff2b488052b0f2e8dd37069e39eba0dd27e47ad3109a7f7e6245d397e7144dc0d332d9bd5548c710b10c4d0016e40305da26b03249934fe48bc249f3498cb34213e447c91414a28e61de4be6792755a5fa2790fd71f688e1724d8888efcb8829dc1068815a8cbb58a28188c2032f1df23e52bdf075cf7f283531bb08178f2c545f41f887b04dd604250193ddd88691ecd168dacdecca2d0d6581d8840e3f0b0dcdd58304d83968b9a7e3fe836008dd798a176a715c12cc696cc63e2bbde7f7250119e8bda9b0f86a4a01cbb6e504bffbc6c831afea0f708282709176d6f46c8e5089d36ccf48258e4a8ba19762eb9fa352322b7b6b3901a51b097823c29b24ed412791abe9fecb9adf8fc9935c1e39d7125b1f92b8d055a82b461b2caa9a04694285cebaeba5cd453cb53220d7a361abfa43927d1353d781c4cd4168c783f7a644ece7aed16859aa781c30f67668a95c3f2a8c3c80c2d4b2bff662d59d4ff31ab3edcb3ca852179bb795762fbba8a487e0f080bc35748d3eeda00fbdd6edf064ccf03779583c9f207fad0aeb684bba28f77fb594f0a7e30e6997ada0df933fa407078aad82010ac27fc7ddae3a5e9db1f5cebff412cb41d614044d0d548f11d23a700172e91bd55a1fe42122defef9297868f4e08c56f1179c83898593c2d5449935ae8fd9f0057f9a4e391bacdb2dd0218aa5e5b7eeb62504e02265648521cd9b3f84211168d745af3d1149ea173f0f3f832e140c7c0a35ec04c406874c8662ae9351f9fd172ddf8c24cc15d2adbb8218ff443c2f0811fec9a26863ab74948f9a5a744da1ed9afdd22b032fc64b4d1dec20e3bd056fe030ff5715e4cab6c7471743901e7ee1e20cc01a1147699886d280848ec49d1c0ad0fe4aea08eea9959fb6c83c0ab14687a8b078f0261c497cc4e8b38fe9fb73f05c46678b545b16791d4e88fb611568fb26d56e5091ea8a7950c2321a7970168c98d4dafd928c649c8442e0cada1ef9563f39c49f9484c2f9d91df931309c2c0bf10cc051a32f4f57b8681f111b4a2449c9b10d97c1a9aa9b9dd38eb08763f84834449a5b4232f4cbbf8d1a034685174748b2fbaf6f0dadd7eb4c756c99facb191430d675ec125ba284ec3b50afd29c7eaf3cbabcc1f6ec9ac6d6dc5c1de821ae494be99e5825061148533ad4ae6b7b7ce985ed591b2e3171148bc915b79aa05be5cca77a41c3ec6024fcd06918e548333fa3c8e7d764791225612418e63b7e61d204d11ddb163c4ae4c7391ebae7645de44afc2b21852b1b4b3e226d01c1b57cb5014223a092958fc67efd68d2893f8c2c30805ac6a36f245b29484d4027a39b0673c590c479c7af9cf942e2d228171c66f848c31cd9930f157de34bfd4fa6aaecfafa1075cda46f6c4efceea8bdb0c6d8af591df0f72a4c558d511860bed4c3428a0a3b3ae7127b9a15d7a688de84a2822644b3cc40a9bbd7b0fda270a4a16dfca24dd4e34779de21e8426ee2ba99481cc10b125c17798f85917d572168ed5493cfcf5a876b8c7fce2b19b9d2b5feab92ed4e75a8ee5f5af7d6268c23c49a30ef1b7370c8ecc57d8655a728b4db08686ff460453fcca6082f3a00ec9801f7ba90e67b1180aefcaf4e170e246808be4df9b0defd3f2ff22e12458a57b0a78b59e305d4e2dd4db57376840e6690f5edfb2b742fb04461465b5e05049aeb4bfad64ffb2854cdcd1e5ef7993c0836eb3facf0a6024e40f760ac02cf351fb2cdd4e1dbaa49bb75f4bd060167ebfea58062638800766c16d81abd8a85dc3763b84c0462949bbba48e32b381a793228c0aec5d00e37eeebd3041b2d2ba5865f1190ecab592a78e355d98c44e9ba31aef1d8217ee2ef82f15d299f6318bf37d3617f4d4aefc566a15534e2140341715c9f859eede4b22a673a76457e6fc81055d0ac1910e9928baeff5e5898b9cff159472400fe1c83d19934a9946e153dfa50e054cbd1b080d64ad5c7d6693ba1db8c7ec0faaa7a4302a61c19c1fa90aba20bafe8ff06baf3e10a8d2739b754serviceserviceserviceservice@AA@rootopenvswitchopenvswitchopenvswitchopenvswitchopenvswitchrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootopenvswitchopenvswitchopenvswitchopenvswitchopenvswitchrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootopenvswitch-2.11.1-lp151.2.3.1.src.rpmconfig(openvswitch)openvswitchopenvswitch(x86-64)openvswitch-commonopenvswitch-controlleropenvswitch-dpdkopenvswitch-dpdk-switchopenvswitch-switch@  @@@@@@@@@@@@@@@@    /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/usr/bin/python2config(openvswitch)coreutilsdiffutilsfillupgreplibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libofproto-2.11.so.0()(64bit)libofproto-2.11.so.0(libofproto_0)(64bit)libopenvswitch-2.11.so.0()(64bit)libopenvswitch-2.11.so.0(libopenvswitch_0)(64bit)libovsdb-2.11.so.0()(64bit)libovsdb-2.11.so.0(libovsdb_0)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.2.5)(64bit)modutilsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowutil-linux2.11.1-lp151.2.3.13.0.4-14.6.0-14.0-15.2-14.14.1]L],j\w@\f\I[@[%@[ͻ[@[l,[i[ @ZZ@ZZZI@ZZ_@ZTZC@Z'Z@Y5Y@@YJYyYoIY`@Y^&@Y)j@Xf@X8'X2X&WH@WWίW]@W"WWzOWs@WrfWj}Wi,@WH6WF@WBW>@W=W+5VbV3VV޾VxV'@VՄ@V͛@V͛@V͛@VGTTFJjcaamano@suse.comjcaamano@suse.comJaime Caamaño (jcaamano@suse.com)jcaamano@suse.comMarkos Chandras Markos Chandras Markos Chandras mchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.dedmueller@suse.commchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.derbrown@suse.commchandras@suse.demchandras@suse.deolaf@aepfle.demchandras@suse.demchandras@suse.dejengelh@inai.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.dero@suse.dero@suse.demchandras@suse.demchandras@suse.demchandras@suse.demchandras@suse.dejengelh@inai.demchandras@suse.demchandras@suse.demchandras@suse.dejengelh@inai.demchandras@suse.dedmueller@suse.commchandras@suse.dedmueller@suse.commchandras@suse.dekmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comkmroz@suse.comantoine.belvire@laposte.netandrea@opensuse.orgdmueller@suse.com- Update DPDK dependency to support DPDK 18.11.2. - Use temporary directory for python build. - Add missing opnvswitch-ipsec package and systemd service. - Add patch to use strongswan instead of libreswan for openvswitch-ipsec. libreswan package not available currently. * 0001-Use-strongswan-for-openvswitch-ipsec-service.patch - Add missing ovs-delete-transient-ports systemd service. - Align installed headers with upstream. - Fix problem preventing rpm build '--with check'. - Fix python environment that had directories pointing to /usr/local. - Disable dpdk on ix86, due to lack of proper SSE support. - Fixed missing obsoletes for old python-ovs (bsc#1138948).- Fix problem preventing new installs to run as non root (bsc#1132029, bsc#1139798), including: * Align with upstream so that no running configuration is changed on upgrades, specifically to avoid changes on the user Open vSwitch runs under. * hugetblfs groups is created as system group. - Version bump to bugfix release 2.11.1 (bsc#1130276). Some of the changes are: * netdev-tc-offloads: Fix probe tc block support * rhel: Include all header files in the Fedora's devel package * reconnect.c: Don't transition back to ACTIVE when forced to RECONNECT. * OVN: Make periodic RAs consistent with RA responder. * OVN: Always send prefix option in RAs * OVN: Use offset instead of pointer into ofpbuf * ofproto: fix the bug of bucket counter is not updated * netdev-dpdk: Print netdev name for txq mapping. * dpif-netdev-perf: Fix millisecond stats precision with slower TSC. * ifupdown.sh: Add missing "--may-exist" option * dpif-netdev-perf: Fix double update of perf histograms. * dpdk: Stop dumping memzones to stdout. * dpctl: Drop parser debug information. * netdev-tc-offloads: Properly get the block id on flow del/get * netdev-tc-offloads: Improve log message for icmpv6 offload not supported * conntrack: Replace structure copy by memcpy(). * conntrack: Lookup only 'UNNAT conns' in 'nat_clean()'. * conntrack: Fix race for NAT cleanup. * ovn-nbctl: Don't segfault when ovn-northd doesn't configure dynamic addresses. * datapath-windows: Add annotations to find vport functions * datapath-windows: Guard vport usage in user.c * datapath-windows: Fix potential deadlock in event subscription * datapath-windows: Fix race condition during port creation * datapath-windows: Fix nbl cleanup when memory allocation fails * netdev-linux: Remove ingress qdisc before trying to add shared block * netdev-tc-offloads: Remove ingress qdisc on tc init flow api * ovsdb-idl: Fix memory leak of idl->remote. * travis: Remove 'sudo' configuration. * OVN: Add port addresses to IPAM after all ports are joined. * dpif-netlink: Free leaked ofpbuf by using ofpbuf_delete * OVN: update RA next_announce according to {min, max}_interval * rconn: Avoid occasional immediate connection failures. * dpdk: Fix case-sensitivity of dpdk-init knob. * NEWS: Clean up the 2.11.0 release notes a bit. * conntrack: Fix L4 csum for V6 extension hdr pkts. * packets: Change return type for 'packet_csum_upperlayer6()'. * ovsdb-client: Fix typo. * ovn-nbctl: Daemon mode should retry when IDL connection lost. * ofctl: break the loop if ovs_pcap_read returns error * netlink: added check to prevent netlink attribute overflow- Version bump to 2.11.0 (fate#325916, fate#325951, fate#326025, fate#326992). Some of the changes are: * Linux datapath: - Support for the kernel versions 4.16.x and 4.17.x. - Support for the kernel versions 4.18.x * OpenFlow: - OFPMP_TABLE_FEATURES_REQUEST can now modify table features. * ovs-ofctl: - "mod-table" command can now change OpenFlow table names. * The environment variable OVS_SYSLOG_METHOD, if set, is now used as the default syslog method. * The environment variable OVS_CTL_TIMEOUT, if set, is now used as the default timeout for control utilities. * ovn: - OVN-SB schema changed: duplicated IP with same Encapsulation type is not allowed any more. Please refer to Documentation/intro/install/ovn-upgrades.rst for the instructions in case there are problems encountered when upgrading from an earlier version. - New support for IPSEC encrypted tunnels between hypervisors. - ovn-ctl: allow passing user:group ids to the OVN daemons. - IPAM/MACAM: * add the capability to dynamically assign just L2 addresses * add the capability to specify a static ip address and get the L2 one allocated dynamically using the following syntax: ovn-nbctl lsp-set-addresses "dynamic " * DPDK: - Add support for DPDK 18.11 - Add support for port representors. * Userspace datapath: - Add option for simple round-robin based Rxq to PMD assignment. It can be set with pmd-rxq-assign. - Add support for Auto load balancing of PMDs (experimental) - Added new per-port configurable option to manage EMC: 'other_config:emc-enable'. * Add 'symmetric_l3' hash function. * OVS now honors 'updelay' and 'downdelay' for bonds with LACP configured. * ovs-vswitchd: - New configuration option "offload-rebalance", that enables dynamic rebalancing of offloaded flows. * The environment variable OVS_RESOLV_CONF, if set, is now used as the DNS server configuration file. * RHEL packaging: - OVN packages are split from OVS packages. A new spec file - ovn-fedora.spec.in is added to generate OVN packages. - Revisit DISABLE_RESTART_ON_UPDATE and DISABLE_STOP_ON_REMOVAL options (bsc#1117483). DISABLE_STOP_ON_REMOVAL is removed. DISABLE_RESTART_ON_UPDATE is replaced by '%service_del_postun -n'. $FIRST_ARG is replaced by $1. - Add extra openvswitch headers (bsc#1125897).- Obsolete old python[2]-openvswitch-test subpackages (bsc#1124435).- Version bump to 2.11.0+git20190123.ad83fc9ab (fate#325916, fate#325951, fate#326025, fate#326992). Some of the changes are: * Linux datapath: - Support for the kernel versions 4.16.x and 4.17.x. * OpenFlow: - OFPMP_TABLE_FEATURES_REQUEST can now modify table features. * ovs-ofctl: - "mod-table" command can now change OpenFlow table names. * The environment variable OVS_SYSLOG_METHOD, if set, is now used as the default syslog method. * The environment variable OVS_CTL_TIMEOUT, if set, is now used as the default timeout for control utilities. * ovn: - OVN-SB schema changed: duplicated IP with same Encapsulation type is not allowed any more. Please refer to Documentation/intro/install/ovn-upgrades.rst for the instructions in case there are problems encountered when upgrading from an earlier version. - New support for IPSEC encrypted tunnels between hypervisors. - ovn-ctl: allow passing user:group ids to the OVN daemons. - IPAM/MACAM: * add the capability to dynamically assign just L2 addresses * add the capability to specify a static ip address and get the L2 one allocated dynamically using the following syntax: ovn-nbctl lsp-set-addresses "dynamic " * DPDK: - Add support for DPDK 18.11 - Add support for port representors. * Userspace datapath: - Add option for simple round-robin based Rxq to PMD assignment. It can be set with pmd-rxq-assign. - Add support for Auto load balancing of PMDs (experimental) - Added new per-port configurable option to manage EMC: 'other_config:emc-enable'. * Add 'symmetric_l3' hash function. * OVS now honors 'updelay' and 'downdelay' for bonds with LACP configured. * ovs-vswitchd: - New configuration option "offload-rebalance", that enables dynamic rebalancing of offloaded flows. * The environment variable OVS_RESOLV_CONF, if set, is now used as the DNS server configuration file. * RHEL packaging: - OVN packages are split from OVS packages. A new spec file - ovn-fedora.spec.in is added to generate OVN packages. - Remove upstreamed patch: * 0001-python-c-ext-Fix-memory-leak-in-Parser_finish.patch - Remove DISABLE_RESTART_ON_UPDATE and DISABLE_STOP_ON_REMOVAL options (bsc#1117483).- Backport upstream fix for python json parser memory leak (bsc#1116437) * 0001-python-c-ext-Fix-memory-leak-in-Parser_finish.patch- Improve python packaging (bsc#1115085) * Rename python*-openvswitch subpackages to python*-ovs to follow the openSUSE policy that packages should be named after the modules they install. * Build the JSON C bindings and as a result the 'noarch' BuildArch needs to be removed. * Drop the python*-openvswitch-test packages and merge them with the test subpackage * Build the python bindings using setuptools * Include the egg-info package. * Use libopenvswitch as dependency to python bindings- Version bump to 2.9.3. Some of the changes are: * dpif-netdev.at: Add missing backslash. * ofproto-dpif-xlate: Avoid deadlock on multicast snooping recursion. * ovn-ctl: Fix the wrong pidfile argument passed to ovsdb-servers * ovndb-servers.ocf: Add ssl support for managing OVN DB resources with pacemaker using LB VIP. * ovn-ctl: Allow passing ssl certs when starting OVN DBs in ssl mode. * expr: Disallow < <= >= > comparisons against empty value set. * expr: Set a limit on the depth of nested parentheses * dpif-netdev: Add vlan to mask for flow_put operation. * odp-util: Fix a use-after-free bug. * dpif-netlink: Fix null pointer. * dpif-netlink: don't allocate per thread netlink sockets * bfd: Make the tp_dst masking megaflow-friendly. * netdev: Properly clear 'details' when iterating in NETDEV_QOS_FOR_EACH. * lex: Fix buffer overrun parsing overlong hexadecimal constants. * ovsdb-client: Fix a bug that uses wrong index * ofproto-dpif-xlate: Fix conntrack fields on NXT_RESUME * ovs-save: save and restore groups on restart * flow: Fix uninitialized flow fields in IPv6 error case. * ofproto-dpif: Fix NXT_RESUME flow stats * dhparams: Fix .c file generation with OpenSSL >= 1.1.1-pre9 * ovn: Add DHCP support for option 252. * meta-flow: Make "nw_frag" a synonym for "ip_frag". * ovsdb-server: Alleviate the possible data loss in an active/standby setup * ovs-save: Don't always include the default flow during restore * lib/tc: treat vlan id and prio as independent fields * datapath: lisp: Fix uninitialized field in tunnel_cfg. * odp-util: Don't attempt to write IPv6 flow label bits that don't exist. * lib/tc: reject offloading of non-Ethernet packets * ovs-ctl: Allow add-remote without vswitchd started. * daemon-unix: Use same name for original or restarted children. * dpif-netdev: Prevent unsafe access when retrieving meter stats. * Add ovs.compat module to python package * utilities: Drop shebang from bash completion script * ofp-actions: Re-fix error path for parsing OpenFlow actions. * nx-match: Avoid double-free on some error paths. * vswitch.xml: Fix key type and description style of tc-policy. * ovn: Fix the issue in IPv6 Neigh Solicitation responder for router IPs * netdev-dpdk: Support the link speed of XL710 * ovn-northd: Support learning neighbor from ARP request. * ovn-northd: LR respond ARP from valid subnet only. * netdev-linux: Avoid division by 0 if kernel reports bad scheduler data. * ofp-actions: Avoid assertion failure for clone(ct(...bad actions...)). * ovsdb-idl: Adjust indexes during transactions. * ovsdb-idl.c: Fix IDL index problem when rows are updated. * netdev-dpdk: Use hex for PCI vendor ID. * ofp-port: Fix buffer overread parsing Intel custom statistics. * netdev-dpdk: Fix failure to configure flow control at netdev-init. * ofctl: Fixup compare_flows function * raft: Fix use-after-free error in raft_store_snapshot(). * stream-ssl: Define SSL_OP_NO_SSL_MASK for OpenSSL versions that lack it. * utilities: Launch ovsdb-tool without using PAM * ovs-ofctl: Better validate OpenFlow message length in "ofp-parse-pcap". * stream-ssl: Don't enable new TLS versions by default * pcap-file: Fix formatting of log message. * meta-flow: Make mf_vl_mff_mf_from_nxm_header() require a valid field. * nx-match: Fix memory leak in oxm_pull_field_array() error case. * lib/tc: Handle ttl for ipv6 too * compat: Initialize IPv4 reassembly secret timer * ovn-nbctl: Fix compilation warnings. * conntrack: Fix conn_update_state_alg use after free. * ovn-northd: Don't shadow addr_family in add_router_lb_flow(). * ovn: Add router load balancer undnat rule for IPv6 * ifupdown.sh: Correctly bring up bond slaves. * conntrack: Fix using alg_exp_entry out of scope. * ovndb-servers: Set connection table when using load balancer to manage ovndb clusters via pacemaker. * ovn-ctl: Support NB and SB DBs to start without using remote connections. * ovndb-servers.ocf: add LB support for managing ovndb cluster: * ofp-group: Don't assert-fail decoding bad OF1.5 group mod type or command. * ovn: Clarify the differences between QoS marking and metering. * ovs-ofctl: Clarifications in the Meter Syntax man page section. * OpenFlow: Update documentation to indicate support for virtual meters. * ofp-actions: Fix undefined behavior shifting 'int' 16 places left. * extract-ofp-errors: Fix undefined behavior shifting 'int' 16 places left. * json: Avoid signed integer overflow in parsing exponents. * ofp-actions: Fix buffer overread in decode_LEARN_specs(). * ofp-actions: Avoid buffer overread in BUNDLE action decoding. * conntrack: Fix fragmentation checks. * rconn: Suppress 'connected' log for unreliable connections. * ofproto-macros: Ignore "Dropped # log messages" in check_logs. * datapath: stt: linearize in SKIP_ZERO_COPY case * ovsdb-idl: Correct singleton insert logic * ovn: Fix DHCP classless static route for non-classful masks. * ofproto: Fix OVS crash when reverting old flows in bundle commit * rconn: Introduce new invariant to fix assertion failure in corner case. * dpctl.man: Correct argument to "dump-flows". * python: avoid useless JSON conversion to enhance performance * ofproto: Make ofproto_port_open_type() faster. * ovs-thread: Fix thread id for threads not started with ovs_thread_create() * netdev-dpdk: Handle ENOTSUP for rte_eth_dev_set_mtu. * netdev-dpdk: Enable HW_CRC_STRIP for virtual functions. * lib: fix typo in fragment handling error message * ovs-vswitchd: Do not use system routing table with --disable-system. * vswitchd: Allow user to directly specify sFlow agent address.- Version bump to 2.9.2 (fate#325952). Some of the changes are: * NSH implementation now conforms to latest draft (draft-ietf-sfc-nsh-28). * OVSDB: - ovsdb-client: New "get-schema-cksum" and "query" commands. - ovsdb-client: New "backup" and "restore" commands. - ovsdb-client: New --timeout option. - ovsdb-tool: New "db-name" and "schema-name" commands. * OVSDB has new, experimental support for database clustering: - New high-level documentation in ovsdb(7). - New file format documentation for developers in ovsdb(5). - Protocol documentation moved from ovsdb-server(1) to ovsdb-server(7). - ovsdb-server now supports online schema conversion via "ovsdb-client convert". - ovsdb-server now always hosts a built-in database named _Server. See ovsdb-server(5) for more details. - ovsdb-client: New "get-schema-cksum", "query", "backup", "restore", and "wait" commands. New --timeout option. - ovsdb-tool: New "create-cluster", "join-cluster", "db-cid", "db-sid", "db-local-address", "db-is-clustered", "db-is-standalone", "db-name", "schema-name", "compare-versions", and "check-cluster" commands. - ovsdb-server: New ovs-appctl commands for managing clusters. - ovs-sandbox: New support for clustered databases. * ovs-vsctl and other commands that display data in tables now support a - -max-column-width option to limit column width. * No longer slow-path traffic that sends to a controller. Applications, such as OVN ACL logging, want to send a copy of a packet to a controller while leaving the actual packet forwarding in the datapath. * OVN: - The "requested-chassis" option for a logical switch port now accepts a chassis "hostname" in addition to a chassis "name". - IPv6 * Added support to send IPv6 Router Advertisement packets in response to the IPv6 Router Solicitation packets from the VIF ports. * Added support to generate Neighbor Solicitation packets using the OVN action 'nd_ns' to resolve unknown next hop MAC addresses for the IPv6 packets. - ovn-ctl: New commands run_nb_ovsdb and run_sb_ovsdb. - ovn-sbctl, ovn-nbctl: New options --leader-only, --no-leader-only. * OpenFlow: - ct_clear action is now backed by kernel datapath. Support is probed for when OVS starts. - ovs-dpctl and related ovs-appctl commands: * "flush-conntrack" now accept a 5-tuple to delete a specific connection tracking entry. * New "ct-set-maxconns", "ct-get-maxconns", and "ct-get-nconns" commands for userspace datapath. - No longer send packets to the Linux TAP device if it's DOWN unless it is in another networking namespace. * DPDK: - Add support for DPDK v17.11 - Add support for vHost IOMMU - New debug appctl command 'netdev-dpdk/get-mempool-info'. * Custom statistics: - DPDK physical ports now return custom set of "dropped", "error" and "management" statistics. - ovs-ofctl dump-ports command now prints new of set custom statistics if available (for OpenFlow 1.4+). - New appctl command 'dpif-netdev/pmd-rxq-rebalance' to rebalance rxq to pmd assignments. - Add rxq utilization of pmd to appctl 'dpif-netdev/pmd-rxq-show'. - Add support for vHost dequeue zero copy (experimental) * Userspace datapath: - Output packet batching support. * vswitchd: - Datapath IDs may now be specified as 0x1 (etc.) instead of 16 digits. - Configuring a controller, or unconfiguring all controllers, now deletes all groups and meters (as well as all flows). - New --enable-sparse configure option enables "sparse" checking by default. - Added additional information to vhost-user status. - Get rid of the old openvswitch DPDK migration steps everybody should have migrated from <2.6 to latest releases by now. * 0001-utilities-Add-script-to-support-DPDK-option-migratio.patch - Remove patches which have made it upstream * 0001-rhel-Use-correct-user-in-the-logrotate-configuration.patch * 0001-utilities-Launch-ovsdb-tool-without-using-PAM.patch * 0002-netdev-dpdk-DPDK-v17.11-upgrade.patch * 0003-netdev-dpdk-vHost-IOMMU-support.patch- Add upstream patch to fix permissions when running the logrotate script (bsc#1104049) * 0001-rhel-Use-correct-user-in-the-logrotate-configuration.patch- Add upstream patch to fix dbus timeout due to deadlock in systemd dependencies (bsc#1098630). * 0001-utilities-Launch-ovsdb-tool-without-using-PAM.patch- Version bump to 2.8.4 (bsc#1094234). Some of the changes are * dpif-netdev: Free packets on TUNNEL_PUSH if may_steal. * netdev-dpdk: fix check for "net_nfp" driver * netdev-dpdk: Don't use PMD driver if not configured successfully * netdev-dpdk: Remove use of rte_mempool_ops_get_count. * conntrack-tcp: Handle tcp session reuse. * tunnel: make tun_key_to_attr aware of tunnel type. * Configurable Link State Change (LSC) detection mode * netdev-dpdk: don't enable scatter for jumbo RX support for nfp * faq: Document DPDK version maintenance. * Avoid crash in OvS while transmitting fragmented packets over tunnel. * compat: Fix upstream 4.4.119 kernel * ovs-vsctl: Fix segfault when attempting to del-port from parent bridge. * ofproto-dpif-xlate: Fix segmentation fault caused by tun_table * odp-util: Remove unnecessary TOS ECN bits rewrite for tunnels * datapath: Prevent panic * netdev-dpdk: Free mempool only when no in-use mbufs. * python: Fix a double encoding attempt on an Unicode string * ofproto-dpif: Init ukey->dump_seq to zero * nsh: Add unit test for double NSH encap and decap * xlate: Correct handling of double encap() actions * tc: Change filter error to debug once * lib/tc: Handle error parsing action in nl_parse_single_action * ovn: Fix tunnel id overflow. * ofp-actions: Correct execution of encap/decap actions in action set * ovsdb-idl.at: Fix test failed. (writing large data via IDL with unicode) * netdev-dpdk: Limit rate of DPDK logs. * netdev-dpdk: Remove 'error' from non error log. * odp-util: Print eth() for Ethernet flows if packet_type is absent. * python: Fix decoding error when the received data is larger than 4096. * datapath-windows: fix hash creation on ct mark * tunnel: Fix deletion of datapath tunnel ports in case of reconfiguration * tests: Make packet-type-aware.at hash independent - Remove patches which are now upstream: * 0001-ovsdb-Use-items-instead-of-iteritems-for-Python3.patch * 0002-ovsdb-ovsdb-dot.in-Use-print-function-for-Python3.patch * 0003-ovsdb-ovsdb-dot.in-Change-exception-semantics-for-Py.patch * 0004-ovsdb-ovsdb-dot.in-Replace-sys.maxint-with-sys.maxsi.patch - Use openvswitch user/group for the log directory (3f556d66edb9)- Add support for RedHat distributions. All SUSE macros are now conditional and the spec file has been adapted based on the upstream one (fate#324537) - spec-cleaner fixes- Move openvswitch user/group creation to %pre scriptlet. The default ownership of the configuration files expects the user and group to be available as early as possible (bsc#1091408)- Preserve 'enable' status of openvswitch.service file when upgrading from naming scheme is broken, and as such a device will not be available for use until a valid dpdk-devargs is specified. - Virtual DPDK Poll Mode Driver (vdev PMD) support. * For the complete list of changes, please see: - http://openvswitch.org/releases/NEWS-2.7.0 - Add patch to fix DPDK configuration migration for < 2.6 installations * 0001-utilities-Add-script-to-support-DPDK-option-migratio.patch - Rework spec file * Enable DPDK by default and drop openvswitch-dpdk* packages. DPDK is only enabled on supported architectures though. - Remove openvswitch-dpdk.changes - Remove openvswitch-dpdk.spec - Remove pre_checkin.sh * Merge openvswitch and openvswitch-switch into a single package since there was no compelling reason to keep the switch functionality in a separate subpackage. * Split OVN package to ovn-common, ovn-central, ovn-docker, ovn-host and ovn-controller similar to the Debian and RedHat packages.- Relax the DPDK dependency a bit so we can support stable and possibly new minor releases as well.- Do not restart the openvswitch service after a package update. Restarting the systemd service may break connectivity so let the user decide when it is the best time for such an action. (bsc#1002734)- Version bump to 2.6.1. Some of the changes are: * ovn: Do not reply to ARP or ND NS for a VM's own IP address. * ovs-ofctl: Tolerate differences in IPv6 formatting. * netdev-linux: double tagged packets should use 0x88a8 * expr: Fix abort when simplifying "x != 0/0". * dpif-netdev: Fix crash in dpif_netdev_execute(). * ovn-controller: Container can have connection to a hosting VM. * stream-ssl: Fix memory leak on error path. * Other bug fixes.- Version bump to 2.6.0. Some of the changes are: * First supported release of OVN. See ovn-architecture(7) for more details. * ovsdb-server: - New "monitor_cond" "monitor_cond_update" and "update2" extensions to RFC 7047. * OpenFlow: - OpenFlow 1.3+ bundles now expire after 10 seconds since the last time the bundle was either opened, modified, or closed. - OpenFlow 1.3 Extension 230, adding OpenFlow Bundles support, is now implemented. - OpenFlow 1.3+ bundles are now supported for group mods as well as flow mods and port mods. Both 'atomic' and 'ordered' bundle flags are supported for group mods as well as flow mods. - Internal OpenFlow rule representation for load and set-field actions is now much more memory efficient. For a complex flow table this can reduce rule memory consumption by 40%. - Bundles are now much more memory efficient than in OVS 2.5. Together with memory efficiency improvements in OpenFlow rule representation, the peak OVS resident memory use during a bundle commit for large complex set of flow mods can be only 25% of that in OVS 2.5 (4x lower). - OpenFlow 1.1+ OFPT_QUEUE_GET_CONFIG_REQUEST now supports OFPP_ANY. - OpenFlow 1.4+ OFPMP_QUEUE_DESC is now supported. - OpenFlow 1.4+ OFPT_TABLE_STATUS is now supported. - New property-based packet-in message format NXT_PACKET_IN2 with support for arbitrary user-provided data and for serializing flow table traversal into a continuation for later resumption. - New extension message NXT_SET_ASYNC_CONFIG2 to allow OpenFlow 1.4-like control over asynchronous messages in earlier versions of OpenFlow. - [...] - For a complete list of changes, please see http://openvswitch.org/releases/NEWS-2.6.0 - Remove obsolete patches and files * 0001-Remove-broken-pipe-warning-logs-from-ovsdb-server.lo.patch * 0001-ovs-ctl-Add-new-DPDK_OPTIONS-environment-variable.patch * openvswitch-2.5.0-detect-dpdk-installation.patch * openvswitch-switch.logrotate * openvswitch.service- New upstream bugfix release 2.5.1 (bsc#1001657) * DPDK: - New appctl command 'dpif-netdev/pmd-rxq-show' to check the port/rxq assignment. - Type of log messages from PMD threads changed from INFO to DBG. * ovs-pki: Changed message digest algorithm from SHA-1 to SHA-512 because SHA-1 is no longer secure and some operating systems have started to disable it in OpenSSL. * Bug fixes- Add new DPDK_OPTIONS environment variable to hold the dpdk vswitchd options so that the systemd unit files can be used to launch an ovs-vswitcd DPDK capable instance instead of doing it manually. (bsc#987265) * 0001-ovs-ctl-Add-new-DPDK_OPTIONS-environment-variable.patch- enable openvswitch-dpdk on aarch64 since dpdk builds on aarch64 now- remove aarch from openvswitch-dpdk until we have a dpdk that builds for aarch64- Add missing licenses (bsc#988513) - Misc spec file cleanups highlighted by the spec-cleaner tool. - Allow aarch64 builds for openvswitch-dpdk- Allow the OvS daemon to run as non-root (bsc#987545) - Add missing 'Conflicts' statements to all the subpackages as required by the Factory review tools.- Remove the ?_with_dpdk macro usage since this is not being set without explicitly passing --with/--without during an OBS build. This reverts back to using the %{with dpdk} style which is set automatically based on %bcond_with* macros (bsc#989335).- Fix subpackage dependencies to not require the non-existent python DPDK subpackages (bsc#986835). We do not provide DPDK versions of the python bindings so nothing should depend on these subpackages.- Update rpm groups, acronym forms.- Multiple fixes for the openvswitch-dpdk package (bsc#985878) * Rename main package name to openvswitch-dpdk * Do not build the python and kmp packages since they do not depend on the DPDK capabilities * Remove the open_virtual_switch capability. The openvswitch-common will be used by reverse dependencies to require either of the OvS packages. * Provide virtual capabilities for all DPDK subpackages. * Fix the dependencies in the python package to require either of the OvS packages. * Suggest the kmp package only if it's actually provided. * Small cleanups.- Add %check directive to run the openvswitch testsuite on demand. The openvswitch contains hundreds of tests covering simple and complex openvswitch configuration so it's beneficial to run them during package builds. However, running the testsuite is not enabled by default. Also add the following upstream patch: * 0001-Remove-broken-pipe-warning-logs-from-ovsdb-server.lo.patch- Build a DPDK-enabled Open vSwitch (fate#319170) * Apply the following changes to the openvswitch.spec file - Add support for building with DPDK capabilities - Add conflicts between the two packages. - Add new 'open_virtual_switch-*' capabilities for openvswitch, openvswitch-switch, openvswitch-test packages which can be used by reverse dependencies to select between the two openvswitch implementations. * Add pre_checkin.sh to generate the openvswitch_dpdk.spec file based on the openvswitch.spec one. * Add upstream openvswitch-2.5.0-detect-dpdk-installation.patch patch to detect and link against a DPDK installation.- Keep %prep small for speedier `quilt setup`. Kill __DATE__ from source. Drop all .la files that are in %_libdir.- Add missing %dir directive for /var/log/openvswitch- remove aarch64 conditional, no longer needed- Multiple spec file and package fixes. * Drop obsolete log-check-module-loop.patch patch. * Drop conditional code for older openSUSE releases. This also removes all of the sysvinit files which were pulled in when the package was originally developed. * Drop support for building the GUI. The GUI code has been removed in 7868fbc6c97c2 ("ovsdbmonitor: Remove.") upstream commit and it does not exist since v2.2.0 so drop the code in the spec file. * Use the upstream systemd service files for the OVN components instead of maintaining our own downstream. * Drop the unofficial ipsec support. It hasn't been enabled in years. * Drop support for building the upstream kernel module since it's being shipped with the kernel package in latest releases. Restore the %bcond_with kmp to make it easier to build the external kernel module if needed. * Fix some suse-missing-rclink rpmlint warnings for the ovn subpackage * Base our service unit to the upstream one. * Stop silently enabling the GRE protocol in iptables by default. * Install the upstream sysconfig file to pass more information to the openvswitch service unit. * Use make install instead of %makeinstall * Drop brcompat leftovers. * spec-cleaner fixes- address dimstars concerns- Prevent systemd from autogenerating a service file for openvswitch-switch which conflicts with the opevswitch one. (bsc#966762)- Add missing %defattr to ovn files section.- Add additional install requirements for python-openvswitch-test package.- Add support for building both 2.4.0 and 2.5.0 from the same spec file. Needed to fix SLE11 builds as OVS-2.5.0 no longer supports python < 2.7. SLE11 SP3 and SP4 use python 2.6. - Added: openvswitch-2.4.0.tar.gz- New upstream version 2.5.0 (LTS) - Dropped support for Python older than version 2.7. As a consequence, using Open vSwitch 2.5 or later on XenServer 6.5 or earlier (which have Python 2.4) requires first installing Python 2.7. - OpenFlow: * Group chaining (where one OpenFlow group triggers another) is now supported. * OpenFlow 1.4+ "importance" is now considered for flow eviction. * OpenFlow 1.4+ OFPTC_EVICTION is now implemented. * OpenFlow 1.4+ OFPTC_VACANCY_EVENTS is now implemented. * OpenFlow 1.4+ OFPMP_TABLE_DESC is now implemented. * Allow modifying the ICMPv4/ICMPv6 type and code fields. * OpenFlow 1.4+ OFPT_SET_ASYNC_CONFIG and OFPT_GET_ASYNC_CONFIG are now implemented. - ovs-ofctl: * New "out_group" keyword for OpenFlow 1.1+ matching on output group. - Tunnels: * Geneve tunnels can now match and set options and the OAM bit. * The nonstandard GRE64 tunnel extension has been dropped. - Support Multicast Listener Discovery (MLDv1 and MLDv2). - Add 'symmetric_l3l4' and 'symmetric_l3l4+udp' hash functions. - sFlow agent now reports tunnel and MPLS structures. - New 'check-system-userspace', 'check-kmod' and 'check-kernel' Makefile targets to run a new system testsuite. These tests can be run inside a Vagrant box. See INSTALL.md for details - Mark --syslog-target argument as deprecated. It will be removed in the next OVS release. - Added --user option to all daemons - Add support for connection tracking through the new "ct" action and "ct_state"/"ct_zone"/"ct_mark"/"ct_label" match fields. Only available on Linux kernels with the connection tracking module loaded. - Add experimental version of OVN. OVN, the Open Virtual Network, is a system to support virtual network abstraction. OVN complements the existing capabilities of OVS to add native support for virtual network abstractions, such as virtual L2 and L3 overlays and security groups. - RHEL packaging: * DPDK ports may now be created via network scripts (see README.RHEL). - DPDK: * Requires DPDK 2.2 * Added multiqueue support to vhost-user * Note: QEMU 2.5+ required for multiqueue support - SELinux: * Introduced SELinux policy package. - New package: openvswitch-ovn - Removed: openvswitch-2.4.0.tar.gg - Added: openvswitch-2.5.0.tar.gg - Added: openvswitch-testcontroller.init - Added: ovn-controller-vtep.service - Added: ovn-controller.service - Added: ovn-northd.service - TODO: Explicit DPDK support not yet added to spec. - Spec file work and cleanup. - Includes fixes (or obsoletes) the following issues: * bsc#948840, bsc#941466, bsc#936780, bnc#935750, bnc#867964- Tighten up openvswitch service ordering. bsc#968205 (openSUSE), bsc#951314 (SLE).- Don't install INSTALL.* files.- Removed: openvswitch-switch.template- New upstream version 2.4.0 - Flow table modifications are now atomic, meaning that each packet now sees a coherent version of the OpenFlow pipeline. For example, if a controller removes all flows with a single OpenFlow "flow_mod", no packet sees an intermediate version of the OpenFlow pipeline where only some of the flows have been deleted. - Added support for SFQ, FQ_CoDel and CoDel qdiscs. - Add bash command-line completion support for ovs-vsctl Please check utilities/ovs-command-compgen.INSTALL.md for how to use. - The MAC learning feature now includes per-port fairness to mitigate MAC flooding attacks. - New support for a "conjunctive match" OpenFlow extension, which allows constructing OpenFlow matches of the form "field1 in {a,b,c...} AND field2 in {d,e,f...}" and generalizations. For details, see documentation for the "conjunction" action in ovs-ofctl(8). - Add bash command-line completion support for ovs-appctl/ovs-dpctl/ ovs-ofctl/ovsdb-tool commands. Please check utilities/ovs-command-compgen.INSTALL.md for how to use. - The "learn" action supports a new flag "delete_learned" that causes the learned flows to be deleted when the flow with the "learn" action is deleted. - Basic support for the Geneve tunneling protocol. It is not yet possible to generate or match options. This is planned for a future release. The protocol is documented at http://tools.ietf.org/html/draft-gross-geneve-00 - The OVS database now reports controller rate limiting statistics. - sflow now exports information about LACP-based bonds, port names, and OpenFlow port numbers, as well as datapath performance counters. - ovs-dpctl functionality is now available for datapaths integrated into ovs-vswitchd, via ovs-appctl. Some existing ovs-appctl commands are now redundant and will be removed in a future release. See ovs-vswitchd(8) for details. - OpenFlow: * OpenFlow 1.4 bundles are now supported for flow mods and port mods. For flow mods, both 'atomic' and 'ordered' bundle flags are trivially supported, as all bundled messages are executed in the order they were added and all flow table modifications are now atomic to the datapath. Port mods may not appear in atomic bundles, as port status modifications are not atomic. * IPv6 flow label and neighbor discovery fields are now modifiable. * OpenFlow 1.5 extended registers are now supported. * The OpenFlow 1.5 actset_output field is now supported. * OpenFlow 1.5 Copy-Field action is now supported. * OpenFlow 1.5 masked Set-Field action is now supported. * OpenFlow 1.3+ table features requests are now supported (read-only). * Nicira extension "move" actions may now be included in action sets. * "resubmit" actions may now be included in action sets. The resubmit is executed last, and only if the action set has no "output" or "group" action. * OpenFlow 1.4+ flow "importance" is now maintained in the flow table. * A new Netronome extension to OpenFlow 1.5+ allows control over the fields hashed for OpenFlow select groups. See "selection_method" and related options in ovs-ofctl(8) for details. - ovs-ofctl has a new '--bundle' option that makes the flow mod commands ('add-flow', 'add-flows', 'mod-flows', 'del-flows', and 'replace-flows') use an OpenFlow 1.4 bundle to operate the modifications as a single atomic transaction. If any of the flow mods in a transaction fail, none of them are executed. All flow mods in a bundle appear to datapath lookups simultaneously. - ovs-ofctl 'add-flow' and 'add-flows' commands now accept arbitrary flow mods as an input by allowing the flow specification to start with an explicit 'add', 'modify', 'modify_strict', 'delete', or 'delete_strict' keyword. A missing keyword is treated as 'add', so this is fully backwards compatible. With the new '--bundle' option all the flow mods are executed as a single atomic transaction using an OpenFlow 1.4 bundle. - ovs-pki: Changed message digest algorithm from MD5 to SHA-1 because MD5 is no longer secure and some operating systems have started to disable it in OpenSSL. - ovsdb-server: New OVSDB protocol extension allows inequality tests on "optional scalar" columns. See ovsdb-server(1) for details. - ovs-vsctl now permits immutable columns in a new row to be modified in the same transaction that creates the row. - test-controller has been renamed ovs-testcontroller at request of users who find it useful for testing basic OpenFlow setups. It is still not a necessary or desirable part of most Open vSwitch deployments. - Support for travis-ci.org based continuous integration builds has been added. Build failures are reported to build@openvswitch.org. See INSTALL.md file for additional details. - Support for the Rapid Spanning Tree Protocol (IEEE 802.1D-2004). The implementation has been tested successfully against the Ixia Automated Network Validation Library (ANVL). - Stats are no longer updated on fake bond interface. - Keep active bond slave selection across OVS restart. - A simple wrapper script, 'ovs-docker', to integrate OVS with Docker containers. If and when there is a native integration of Open vSwitch with Docker, the wrapper script will be retired. - Added support for DPDK Tunneling. VXLAN, GRE, and Geneve are supported protocols. This is generic tunneling mechanism for userspace datapath. - Support for multicast snooping (IGMPv1, IGMPv2 and IGMPv3) - Support for Linux kernels up to 4.0.x - The documentation now use the term 'destination' to mean one of syslog, console or file for vlog logging instead of the previously used term 'facility'. - Support for VXLAN Group Policy extension - Initial support for the IETF Auto-Attach SPBM draft standard. This contains rudimentary support for the LLDP protocol as needed for Auto-Attach. - The default OpenFlow and OVSDB ports are now the IANA-assigned numbers. OpenFlow is 6653 and OVSDB is 6640. - Support for DPDK vHost. - Support for outer UDP checksums in Geneve and VXLAN. - The kernel vports with dependencies are no longer part of the overall openvswitch.ko but built and loaded automatically as individual kernel modules (vport-*.ko). - Support for STT tunneling. - Support to configure method (--syslog-method argument) that determines how daemons will talk with syslog. - Support for "ovs-appctl vlog/list-pattern" command that lets to query logging message format for each destination. - GRE64 and ipsec_gre64 tunnel protocol is deprecated and will be removed from OVS v2.5 release. * The openvswitch-testcontroller package is new. It reintroduces the simple OpenFlow controller that was packaged with Open vSwitch prior to version 2.1, at request of users who find it useful for testing basic OpenFlow setups. It is still not a necessary or desirable part of most Open vSwitch deployments. - Fixed: log-check-module-loop.patch to work with new version. - Removed: openvswitch-2.3.1.tar.gz - Added: openvswitch-2.4.0.tar.gz - Spec file work and cleanup.- Add calls to /sbin/ldconfig in %post and %postun - Fix typo in Url- new upstream version 2.3.1 - Compatibility with autoconf 2.63 (previously >=2.64) - ovs-pki: Changed message digest algorithm from MD5 to SHA-1 because MD5 is no longer secure and some operating systems have started to disable it in OpenSSL. - Keep active bond slave selection across OVS restart. * v2.3.0 - 14 Aug 2014 - OpenFlow 1.1, 1.2, and 1.3 are now enabled by default in ovs-vswitchd. - Linux kernel datapath now has an exact match cache optimizing the flow matching process. - Datapath flows now have partially wildcarded tranport port field matches. This reduces userspace upcalls, but increases the number of different masks in the datapath. The kernel datapath exact match cache removes the overhead of matching the incoming packets with the larger number of masks, but when paired with an older kernel module, some workloads may perform worse with the new userspace. * v2.2.0 - Internal Release - Internal ports are no longer brought up by default, because it should be an administrator task to bring up devices as they are configured properly. - ovs-vsctl now reports when ovs-vswitchd fails to create a new port or bridge. - The "ovsdbmonitor" graphical tool has been removed, because it was poorly maintained and not widely used. - New "check-ryu" Makefile target for running Ryu tests for OpenFlow controllers against Open vSwitch. See INSTALL for details. - Added IPFIX support for SCTP flows and templates for ICMPv4/v6 flows. - Upon the receipt of a SIGHUP signal, ovs-vswitchd no longer reopens its log file (it will terminate instead). Please use 'ovs-appctl vlog/reopen' instead. - Support for Linux kernels up to 3.14. From Kernel 3.12 onwards OVS uses tunnel API for GRE and VXLAN. - Added experimental DPDK support. - Added support for custom vlog patterns in Python - removed datapath-Add-support-for-Linux-3.12.patch no more required - removed sle11-device-ops-backport.diff , not used before- fix rcX link/bin/sh/bin/sh/bin/sh/bin/shopenvswitch-commonopenvswitch-controlleropenvswitch-dpdkopenvswitch-dpdk-switchopenvswitch-switchlamb59 1566483180 "#$%2.11.1-lp151.2.3.12.11.1-lp151.2.3.12.11.1-lp151.2.3.12.11.12.11.12.11.12.11.12.11.12.7.02.7.02.7.02.7.02.7.0 openvswitchopenvswitch.conf.db.~lock~conf.dbdefault.confsystem-id.confopenvswitchovs-appctlovs-dockerovs-dpctlovs-dpctl-topovs-ofctlovs-parse-backtraceovs-vsctlovsdb-clientovsdb-toolopenvswitch.serviceovs-delete-transient-ports.serviceovs-vswitchd.serviceovsdb-server.service91-vfio.rulesovs-bugtoolovs-vlan-bug-workaroundovs-vswitchdovsdb-serverrcopenvswitchrcovs-delete-transient-portsrcovs-vswitchdrcovsdb-serverovs-appctl-bashcomp.bashovs-vsctl-bashcomp.bashAUTHORS.rstCONTRIBUTING.rstNEWSREADME.rstsysconfig.openvswitchopenvswitchLICENSENOTICEovsdb-client.1.gzovsdb-server.1.gzovsdb-tool.1.gzovs-vswitchd.conf.db.5.gzovsdb-server.5.gzovs-actions.7.gzovs-fields.7.gzovs-appctl.8.gzovs-bugtool.8.gzovs-ctl.8.gzovs-dpctl-top.8.gzovs-dpctl.8.gzovs-kmod-ctl.8.gzovs-ofctl.8.gzovs-parse-backtrace.8.gzovs-vlan-bug-workaround.8.gzovs-vsctl.8.gzovs-vswitchd.8.gzopenvswitchbugtool-pluginskernel-infoopenvswitch.xmlnetwork-statusopenvswitch.xmlovn.xmlsystem-configurationsystem-configuration.xmlopenvswitch.xmlsystem-logsopenvswitch.xmlscriptsovs-bugtool-daemons-verovs-bugtool-fdb-showovs-bugtool-get-dpdk-nic-numaovs-bugtool-ovs-appctl-dpifovs-bugtool-ovs-bridge-datapath-typeovs-bugtool-ovs-ofctl-loop-over-bridgesovs-bugtool-ovs-vswitchd-threads-affinityovs-bugtool-qos-configsovs-bugtool-tc-class-showovs-check-dead-ifsovs-ctlovs-kmod-ctlovs-libovs-savevswitch.ovsschemaopenvswitch/etc/logrotate.d//etc//etc/openvswitch//run//usr/bin//usr/lib/systemd/system//usr/lib/udev/rules.d//usr/sbin//usr/share/bash-completion/completions//usr/share/doc/packages/openvswitch//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/openvswitch//usr/share/man/man1//usr/share/man/man5//usr/share/man/man7//usr/share/man/man8//usr/share//usr/share/openvswitch//usr/share/openvswitch/bugtool-plugins//usr/share/openvswitch/bugtool-plugins/kernel-info//usr/share/openvswitch/bugtool-plugins/network-status//usr/share/openvswitch/bugtool-plugins/system-configuration//usr/share/openvswitch/bugtool-plugins/system-logs//usr/share/openvswitch/scripts//var/log/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:10926/openSUSE_Leap_15.1_Update/403ab6aded63a55751fb4854f126f526-openvswitch.openSUSE_Leap_15.1_Updatedrpmxz5x86_64-suse-linux   ASCII textdirectorycannot open `/home/abuild/rpmbuild/BUILDROOT/openvswitch-2.11.1-lp151.2.3.1.x86_64/etc/openvswitch/.conf.db.~lock~' (No such file or directory)cannot open `/home/abuild/rpmbuild/BUILDROOT/openvswitch-2.11.1-lp151.2.3.1.x86_64/etc/openvswitch/conf.db' (No such file or directory)cannot open `/home/abuild/rpmbuild/BUILDROOT/openvswitch-2.11.1-lp151.2.3.1.x86_64/etc/openvswitch/system-id.conf' (No such file or directory)ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=4be6df32e96c5d685230af9dbcc5a913d482dfa4, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=0961beb8898de31b1e0e9bc089486c08db1c3c6b, strippeda /usr/bin/python2 script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=da3826dacaf3ea98c36c3cd2df8b736544286b18, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=bda9007b23f9cd00d1cea655f5dbe6205977b149, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=3c84350d5a3bd285cbf28cfee9940bcff6ccb2d8, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=ccb10bc2359151a9d5acafdadfd3e7ff4e673942, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=7f2ba9a26d73797ad91a746f2544448d409e858c, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=83e4220f716bafc47309f75e5089bfd0828ce0cd, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=dbe48a852618d5276909c7bb4cf8eb0149e40490, strippedUTF-8 Unicode textHTML document, ASCII text (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)exported SGML document, ASCII textXML 1.0 document, ASCII textPOSIX shell script, ASCII text executable !*45=GQRSTUVWXYZ[\]   RRRRRR RRRRRRR RRRRRRRRRRRRR RRRRRRR RRRRRRRRR RRRRRRRRRR RRRRRRRRR RRRRRRRRRR RRRRRRRRRR RRRRRRRRRRRRRs2ymyYYD# Save the "enabled" state across the transition of ownership # of openvswitch.service from openvswitch-switch to # openvswitch. if test -f /run/openvswitch-was-enabled; then rm -f /run/openvswitch-was-enabled systemctl enable openvswitch.service fi/bin/shsystemdlogrotateutf-8b41eba2107c80d2efce6e9888335dca3491adf51003b195f4552ebee4d861888?7zXZ !t/N]"k%.S,4lބ?OF%*7?~qbG?>၉OG4xLq@v}:ߘ1|Ym8< <~`׼dd[P%/(fZ v Ibcl)-twpE\HwZ5ԅT%S5(7;%IV-ڡJXLa B>|CV1Zq+L: lEp'7SB "4l[無 ] Q |镵 ^{@Ų[߷Y;.\1V|Pd-x҅ަ'j,&&{=]6:4i!鳚4?=*r׼+|Zc-;k)\ɣʪ@}z a3Gy̏Om(ҟv$19xătGZiOq2l~ĭ?ؓdO`$j*yI4)~Bzay+U`(3ٜ? >/:u8ݾ*rCݽiҧsdB>M(xoښb i BIbWwy&`M5,'~_A ؕ4uᣄjHRu k}dq*ђig K6Ky!9D00[Pc0s[o@ݮ,OSCbk Lqd!*f:W^Xjlh0k<>aWfCykᓖɣ h{[ٌR9KR'ď^IpLr$y|hbXPʧONmc5\=v#s[D"qBS3*ãX(>nۆH cVdGl\Qo8 J֊'-d 5(f, }{&vBq<*bi.zBȀ :JWk_G ">J*qZOa$3wV\V˧dҠ:8 Ʋԭ>W>xE֎RhB]"ӣ kRĴ69O2-MY%ghXyw!laaJ:V9";V)$2y:t~"P{\Mcjx LNq%T=9Ȟ^$ )Mu 3Ѩ>8d/f_5L&@ Lf͋Zp?E#!|MP.%E\_bF'Ϙ -n J} I j 1Q:ULX |v*ش0EY|Uzh%#T~$9TA~U ^m;~'xW("fЀƋR %s#m] J`a3Ж >nRgR3[l+9I,2S:Z\ZHОv[W4}ɈႏOBԡLj%* THЦjnҞVy0擥l雳G>Q~/Mb˚i}P<bʔD ^!;`3.P2dFGRz㱵1>xҪͤ6~ZVxpͲ}qYaTiI,FRW>t~Byj4Z</= Jk4f&U3aժ23g92`_-5FSj427hǗ {d84-GD΄ju+J.x댎}N/|䬉6\O,|@~"_=$X޸lf9 O.Ǚ2'rph "ELeYt4d~X,>3;2-_p/fBqRUgrȃ.?ƜYF>Č6,5؂=oV[Q1wܲRp,7al`؟#4I G[L_&/FWX8cNRX{^E_iCMk+o[W_`,Hyi,yE\T$צ#=[ d VM{#u O'(/ _jp}g!A&z3@ږ^%\A2KL95I/rIjI-=*|ng:1nZNm/&eG%Vj,E =fzmޭlZ|2Me tDW֖(#%EZ$1j,1$pFyJ8aBe4GY[kb_a  z -<<'THb΍([&K^T)Taۼ|(L4tNT4?-jh[u;lxR'!B[-w]9γ@~h=p0(XRi~GW+X/`58kzSj[*)&1/NoN*e @|7'QgE2]fdzD83`g.%_ -Skå,64Z{WBI3T=T(ZU_X}Y)|!x7>yΈq8+3elAd6|c'*頠KCM'貊mm >_XM Ϯt{wG `!q%39FvBl9odX幗aK{BPCoMgU.D[:zB(r/@Fi{tp0$rR@gaU=WD6C]xU|)Pw};S0^}MWHFӉ'sE- iUs"pOKD4brbI4'vƿjŃ6{oCeɜLوĭT]3@#/s_  X!`1-A׬r^%Zd+ p _s$5I9ۇuM[>Fpє09 /BUqJaTON yLqnoGn'ƠˍSpz[R)2џN"ޟ:SBMv dVY05a:u )ܯ/pРF3exXVt$򋼒A WO >&ZFz}@%X^'k5!** Y(vs[}@u 3yɣwʮ;az\,e$ŰXF^\$@=UC#`rH7qʑn+#y:q,LoׁIըhZMXBM=)Nm"JWT2;.LB|Eww5 \ [ 09oS`O$zpd'.݃ 3#l,~|M*ulp{+t 1AyG7fɉ$"_Xg~eS1 yLO9V 0W/8TAh<<FMGrĬ1e&\"kTj "S+{]+~*7F+Y7y}o-{,=TsyQNHK}-r6a:b*Iқ?_^˘rKm| t5YTT}f]qjKJ`ouH*Cgࣲ%~XjE\pIF j:, 7_E1K9FFx >zU8'a[+GjiȃKA5cM}֎k9j|5w={_lӨ%NDej O!peCU)vͦE[^!4!q&~j-s\jN#*PMsn#XDވC *F9C|9Jzw,?р P۹|DD.&AbX=v.b`3.}OJv>%5?'E yTQ`n ۠!6Z2 ku9WG"p2rHHe qx׈̏@o}?;=aGڽ 4컩Ausgi^e}W= D*KP ~3A$hnmNnൾ/E .)bi9 -ꉕs%iD/ rd^r.?$ 3'# k4&/_AˬOo_a0t#e.oAsжMP68F _eNԣ(DipU#az:VD /V%oˇ3%hRR^7qUbbLp.@&lDw&UYN,sZYZkӰ%wƅ(mg5ˢ=n$s.;wSf,7-  qFҗI0-+s޻>KQ nL rXΘWQM#͖:  'I nVfj11Vࣴ`yPD]U[3˂oUpli2'3γ3=1O%y)"tw^53\/14zxͧP y*; *V5+pfJ`]LĚ>A&3cCF`YfetGr {e{շA\q-ZmђFětk'RՖԱzRs:yQ(30'Q$3 l4I&f_J PB o\K9`N!P駫煻pD9mai.lyeUӡO \7%/nCOy8*V1ڔs,/8_O]y"x)lԋ{.6f G Ռ@ őH|c,dazoM3DH=!QVѡ|>2BA\{  E=A[Uh!D#lA [VnxJmXbGChQCZ/z`vոzUi>g AgYjBZw1V3?ۚ]r1Sń_VC7'҄W3\]5`.&4{rp_=p\Fi=m|mC=8wn<,?"glz_u.ACTEaݥNcsq\+)dGP45M}ydI5@/GCBHmfRdt+̪|X Һ!OeI$g1"6';CF?zVDO*l?!jszwHbk{Ŕ8@`?1MyoR'LĶ+; ,X) 4u̥FH$wDW?ZXPaGNәp&ԟ,[y jd skDW+|Iuss9R,o];X|y5HC]2QZHKFw7. Z>Y~ d)@{y>~O v9{~~' 䋆ۖ9oϏ.qˬN2:~#܊S6(>]٢4^Fʤ]6z`J H-9e@&ln5AZqgdDOAAR _g-J6puV7yV$-|Nhu[0Mx jP-:pmfsŕ.Ħj-7_S*uAt|pP0i8B1C cha`kw|\8 {em$NM%钕[B/㻥!+M|,N:ʁՅp漼VZvU[@V8vSKk8"5mč `&zP*N_,̬^ xp>j\1G1ZD3#m?2F*4;*B390^Y@,bo PkѪ큃x ܗC+pyo Xey%3JZ(Ƕ>BZq%Z!#0{@ē?BcbqtA-qjlyy1v4olYf$b$AiH04d W.F 3)[,*u77V&ʔ8fz̗)sjDwi[NЕ , #< A 3C 2.FfEc1;v=ha*ߜc#Aw $#.9g-ϒ|7\5??Z(]rSjbZت+?wQ΋lZg ed̋xh'_bLK-@D[\oCkhs-DGkX( kѱ x&ge-$OŪ~nt9qC4oE!m~cQA1^a;b" n1^mq/RT d]@,Vxvboc((<ÄӀP.Pp\TK*#2#x0~M =N ?!Ob =;_vi:y tϫ:֭p=}:9Z"#+ /Wec[goީ/PdX뚪_/RRyGRW,ۙ+ƒFcLJq;[!"<5{VBZ1<UVH -A.݄]YIghg¤JFLZifBwbbSIjeKQ6wGbfOٱXT7-Cq4cRD.xڭQꑆe)N+J!o6юZ+Bͱj;V0PB )cw-J"aUY'm!;{TEBlM쳅VF6th>'Y\Y*,ZyaIbU'uN#99®wNg7UzcA0b_"V; x  ۱58{m334^|grt[w bGZNDO_BȾogB}8=-`f_s\#"-ZoZS-QKHgKdTKޢSS \wIZsWo.T%q9Q`zƪk+c [& {Jܰ9o_M%&pi-v^?rTs0~  $(ХϿ D!H$y#0$_VWQָ7ϭ@ȍs50ex KYY,$NU a|PdQk:+t((oϫۍ&` ;vV <> vU:bjbL5b9=i4"yZ~]b :@ǔ .W@v.8:]<7w]oQb2U-)l~[HiE,$Ej̭GCڝm"Ns[g77Gfb~2A<}^M;mm6obP:jcCմJt iۅ2[P6l^WG2N|:~>FY 0 ½ӹ[7@*iX$LXLˍ Urf}=&!ZЋA>6jX5ʁm3LW(R~3&qNhl+X|[< mƈi&d XqfF.4% S{*НxHOwG΃ꑌ[&10Za6%>otO| ::9|Wi CKu0]1F @ @`:pLZY9R" v.pL #5ڹwH8M{Gg@kKr͢#*"hNMOˉ5#oV IMNILh68#4WFëY"$C)ɡ  s;psc<9c[#iS. !Kš9 2'vT*Snh~82eEi '.; ^.$OJw0[0p=57GUNV3a| ߈] ;g88_J5'A3㏂]2ARV;\%h?. 5P:ͣ!VD|wEJЮ hd0֫YT$&[it@|Xp4υYօ{~!ufF9Td*|7 G1>6+E퉕YΓ?D/_GVbS!1#ג 4MȋLCʽg T22 IAh=H'q4t1#L}RI{MV -+~~Pn i}u>t> ښʃ>-kG1UOa0<2Z%Rt O8ߗx*,,=%@onc:#,m!8t82$dzgw]鬢Pzx*Ƣ}UHtUb&m CRK xɱ%9 'U6KfOJ4@b!X.*x9 ,Nm ;#]%( V F(%\^#,,?,2D9԰N1x$ Jڀ(anİ) wS As؀B#JuPGLąֻKj d:7bX+|8gp.(qIjD hϠo/!!‹r&t .C =Mx\ ͔, iԤE&"7,k菚DJ*, z1B'g-J=.{7,XS Da\9PL44N~Ӭ^rk ʉO7<:"<`Əuuٚ>~4´w:*0(k?boG@BkZߝd \= y41&ñ壕| u3a`(*o{.Stsܠsr sF搠/+5w})0@p-нePϹt:TIrT4V3(;amx{DL]KhTa!`,}uji֋&p&]P\9(x[%ۂ h-$ʹ'G/ &i/Z,+ kiQ(lᤍDW>|R*8Lz ?StfOZ$7XIxʱG19h'xbR~ 5XS5l;EfL&sOkeko|(A[ZY$=@G ^N u7=qn2n \(M4u@zt_Rϱ(QE룍y,Xz'8iqk2J C;!@@|X9} U=0Ipސ׉MQ&xB3]Ĵv:|Vd|=\Yzo`= a'[w>eUӂVŪ=g͜L@҉֒tA?xԫb/!&h5 [pΨHqXm.iAC[/G5l9dZu_*c%S(2mLB^v#)`KCʬ~S]k[ _!ӤXJ4=Qo嚓\ӏAlN C "yR3pĘviQg4~19G^;&cVݡbn+h/ƤppҢ|\ <> f]4|Gu ܡlk pT9? [a X6udBzԴUia=lʴ=ghݏsq`&oj}_y9fyRP"7)߀oMƱ?x=}:I@f %(c%*A+ 2ZKP1'I40bj2zrAݭ|A,ZOYa&y9V &ν8X!Qፆ9'{M]*ZźUیWL\͊En;$K捓8H"ILo>Cxaq:@DAgĩ͉0qUc*aHE!il&R2m 9CBtqEONB9mhJm`?uAl ;X:WP2+@GBBf)OArfpԺ;6TEz zt:YQ6R`&3"=MHJ}̅рRI5fa AumCVɷH@6hG2.\hZBzާc(֛,!n}FbwD'Q?-u7ܶa| \e+SZVh,&r QjU=X'=GXDzn؄B/*8SM9O25 *'!7Ҷ Mn ZhBg!T~U {:mNc3SߓCq :"X;YZze̱JDIX|d;_5{\T;  xRltznMnCK?~@mH&Y;a$%iu\u,0=f2>rɘ^Tz?l72헃#1ȇ:ic(\44I+`Z"fwu>m B_F 尔B7z=SI*)vi tlA~z 1&D X*1.N_z]O)j7%cuA*n(m%L]{K 0䮨a4J x@9]jTSj37VOы-34B}.܇s6-{~{KUi[.Нo8_hbIEv9'G2dcpASYc'8ΫCko:\pv;x5t>QUpf2>?Y3s%Q3ǹ@@^~ /:6"ҷҶA#MckjЌ$Vp^NG2([W#? 0)# EeDPa癓,3;:S\92_Пm:֩sM@" *$Eyď1MF3y7F@+]\c`m_f98 [eT cW'"ȶ`Qt97Ã2uD`b"~%q2wMJڀ+|LU'KީP.}dB2WqhlFcOkTTTq S pPxP8  Sũ'qi]+Hi-fۤ?̉M.&Y1K@$8~2r\6=+%B AD {Tl~qdk>ZLQN asY՗᷺鲡l0V202N_Ku-.V?dY qSDL?ϖZd'9K I[ȿL z Γ8c1 qpB=@R(x{}\nhi;J cFқnD)yt+l''ʱ80A&e+3U;}*$[1溫/~&JN߷iJqp$t2xT&?K\ڪk̦F4~90qyv䆛?y3ǀ AUhqd쟖plmVҞY fXU@O×xA86o||X5@$.Wq$A bn ?V.?/D.s 2Z/izlZ0_sJYo<G,KWCn̠zjap;*ѵ@b_I::O;%O ڰ(1o.Jc˧UD۪J!-#zE{ߠ Sgl^(%4 3EYPoB/w,zNn`T3<%A@cE)?hG Þhiϴ^\/"*B!r&_惲=]"jJ2DyAr: @˔xV !/x}ZKBQdfdxw#֔(S2K !_TYjUZZWo8al+]m3?o^a犰~.SD.<=q;kvM.cz7PcJMp `f !h>?Ck ylxT#nfv&ŇݱX/ {~ޕ agҥR􌨮_t8 @4Iب:]O3ঢYOyͮCДذUrU?*8ATJ`кVN|ٟԲ5ŋ*'a3蔡l+IC}U M*HgcM@d#RaNpz-wӰ{?!1/[al$}4Z;=; ߺ[ 5դWnT /xQ]V]13C@'ݕ{m`ڄP4i(ǺKp`tдj~ gݻl huUŗ%0[b*6hE?fU|YLcYfH~܅ :s)wڳf̓"z)a2j6(r`Y/k#BiD E,5%5xr 6Gi fdЮS7қ4}.]RoHudEZ+WqVg~gbW^-ʹ#lL,8#:/U-2c)Lp5jSh-h 5Iˁcdq$nEAaf.yҗi\|}̈́$$ke-RwmpL:Kxڰ.M4m75-Qw逇"vz0k6!X¬m-b&$+*_6'l:tK/g&x%[S.}>OK^3MfտΥwUcmmI1 Lfbդ!D2@6؅)k'e8p5X5Xne r aJ_vGԔQZLlA&-I)jW)ܸDצ}?H@#%5F,bTIREF)O s /v|#s .TVCDi%_Lr-!L$ZoC fpN^RcWlv&Zv n\[[Pv!=|vR ^bTqdkl +/`KR~>'68: eVm2#Hn<'0 ߧĮk\aj* .bY/?ω17O4{&0(Q m 6abGyt}RyuÝ{ˈ#i)3i7d"#q/庉.8C[&j%huxmcujy{kaP2yU$\ސڝ@a+$[~Nͽ*)$ C$ v8eY9 P?͒*BM[-v-%3ܜ-x,NEVM>@+9u) h>qs'snH2nN?F bD#‹Ά:؟~?@ԕM}G6p=;B,#xczN7TA)1x+sov!i5FlN4HZ؜ĦMy|r #kǺߤ>y Oϣ3c:3 Ccnt3*# l_;7((3*DOVZ#ڴY|GƔ7&:uaH9blTp }Nz`؈&t}T6a,g(9+ " d9%g.΁ݺEp;YbPRRI(Ϛ4:u+ $7q33nluFdgv3 T/)`i9'WQ%q${ˀyVPA8EhUAۡ\r0y;Ql~-%%9x>rӎ7A{X1xad+Q0֕A"ɛ\UXq@ 1c%t|7?Rѻ`d4fd 7uаO U ` 9"voSf* ) D ]uā\JE`gv47U~7`38FGcbw^(<ydr2>pi:"O9aY"~:ѭ}=g)yV $ BniY׏U -]DشU#*GR;_4bOP1MNP`z6XY6O`Ѥ=f'~?E=t_KGϭ-tLqȂ1fEkIg.[nI11h^Zt!VAn Iiw$ :TƄ$rk_gouqL.<&1O1;-K6kܢ^U>h-OC7̲e5⃂m A-(2VTg*ge BNF^BvP㡛Ul#'+1Ff6B XTCW.z!B;ҾmKl{]g]yL1-G~Ȑ <|;/KMD.'[HL߇4MIvŸG=r.O1pXӕiPZQ8zZq̪E鏢NR/&&aݤc=ireu&e>_Mi'ǓK&`GCy?j,$@A[8Gtl.Tbo?phpǏ"oZK5f`l?j0F@;VWB9{H)'2 mGMKz3 k?o T`%,_\M ٥JD/ l|HYgE2/>0ڤ%\JCC* K'k}%V ey33X{CFyG!BpLQYKBUGjyY(t"F Hb@Zfz?#!TAVg_zc0BWTHՓEǣ[x˹jkA?-~9jz1,@h&E=yA04S]=GR:r(NTB(tM}L%Qf6udC$g?!ucNjm3}X7c|cTϾy TƝ؋ܧ Ȩi}Ӿ_T3T./DS,uިT ~8$DT)?lf+Řg/w 暞x^_X^yyaS2U O>KBATYKR H6܈Dan2h㳣!f@XG9Rk&c'C=[j.ٓH-9SoP4)Uf:"$}^Z==2G%cm5!Uʮ+UJCm|Rv^ˈI 7"Y!ِ x- Hq iHnJǞ ׷sGRQPXCU{pXK`-x7;joO?XJjџJ~Ȝ'+?[52jy9)߬9%礕 %U4-lެM;PwW@a9ePos0#JaZyyH~ "'\{"?ީ6  JY¨y(w.Zdk{tD;B#{?h17_]!mftDI /߾p>Fz5a~b1n-{Phk(djϦ.3y/D,BCc4q?Ax?dX>B=BN.UvŏƵo{*tbO5#xԙŌ1č\u~xXq>#dt+Gd?8p;j4XOvnP}HL*E[A4ˆQrj}7]}G3nI@҇#^O'TLz"G=*^>eEJ*9VvR63bqfߗC G0)Aנ]bl?Z$!"-ߡR\3Rlw~HOQ\XyP8ba D >KV[#lCAڵXLJ@:dzK9}H G[2*aϠg#fBd|ZibpnӬ>AjmJߛp^c bj_05%! CՅ/jDa9,0Є>뱈!my:mC`if8#5ѶޣQJB"`\ BޞeJ3kDlFB51Mf]z5FrĚ_!E>UFM&\L  T6c/oQ(sMAs|1@!B`^Y6-B']-- ΋lz|q?&źa#ȧ?,Ӛ5C QÃS1`F{:=#W!꽕^Ĵs]MrcFMT {egA؏\(=E"4Ws\ et8!tl-'G ((F W8 >Nn>q !/<=mw<ٗQKrMÛ2iCz味6T)-Z@ xVs>}W/ lI8i)eDҵ136e,E]t9dyn{d<W}<+m8ߧQ`8ՉA}r=~7 OFi<*"_WB;*MЪ"gFFRd%yB OBY@@bPM84~)we`y5X]s>˓+i*iL0@ /j*/YR|V/ Xzz~>,6D̫.Y(&fďZ{Aqx<#5{70xO~w=AqyNy* R3R NPKl9媌Ӥ'cj9eL}UOdbceu?Sw֛OH~Ok _6Ũ= M@QM%e{0-A[)_x e0`iU.Q5i L'9rƜV ]$nd6,P`gxt=WA}F`G֌^X 'y;.(oq=Bk8gkݿ5ۇ rv髥ة Jd0y'V6V{]C갣!QG!.=MR2v}W uiV[h\3j6^TadS$"t\KgaK 6#fB~Yt”K+&m\6' Bٹ=0PGTNjC=<̗Dz䢞 ^cy9ƸՊHn{%֦6c$#F?dqۮTIPt1*%;BSCD|'"++F ۽@mz+x]AT !ef'Wթ| 2\ar(0$ "9[4!5>5foL(d@./mr:n{]"QzfF0 tM2l3&{-@g 3\HlE{SO`.ϧkJ!c \寈`rG06Y@D HO|xqv "T )N.H'β>kw cYCٚ] OfRT"~2 Aq"w>7 % h45eN3;% .AdOr K 9+G(MOhYF(R2iTƟ'lDY)x0 Z)%]#a7 TԸيyV}MK|Z0vì\!tSHT@.W| DGr&`fFӑ)o~yݮvE`;ҿ>W΍Uy>Rs4s tvR;_ hWV" LP Qk "c/͆Bϰ(0-(#M-:(%⦴w|VBɒ!0b}d>#;uzؽmͿ톎b9}j4㥴~| 1˭ϡE5؉Rt=[{qFnd!FH4y 8/<({@|Q*("%\>bꙄY wNH~tTiiiD w#{եvDLrQExsS.%~I$s=;xߔ]vH2V ١ s7 Ģk!dNKnFzy7]X~ZXU ~c˚R$QunX.G]=6=9#>Cɟ"׶1Ұy:sݰZ|[R0p1 m`I7SHM՝V~rI}q\U?M.\_4+^-.BN݃iDIlCWW~=8:.$_m96I )J{~P˶(J AL?AXgÈ?D^ 0V.MP|Z ګv+ Y#IBl=˝xL6,g> slڜBSQ8Ltl:+*eu& ,7)g9;+v,vk>VN1m]~q7>@>Q{ 8gx^uf2D JxFo0 k Z^55Q; T!QbaKiR}Op+ kkN,ez$] ^KtoTmknŠ,M0̌sR3y-0X 'ع8ػz]SY!Z.L㥈y.МsB硡p{N[W O,g+GrWs-J>DδN @:ٯ#Pfҽq@i=Қ@҂ص@**PNI6=c3 {n,UN:VݐC~R&,-Cʈo#reC0i@ۿwE$Zg[xo&r C>΃+`Zk~C&A?84~@AQn=ԴUG݋])v%0G>ī;9k~>d=xl),ɉ\ԩu xM3Bt+aܛcgŨo`Ķ#(X5XyK"IGOQ( 8-F 5':@VHPV[]LHh! S{R|ύa2)/jk,׎H3 <<{A1;͙ 1j7 ǧr$X둔 vx^-=X ?`@9dҏDH٩QP_Oa5i5;}@mRuN;qGE5{pn\dEgGl2WIo'u*;.8ff=0 {/%kB z{oȉd"#HÇxZR}]`}-SϚ~ς{:oy;*-Pl'Oa8SSXa_kƁ z z^[EmU%b3zRPk iī@P+_b  &8/Ӿ,)pas`s;9PN+hp/^FU~UpG$P4Mj%Jq +9.d | u$u BlM9!.b>whIzgniB<ؖX"-|2 3bZx>Œ9iڼ'hTýNf֪_UnsJ"v(ƞ@2Fgy:033oSelm jd:ݍa4:XAC,.7gN>}>*tl qaRA 2 |pm!cJ^n ]'6̼%ʇϡ1pu#mF fȱ+ɸoYr8ANYGBI 25$(qs~Nl@ҐL%BN25Oe7TLk DydOӗ}BEWT:4 mCqB8zugmQ#pmQǗAs2Íx\em|_ c!%D܁ &@/c:$miE$9ßN(g2H|o6z#~df="5yHURl@UN P.?lU^t .[JkjZhڨTn*5B}n÷ I !TKuP"C=j!׍m#A2ޱ<) *~QA *`=%$%FyGQ̺n~uGkз|JC"`mrCp#/K.~Es2e+`ue3 >|޾<çnH,}H]5fyW]4U?W ׃IGF;ɈlH N%F*A=,eԝa'{y!\d0eT_2m|1l#2hSM}$omp2G6jD&A.PKP$pP.|m'^cX6ET*C °ɮ鸞SwzC50ɕ,)|ɛeCBi}N▕LqIaaxs&Gs$&DdM?'R Y$C_D.R6u伪lʑdקaDH?ϏS{s&5ה(mC5CW؁]BGs9t2BR@T ?b[2'>D+̅3U\$uTJ&-34&cf -p"h J5h^_|ZƘ xVkq4=p%/**h0HOX3v |YʬsgTB :<0vikO=j(|Nz0K_! %wTFҹ1x3`׈3cugV5z!v5e\kQz$Sgkd5;`)Gch|kPPȒ6ը84ʖplwe ĉ,Ƙ;&G31m|3L3\y*#tzE%Uz:(k,ӹJ˫5-!]$@@ ;vR #kʳ,TLX[8d^$Q_%_|MEg~[\]pCcHſ܆hbb{xq(w"μvI; oN?4тD%NB,3*ڟSvL)?ԅ7@Bt KahqYJdZex*J?ʭ} xN Y;  xw`<Yu_9Ww#aFjɢ(ns#O"#xES^ ³Q4Iv\S'4O %'>L3rA6dCg،gewJ ΢1 CB@nK_4tcAF<\D-go~5!Z˷laKyR_-N.nfޑ:rӳC>eW"q)89F*hbhz;R08R3s#YwâY}ҋ`[ *@u?I<㘜qWi o.NJvAe6躯x8:dT~4^$=؈ĵljz E{A#j']>K=MϓM'&=֔o)Iл1VAhbBC v$%@AȄ*d迚dDbRjeϠ'E59/B}7F)w0O'H0O] & pkq';T뺗T"Y_hǙ@(snsߓƥeyuNq0ˇVhf6R(qL2;ZK7%iWٴ"pR|' Uҏ_8_g)ڠT?0O*3IN9Oz]V Q 75R$BⲹX 55t<)\}ƍơ]d1Rɂmwē~ݶeh/?;n}})ZJ,Pe}6_[i9VS7<]0R5BFqge]Lj7NJl}3}*Lh\U$2}vh3(;\L} ꊪC"ZoG:i-SymJW_=]wsG-J4N8^`>#>u,Eq`Kq)qf)<-rzSo՞5W x(#:$IF]_Lx<;GL])4rLlj2(cZ; o&hR#'{5>2OPB1LD;P/;#yo5Al2ڬ7~Go>)o{{@#Xl/6Cc-kws'bNq%/9\QvLX`0elQ|59ʾûb o16R؎ ĥ\yPhxv ڹiT!ٱ!' @uM'ˮcԻЀ镐oEd4mF62E9gU}Rω\vuMu9t۔?(#қ[&x۝.ni}96p,;Q=;vk#q1hh]b+]--ハIP /Q4쮦zَbUyum 5")#;U'wP=3PLx2T_u71]HQVthzS5j)[dZBKmW8s3Ф[ 8ʜuRmŘ>Z?/3psh{ ~z9Xm{˯+#1Ś;dJCi#ԛ= J\~-':ڍwv:zN%d^o`{T ORZiA.%NQ7z.r$F>ё@uiLF' i7 $a/S[PZb(|D3lhC[;JV>Bw2,wy,g O@5s"%Hl܉acf$ h];zguԇ+FT$Cw 9V9x]d+7{ΊbĜ:b׫٢i&vޓ%9pe!k! x`}7H=̇X~;,[,W[T}-DiBxe&ABUpj)O|h"0}(Xo>m=ᑪTC o,h"+r!:?2RMa~v+Lf7m3>#rb3-UMt}y@ ':K#a2&G^߈em`.D7MK?hVЌi)z6ˮg-a> _^[MEKUrC̚nqV䒞})r? SFL̕(8EF4r@oUxp9Xbv~6ۃbuѩ+BAWDy:lZ(udUtkk:꡶̩3`b sQӔji PT?^pUDn=!K,w.`ɝhg`?]ݺw6 L7C?R+lvPn#c>T$8Bge v"*3G<뽧SKo0oI9|06>PC^|JYa ,P^"{WU\Hr2i4gZ_.?ew(mݖ` CIgetQ@;G~^t鳴+P][.jhU 0Ýblȕ H|%y^ʱ-u}I-4՝P̷&DB&|;&E?#%x䧲r%hh?ėA2TDGUӭm7Q'f k)3Z̖' )ycKP\ u *ДrcO`]]L =(W~vK=ݨ }]F4/?{_Gn}H_?s忺=mnmJgVg])/IdHq\o\-3OSsn s*B3\jQREžд6D i"7 0T1re=r-+ZJ7u|M몢x‘\ĨDz++2%e>ϡ]#cY5SWUTKg ={5i84#eY+x틽ɀ 7:+B&F 8YJKl2 Xw ?eo2o>_.l( GOƒK<-#r'Xr^MI̼qFؠ:b[1M?O6Ǵp`q@X,[֜؄玲iauv!ӹp E`jJAO&dmq"^1Vݍ5t<Y3=•sL<->WJmm+ /ku="㰗O {0?2V4F[B_HLJ7DNˊI66`빙s!pQB`(48i!pz^9‡y1`cqi iQ^2x"+pT/xplP{ۘ)D?M*;Jk9 C)!AI@3s9'/|>1cQH9ծpXSd Ǘ*aJKؤU ʧ ]x5q |GƹkӞb Fs4$퍋M3m W.TT`?7}^`[i $ 9Ȍȷ$p ͬ9- lbve% ,,k&$x\vX\9C/eqp@ۜMh{XHbN&i"gZ6cIR  X{L3U#ޮҚ]Lmd4$P1Ċo1WX$!.7>g 7dzq+\Fg kՄ6ᦣm{Ԡ$F$F.7wؚ0"˒m5A +߬) ;:heѴ FOOЋn#wm\CLxW?BWH$\ EG}Q3!G7L1'ZT .o MM-q04o"5{ƛ%9+}"]Yp噤ҡu,!ѸBM)15/A'eLx'(q̟l8fp/2M|KQ(鴫T,EPcQNs_cok4+iOíy ӢIE25mPLHud롐 "+<z2/_,}X,Yاu[x@7nVt~XzT -؎d-h$@yA6ç6c(;dYQksR?-}O޵R|$c4mO"%1z˩I)=Dd:^h[I#Uo( Q1(܇B]FuaxcÛwQ Am[[w'4Uɣ@8EvԫQȘl!>G:%{ZOJFs%rjt*j 6+pjxM.ҷ9zY8Q nwk;!#)/=zU[uA>mSNlYF̼,1V9#3Wg\_38[c.,Т\ѕ{YHء0jT q+V e4$wӢl7ۇ)R.3>{ G`)!]?"]f~!`WݶˊTLl3*9e UELYAO?u4T/G\SC^閑7-d~Dhّ]hqBJ(T84q,P/]Yxrɜw2\1xdXla'3L1J\Ec# #qSdW K 5Ђ{唁5[:xܞ㙄\ܱvπ]K` Z ~8!nN=qC섟[ m^Pҷ1n_c^M9PuW0vSw͖a# Zf֚q^w=NO].wW_LE90<ؑ<6lx2R/uݑE|OpFd`+-RnZDv Iy% % lut>1*GJ0߭eJG_}:kd)CwS>fqԱ\TKQbы? 3̒&lQEA Km qk_Py05,tqBë߱@ ^ y-C ⟹6@S*Y@`ϗ)N~W1{/b{m4 ,*jdZbHA-VfI{9Ws[t_%ވǞ2?+{Ibϖn,D䐦Э40)0ە݌}@r0Pdv\=,좵y̚ئU~<`_ggd filz]oP~mpVnJɲ9ER6`K9Ww"}v=1#'[V^hv-($0Mw:P9%z&pk V#@SPpjYN$j'9ja\Еt'-wcv2u+,k=V(u7q*Hh8] :'Kg +49S1#)aNJEq~~ڕ[ZLr4#{>l_ely)>}=+\9s):7m6BZU-/ Y]A\3]"Ew}*d/-W o"Y8t {]$(q?uWڝք3H'3̾C,*k(7GĀֆʕvv 'T .=^6נûN No-s2UIH0hVg6-T*<-FK}iб/w0q-l-YEޘ(]ٷ4:_! .D/&܈kb#3ZȌ]'Ƌ@u2­{a8z#S{QL՟E3[k%|}֘^7eMC\$mXa/ҵkksD=ܲo[:>E~+gh֧!P7bϦYqtTYGH[ox|ߐ8Zlޗ['QOun C+#eYr%'+!:s*>eP*Ī󕛯${UcTO ohm ~1H`4B#a$PIumh 74g4(4)s?4W+)v}tζ~VhU3 5c|9~@紐vNfh\ܮf 4SB}Aѷ=mL\VpA;iL}=/Unx6l5ap|P!fͻTS!HO}IPƳQAwj&#fտczcx \`E 첞R8ԗzZ` 9X ّUO$VQXgIq~i+SJ> tA˄Ze=Y] HK*TiiKO2+%ItF%k ]`rF6hlb|iU@K j.SB&lGS|1wԄH3 <6’u5oJkwK!;-kPlrG×SϙUOьMHZ%dVSќ%Ko Z:LC蜛fAA(Zi싪yh >B khMgL3"^ o,f. dv~&T]My=|;T(IPƅ"[cj}GH3 bͺ6m!\#3~ DC0_4 Hff%3VaU^n٫n @BF\$/1Р&=E+uiѺ:~δKv;sV'D~/&&"ў9k[x%މ.7 T+[Q5m;J6{gdf{v-HS5{reLQm,WY?zuKhac,Lq`.sU;on&5$1 /N56E}?=ZO(Y[ =za 2J5V8K-$GvO9z?=O)œg$jfH`;qf~*=Ȥ)w} ~1N Iw+t{k~*[:X5@T5e@h!|gw݆M8ݘZ5F\ΰ .A&39$8~z¼x 8ͮzA ]4F]Dʺvm @~*edHΎys`J q![eRdbFI6bIqg܄%ꢱS`׺%#ojFi 8Bl?fO`CKc8@h/Ib0JrW4 +8;L쳦wz9&쎵.{\rpG]QnYe 6ОE#YJ .#/S:C.J3yǭa$$#"< ?~)CuB%43uꪽJ6% &˨gEГ@YZ4SI"O?Y '! \?Z9~V_Xޱ՛Pn꨹9w\6{¨ m0<}.ql۹jߩ2~5: D1M#N:ie~pٍqHKlWN!'I#T-{>bT̥v 4Ո 3W%b^ߎ﷮<7H UIR i"3O{YnqQXFKC /+DBH͎""]`_%a=&%?y jHcŝnaMHy9UtvIv@G )j- \1@f;l'«o:)C3YEKe~%>W?cM).BT;[5l'ʮQ?E':B]]ۯ%؀LK zAU@%\Vf# 'M uK Dbp7ɤv]MQP_Hb-녀' = + #ɏh+as[GZk/׾ % څ)*R՗jB4''rTHTë[C7}Z\3|@- s -^Y4Z zQIIܸGgf|'rl-VΏZ3+zFt L堹(C2E;Y9haĜ1w)bE.һ .vQD[RW\>Pu'+t&)Ӹ6gChUBͅ?c3>si8"e"{p8yo2d *sZ:[_S P #6 PoRf|Hl% ɂ湹tB^HL D=( SRNY[? JB֜$B ǯ($^Όv6=PDc~.D]h *jmF,=^m,|ۦa|0&nqj*|'DwAm+|DnXQN {Zn&NbA,N\2Yq^@:b.޽[k f3G\0pӇz;K˒2YiCBj -OkPaꙣ;v`*] ^T3J ]}g;&܊ zNfxkJ|?zL>1v-P=3Λk7QuK3$%rgNpc)$81b4.ƏE%=iUw3QTF%iE;˶S^6@T$J,Ujkq8 `, (" F i[iG?*HK{]K)6"K<屋 TZ'"mؿ5pl "V_ڇAG┏85į>pr񪖣]Ҙ-{e (}]#96pC++kSs@ ]$79Q^U<0W+.]fe!@Kw| Lq90_W#lwT7#q&`HcY_x+b:걢ዽ⯖Q+d~Gl^X* ̡iyh+%( `y1N^2Xj\~Ⴇl:]2ЋUy .+ ~d^ǔa'>R:3F"򙩡ӽ;TM iFfm"P7 ":6n~\+;V"8rh_(^UxwWٚ۬^Tz&"(C{D"a$L]]c#5tCz;]`c)6%'I"o,Z߆><-[ot/4˟Vw&oM7RtNd-&W>5S&:^|B0fi~'kd&JHl`%xɖCLC.҂G+ NvY!iDӱ $pY 0)Y9oP(>^n/-kuDYbqߵ]LL(+wxgQ,!=ڀ7mFW- ʳ8Q~Ȯ6PTs2 ](Rx1-\[ X'gd]gpgd3NBX5>~KPH R:nygCx(y2$r)Zۈu >ᰃH:udM1sT}Tj,K -i35+MSE,]QJ){ :#}X"{#kΟ+*Nl#0xNM'tmWR)D@e^ԆVA?^< q1VSkϪ .իsC;~{[t˶l`)K}x8&_VQ7Ur.srGBUl6^02RtO5l9\`dB 19QA@M9ĚS(Q<*pb#sv2$*/gNz9V1tgUX\Z@AwܴG(ﷃzeÈ9~.>)!rʽ텶{N,el>V }$4X ˚Lel{~l7,ObQd0qe`xt9CUwk9ԈF}Ux uDȨ0Pv;U+9sn-)å} UR-0UtoZr-@U$Iv/3!\wɴ~A;xcY-PNQy`0$dT]7n[D?2{ڥzu9q":/9Yu iMind߳"ZJԙqd7B2l2e2[\).6z;W^G|k* xm5ձW2 7|4 .`'NdnJՀZH1]s aY ;Ϝihoy W1($B,#ȓ xLQŒ<`W-EYu˦7YM קaz)7X֣s)r25Tϳ`KiHgguuy'ttT!@q7$]?fB]k=g֍ėgo}@UpcWg6Q2G>9$߆]:3}t/̫VgēPݽD}űE}pn&{|xm#OH >t7olgF"e{ՋFo`6{Vwj*%xӋퟆpSeynK NQ%gԽS >B O7qn ;>s_[3 ͬٲw,] f-"e HΌ,՘1F wv#Ғ9'qWvE6o`.63rcvyy(ٷ+92H@RR;kベ] {~\h_4G}&6_o:uF傥9|tE hHŬiytDқ+ 0EH(Qa27gaGn|H_jԴ;S=7fP?`o(Sֲwt+#v;}w;Q~(~{)y'sy;^A`USn|{GSmٿ U f}<MڟncсSr;`o=*툨hMj0і `QG"I}mHIa2IZr&KU: je!SAStRd&Kqt̞`]Z;)7ZYV!Y&W&g2Z&znw69/ |4d` ʙ "#]dsW,%"lKӍ]`ixS'E(T&"ޢeu#jʃY/ ~WQ_܋eJ_ PTɶIZHn_;{ MQSC=n[x@gUBtH"@;)PM].N8L[WKQM0g!bXTNΉl 2kyӖ鋺S m Qyh;֛$K:Y`r}?3x/IiX@g\Gr6{Q6C 6թ8jp./Dili|"X7v2P0ô_Ծ ͰycFi9eXYA  ;X{{!wsn,hF{AsYsg>S^3Ž>'O %slr Q/pgX(  ltFtpRbAl T@w ˴y(P'X-msI(VJ"c }UwL0]4YJV#9܄EFWwYg6Ġ~"۩8|F۩}il74'/8ӕG𱐈}0TU'-Xt~b U*Z^%J_< kGg^tRqQd< o0m1>+K]%$bzl%;C:QT8Tp.ҝO݁v~nwI=<+o;߬ew\!d}ZooMze_Ge?~yb!2EAhJz/^Lq3q*`YﲗI"0*#VtWoX6O60A:9R?WnfWߙO*f4&T< z}Z!Ez#ߑiAU%j.)'{Fko/O;<9SSGjwz|mV u EUqP1="muAukj֑uSk#dm TAi|ӨLf?sEm;g"5;0?(Ou4اzE]M:~O~j?|̊H;ݕDNw\"ɴ<s^ lM&ѽ)TYkX|mtb\΀(Bmnhf 5{waNO+@zcyUk-A,QI|}؍h+ ֤ЄjɈ) wjŴ}ẈUQNsNKX-lz %ꯙYlVۊǽ""Mdo9nĨj{ nQc%P"O+~G%̚eeg\:F,7]Ջt"M"LʛLp[r4T+DGe"#u趮AM'*& ʋ*w_F,Fa5qy*ƪi.[ff3Uhl~﮸aǎj>~aE.;'_#㑪t-X#,X9p!'fI$~dUDp`kun(v{ ׃O8W<}1j0,1OZ<mVv (:bKuM' >c dNy:K$צ.48}r Qf;1R۞'hu\Ǔr>1XY ܬ\ܒZإO D)3d>ΰt7>E>{3@=?u;D$(q51l$>y'%Qi47b"!  eaa l]rՀ2OpJ/n%F7KÚFMˆ#PMX mȩNAW&-7TכHʇJrsY~hZJŊ2ifW0\;(Mo!.')=j~jNT"W .OU+|n afH!~]y Wq\^GPp0'*ӵE TaE3DZO =uUݏ\2ٻxjQ,&;h@M |&W6dd8']:FLcw*E'9HYa}/݁3&V@zHٳQYlsdRvJН:PdN֟ˈqu5)mqQ.{"M un,;Mт,Ȝ[@?W4D Gd]{j 68JNׇep_!m{NGo]ffNK[7fcQZ#&s`}>/ngO^)I鳥brM׋l4ts :xwY/ʶ?cQU3bo3S]ޮ陖͓z,R:UZC$~7 @NRx G'1F$~rB3cVLnpVSTحN`_{t§i_ߩx T 8",luKSPk+Hh{pe[CP B iu$EuL:`3aEb\(P|A:j@nnT"(d9DFJin{6莦rVb6:ÇnRx0PꅳBdKwBg5"peb(0Mᄫ|yӘ|FVʖAw wT;:.ah!}ZW5w-xayYΛK++wel5)Fro9@%W`"6%H*;:3w ~6Ww1tK͍!]<&B뗤ibf\'^xg$xz; :3goqKfPmam(y@Luсn1pL170aK_ 'C_NGugO r-4R hDw^&y~/ڸx<2 M&T胸3C4Hghkkf!Ў\Y5/ϩy@ dVFݢ|E&SI}>lh*=85Cl +N݄;p?m"/I x7R/PnPg 2ż[_O a˛rsx雠_gl"zf'߽g 'LaPw3)ґ'1?~'c DT=*m}XWDsiM#-^="ե4|W\)Ce,ĝG͎Iw%`+}eʈfy|nu+:6';Asnרu((Jy,UC=dwRxY34CF=aE~I᧮LْYa6L.6ڇ?i[vҨwt0T̋-dX͵8xiLue-ZyxUkǟb|G nȕ1iid|" 3hx6G";P@4 mjc ULG7P.Z`VɊn?0J3Nfc<+R>kGAQRE!n ItvG:OBaA%L-Ӱ%;}Q>i \\Պcdhǚ #7s ÉI[V6GHKDoY)8Fh>A62SDEJs()הKO(-ۘ–E]֎"Ϯ)I%a\IД޸`E&]gX LL^YXp]oTQ|7)lUヨ(1*0yOVSԡrH@F/Wj BaL~~G~?Z=ײjfqK1z\a)cg^Dz}[.8MHĸDYL_dQAp<>K=;Dh= sH6t^sy$Uu80X=՗`NQ7rpvlmig #;`4]/UTW2,%i7#xqn14TR=ͫɩS'Rg z:E~U%:D1T;L;i>qPZVqAF.d_qD.Ǻ9QĖѮ 3zBLr,nl4s{HTo {F˴Kii*NQ;2=Ixvq1A-~` Z%Ncn=BY'2<ִ%4?-q%4p]wh+"\P%pCd|ؑ+VN}vsҍewk za PT:X~R\J-)r6Xm$纆߬Baz.wvtڸDZ!)^ "_Oz˅b&\: Q8M*.RDrLt}5G@(C9â0s V΍  zT-2"v_Tx>ASGls3f\mx3a_֑FipZjZtx S?cGP|\09dnF7xVw;σb07S R,m lxq8w9qXyt F^WvUPR? j?[_BBy7[t[1/=՝'Ge;&2ᕔ8LBvv:80pd(7Lp]}YL{]!UCPXqt[\߲(7mu詎5'La0uw2c"?>m+>.%l$Ӡ\H6G6&RJh$WPB4/i7qrD΋3u]}5î=@B52`dAw忚\2wswרq)HqYF^w9I,IH"/%ՍҏW=bl\Wyrn8Sly(N(K W ϰ̿},}DbFhǙI8:椎ϸؼ%fYQcdc "/_S0;B Kzd| !v91g?w wt$Xvhx\ 1uؒ!!8:[&ƶ̂dDљ.>8%bL3&3wn*OZtOw_ cdEzձovRGYΦ]OӃ | :w;eڔ7F2ϪP tB/HX7 k/xND_7JA% äx$ t#]Xb rjn%gNQyo;' g2ďa4}jgir)^pL:|Rjh %4Һ,}}6KH2:YpZ-M#`25ď+$;Q(7AVhVvɅg < =K@ #NNGɏ-ҙb$:~}xO% LJIRlt/ūTt|XG#)t8~м%xG5Wԗ՛ڈO7E|;ԓ⌹㶡%)5 LBu `%:}^c4.sfYU[S~)l90FȠL QX&'N R(,[G͸gw~l \c ӯ{Cړm;긑5UC}n e|E:>>͒^~EkdJį+.e}IbUeY oiʩƇQqpJ>uVǘ(U5;S\`|Z!Lhݻ~(߷F}$'Vs!Vtr iTI0g#c\?8-uw"z9S%lyWX2fԠف8M oL'Nw~Bj_Pޭ.}zT4w ]a-iY`U ʏ 1e]ƛ{ƍڵ[ vh^8tݡi(3Q)QV8oȊz/x'@V0x+;;]LƝ<7Ý.E[FkɵCCU9^mh1qndO-Ћ,M8p[*xbD{u jab%p|eD9 jMSqRzx mbTm5n%Sn lnhA:Zh A敧EPcȝ^DCC"e݀;r$q̓tkCC1{t8:PS#xQ;)p ŷB+HU?@ǖ{GS}ԁ> VnxJ~j w8ny'T@Ma@ٷ5î]>XC:kuOS[Qhn/Y_`@ BmM|eAŶ1pv2殡 f!ޞ[ˋ L]wOvin>J_X '_m>~XIf!׬+}(`\eȲX%+6&2~(z{aȽm~ 4R6  mi##0+ Ͷ}9KXu%g$ J$ feT,M9\ AO,lZU>xq[pJEwbXOqPauvO$PMFeSMt_ʰ"wH_ bdE|M\c FC/1^e|Sa(njb}GbcLA,;brz`|żllEͦ _0"[aEqlx ʐ#ck]R7iL DŽQwoDThUwো537%+e6٣EÏ#d>+')O`z83JвK6Ij|.`#p1H]#,ADṠv{#6ǥjrme[Tj V~~ +iCoiX[c<6j ު*UМpMUW'+?O&.0z ɴ<(K!Xq5^5?+pV>4G1>=w\5vJrj@胫W<[ræ BD\nkmɂߊ)wG n^P²4RǦ/_rYxbV܌xOB\?OHv;8YIu&O-qo!d|ue[jQ.m휱K*,M4(Y[#J}gWaNcFR9*Gѓx,$% ~Yo傶 qԮsưv98 tZy&7sjM5҂l$nd BaskZE'6 )ZxcQN6F,`:_F[1D0<}n1i>g(|SU %̼*1˛MbO }+8Rȁ4\grt-\WS ay /TtqY-3UE"fYm28܈zOAKLʐoL?_('Zg" /b_b+A{2DD7 Ϗ*D3۷ƫCj:ԯW?f Awkj.Zrc"vF;a9h FP]4d <)'lTKR cx22*Gc ʪ=a]wmBivY-z}`ٷ{QINur{n?.@ԑڎO%W{]R~ ˝n Vr[[7|w*8o"FQV"h0#7!w^*t Ci)PL'#*j(R6q"VΕ`͈FdQL|,)ӈ@|W 8`Qv_v"S]4]KWM1bbt1ӎSɞ3F'2Eo- ^VqZ+y1dugd}*%1_TsAa? kI/JlȣOdrHëD 3rtL_>}ujG~Lpok*sNx|褜 {ڀ/i DOuVa/Gg44X[8]nA;2,0xرOχWN-zӲzT};nCR Kr MR/5!7RX}V7S<ƣNz9ȕ`zCl4R>?~, N@?' :󪉇|nJȹ&8J>ђcUq|֯)_'^2UjL=L0BK 8u z96z :*k4\uTwaEJdVBf@fe>2$KGB pTߐ |j[)2w aY/ 0%\B'i(}Ңֺ:=̼S.9WWR V$OrH=a04thAPErx! ;~گ>.$)g]Hҫkv/?WU_&MR JMg sϷ?9 No‰,DWK5 \9Cʎ̳0 v{&3NzMvߞI Sw,-ʚ;ȊAwy%)> >_#Jne*>X}y 8haRB;gdc ޷ܨ,Woվ3a8k{1^'*h쉪eiâ |M79:_!"I^ P͹6;_{K3C`6K:cKe[(C]4" 0 ' ursF ;-~cr:/NS=r[u$.9@oshF'KP˂r2%T F%yME' T sV{k%~|0F@hR=\.zU:8$t,b9[\lȈZ 7*s Y2~9#cK|A}}4>ҝD31d]jWEߗ`D;Er ) -=^SG:77CE9d( Xj?-Dt[0r%:$%}]:YFJ${ ۛdu.*{)Ckw(=C aSKmKHp?()k@QƼF` fQLF`gҋߺ6RY3Uɇ3 RIhD+DAڡCDTAzWK; z=&dᄁN- (K%P@v މxL+v* ︚'[IGȯF?ފ*6&Ru?JСD'^1l* djwEcg3_xN1)Aڢ@_K4zf`YJh6-#J>OYЅ4؀-<B$㚔&7BSy\Z_)O"JdDS gVQ- cw-">zeQ0XtF-!ϱh@#SMC{y G]Gү4*lñNαkcG0;7&*쏵/#Ij:vu+{c?>,|0fw*^\z[z5*OY{\o5Tl Nb0n`"b'1S3F3V$d]BtLe4ka^s3gG]1^K(H8936AϼAFeJײf\)9dGy:ڦFIOF6mK]=VMIIF)JiZOYzQ2li[L ͣAD{ T8~ n5^[=n9% lAJ #{\Ar /N¦x\4ĵs{9Z tFQ3 T)k$jdYq 0R~]6f Vv'U\{YZ<9(30&4=hQ1.븥M?g )*Lg&H4 FMV_jtP1=ws!dB3xВY*!-IZ_ϒ n %(amIs:$| sWb ~szT)TL؄@)MƬ-aB2+KdixDƆݒ[5Ugr!|2sLfNp])Q/ ;+öմOK| ԃ l pD3 'yj4O xFɩe}HaBMTAHTpUk1ʢ4ڪ"p?ckkƫ/2 c+L jO}.k {.hVHλbZqn6ٷYqlɍ[u%יfgJ0!ГaZgt~^D ٰ*+ęX|<|"U"-<̟pnλX[4c<<ӷ讪&}$K]s.#t{?^9r@׈.F7cSkA)$17OvH"P%? cg!ٷlްT~KˢIE) o5%$#T^spAKV+c_kal;f-b<8t.*9 :$W F=1`<+ނ2Ե4+W7 ;m `F *8ixzh3|2u~]qZ}C/$rNWR@Fw+A/5ޕ:C8r 6Sx黆MȔbF;޻i ЊQ΢3J)^9~@( D; Rpk0[ `ழC'l5N%rf}bFfrH%pMY :EXAk|Is຾2feq]ָkz4GKNY?"zp"-׳dp_ޝoiݜ۾r Uu?Hykr 5[ o0 RL5B|Fؾ'0$u1qXḩf&QOuD q(5@_ih.vC\1v;@x뎑zCT6I:,&1;UEipq Sn3=/(FbUc_ ;8مڜv-@1#ޅ1NX$8Q5nq2c)C=AjkL#2#m m+h]= Iilh]g+9ucF 3~__6Tɓܨqvpbt9sw͌O9>t6 ?|?HbuRxFʀ%#' wĪl340;G-?c<gӥ7Vp2>e =N2dM &v V~Tk, 1~km1?Պ-1-7cr:nf;|yH+-8Gw{ p+}ia--X-RR pAמŁ1,Rqy'$4ZɄsJ(%ڬ2g#($* %_Сc sώલۦVrC.(zVS<'q>p=艂f.-z(JG&@:5ۗg1ޥh7ʧ'kj0 *]ڋH$-YEجyQ^ڇYaTrOз|n  Fj2c0#üT܎8CgFҝH"ݵ(4=M'1gsq`@: nz9Z+PPn Wkl>PI>M$-#$.oV kl0F%,;Wm֑**sq]d50{_hdKni`;k^ ĩdw@-zAC[-LO7ާ Ht b ꆷl%;`(7~Ex7(@)=y,p| Lr. s:%SO)9F7q lBfI$\h:4C$JsEIqC9Ƀ1 ;0Er^K'l@{@Vr$E+l(l W,3)f9-j-Pt/w<# &w`vm*(?G* hh|q5OS7d>wNHۓU4 q3CrP%jK[6wVlpyox(?;e5RZ[Ax#6J3Heq+?Cl1*b{L_mM[igKy6%jPI#3QHN I%av (eMl*=*>T 2Zv&崋JFf`BYe*G yث8!AU[@,V`3Te>Z?ޞpa'K6> Yâb(3ݔubfb3 J+Fm%!W:VBr)QDzrg=lOXn=pL![{>PRUe.TM(rhY?8j-",lI{ނA_.`*p,Qԡ0~m$3t}Tuu=4gq?tO4vLVctI+֛LބeqJS]?#;\q0?ߒ]!hI]=GS)eg\[pl!o'J9 _fC9h|d9j }ė^Q_6Zivc\},E?M,^}INY}xC3Y/-U-b<ݿo_0@ojSo9~f7pR(Kf *Y5M/Lf/Xm p*›B̑1YKV ^u5#&hJbHP"Avƪ[},M>pP#{2F`-QK$9TuG& uG^Y]`ן %yGqŠZ̚m'C}))r}`_Xf;|@GkU|iCyPB]&-e+Y)*m`H sYSp_qWqep( YR℁[)^VjJEU=MK": |,-R*>W`sg N!Z͍˰QoO "}bʹ O Eњy|S CcnT33%ޤz`hCʤdL" $w&j X@]XM5U/ap+z9`OT%g5"[=Prt1C1:s"X6Hkala mV7BiƑ7?V~) {!v xAPy4LWbrH̰Xq /_CmicF/YX:hXFzXדT"wLDKX"R#BH '̥iq]nΦ$ę(*"ijD1_)Z!4w$WPtNvIgHE⋺g5z"tgNO^uG(OgXGmXfp6,]+Ba)" hp|ܷ6 E34mCRUsXG 0ogEa OpVbVQ"Q]Zu @S%h{"kbPBOf S~E=>5,rr 69%\UF sHEZK4XHIƵ"4,x{v*tsw*09_>$7r1I̭ 1̥x7Q" hԭhs$5MLV-K9txF 2N*,Ɗ@N^eG>`i3pr09Co}$f{$pm޺uG "ًp)a>%NT}|\}RFNeU7iE!JF94e[U9[-:\-LI^pyQ2^ P{ \kkc4l(w f]nf>5sgXl-(GP/}Ϸ<P7O+ OHuDqn+% ᎈ8K9- H2a A>_ lf里{r3WX(n=ׂR0E!+^<{<n:~d ejb5|OetzDWapeE'/ją͜`lTqyJcY8v }TKh^Lvނ)7vH.2m$ \t[&/_y7\ ,эCF D韠 ,]̈́zyƬX!᢯ 74k}%Y}OΖfaAЌȯikzT]uY. GJCĐsi}8)j+zEOLwJn'OrAhjDY>I%>@sALxp,lZ-7YʈVl nl EVA\`.Lo${l} fRDfCo}LVvgZRhz Y~Kb|:l~᫊C?(=6Úk6 sWoN98TD5'v cu_N!N4v*L+662mZUMUL[3+4ꅄ0z@y-ӉUgTv +|%GԡyU'@= +> w@1XdO~o./:S~ Vꕽ-eそ}[j=q7F>U^Izl<.@q C>~%_ z{?x$ NJ^gMxjTF xF]r6jV<=I酥m$1OAu{iVsAś18@i)RsLVg¢C2pһ1`^qP<֗ob(o"ђST->灖ْ11Y4"n:MڳZIo69Kσv٠@N ׶Nup`IOdcόFy)¥ѝ 3"B59bwzb]Rp4俌~uQYe`@ũnQ #fʼ/Ųdr'p\DH]F\$5$B*OnOXRMVU߻dnhi۔UH 1!Gm :Fm7`vxrWI@ 1W-I02寭Np8#vj;4oX>FM/˿ agl1K䣻'Sd؉.-Qu)粠훂.Npy%2 񁻒6+:+rcɅOl_o}'\SS%UWy]AO`\y=SMDw.of0𓱏B-`Lw4W];ط2VԓiFe98t`-U74"@@i g䳒0Zj)2: :xhî#_۩hɇ7 "_1#G|Tqcetx)ĕ<Ȫ!~zy96==pr- $%\h&-i7fL9&9x%+f kW~](##(hKIKn]m䭯wF Pq- ݌U4% S }-g*-x;|ȇ %B_e0W"ˤvg_k$En5,'9REEq(} nrJ z뎍Y6NBĆQm3DͺogGWpytwUv &.:->~Uq4U$ִ .T*y5^оn}%3JggXxiֵs7*0.<)r%Hy$bF*F1|kLj ~LxJ[ށ@|v\X~; bSeJ-v+Ȩ\MLL^?QVIl(* Muc+ /~8Jj|OHYy7`Lk53CflEufюiu.>#.p{;Wޝdڋ LتX Y]y*,Sb_[GǗH̏x7ߜ{IOl|=|/Dks.D&3IRՏl Yh'QKRjf$:HVbw6A~枇V[33Fa4..%'w*mmm;!j "c5Zh,FP/x{̃ZFT(˯s|XV!Tx/^<gŘnϊ,07"ĐGP x*_W9==} p틽R>˓ȋ'9єԿ,ဌ*IbIW.R!v8۟刍fX\BϝwMoN^}б$0*yriF*G޾> WvmG_.{/s0^~ 2!?M.Hnt~?{كYyb]_<[*&hر,_hrT9޺G2U= z u s9OoJkЫ"h*eB:$0ѤDQ8 V#g0>'(vLDe#I%O֬ F#]6E 'd?bϪa(RH( #bud`༘NEA}Al.d8:&Rk[%:Ht↼m%D-R|IXl~ H3*"bTZ~Nt{IH"M>uԱr{nk&KfpG!^Ԃ`Ciwb|sS «ϚST7sNA]tʈ9YM쒈RdQfԂD ^Y$">YX˸xsyut_xR3L=_)1pE(R2y1A@c,? p /t5vUg[+cNl ,@&RfM?{_D2Li[Q32Q7PB1]zQx * %X*@UV`[o+AnSfEo(emo_ߥu}1#ahU[!e]AĄR H<5Ċ[x$"v,bFU8|(@LbrtAV9 >D7lв/X_AOD$b(cV6 vJ F͡w~I?$|>j?P 9\R$wo+WL" Y]m>+hC~>GA6+MdXo>WԚum7=:?:˫Sm߼}Wߜ}DyIeЊ‡WG?_sY=̧Fy@/5^v͆`ctmM(RDSAgK#5NfZpo#5`?c.Zy>uA\W|.Nr ^~NALTG,%ʪ,r+ p^gUr- 'k!,Miy1 ৙׎Lp>8Nl|=Z.6}Kgx84Ri_e+!wQi$0[=~tqzl<ʳAHgQ-XNV2k&CunRxZ/ * 4@*dP `CC8w0@3;.aX0\'fMe!< +4͵E/@vq\2 'wׇ9qhп,*5˝_ՍQ6vz ߛQܮ+-aWX&ظ.]bl[L{?\-^[-]o %La2}d@ D ʹLZ#نd*A?n6u%|1Up~4UǪNDJ\\,';Z. X-)BIlЪo?;VF/E]|U}HD\佖JN ߋZE.؍Q"ݙ*T3yH2ژrj⭆iܑ!=''#j"ƛTY~NX^ &F.2|ϸ !3G٘$BQD뛠TS!t]TF$.$=֑x1Ó; 6ky=wܵsxϬ2LڒykD݃cNGȱBfܤRl-^ _ADGY.:PVx;^g?Y-e,y|FN 0 KhV&%턧@'N 6!~Kg#/ڞPP%G7n6S\h}WJ0YZYd^g̴$^.NIKMN^=۷gV2g UQ"dbgZ~"7FPTJA J0i6{tTpZ1Q󅱂R(vϤ M}}r V\j}@kJFVd38->!< tdp؛6ڷAdb|ՔWB7.Ij\3/n"<()9)@a)BˑVf$*=tXV|%9=`রgw8HT&۬HW{ů6{Vt $@0rakJuT6:06}'` w7u͋}ko2JlC(.nVKH pfԓpT#A`j-$Z<-Dm7KVnLܪrmvੑ? f >ïg+1㵁WABMjʳ* t Sjʇ:`yxgO.b8HpKB1`9JС yi)rܿԍ) D a}m i $$|x^Io@"ˈ*Ciָ)]ahs5,Ey}fQB]!ĨihnVihJFD^ %) ~hLG̶'Lt\xft0TP= ܞ/VO@xH.7) GK[K2:-;'u21ngϤWX́ouqM6 8´p93'!dĀnu{5p `ŲjaL].7.M{iY?)=<{^oF~zO}j2ͽ7*;朓u{ַ]_fu&$ )^p=B,s0WHF#f[7•gT'Ў'vH{z2͞jQHvbT<5H+OOW㪠ҳ!C؄mAY ? fi 0j' $ro$"ۼdrT`eZsZ;kZYxjzӣ@L&%d^h+nyX6lc#|Wv$jnuRl *3xSԺM`u\EgD)|AFw%'sY+x.U@8"眬ӇmzGd>OuBv j'Y oz9;`$? ʻK[-&^sֻ҃:"  @˃k2zLildHi|Lj|bns_ ?+@mNvk[x}zK՛IDZgX3}թ"q"u-*:a)^k1 } \4?td _DJʉ"-@\!7jKPJ,&qQ$/|sqK ,_3hF&W0fJ'ꓼ:u/>ևAMJ9\E Vc v[L梴ݓrVH$~K(ܴKEGB>,̜brqE]}XMUNcR8A.$B=N}#PE]3cE~:^_#3-(sBԯt+j;1TR>R1űq oxzm>xp9j* :KcA?VпxeZ8W9w|4ԑǛn/2b0/‘%ΊWE$X\ŭkpPu\Gs9xiΫ r 0;`oK ?m-I4uGV9 BBj(܈ v$zSjO<7= )-IkG,Ĭ%8jPj'#+"԰ Uv@0'|ɴ>@:;4u8iG;K\LyKFG5+m]@ju) G;䠅p=lQY*/0$F1p*`@JQlrm-Ǚ?S,k,kZRivC Uڕ6US ]`M$yawIi:gy#%><{${av0wǘ =8= %kO+*|e$ٌЊ&ylĉs7!evzx[ÉbO>lNY[v!Үb(/[ti~% l 3|k:hXe7=ɑ+D*%g|T6RY7J$5E=m~| 6K*Y/Ŀ/*lk&;lI&פIJ"մi Y:\=t% "/?>Ӓ˷o$܉n2sz^TyQN' ;wZg7`5'z%^=٩G5;RA8YL*M6#3.8 ;B Y-7!Ė6u|γZsxJ_d UVj).F5 c[Mftu}~x~T=rKq\S6@hף#!oD70FX oXU4({ihLUE4l mV蘝%Ը3ؖFckaǎ3HH3I#$MmtXxN륃9 8;䃏Qd;bcH#id' sxSDMqz!.Z3{z#Ժ%/HڔUPVۙ:eՀ'9_HHm=~4xbF_g@/[93 X0i G<19u,BCׁj\0 iwSJWƈMQv 38mu#UMD) PߍkۼAnk׆H9\~'>gXR_@s ᜴R&+6_\\T 3^6yvFт$o:!Lr e) sn@48q߶Z~D M8YhcԱRAW',㑈"ae$[~ pT؇*Fb*LHYDi4pc@GmZ&g2i\4]5y(zvKfG+:B8NFOO?Fb%* Ο_ޏQƁfg'Z3dV4=\ˤ̬kk1&oI3O1xj7EfqQ랻&:slj9(B_c4p< >oS[0qt3]QMgtM$٤ktW_qTF(FIWQa;yݔDOw~1}Cx{o,[H{z&^(x8ݿ?&D,} qV5MRgH.F`]G!w.1}Cg6˴\Ϡ`O ||b_6Oچ7^xɇ|eg n cPM]/0I=ⲻK˄eC*Ŵ*?.;"^viTp(&Pi3nQSnʔ~ɚx׶Ry6>D#OʵnҨj4Ĩ_RsKeM[u0}~y>kߝV-:<=W=>V/ahkj]&rVk8lLֵ lnduc1#s> 6[>K`Bʔ;e^GBtN/sTs V<˪4LkXX yYF]s(nd*7\Ox%,uݐoo,aɜc& n|sisz=W+R݅Puc?+'qoPc>bPH'fu_O.e&Uq4[eHui%d.BZfLy٪tI=5Qj}{tvO2kQ֗5*Wz[$4pN5Z&tIM\_]][֤@_qM=PW[pNqp@˼xxY:,ԷON?;8f'B[o ɵ _-3S,TU* )φj"{bm huY 6#7}{}s;O#dɀ,(NYY:+zAK_WwU 0u~ļc$pǠhc4k&_a'Fʃ t2\GtU\`H(b"QfY Z'6A^x'Lt~Oe7 D0%jgK 1V '9VlJ**%Ջޢ5*6̡}t1Ym) O#{-׬m&_嚊= \GCB勉u\^3a slV&FM rwǵ" ʡ@6b bWK_a5Yq*^LX@:ւu'0ۚG "Eq/"V0h-^E1{wDw&=lY$7 rj 4Wcj ZQu3M2 = D̩Z"/9cKC~?4GP`mTf b0a.B@]Еh &QVr"?5~Bz11ϥAD@n"^L?r}'ċ#2—{1 MF}]ȫꝠ-9yȀ47 "Tu➅ƱM@`)# "IKxo{1-Bg.js;nPot=I9;A+T ;ԯO9wȚULPbK=.j1Z+S1un%9(՛LM=/tj,ɝUNmƢG9X "Dui-oYўuzc~cH<ޝ9k>]ZH/쇃vZ[ z7?LslH'<+(=BSC])` DXcռ'ꭀ/W'+&-FoHxlA/0kmGH[&W瓓n;Sbj"\.0.yGuոIRH4E,kcYh;0gMPSKҸL~>j׭S,zE/vDZE6ht:F3Q  ra7<9ի.=_ 0P%B=]f (<`JSfR 7kū ,q߈|p%<49<@<\XKFQd|5iNpe)9a MCy}^Lj cY@tR BD8JV9BvSP]!bB|@B)I`Ksp=hk5Î,.D!+tjfZ7.6߈v=7e2xqDXK@t^lE!@B,dՃYv2_vf?I}<Hv3zWV8 9@)T5U5Gf,ZIj9>2syzH CcxAt'j" lFQ%ܴqz)[z q$==FטeI[.$X $& 9g"޽4pF6J>(!uSGu-.^[t:Hb zi_rarH9r#)cv8_ciRn9Z6)s:i4r.M) ŕZLEswA^f붇K ;V9 XHlX]rZj_U'wwZ01{LEu/''L HRjW^2̭'MU z ^ Fv3Xε2^q;T-G.(HD!k fʢ_ANܥt ,y;?(;5Ұr;*HG]1ӯ? cukJ H~/&W+jR7ݿJRR$ce6c0+uV? *v2ˑXro)z6NKnH\R4:&8j6Ο rwLdyqq5_]Zq\U&u bt'7on.Oޗ%~ԟ92{XD+4y1fz o<S>F#"xr-j 7t~#aـTb_zvj@IGA|4.juGoH[>r@}ci߳tPXja~k:q 9:`,4&J@ 2"h/HӢnAOЬ- Nyvδ1ab#&bf3qT ~ۤRE4 wf.`< Q//(`U}*+VI y2K钤={L:tT21, aDlh'pvΫA٪ БڹBǽ0125VR4p?t; AOE6tiZ  )BWv5kI>J !:v7I%vq* !  )CKgw 3|[3Xc&- k]WEC1b d}B,+7.\֡iWP$uk+s6S*ڒ:Xv@V CoH|Ǭ³'ZC4n=Vmޗ)DPt\VnEi%`n?<$Ǭ .S65l$)"H9  frtU*ėmzAsc<[nTf,:2U|RQF;GN%-g)VDFLLJl}ؔH'*eV4M<9#}DO>ETu s^Ang6$->$sHE|l*%n3\kJ0B=f8u'dn:#n7GM: #k ?q? ß9NQ Rt6_tH_4-`VyQZDt`۫=/^ژ=ipo θ̙$AηF\s*ܷD̦'DB,ymIT$e+ՏyT;E^04BVWo\{070701000000b1000081a40000000000000000000000015d5ea2d400001e6c000000000000000000000000000000000000002400000000./usr/share/man/man8/ovs-dpctl.8.gzVI$3`Ld{M^FpW6KtOy]~E+,Y_[I=m/%.wTfS~$H%9}u!gwff|]'J4yÔ^*SoQ7œ0[h@bW v/(mqf0 ?TZZ/o5b`Gc] 4v+y/ThŲ Uq շ'b;[]N nq ,RBuv"=W݊ Wk^A K@\1]֯߼]ױ\Uj|xg=uKtѥDǶ(a`yPqpj N;~Fɪ(<,@Oo,nY1?|Jڛ%Y ݲLcK2,7q7!uq[D{4tBT~uO  86E! ,Խ? } >Ev ^z-8HB/]3WX&i R4w;" |jNpks5߂F#V3f猜A ϊ&E޲C.Y=3Ȥ3HA*1hDH[̓Q&:yNlod6sHEeմn^EWIJh:û.`D.ݨ?T& WWZYV9*wl4p %GD%QĢ ]fQ' j1,A] Ҭd 8G6V NUGJv f$SaSífʎ⥹G+H6xni5˳I5-ldh=Nˍzh+)h&E@۬C}J#o(14Dl5ݫ81[ {1>;Ӭ.AAa%~n%uL$ aRnЈZ@i:A'/޷‘7&_${ "X֍T7; K.Cؔp&g[buv݋'1hWyY$o̠l x[f;O醽XX^Ɲ-40)u4h^kmx6$CpA((QoIAƉwQ@]D1iT!ObFye٢Yjf~c^H=Ñ_wKIk̷{ёeGYJ,1v|7ob!t0}*mev0˼0%Ia|Y0>l5$aiMM5^9|4<8dՒEYL0E50ٮ"5]b:+ ?VɓDd6vURu9ҋx+J~[LhfÇG&DXES/kJcڋ'^!AFrx7 \uNہm] 6vM,[T g,o o4g )6@AMT{ـJv;xi~x*5}wLnQM(SvawZV}aӒgwi/R74 |=e/ lϒl)U4ʦ%}`$yeva?Ď=(EJVO܂xO=kV r* *R`ȰxE\+E_>'_o)Kc!ޱ7tEBqw2% 1x@EK)mIs:SGY @T9.axd`;&:겔cR(!ie@1bnh[B u];޿2 _]lcd u8%ItJmW?$=xH ]YfLvEbJIXv|XcA6~&Ecm4{.Z[gwryx>pY%#-(D߾7uH Pn%qQ5]Z"Ӡhu[NÔBC,XczOímTv,Y MK +=f~g ̚ {h1Zju2Z'ThfuִD:^ |0ULk$FKj'f[q0QE"bf-TQas@]璤ɩJhaQA`؊b}XwvBQKFBiIY|?df9X2=.яi""{:|^%9gտ7&z%~H YN%U&v)tc&f+Oy(7^d=1 8幽 o$}rGؓ!=#)F0+XU$3=#Z;XYQBS`ӞO`Xb)k bD& kL n&`m+h8O]qv=[<%^zLk(C᪔ (2'*M0W{g(\'P Ȁ"_VQhȣ\ yK8cc,[|FuQK ] nsLN*?&gAkN|ߨ]+P{a;$,9͉KI{d씁9umYSO4؛U̲ Dl/`r~mRѩFQOWuio> ˳$}~TTû lp\3Hvs ҪED}funSuqdG0F TN@(lkNOA%i6n*81; I6 9Oa^LLk_W%e_Km%[ẓrr ;*L]Ѕo@aT:_=,6 /zI[Ud)lB$EE; R8G.h ஭VbsH%m Yʫ6}'hm#S:bENv4)!߿=y$c`1V_b ~*Mk UYaTtGpV5W%46]p5/o= oHM^%&2-O2x (IHd\KAyv|OwhAIp< :c.{?/&xNOuBŭtoء' )HmGα]kdMV S9J %qʿ?+ANJz!^ή[њȰf0XX5y>$g=;aEKzW>sp>GѝKmE[zˣl+43\'~G![@̲"q*syt:átu8t81@\N6-d^G֣CѺ}b9EaP8k0 EEabIH6 w+<{Lj}T{mhS?LvHf\es\k;Y=>%;+%妏G}98۷Zj`?HizC OP Y_aY{#zCޒ|W^8d H:9XV"'+=O'OW]B*AeP10F]@+$HYl5Ah&UжyeS$ؓ*OU-B-\8HZ[=7&[_3Xubi\nÃnG N) {LFx$XS y>r56TQSM,\6zlsL>Lޙyٛ[y(."+z=_5fLAD<7Ĺ/E͒zH@tOvρ.HaI׸^Mɦ80swYۘ7HfYqek&.+t)"e! GPľ|L* {lU0jFƉঠ P֌߇IcȈ"͢kUJÅ"_6 (E үRwi7\ C,2ai yQntⒸ1pP~Ń/s=5tJ)9Q!GHzi`<9GsBkGΈlHpڷ6dCi Ф^fðqS% DOAD7!UrAa t_X\N`EYk79Ui! p`2V(s0mp8/ep̫Xpφ/&b `<7+! whHM V dus z*fQdA6u0NIY%ڝaD(8^@~A$oV7gnۚ#h(iB`9ϋfܡ f Pt`MJ>.VcʭDĨ9Ԋ.x}Sr%[` g(6Gi?E@gڴ_É(9Wk\%d;$$e|43RgP`ϸGײ6H1 ,\5;^k  _¡%AԬb'-v8b fbĞ@af֨ψ?esxh5ZQ.UcH#I/X~(VD:2 b RQ.D,E:0tr\p0' zl+uI3rVxLCxhkZQsOq'Dwމŵ} apׇO.{t3K1*imBi\+TEsc*XlcWA>3jpPSVPA]#!\Bhp8o{8"s" U`qD/(7kv6ZA\l"P'&]♤n@ u"v{9ZpAA:Ng th]e2AʜRdhyMŅNcׂ5 y٫8/`zp Ta$Z!XLZ?ڊ1mE8r%=8D*F" WqN[+Eo]oࡄ# 50ʉhv$umkcPy5ܠmi.P2DU˰6D@"6 I! m/oӑrAuՒ [GF(7bE }F<>"47kCHh5ӤgM {T #wVtH[s-3O?<Aw,(vHec0o-xJ8mFg,X jSJ4Ĥߨ*oҸŌ/R*-KuNy4';qhx!2Dެ1>'^Ie<6%%n-Y4w惓Q=X`d $]KX?!LCQd 3c]'PnǮ˛%l)M$n YN)&(ee^0T$;) 1XC# n$zIb JzV_3涋0j4U>JDw%0F-8NUE]!r?=uXh'k {Ҭ^N\,-% qmֈRc5H9ZjɁm K sqrPt.3oЬI'Yvm-c{0@_9'>Д{3'F}veJt*G-<~BCqwUWc nO ,9 OrQ)Cq]NvRC0h[B7ʶ6Lc*,,~1.wVbcfpq.9wc.2sFD!0& 30I !(be4HA捻H~ tz.ӋV>gmטg69P[Fj1,V}q<C#}owg7 M:y$IF4٬xuTsS(pg`j0Մ ˕ 5.u9m\JTqӷMTC r^ƻZ?Q R!Z@gکi*b j9­!H~YP䇒4{@n ڕm}(KBcmeBɏM674ɍW[$y:*jY:b"Co8BbKsʖQVKgg'2bOU\WJaF!TF W$x#6G5鯍ƢL,6慇FKfϝeSbLr^V(jZf&?e)1{9pؼ]$I֐SX-\h$hٔ/#`)`I$z?>cQ morGF`PqS=@!Qb*CK+A"n$VbגoL)>aF܍.]/?x=3՞a롮(x ;R*WV Y| B] a !"&7fA_BX\^{# 8$+V{~ CJVkRØ'O\Ưm.!H-E0 w|.u#XQ:IӨҴ23ͪm"7?-jDj /UvoEP 9&[G6p;d9#U8&I!ٷgJJ ASb&~#b{i~q@_0caڧXŎ(cQ(\?~kD"56~k5.*ʹwvv̝G9ܫۣܻ"|ȑ8\L >GruhKzQ2?VL/H iGȄ"d8Ὂx nDDUoO|[T*]bxu5YGob3PUj%"]j4WFܥb]WLj[ oҮ~ؔFZR BpȢ(|EcE5^ FQ3b2Ѓݗ5Ky.n%0]a0&EAr4ȅ̕䉒=JQ_V3y_Ly=L)}Tp'~/)I@&G]kk ?cOaYߘe@c?oh54SE1|%oK"aD:#K8mswrconߑG ]T9_Chz2ˈZfM+/E߫me.yVR@gUV"ׄH<Gߣ(>QsR2ThJ}tz@jw?~u}SaѰsEI"t;,u(KihZc~H^0@X׌D"aZ_|-w8;biɠ(900P 9 D~P%n9:"AT(1u. }HR7LRK{axٯ_e!Ǭ}Ñ}׊ba)Ha^ Ȉ08$Rw>_%I4\!hOQb@HFO\JUީDf)6$SrSRPBҪ*M57طL.m ;_Y)70Zrr+rUSH5A^f"D[iѣIMy@)7Samp(5W:g=< lWGǝdX5*L'p g;rP#<9ro6(9zNAxHM\#*B9gʓ su=s'Zl[jM%9o?Ϡ_ϝ֏+_ cptWU6ѴhUZ{֣$2 ~c @plNwHDxGRA^!o+TJո3Jz,(gsX2&Pěpg@r˰ۜs]kFz[H`bo>Gd%Kg{g٩7!6¢zsIeISwF&KE5n*<Ѷ=Yq|[߁58B!Knr "B*gN458@^ͿH;'67[ˌ̑ T1$ܫ!?>uJ;M0Z+)A;5E9ޢAf\ "4-6I^/f,h"qn[gʩ=d6T,tMRWV޾HT;@?]/l.Q%0`h|8~QX(;:`]G-˪b f)( o(oVf}_`_xoiC;f$ wx3uNm\T7O`|L0 =h/l\H&i,:čPnSh^ix4뗈.LLX6,ghIM2MF)[,zi}!9"JK#ZշWAڈra" $ ~ ؆@>4[mzr1QI_P[Kst}"Lq ˃Yq v 4ӆR46aP9я \ PB׷Em~i`’ D Rf_ Y0q`QP ƞ(^yTX1袿jFs"g\܊e՗IZy=8u4`R 3|Oͻl޲eU>hȑsiSpkӆMݪrYl b\6mXz3\T`ZC \'tD `-tP)2 +YE<>\V7(o4ƈ%fϚT@y))~x֔> lS޿Jt[RJqL!H dhA>zaf2!P?o4v!Ywt@j J*a9G@q#5-f'OT*dlv>!֔Lsp-pɼbt bӰx6o>DZf)E> my0dmKp>BUn&[hc}ao}JZ wN8#F(<8P"+@$P}EŨk .~kaS bYqA6.XnIqYࠀ(7tHozBEQ: ZV1S]<ʂtd \SRjzm޳tfp1?vJå DF>E KIbfbk|9F}`ǸZ)8Q)˖Q'Fs9=Ϊf#2^,3Xă7\?Ʃ Bq[򷲜y%h R0bx9ZͪnKe^ 8PNlS_FTϖHRі;t1>HssKȹ*xYBܵu09զ$QR4ML&ЀV` rߒNn1өEH14aj '.ZD>>g ϟQޘ"w{h6R&MFʱPx`Wt`_"ib@rnoR{T>V)c&M U4 ++(^EڈMb~YBFRh:LL^'6 w#ϦVZ ^-ct.^+I v[kKLb=H9F(@ͲflإqcN xt=٠ )@ϓ;El"UIOHH$H) _  V 3pz:q= +$.P̗AﱒȾq:C"b_ I` IqL#z^`4+YcXgif\M(˓b-)ިXG\ySF0q#@EI n8՜~4їS:ƞqLz)OG\իq%~i~&lN8pVj dC ":0,=YIdaˡڰ҅S ?+ېAZ$cBNkfFr i* \ ]?n :pG;$)T">sA["T-Ԩyr{,puzBgK4tZ>#)& qӖ~ ȁ>pl4Bw6rp5B6pߘ:HC)~Jԗ AbK#h*=; Qgo 7ҏ'%?WR5I/" uEanC Pr/ Kt7x5ۋ3v%/|Sۘ*,26E:m,0s:TSa1P Bm2#en/>:cNO٧矑G>,ʾ#hxudI/Ij>6#1=gQ~,LȊe|"hZjoսW`l ]5G\QMi+ckMtfrKmCLlZdBX(ku2(ܰTi|{Q=1 U2Κbgl G;V W#NwvhM^O,C.D \½LZiR\=q56>*⭢5Gx.|/"gD[s_NBp>,n hێ)|![:UZ%-%ECh2YWyy:ج idcE͢w~1 …8Z{t@ <eHn i; *C|9a q|-#(9~D_H Íoj^8tō<7x/f{mym 7FuǺ2d{q q $!n6jhR 2.:XۼRE i@"Ь-Jd@6N`xdD惡p4ft xЀs&}quK'OZq pE~`qD*KBjo^rDv-+]uWrD^Uiܠ~FGF^tQ؃@hq5j)mfff ?)L:EGj# mr8O cu5tÛx4DgZDd7al|,5uHt.ǽDz[zq%=W tՃ'HlgdJTbmAIDJ<(G~,>F Gl5 AcylLjl+JFILm D 8 t(w04aAhqmhoz: 'Rdw{X^8eNRG+a t]-e]ژaR jrh9A?0YΊv貈1M"2B'$^$hpMrzvytzr9|DPn&F(o@@? 7!UAs!D@,X->!"_J-7xR'4rW:7˜-Spl iaЕ> ՁI?TGM}eJAY̸cM7}S@Zcï W&gDMd 0"iM}"@5D15ˆ&KB.W%a[<_XXdY"Wl;w͓>L'}[AUsJ{K'ckP1s0#c㯈:o${]brqS 046 #p2cV xpQ<)8X]!wrf \ӆ.7|)@n^PJz.iuu/鲶 k zAjd8bx_!K9\F88U1e!+%?J]<Rh{SnT钝 P_ QxchӏsQ9) ~gDZ/]VD'WYeۈfY7!I{ũ~н/b̍TV R#/A?|\I~^g@tK 8hI9GXоsmA-76a?9"OmM$E |riU>WRl1FYk6{SE*loE?902;JǜM+-'T"M*<{wCD]cbӢj>*pEP~İHqrTxR%v֍%)^L,"p՝tK<-#.F1MG 4ѵAX,,SEВPEOx(6mZJr'͐~o\"dB[%:4q2i0~K_CDX^R[}꧶чx% TB⢞C8[o $@Il9;WJǨoN̮,X2I\m={~YMxɠi :/6WTvMjH*^}Qap?a̺bLj{1E]0v;taҲw:BcnrX&V﫿#L=r2}`9ǟ=l}0]X1J!~>#YǥnY bY-4 |x7kWOu$<:ezw;fT)ԡ6R$z\b/ s5D$+JubƁnN1wNf'uԢY0_}_-MNvRS FR}OTXI3fut}$8}>ɦg=϶(IF% dq~a\Fd *,dlTK^gw{&<0_=~y"8:D@I>$[nag~;mD?=_Ӌ?\+ k5doC1X]r!쌟ѨnsU/̢.f[6X٢r8|c=y?49(h1:[A1:"b\ŲzLruEv]6y@F[(&kٕ\,Iب`R{h?Y6ZNBz=&R!JMF|.u\nQQ(A_ )P՜\|[eU>"/ 97("!mxȤضqQL_^3]~Yɓ0fl̠")C Wn~-|;: g<^4ZB+1K9v\z~\ ŧFђz'? t;穘{H0WSi(*2^=7QHXGqk )1ΧLFd[F}Pk#VYRr"9#Ki ]q; RJi5ʛ* L\^+#<#J:6QQ@|?vR!mx$BwYwb&2o[M`jĥz6jȢvޜzuqwIOw]MLͯ۹9"hm\C oM-)\$Dg^4o(+Ђ|;Z xxқF'uB>4%[TCQHEo^y'ȶ1 . ㋗xfW+)A58+#+Sđ:kw|բppGfb W  S>:ekL QC*ySV1NlQ(&s53aOѐY]CY-?% :ӆ*T9]xS3*3HE( җG,T묗)sdV^_6|”ȱ'~2gÃ0On(M= EXIc:Mu{r]aI 5cs`ی;J̳ mbyPt5[[T_jwkԖljemB]/_dL@6|Riȷϐp. g+$X$Do "^Ct glul@,~j:1"d:]_[Ħ4ͪwfüiƋk7rEf3޲!*bȨ(O~q:. P(}; TI&/v qҦAّ7WjF̞~gW w>{!8 "]s:fUW)w &9H3` Ce[ $\Oi&JG0[hTsӠnoZ:˜N/~@k@b۶ڰE>Alz#7?iAC>pA-BTj)#gG4\OmXaJ=O5$ FE[Uzse"MlӚ(öl褭|wgю RDgx Nm9 rYh}SP&%?̀8y a`N@hk|ˢv0 33&|lp:\3s݋wPd+pU:ڰbBQ,@֟5aAPZ HNTNt̏΍.VU d6g7h{aR0&1!rddMV՚DÌ'JpLrBer0wQ*멗[kA $^hw{G7lo:MQbok=$7<|E@G:=Gen~6Ɣ ݣ%apB8_t9m#,"˂pռ˸/44ب-rTwTp=Ig>GɾDYf6F+>{},_$9IZhCcUE6f| xY"ىa{M0D3}g׃ThnJc-!"k8/ڊN{gWGgWǧ9'WoN.Ͽ;?PN"Ҿlo 8B (Dn\3%j@Jx t`2"WܚB;3ZO`ڞ߃EM[Dh=Cu3Өմ!~ (›Xሬ"J2"d8ƫi?٣DT0*]|‹ߞ\?sÓd=|: YI BRU@t- J%T{QFRNn3 i)+cCnD, fIaWZ.e/^+kax/i)[&j# EFg4e`>%ڛ7o k݊F.`a5S":N䔷@rG["9}Y ֮#]ҧ0'V8\9Nb7w\!٘(;l"6< ~v"ɉ*&K{= Cq$X?΀0}x{hԠ+/N)QOm?L݀莲}g <%(jĤ7<"ctUhɛJt=USc {]ʚ08SuNh:8ӿ 4ڎ5kb6J,TeGr {_&UV$f"h"ǂHk=5CY֫Xut(qyxFcgdNVR>޳Sf` K jda\~-zZ 6<0K"c4I #?KHPdtͷu-iWDNؤ׌bj9Qar$5*$t2/CV 5PoaOqh6,I7Ccz,wNRW53xXP XlQۛ S^zeC <60Hφ .VP _=@_DRزaNKxEĢՖ=}"Ҕ<<-f당"zRbEM'7`IɑOZu/oװ$6Hp>!wiUXXG E âE%q.:`ܼeE}1 )%e%%3VۢYO5EY\fO۠,]L?Ϯa/SMScPg8@@3h[_ G 5#U{lD#2ɾ`[gom`'mͽ.7}j!b  șus;>ۻ<0WܛG|a/Ask˰+1|O&~k>D|?tfڍnoO8i:_;yًD׆+NH@Y/bGAy:8xe}̔¿^dwov9ci/O*OlUMO 5y'G'G^D^F^5rw; Uv֜]DԨ3?- ދDKz#5(o1UˆjYW쒐CADospgq ?\k\(Ki'QXbdyzVOQixv2"P 8/rxd *)09.R$5Q`ܵMBEm$rԚ0|T~NUG ) )Oa7qu'vX- 8 5LC}"j<%䣊6V>6ok?qD)o=f%?;;OxHZ!ē0|vG%8ITGS$Vc[PWe+4f+l|rBaOz&Ԣ}p3硘qud)lgU/݅Ce,prF U"$e1zgCQ[;-). shif 3p?aY`tX_wY]0kIq HO&B,Qؔj ?`;IjE14:4*GGh<7 4xK-U>4s(h`{W(f}wquӯ^~szn* \a?.1fh [b_󿲽Mb79v Jk*8Ɛ,` ?%L쌫ZG $ i(=bz%Υ 4Mǧfm\LXvꆉ\:d p'B ~`45 ie˄L¾EޮKyKaYh5t}xt{,ȬsTN595f۶iЮTk;$}PTҧ.9>xܼ{5y Rf2|x~?g WCA(0p{S}a,q Wgr\51l1[=0lS¤ر:aEOZb}$A;^O q"W;R=NPcr &D0Q8嵜Oj"@XC)b+pꀣ D`4ӟg#N&͎9{C&;@s _WG? ? D|_NN/ik{$9bI2]j]xQf5581?A/<J z@N~:?zf򧁥yww–tBү.i0)㮶'ǎOAʄpC[0L#-Pt,ˌo} a K5Ȍ;6GN4cEoTwT<$>H"x=s禔[2%_WLnPº8n^i–txCww9 C`T{E(5wmkȜT?گOP5\G5ga1Y5Hali|ۋ~Po:~9w;eQn^0Pl()!ЮFZA.uu2^ST5gހ3/4 Qi4-BjPB~yrX!~^6i6f+g"sS Nk1]IԕCSuhh34>-Dթ tʘ{g}*{7W&2)RB%%᳤lD(x}.'rКp5QY̌tҢaK{^ %"(ͳ t */?V){txtkOE>k-{:h)d&1ʉUM[nUδVzsTmn՚/"zT4ʹSh 1(BF;ex=y*ʸYOPۄ?.xdK*5L> }5-htD̋%hsn߿y6}~((@cǃ*C4J sҹ~SGkOķD'N+R7Oxջo\niNOVbwv= 070701000000b6000081a40000000000000000000000015d5ea2d400004895000000000000000000000000000000000000002400000000./usr/share/man/man8/ovs-vsctl.8.gz[mo>(v!qniӽl7/6 $6:#\y!g8ػ9/t-+|Yۍ6J5<^Nv^zM pUcV7U2jj5ׅQWe5~V?li\UB+|; Dx}7S5~49VLEo.{+rڙ57ͽ!nz zzR{eZnt56f_J-,9<>)Jy6j 9e?Ji]mAͷ겶Nԍޮ]Uoڬo$woyB+SWf=7R}s_uYW/`j=~ 3?zܽpmmF\~~!ŸEsk^*X0#f.ѵd4[1VތD[b̤m i$$mjwg R!Tw6KV qՍ }4c'*W7z^ e2kth S?+[D;28]oJ&KQ k&t4~kzqLk0X$ޔ 5CjW+#rXEvmjͪE% m-lMHL7@B(ݲ5-:,yO')4ܑHOy!Tmdd7wǤ̒m] i $ҐԊMii~&/]Vn'-=jI_D xMX2U'멚c'eVp0t<х*wWw4eOR02$k5?-f:nDKb077m ?NÊwbҴit-xɒnkF9 ĦP{|2>Szc(08(p+էo^z`NL1i% e/@a$̽2՝]$хSkix#hm~o,]DV~l%WmW5钶!>W  \Q_޾~5~3UGhӓѷGqDomaay2^p08&Q^Prq|2lAt𧻗?@(beRjv ~ZIEo,.m;nܓ&%>n^хE{Y7 Tk)u BB܍~-[_FH_=FK^vhŻ=и =2&}Oʹo_ؙ<3+uxrv6AhIKHZ]ƔR2J^{UyBlyu&!O_7|ɂjɸZSo{x)=[e[307P77oWӬB齢z%ǟAc6 i[ҿ飦i?ODcӋ۫o2{ %#NT6di^3Uz:ɳp5Zeu DqkZW^Ҕ^B@!bX]'z#'2wٷW'pR@ CVRJݝl>_p4'pBCAEmYȆd? QE3fb(h2vV9wf  /K? S&qƍce29ev#'.DٓG`N D"SRcF/~"Bk,F/JI+ߨg-8 |" j菁 ${Ք130O#Ŝ~eIʬ(y!WDw f*[#e`" XC%"T:k]l:vVZ=\~YO_=]x|S n`H<^#C%̳ I+ +`J/B;&!11m }ѥwpuWLp%L62+hemt*NBO)aduFC?ERnA9l:͆YUjk|\&Ld"͊O7kY35& 8?ܸK2n5INoreSr [,e sDςCa6 $ akbym"YReT|Fh# g|B^'IڠK ]`]1aY6$rvC$i4 Lg0FOSɯ38vo^N3I@X@aG0Ur]#.gK"i8[|Go},g]~`43lv 7l>rJQm8JWcrYZw䮰,^z$g_H~k.D4B='}}"L=[pFJ`k1=6hc!9$1I:QyK~'ޘ{jI$5y6=Vg,dA=QQDGB޳wiSift0y 7} 9euy)HNyd$$ [iQ!畸2UEjd^v-S=19z RHjt#h{<[kC>MߧE,4U(3D8ā 1nrh:Jրɐm`I8{M6ၖ\EX!a(cxz6W7"Rғ@,eB+e%S.Q Cˉ=`Y$Q&^H’X@m(᝜J) |OC 9YnD>ihw*9C(GcGFUzҽ*eY hCd~&jtӔ`FFSAO>D0/u k,D@!e[D>{tL IkAjKJEOnM3NapGJIu>:ŊUtCw'RkW&wTyiüԊ+!7pԄn$wpH<!,%AߑblrC5x`vyi UU/'7hT;({<~ΧEЀѥJ+5߱}QɎeq4da4$.-wWkpլK [ h~ܓԦE3nuB}~գ~Ix7L_c$H@ s_}GKNbSp0Nj\$٠AT&^:uH6˫&1݄"c7b钟dqR KT>DW*,DKGA C*FcЋJ tGL-n"]k*x6 L8>Z:Ӧ,C,1\i͆8RSC߂0KN6{Ғ s2kIhþ&۞h!O Hv$!Fhr VQe5%@%8o\KtAT_\F {m A=e1'X;*&:rIW:NmJK9 P' ! ?~҉Iekp`lc4YwvaF禇v!H݋FކHˇzs @^`sJP*eZU+&+vN$FuYI,"UOKk} θΗ\svrޗ|lZ51&ΫJːIH@!tX,g1w]n+۠bP\Ꙅ1E0!@ )6T\b [a{@zE){ZH 8/9m"^%d&a\lhEd:U 7ކ{AY`v٪jQkrP*^ppDf;٘^;h6OvVחN0ʶHhE cYatBR_:̝N_%:g69sm]S<R^T/X"Pz8\ͽ6tͮ/GZ4vrq~77pmGzRMr-O8޼(STH1}&+6xNǨP'ɀSp fC ,'2}C&9s]Z?ù3!'9@M]Y: Z> kf$| vR﹘e몭?"irbπ4ATj3z_ ^D,CC{'c|Gis+QՅ' !p8Ӗ,1W)|qE: @\d謒p60P2J"6GYHA{kmZn dq_  p k[JXJJSsP bF#/Vcz=^ۢAh/\Y]KiɨIrsUg}{A,3b36[S|Eծq{qTi7sX}p`>e5 l:&?& ]nwtQ݌MC7&ǣ"s<0Cd(޶og6\,%w>, Hm{ T۷S4*(|c,|;.|j{.QDpb⇯{ԟ70o!IcY.&QSþ w!DDx7F1dXq wPLG\\\c>kKR2تR mz)K&I]]4f|ä6*_#VtV"Odf"nQIndH?x,vk/AmGdⵁp\0c;C(S ]٥e|>6N1]G4ʣ WWXmyb*cczK>\ĭϪJ6]p3ÕLdo+˪A)AKwlÒTJhhU-^ 4nt4r.çL+4CֵfNwuHh|(ݟm :_a5G`sB#eP\7sΓ[N&mMÑ5(c9^\N"-{))$ؘгM]π,U;=h>L$Ŏ$v'u}ea|h9`Â>Ep)z+ v*S}΂#\Tֻw{Ua}?uA k4DÅoo/oXBw(Wn:g?;>o^\|U|v8bUyE@IDŠe"8e% 0\3= {; `w>{z,}ˤ~+"\/ʠӿGyq3 OF;!E_j8Ԅca OOGF&,ŗOzɧ~ }J||z|z|:dY7(d(y-,,?gBVb~&w-/C´B^ؖވ| )(PVSº( 8{9esK'f];5ȊOJ5v1`/L}ԱϔZzC&SBHق7icuI`j|Z|Ml+SnkL`%C4)Fp0ͅ2*-qӊe%N y{_[$Jm4QRE"݃@BQ+rxV u!ҧKkB'>Hb8=!1k,3CPhT|3{OhFPTCu0{N ;aFġZm, s,_,"i (zu 5 2bO">iq^tOZ&SǜZn فP8i:2X6'[x{弶 9BI׈9q;BJvN(3 .]NK3i]?^ 23HxoVڇiQ 䇌 ClEy4NU 8A) 2) ֪C@9q/VC| `1(6Ցe}t`=9qQ*6\J8}| S*&,x }/n"GZ/}_cX#LNhEڪWSXte#CC8e A%Zce1 Zqz{lYi/Mm_o^~;fҢhJB$녴?xWlS\%1%ݐ~7&!0;F"A`qᑘSW<=b fCXe:v:`'ED[biȰbyn5emDJLCY|T$3\߆K:ުµZֽ$Q'ENQEdM:* z+OUNl"^DOx;bRMIAˌa]P(ŒZLE/qS这h:L|Z[zpsZ_YI1udMLCG frI ƁRE4as9KҴ)Iftx3JR zf'3w+JۚrH0㨄`0`/leʉ1t>X|b*gN;v`M+cu!}\A2rx܁LN,m]z!qmG<8l;9&i\4фitʪ)'my#:0<: {u8o4U* RK&' [8*ﻲR:>X;WϮ[j8iZ)o!@cnq8T8[FRJ$ƖajX/ d\%"GTx[RA>v@օ/?DcV 6^ Lv u'QgYb"$%~(FUD:B:N ~k"oLjmj]gQ<Kſ^[;b^@AU_ 2a@bGt8(2Iq# f:MŰF33B? (ձXFȪod$4q0 %d6Q<}fX^vK:5̑.j2KfF;څ/2L0r/ <dƶlp4nLӆKH(mCɾ> Qg$B5a}A4B`r`g[6r[ qmZpt)Ӧ2iNUӅѝjl!oLGAY N>.0ӎcgtS^ѣaGgQ2֧pf{2f i3+gkzڞ-3iY$KN#ryt#NBApBpbr'ƧD 'aW0Wݽ:jӎ&4&t2u}J $5fr;) TSG%K t$7"I, (BvypAxhbNK>l%3 @qx@sL'>DXW^SeiNx kAe~ )Owo:[b/޶ޖHjA䡷 m$WEb B&&pnŬ @te!B'Rȼm#r@8"(\T?-{ NHs%5$@lоVI.: la_ՔO{͗p-YmjeH&@ F.EzN/ǵfD FyhKSj\bX+ѿ0Ұ Пy\}׆LL$G++re! ; 2nnVSN `7'7۹}%]0K\eEyC~ؐ)KWU~Y E1@ ɜK \>@CYT;ɻt\ʉh!B"N1ZpW,JH" ގIs1;;-yl{s Fm6 `F!zI  + MqӐK4NCm,FZMbi/1t9o|Ww<=3P`Ԭ0Fӳ waWنꋋH9[$%=iHĶO8=iȷsT@FdӐl*+9tX?]rr*L8<~hHv#"Gϵ=N>;v*/'v$rLnﯲ2[;$ :{)N <|¸Y\#60@S*-5m9#4Zjz+q PlC7R:AŹj`ܼ(qkt26ae‚Az|*7$wid;Ox'*ڷTljL:Ú( G6p)*W5J(|TKRd^t) JJ.ȐB}m44w[nKWRs:BHyȳJ{b CXS)AqoU&DQLPDv::f~Cڦow%b+i{,iڛ[#hk4g'wH2pn Aح߮Ү'eҵ꒒D}(g|x$T+'^ԥZ;nB!$PKtTO-|s'Z4ćDieND9 F_G4l\H^0I!h+خq1%H!\>,rtB2ʪIA,~vT?hŢlG.=WNi%:GTī$ hZ)8b;~}WRh"Q0&`"eB5c'auҚɞ9})aq׿sdU\VUH8Y4d Z<y,02S< :ѳ!6+DocL9ko8'2K;KXjR3yFyd]˴]6wz -@Zr[.m.Ͷuke˺p̀˞ .{ U:Ε{8FY/3 ~>pv'|7=Rx(ݸ/_rzԳd->;&:?>݋1R.ή )~^b1$pmK5 TǎT\ p,3\`;q([?X'NKc**AY!ч_pqq/U>0~!GVߌsg{3oDHΉHi\pCثK7Y铮ᓒ(s񣉭+U9j&B_IZ-ډ4[qȁ2CC=-}oG֢s_\W9$1jJ(@ve󬚔W$>9\c\QRC X ) "d'F>Z'ov"G) y(Rj-@2kR.AIa. .:zo8O;5aI U it9I\CvA\ 8RSIݻP쨢rnF;[A XijFZ6dd#$3V-Y-$aPLO2>O2M 24 AH*bQ<%U;EBrQ1 ȕː"TpyIрZƢ+{ʫyv aEF\Ooh*۠ܳޮl/ i~YS-!LH_Ďe1FKG_f^ VU ] ,:%F Hjdi5LzϞmr%7QJe:@5~G|/H8Ռ~=>|Ls}Y \2@-';QtEUЎ;_ N\e.Y~a *ln2 fG=R/ri7t X`WR24a~pI"vLjfT jK^ rd[@"`;?'o 3qC@Y$6Qۡ'}-3(+|Ulx,rj>GPnWPߠW!K\jS5[ݮ`Ff&r~}NcDz0m{E3i+OY~ŧysf1{3˞#>Hg I@S lld- WW Z_CO!O >uۿF8O\B!j6Ek{fg;2Ak9z_~~y *!YW#+^QУ%m&`E;fr,Mf_o 6Ju]PkZ#e~_ _Z=`M*M("F(שya5i8b{-Y2:G>Aq#*/iD>4IN )ln{r=3AwikD!\n k/:l -BHaf ܿZP~AZzi}}};Ⱦ?l41ٰDhE[>ŧ+E9*ǶU>mϒJq̵ 8Nc#_dlL(v!B^g_*iXDP7Ɓ 0Q=!['Q9]Ə`J$-C$ 1yfB"Ӣڳj ȨEWpKȖ,č+<) șY΄c* XmI!2jH6{? 4БWHO>pjuҶK|eY4?8m9$KbV`4`jKs] Ӵ=,o:fmYmGN(;yUt-H\su* (f-Kx<>g1'b96fJ|-\V@\U`U 03Dnl"6(ACgĆ E] T)v>I/+\SQ/1a.b lO m|z{I@z|-񿩽17|Α#$t!Hnʪ|tޒ# }VB3tՆj`sD/(|+ T-NDwc񉁜GTiT]jIU Pp'{;TrdK S8ජܯb(5Q#8aJ\] ukꬌy[Z!fjUN*QAhi͙2fCK7-\s8Bikxp\~+yK%H0Zr ]ij1#}4`"4g!_f#YO%ڄ,洄#I;* "baycS)&U:ɗRdlo&{/$p[ hٷA/.ǖ`soGCCr{8q˫)1N6øi]6͇OI)4ki`Kֈ`5I_qvMH?U,%Pu\bKCo]sޖ&a0$L4 սd*EǜKYEP嵁X41y{ŭbZ,Tݡ7|ZJW?BQ,:" "''С3,CibVr9 K~H]D'|/zgV8}+Z'Jj Ȟ]o7aiV~s) Ap3ٻ) &U=O9r\er:(QYng5"l%d'äGG֓ 'ދ"MrkOdFDil}SZ϶$Mh!w/>Ld7?ySB}@VIXU(-1L8N;p7AIl;ЕcIp<'.}ĭAsM3۞Kⱁqd pAٽ8Q( K'||h-};P{6YV^]_(եm]&B)Zy.{?kp½퉥f{#(يS$ʖTQbVh>yƔdk}x;G g2؉eN@r/ƌ7$5J*bhcwq zH!(QyI1v9u_? cl?~ɕ jEubieI@ A ^yVmhAM}$.&.Hvƕ_. c:*Ydɹ"OŪRE6MTM%{|m 7R,+Ნ̮Xs =& Z;gWN1WѻH5ŶD hc$ۇd#=vNfZٿ/!jg`jt" äc;DC5"&uC`),VE-huy="-im)D Iwf17[bM%{9hnsQ(!*pɾV bf`1~'11빤S@a~ &g5wR'h+wYZ&_SxQ=[jZwGś^g'o~^yo?;I g+)+n`?zDKH}پ&QZю ei~)kU.C[])adTFߋ!+Nh/p7ï{>xB:uA}{t-?!:/3&1r>^wK"HfD:>BIoY '9~N@ 3vLƑ:L$v[Tt^b9 Qr1Dځa!y7n{U|wQEH&xI*Sl~<ݿMO({ͣrpsӐPZxV-8#~#pdTbׇB-b6-5֡Vɔ PS-%`0UO\s3jeGL~EZ00$}a?jXA]qAAz^$D]-:aVtQ"%H#\9=!ua8mY%}&f:x~BD{OV=T vrʦc)APVg&v%aMRj\3طۼnRkt@c6] tfv'KgT Ù$&{`CC eq|Z#'h{dq_nҦ]5Yp20--d!fq3>[?'@!B Ԉq^mu*`K㛋?w1Jz Cp{:TϚ~ cCUd2y>Qϲwǧ,0>}zxP߈t,bU|S}kfZ, F=V~w^qFcan#GFSÚ-AKę(&p\eI7/ vsСJVI!RNCEUB+N]OgZsWGUf˶(HJ*!=OPulί1f2T(> $R,C'T {$I<-(W,{ ʐ髓&0R+V$W!9$(A>(&N32Ct<=DePpSn<{aUcFOSP1'vN^@xw~i]f-{ʧi/ۚqir#.$m´M . .qA +}ן{X_tf/D%bɺ!(k{<>IB\| _$ }uM7N>HEa mY}QPov[R~=.nҁ\wQj>ɐgldͻʍ1p ^mFsCo\ٺA1Mm<{wKCj]ts;G`ɈzOEY|GPB̆3dȊB}kYR@!.;Z&lL` u#AG:$6].@ʭĢք")a6hz3wHzricÚ++NoXwGo+<,ˮjͅI=gcx,&zOWwvo?[6Ylsjtwٽߕ}z=Nk@ ЪSL/p>KP8?Q(ZE1\,5Ҧ^ܡ8{`{H}ï|A8*V_6f֝QL70kdbEqǘs*{/ nxpŹ/&HFG|5M@zn31NR 8Z^q^.dן P5n竅;R ΊLV!#j?ͫ.N߼=]t'wg;kﱳP|j$r1\I=էJ2JiG0 ,h)4LvYqQ4bqȔP@[B?{2{YRK5{:vnZdO=RS 9070701000000b7000081a40000000000000000000000015d5ea2d400005182000000000000000000000000000000000000002700000000./usr/share/man/man8/ovs-vswitchd.8.gz[msF_1JI[ƹ)i͊,1b'J 4j==J|u{U{N"AOO>3>JlolkFt7r|Z<L%>82N+]YQˬP#&C}>'S{xx3DUhV&$Ld~O/N9ŗqjZxrP_3jaʝjJ#-$NV-lt:0K^S2ˋf6Y/㐗je?jQkCXZUj>T3di1S0|/}0Ej uc6 S7Ofۚ{SX/\8EZl|#PׅbeӅQYF,>p~*R6&٫ʚpFa&Ql"^TvHqb"aȶqBT&e,-[i?6:}l5^gZ#}fhE%ϊR/G1fXfaXM( u]*$QM LO,E:ūdcʪ k6&Ky8LmV X"h[,e0_N7u v'*"­6Nr6jE4ˑnG,̘!VQْ7n3{>l-R#Aa0+lPR"@&:i 3B &Q(6U\6s_0% ap Мvf-ܔ!NWp+M'+Q{xH6s_tl /ÿy6g1y;}!)1GIzNN A=n5_ayW:3 _+[m  Sl3a`Ft[E{N/,'}wS'?^g :CK1ė{^0n(V[iq^+uO:&A\k9硘qud)l@IO]<?؆ьvkĜܸ][y)$2=# uK5`K0i|DC>P1293"cGqC=LI5X_M4z648Bkգa89~4!d{qp !#1Di G0S^͙ &1K-^Cdʇh7>qq&y=~q.<ރm>&;uQ{1ݥqZSGsy+T>UȯRt3g*A-l&X-j(*駣phypHeTC|8ȚhS(UA֯B@]ҍ]I$(d:%)8n 8?FXixoWaH~sY9+lD:=p55 cByAONH)/lôԋ֒e%˵7w@_(i.F8' eȱ8>!vܵGqeN V^i^OxJJĄ1~??h+M'",fO!6)[a^1K֦_$\wu;pƒc+p(Eۏ,6{k~?+jY!q(*7bP߼, BrWE|$O6&6\:l|h)PyStX]3#úa/8 ~-yf2ےO^ ;ƞhC`ƴM R ")'{>jL˜;|կf[V+_;RI{*xD<&<0)Dïbr+jQ+/vC0z1$6{&̛s|8`{̘tFlgxEguȟ;;?#ǰoϵwt9@.İ |e݌g2mCVJb\ YKb]z )YMێFn>́/|֢߷ѧkw[]3r}<"otIj|{zaV2ajtI&K3"5J)J -{q;Nj;eŸh\ñ ؀`1`Mi-p|OW}ϑFv*׮!NW]kxJaOŏ'ԽgbH!k9/DlIb@)L0GYadzjTufɘ/BcS(~]$ ^P-sY -;Vb q;3ULs^ ,/{$dPKo(UNSC`I a>eJ8l 1gq90ÊK[-+^"Hxy@o/ L]4vH$ܴ+6P$VsķrH[i$`o~U@p=sg<+aBz'Ĥ+VpA88]= v,vKQzݿ^7&?wES?| \qXТt0@Bo-!IL'?c `Bբ Pjъ]eI}9DZ]Fzhu"?)ّEYQ5C&T4Q!5!pͨ;\25۳붬Xd/Ld 3` &ȎBvaNF&Zd9a`Ӿ(Y 1hgwߝY9x(Yʱ&xpz;(_ogCxEҁiP?$r p3{fBG7W7pIM7YRM<ƶUpȟPdF(Z<:N``O47QbqIH@(ݘveÞ\A s1;}VߔWs=qXԋ|9E8 KV;>? w=T1c)XtRy_$<ŏh¿,mqzX %IҸк#qM3E֠1{ W ޒƞ&FVR%4_J~e2ˬAmʕ'd9HB 63;X.9Po;O0A}o|oE5c g̤QqjÒ&_6'zif@Li=_R4`euVH-ﻜ\2nFSà9Ap)sjEP;E3763ю '"Tߟ,:YmƘPK}?{V˷ŷW=G`_#ghKE}+˓$ѣc1wc{{{No?}pp!U,*n)rWPMg>',wF7XQE$Jj*Pw+ZbX#8fA4!le!E@ܓ4b:tˆ0uQqaܚ# 2j+HV;vTH` BRߛjDd!TNx<+d՜xLx]J_+@ սShDˍP(p\!`K@h =E;00>q>6["gtz0Ѐ+qJiwBAIWHâc^eDߐ:ZN>pe];=-v,"İ\lch@z <>x[[AKf;rjr2Vzn$tPb!lt.{;|5*'Ic#3qEpm8zs,|O{?}\ә|4#uP-$8,i"!5uޱT+Cl; {~Z-3^_Lf`rmԩGax7@rc7kHI \3)br"+$uSTlQs "#I hY"f/DCuΟ"2N,fJV'İu܈1Ji z#W5{4e_r,WnJ@`}G + _-qT;}4P!qDIGs8,u{#'[P$ʳ6p[ԥy|`-n^#2ҤWoSFH Σe֎J Ca̓+XFnðYm;!e++y|(vZҜ0 Fݕu$lx}{xk;Ig_Gnøbx8fE%'泋,v)1PTٿJ^j}77ҟ}oNA=\dXDYl:Y[7G58 DzLޙ|ߘ^]q÷~YޛL'%B\>oi/4 3O5ę%92MaC#`)]#Ki>~o0gw 6,PHClDn" K|V%Ww[1\̭ 0'%<i";kjIM@..gX NTJ ϦITWcԈ ,r"rٶ"QM5ELnŅmq21> ס A|nY#W<ՍSdӺWgo@6⨳dFUڇw'|T8gb:^uLplE5e2};YzL-ۻ/7B_ Bj 5x 9:>qTSŜDJB R=0l?!yaXęp2J"vOOʦ "2&NvЬ~YE' ϸV5+787O\lum%۔q>BgFViοNM1WD_T}ve`cc}|/ZGnF~?d߅=3 uFQZ+iL_҅%#$.IeqU͂)sEe#^L+?G$`W៽nÛ U۹N7cb˴Lɛcӻ㣣wT^6;?}W2+IƥNXp`jOKLj 4^p.|k;e\ZZV -hR(άJ_d璸쭂 JBz1+,Љ~P y/bUg_ '4 3mrZhF-~KA٧A݋(*]q ivեZnCAY|M#4RUBE1I;@r/kYGh7aRӏʩg;LP5mV= Dڌ:h"(DB dM8!BU6zv 3A ?# G?u%4eCBK j3 %B\y*S5s8gN5' ZE-Py`AY~JԵ5_~RJ rv-6y-yݱ6S(2 zv6Hc=5։˕YZ)`~!Bsk v6FMmӢxPhֶib5$c~V:/-Fc2@3ZV**w]T{2i)},j_uE"p*Y$偡TWyuwJ1+DQSǤgBG{%p.Mc=h*YҸ^N6{s<2,-ٵq,18m+ [Y˘OP6S" Yg:kB%̔O4Ew >QN+uMٝwO~feوvC ~;a&5 5 %8L#2{[|e…*?.>aכ {4AٰIRO"gMdS!sD,u8P _3&/c8"HZj R!dʪֺZ)`$Y 3)ZkVcIlREXG/=/,w!"(2)r%ך޾qgTҳz#/go6=;SJW& DJd2uOAKz? ,ӂKMᔖz9V%D=E$I5oNsYQ Mͦ+m#Sjl}"%P4.!|vVnYgȦ+}KI'ԙ~sYE#&pNzץ$1V`wɀW{SzI>5HA-$V#6g$np BqyF6]-d_mVo8mQ,2?,fd17MxdT + !9 J}G;Ke|zvV(-^|_֗ w/}ǻo[wO)=|uo (d1b͛m|/wP> ˭WXE~aNCl|;>xBXj󛰏|Z:Zw?_t7`ޥϟ\ލv7^mlS[4+œ<GRV↯:m^9 ^U,M^^VB0XWSAs)E /RuL,Rga8~@lFߓ0EB"_* ,ThMH_bX?a|77W\F#Kz1RGՈN/t..C5 fg0SitX:ڙ(Lc ]T2lrm|}2q ٪ ڛkz %1|-P*9k^ "I`31 :.H9,MIdK[Ue͒!U~sC4t* d7ϳ4zm`݋N[N}WV":bm䪏yӡȘJ&J(bCD8%24`Cv!}f7AU|8AW{R>\+z=q껂y Ԥ7Kx!vƢ~yңfcpl*⬞2rhi %#{u.ҵbB[.B>Q`lq(쒘59ǎA@k?ՙU~v 5a*젬Q\ۘʠG2^QcvkжpioLϐ?~QtZfvNNSXZqRcn ׉ke,Gj;νQj ;<ÙEu80xKR .RGsG^8O./QmaoNz¯ǤgO-7CT>b܏^γ*DNLmxHLb׮,2WvIBݴI[䞧-6uv= U~.7'{bbfZyD/G5{#$c/<:6L,ñh" g%*{'{}x) ՘{nG_8A[A|t[N Uˊ]E?$&@& jVb JnsK)}WNE40)2$˾%I ikŪ@dgz+<Ms׼<X&$R sԆ.*N3+A-,7FDX /ot:g{ImsqZ ]ݕR Lue*D2)r#"0Hy8,.oÓ@SA b\cUHaYbOg>='5M'6"qkf* W 7 {&ﴲC<O՟E1&ΒMf\e@!i4 q"Jm2-m_f13^%9 # 0 GC Zm|3ı4߳ jZg[u cK$X3idmI2L➂LtVR=ڰG.=bĹWx"ke l:gӅ_.@u-%myLCC)&7*-hv3hԽf{_й #g(ζNQ,`PNZk%v Y"wYY1y$<@ks%(вhM;b0= h:]\!xZ\):wT'ߜXS S; J\0 YT9ׄGA}ɆHc;9[1K^0B;(X:57DQ((,ȅjC̦$Ң)1y%Kw߼ЫafñnXhepqe ;bL\=;@]"EXzۙ'a[M0{/ KihcQ d\pW򒘠*T8#/uK'tИd-i-H^_O)Օ]P9dk. B*G*.)zZu:WtSdϧ$-Jj`:WH#i@R|ЀZVI&- HR,n>QWw}|ǫR-E0Y&@1OKQπHW`A#YsW/F'93 %<+39)Qy]Z> TjٓjSZYul=V+_MZz%Iz/kWf5VYX3g Wb Z¹7s]^p1%P(bWVIsuvY+.#ߎ*&A&ryuQ^GYb6ruS]{rZ`%7lk:CP l+X uvG|H܅) \}NhiBi{j:l85_0r.:OK ?OHX|unʀcfh͆KY +Y$ݔ30Yzg1RNY,&^B\1%D\C 868 (*A^u;}bg}%6uIg7(oUπDrƍĺtt<uչ0On>xglH=u|uz.Y.-$+<ԗ!)#>ދf!BMd zg 15L7곶5D|RG ]sf84` 14k`QwG 0J6VXv-#2ᨋv1 k'? 7m>u&]#jѴoל*#pL%\W҂ibo,oJ H5z.R=Gt uO R袗ّbB0H  ҩhPWLb\TDzfW/s!+nP_d%ȱ'L{TGp^#IZ2kyS^s q /㎡pHaXZ=qK.QE'=J,J8#sow-'WyO}H"ZAgE# [a Q(GUK t!d{ % ♚GMOgڴ섖I[d3f[잟-pAdKz򅢓%oJhyF>f=)o!v] Złe>jo[AfMZ-ӚSwiHaUaLJ3z^{M{kְaGn.`6AɿP,`2\SNn*ԙUKSZ> oDaz^r3jW@A C/ӰK,;r9".Ȧ}3!%KB?1#Sy A:M%swdXTLL8NY-b{DEOMYtKrC X DW:.0_O]MTH@.[^Yݑ?TˑB8|9PO\e`߬ehJQ8y0ܰ_z&qi{(Q:4wcDOdm{A|]WTZKa;_NFa(MR SXMNNJ(Q;yR 5%CDp3N~(%G_=8z GS$<;9:,GEA"GE -.&\]slmjd2_~u Ho:3E'C[Ġ⫘^85d1/y}&T0T NC0G64&q'G?|pKA([H*q2Od#/=|}^5ڗ\J*KùBY&#Y^s& %Ľ>)a[/2pp$FCs R4/)x|M@ \.6Çlf:xI0%qhT9YC%JvmeG2c%9vKhw;'5K"^C, 0TjF#סOp+>W:~?+Nn_p#\^󶔍*܈XW3A\21E 6{[CM#k=sKg=c$j541u i%rpeåS+o~,Ӯ;W9^beۓz~R錻2;g/6lSi`fockKi2yy 9<J{̭$NpX${Q)ju,xeKW 6k|eH/7yHn@D4Kc$e1i7ɜͅ-2t@nqKVW?9Z&rk^v69xщ-J=]䉍m RFʁ혧3xagώ43?}Zn zLjcT 0A(ƂuEʅ;=-u 5#ж YZ