go1.22-doc-1.22.0-150000.1.6.1 >  A eĆp9|דWYNk`E +/n7Ta2Jy^}HSځHal y S #'IDȺ BמwO[Bwl*Mx;dFш{uHȦ='B]e/ۘ@ݕVɴl*8jޯgphX-XŶtDI|Mm>`uDsx,|;٫E$o=bgfN"L-AAo&dbdb5feb85ad2984de687bbac8c74cfc9b5a69e7d75699b0ef8480f87b3c8f8bbd6ab335459e5e2b5fa1f603b4614f3e4343a477ԉeĆp9|X 7kdSQP\ y]I,ds bV!'uk O$ 6$:qhyh"ߞ& D[۴?u.z*; ޼|׮E[+- AB#><:#XY ŭzg\ntv2=g=&Z/ IFٵ,95I+޶ 9M70>#R#li7vf5h~"kkޑVGVsvzur YW/ I~BNڠ>p;v?vd  ! 2TXdh      4 y (8(89:FsGsHsIsXsYs\t$]t8^tvbtcu@dueufuluuuvuzv1vDvHvNvCgo1.22-doc1.22.0150000.1.6.1Go documentationGo examples and documentation.eąyh02-armsrv1SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxaarch64RNGjn]D/ƁeąHeąHeąHeąHeąHd6b3bffd96470e0035cb545db9f8520b0d702141998604aaf27f87e954b8bc009d8d56703c492e88630a837d51cd0b8ff1c37e394abe6debc0c0718e703dcd0d88bd33734517da01f936c8047075a5956d83d42b97209d8ec4883a727f08a911783fdf67dd27ff9f9a9309c337f902b4c01d5b5bb9014b1db2c190dd785fe438ca4974ac0595cfdfb4c484089ac38adb38d4edf1c3bafb18b359a692da5a70fbrootrootrootrootrootrootrootrootrootrootgo1.22-1.22.0-150000.1.6.1.src.rpmgo-docgo1.22-docgo1.22-doc(aarch-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1e@eejkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.com- go1.22 (released 2024-02-06) is a major release of Go. go1.22.x minor releases will be provided through February 2024. https://github.com/golang/go/wiki/Go-Release-Cycle go1.22 arrives six months after go1.21. Most of its changes are in the implementation of the toolchain, runtime, and libraries. As always, the release maintains the Go 1 promise of compatibility. We expect almost all Go programs to continue to compile and run as before. Refs boo#1218424 go1.22 release tracking * Language change: go1.22 makes two changes to for loops. Previously, the variables declared by a for loop were created once and updated by each iteration. In go1.22, each iteration of the loop creates new variables, to avoid accidental sharing bugs. The transition support tooling described in the proposal continues to work in the same way it did in Go 1.21. * Language change: For loops may now range over integers * Language change: go1.22 includes a preview of a language change we are considering for a future version of Go: range-over-function iterators. Building with GOEXPERIMENT=rangefunc enables this feature. * go command: Commands in workspaces can now use a vendor directory containing the dependencies of the workspace. The directory is created by go work vendor, and used by build commands when the -mod flag is set to vendor, which is the default when a workspace vendor directory is present. Note that the vendor directory's contents for a workspace are different from those of a single module: if the directory at the root of a workspace also contains one of the modules in the workspace, its vendor directory can contain the dependencies of either the workspace or of the module, but not both. * go get is no longer supported outside of a module in the legacy GOPATH mode (that is, with GO111MODULE=off). Other build commands, such as go build and go test, will continue to work indefinitely for legacy GOPATH programs. * go mod init no longer attempts to import module requirements from configuration files for other vendoring tools (such as Gopkg.lock). * go test -cover now prints coverage summaries for covered packages that do not have their own test files. Prior to Go 1.22 a go test -cover run for such a package would report: ? mymod/mypack [no test files] and now with go1.22, functions in the package are treated as uncovered: mymod/mypack coverage: 0.0% of statements Note that if a package contains no executable code at all, we can't report a meaningful coverage percentage; for such packages the go tool will continue to report that there are no test files. * trace: The trace tool's web UI has been gently refreshed as part of the work to support the new tracer, resolving several issues and improving the readability of various sub-pages. The web UI now supports exploring traces in a thread-oriented view. The trace viewer also now displays the full duration of all system calls. These improvements only apply for viewing traces produced by programs built with go1.22 or newer. A future release will bring some of these improvements to traces produced by older version of Go. * vet: References to loop variables The behavior of the vet tool has changed to match the new semantics (see above) of loop variables in go1.22. When analyzing a file that requires go1.22 or newer (due to its go.mod file or a per-file build constraint), vetcode> no longer reports references to loop variables from within a function literal that might outlive the iteration of the loop. In Go 1.22, loop variables are created anew for each iteration, so such references are no longer at risk of using a variable after it has been updated by the loop. * vet: New warnings for missing values after append The vet tool now reports calls to append that pass no values to be appended to the slice, such as slice = append(slice). Such a statement has no effect, and experience has shown that is nearly always a mistake. * vet: New warnings for deferring time.Since The vet tool now reports a non-deferred call to time.Since(t) within a defer statement. This is equivalent to calling time.Now().Sub(t) before the defer statement, not when the deferred function is called. In nearly all cases, the correct code requires deferring the time.Since call. * vet: New warnings for mismatched key-value pairs in log/slog calls The vet tool now reports invalid arguments in calls to functions and methods in the structured logging package, log/slog, that accept alternating key/value pairs. It reports calls where an argument in a key position is neither a string nor a slog.Attr, and where a final key is missing its value. * runtime: The runtime now keeps type-based garbage collection metadata nearer to each heap object, improving the CPU performance (latency or throughput) of Go programs by 1-3%. This change also reduces the memory overhead of the majority Go programs by approximately 1% by deduplicating redundant metadata. Some programs may see a smaller improvement because this change adjusts the size class boundaries of the memory allocator, so some objects may be moved up a size class. A consequence of this change is that some objects' addresses that were previously always aligned to a 16 byte (or higher) boundary will now only be aligned to an 8 byte boundary. Some programs that use assembly instructions that require memory addresses to be more than 8-byte aligned and rely on the memory allocator's previous alignment behavior may break, but we expect such programs to be rare. Such programs may be built with GOEXPERIMENT=noallocheaders to revert to the old metadata layout and restore the previous alignment behavior, but package owners should update their assembly code to avoid the alignment assumption, as this workaround will be removed in a future release. * runtime: On the windows/amd64 port, programs linking or loading Go libraries built with -buildmode=c-archive or - buildmode=c-shared can now use the SetUnhandledExceptionFilter Win32 function to catch exceptions not handled by the Go runtime. Note that this was already supported on the windows/386 port. * compiler: Profile-guided Optimization (PGO) builds can now devirtualize a higher proportion of calls than previously possible. Most programs from a representative set of Go programs now see between 2 and 14% improvement from enabling PGO. * compiler: The compiler now interleaves devirtualization and inlining, so interface method calls are better optimized. * compiler: go1.22 also includes a preview of an enhanced implementation of the compiler's inlining phase that uses heuristics to boost inlinability at call sites deemed "important" (for example, in loops) and discourage inlining at call sites deemed "unimportant" (for example, on panic paths). Building with GOEXPERIMENT=newinliner enables the new call-site heuristics; see issue #61502 for more info and to provide feedback. * linker: The linker's -s and -w flags are now behave more consistently across all platforms. The -w flag suppresses DWARF debug information generation. The -s flag suppresses symbol table generation. The -s flag also implies the -w flag, which can be negated with -w=0. That is, -s -w=0 will generate a binary with DWARF debug information generation but without the symbol table. * linker: On ELF platforms, the -B linker flag now accepts a special form: with -B gobuildid, the linker will generate a GNU build ID (the ELF NT_GNU_BUILD_ID note) derived from the Go build ID. * linker: On Windows, when building with -linkmode=internal, the linker now preserves SEH information from C object files by copying the .pdata and .xdata sections into the final binary. This helps with debugging and profiling binaries using native tools, such as WinDbg. Note that until now, C functions' SEH exception handlers were not being honored, so this change may cause some programs to behave differently. - linkmode=external is not affected by this change, as external linkers already preserve SEH information. * bootstrap: As mentioned in the Go 1.20 release notes, go1.22 now requires the final point release of Go 1.20 or later for bootstrap. We expect that Go 1.24 will require the final point release of go1.22 or later for bootstrap. * core library: New math/rand/v2 package: go1.22 includes the first “v2” package in the standard library, math/rand/v2. The changes compared to math/rand are detailed in proposal go#61716. The most important changes are: - The Read method, deprecated in math/rand, was not carried forward for math/rand/v2. (It remains available in math/rand.) The vast majority of calls to Read should use crypto/rand’s Read instead. Otherwise a custom Read can be constructed using the Uint64 method. - The global generator accessed by top-level functions is unconditionally randomly seeded. Because the API guarantees no fixed sequence of results, optimizations like per-thread random generator states are now possible. - The Source interface now has a single Uint64 method; there is no Source64 interface. - Many methods now use faster algorithms that were not possible to adopt in math/rand because they changed the output streams. - The Intn, Int31, Int31n, Int63, and Int64n top-level functions and methods from math/rand are spelled more idiomatically in math/rand/v2: IntN, Int32, Int32N, Int64, and Int64N. There are also new top-level functions and methods Uint32, Uint32N, Uint64, Uint64N, Uint, and UintN. - The new generic function N is like Int64N or Uint64N but works for any integer type. For example a random duration from 0 up to 5 minutes is rand.N(5*time.Minute). - The Mitchell & Reeds LFSR generator provided by math/rand’s Source has been replaced by two more modern pseudo-random generator sources: ChaCha8 PCG. ChaCha8 is a new, cryptographically strong random number generator roughly similar to PCG in efficiency. ChaCha8 is the algorithm used for the top-level functions in math/rand/v2. As of go1.22, math/rand's top-level functions (when not explicitly seeded) and the Go runtime also use ChaCha8 for randomness. - We plan to include an API migration tool in a future release, likely Go 1.23. * core library: New go/version package: The new go/version package implements functions for validating and comparing Go version strings. * core library: Enhanced routing patterns: HTTP routing in the standard library is now more expressive. The patterns used by net/http.ServeMux have been enhanced to accept methods and wildcards. This change breaks backwards compatibility in small ways, some obvious—patterns with "{" and "}" behave differently— and some less so—treatment of escaped paths has been improved. The change is controlled by a GODEBUG field named httpmuxgo121. Set httpmuxgo121=1 to restore the old behavior. * Minor changes to the library As always, there are various minor changes and updates to the library, made with the Go 1 promise of compatibility in mind. There are also various performance improvements, not enumerated here. * archive/tar: The new method Writer.AddFS adds all of the files from an fs.FS to the archive. * archive/zip: The new method Writer.AddFS adds all of the files from an fs.FS to the archive. * bufio: When a SplitFunc returns ErrFinalToken with a nil token, Scanner will now stop immediately. Previously, it would report a final empty token before stopping, which was usually not desired. Callers that do want to report a final empty token can do so by returning []byte{} rather than nil. * cmp: The new function Or returns the first in a sequence of values that is not the zero value. * crypto/tls: ConnectionState.ExportKeyingMaterial will now return an error unless TLS 1.3 is in use, or the extended_master_secret extension is supported by both the server and client. crypto/tls has supported this extension since Go 1.20. This can be disabled with the tlsunsafeekm=1 GODEBUG setting. * crypto/tls: By default, the minimum version offered by crypto/tls servers is now TLS 1.2 if not specified with config.MinimumVersion, matching the behavior of crypto/tls clients. This change can be reverted with the tls10server=1 GODEBUG setting. * crypto/tls: By default, cipher suites without ECDHE support are no longer offered by either clients or servers during pre-TLS 1.3 handshakes. This change can be reverted with the tlsrsakex=1 GODEBUG setting. * crypto/x509: The new CertPool.AddCertWithConstraint method can be used to add customized constraints to root certificates to be applied during chain building. * crypto/x509: On Android, root certificates will now be loaded from /data/misc/keychain/certs-added as well as /system/etc/security/cacerts. * crypto/x509: A new type, OID, supports ASN.1 Object Identifiers with individual components larger than 31 bits. A new field which uses this type, Policies, is added to the Certificate struct, and is now populated during parsing. Any OIDs which cannot be represented using a asn1.ObjectIdentifier will appear in Policies, but not in the old PolicyIdentifiers field. When calling CreateCertificate, the Policies field is ignored, and policies are taken from the PolicyIdentifiers field. Using the x509usepolicies=1 GODEBUG setting inverts this, populating certificate policies from the Policies field, and ignoring the PolicyIdentifiers field. We may change the default value of x509usepolicies in Go 1.23, making Policies the default field for marshaling. * database/sql: The new Null[T] type provide a way to scan nullable columns for any column types. * debug/elf: Constant R_MIPS_PC32 is defined for use with MIPS64 systems. Additional R_LARCH_* constants are defined for use with LoongArch systems. * encoding: The new methods AppendEncode and AppendDecode added to each of the Encoding types in the packages encoding/base32, encoding/base64, and encoding/hex simplify encoding and decoding from and to byte slices by taking care of byte slice buffer management. * encoding: The methods base32.Encoding.WithPadding and base64.Encoding.WithPadding now panic if the padding argument is a negative value other than NoPadding. * encoding/json: Marshaling and encoding functionality now escapes '\b' and '\f' characters as \b and \f instead of \u0008 and \u000c. * go/ast: The following declarations related to syntactic identifier resolution are now deprecated: Ident.Obj, Object, Scope, File.Scope, File.Unresolved, Importer, Package, NewPackage. In general, identifiers cannot be accurately resolved without type information. Consider, for example, the identifier K in T{K: ""}: it could be the name of a local variable if T is a map type, or the name of a field if T is a struct type. New programs should use the go/types package to resolve identifiers; see Object, Info.Uses, and Info.Defs for details. * go/ast: The new ast.Unparen function removes any enclosing parentheses from an expression. * go/types: The new Alias type represents type aliases. Previously, type aliases were not represented explicitly, so a reference to a type alias was equivalent to spelling out the aliased type, and the name of the alias was lost. The new representation retains the intermediate Alias. This enables improved error reporting (the name of a type alias can be reported), and allows for better handling of cyclic type declarations involving type aliases. In a future release, Alias types will also carry type parameter information. The new function Unalias returns the actual type denoted by an Alias type (or any other Type for that matter). * go/types: Because Alias types may break existing type switches that do not know to check for them, this functionality is controlled by a GODEBUG field named gotypesalias. With gotypesalias=0, everything behaves as before, and Alias types are never created. With gotypesalias=1, Alias types are created and clients must expect them. The default is gotypesalias=0. In a future release, the default will be changed to gotypesalias=1. Clients of go/types are urged to adjust their code as soon as possible to work with gotypesalias=1 to eliminate problems early. * go/types: The Info struct now exports the FileVersions map which provides per-file Go version information. * go/types: The new helper method PkgNameOf returns the local package name for the given import declaration. * go/types: The implementation of SizesFor has been adjusted to compute the same type sizes as the compiler when the compiler argument for SizesFor is "gc". The default Sizes implementation used by the type checker is now types.SizesFor("gc", "amd64"). * go/types: The start position (Pos) of the lexical environment block (Scope) that represents a function body has changed: it used to start at the opening curly brace of the function body, but now starts at the function's func token. * html/template: Javascript template literals may now contain Go template actions, and parsing a template containing one will no longer return ErrJSTemplate. Similarly the GODEBUG setting jstmpllitinterp no longer has any effect. * io: The new SectionReader.Outer method returns the ReaderAt, offset, and size passed to NewSectionReader. * log/slog: The new SetLogLoggerLevel function controls the level for the bridge between the `slog` and `log` packages. It sets the minimum level for calls to the top-level `slog` logging functions, and it sets the level for calls to `log.Logger` that go through `slog`. * math/big: The new method Rat.FloatPrec computes the number of fractional decimal digits required to represent a rational number accurately as a floating-point number, and whether accurate decimal representation is possible in the first place. * net: When io.Copy copies from a TCPConn to a UnixConn, it will now use Linux's splice(2) system call if possible, using the new method TCPConn.WriteTo. * net: The Go DNS Resolver, used when building with "-tags=netgo", now searches for a matching name in the Windows hosts file, located at %SystemRoot%\System32\drivers\etc\hosts, before making a DNS query. * net/http: The new functions ServeFileFS, FileServerFS, and NewFileTransportFS are versions of the existing ServeFile, FileServer, and NewFileTransport, operating on an fs.FS. * net/http: The HTTP server and client now reject requests and responses containing an invalid empty Content-Length header. The previous behavior may be restored by setting GODEBUG field httplaxcontentlength=1. * net/http: The new method Request.PathValue returns path wildcard values from a request and the new method Request.SetPathValue sets path wildcard values on a request. * net/http/cgi: When executing a CGI process, the PATH_INFO variable is now always set to the empty string or a value starting with a / character, as required by RFC 3875. It was previously possible for some combinations of Handler.Root and request URL to violate this requirement. * net/netip: The new AddrPort.Compare method compares two AddrPorts. * os: On Windows, the Stat function now follows all reparse points that link to another named entity in the system. It was previously only following IO_REPARSE_TAG_SYMLINK and IO_REPARSE_TAG_MOUNT_POINT reparse points. * os: On Windows, passing O_SYNC to OpenFile now causes write operations to go directly to disk, equivalent to O_SYNC on Unix platforms. * os: On Windows, the ReadDir, File.ReadDir, File.Readdir, and File.Readdirnames functions now read directory entries in batches to reduce the number of system calls, improving performance up to 30%. * os: When io.Copy copies from a File to a net.UnixConn, it will now use Linux's sendfile(2) system call if possible, using the new method File.WriteTo. * os/exec: On Windows, LookPath now ignores empty entries in %PATH%, and returns ErrNotFound (instead of ErrNotExist) if no executable file extension is found to resolve an otherwise-unambiguous name. * os/exec: On Windows, Command and Cmd.Start no longer call LookPath if the path to the executable is already absolute and has an executable file extension. In addition, Cmd.Start no longer writes the resolved extension back to the Path field, so it is now safe to call the String method concurrently with a call to Start. * reflect: The Value.IsZero method will now return true for a floating-point or complex negative zero, and will return true for a struct value if a blank field (a field named _) somehow has a non-zero value. These changes make IsZero consistent with comparing a value to zero using the language == operator. * reflect: The PtrTo function is deprecated, in favor of PointerTo. * reflect: The new function TypeFor returns the Type that represents the type argument T. Previously, to get the reflect.Type value for a type, one had to use reflect.TypeOf((*T)(nil)).Elem(). This may now be written as reflect.TypeFor[T](). * runtime/metrics: Four new histogram metrics /sched/pauses/stopping/gc:seconds, /sched/pauses/stopping/other:seconds, /sched/pauses/total/gc:seconds, and /sched/pauses/total/other:seconds provide additional details about stop-the-world pauses. The "stopping" metrics report the time taken from deciding to stop the world until all goroutines are stopped. The "total" metrics report the time taken from deciding to stop the world until it is started again. * runtime/metrics: The /gc/pauses:seconds metric is deprecated, as it is equivalent to the new /sched/pauses/total/gc:seconds metric. * runtime/metrics: /sync/mutex/wait/total:seconds now includes contention on runtime-internal locks in addition to sync.Mutex and sync.RWMutex. * runtime/pprof: Mutex profiles now scale contention by the number of goroutines blocked on the mutex. This provides a more accurate representation of the degree to which a mutex is a bottleneck in a Go program. For instance, if 100 goroutines are blocked on a mutex for 10 milliseconds, a mutex profile will now record 1 second of delay instead of 10 milliseconds of delay. * runtime/pprof: Mutex profiles also now include contention on runtime-internal locks in addition to sync.Mutex and sync.RWMutex. Contention on runtime-internal locks is always reported at runtime._LostContendedRuntimeLock. A future release will add complete stack traces in these cases. * runtime/pprof: CPU profiles on Darwin platforms now contain the process's memory map, enabling the disassembly view in the pprof tool. * runtime/trace: The execution tracer has been completely overhauled in this release, resolving several long-standing issues and paving the way for new use-cases for execution traces. * runtime/trace: Execution traces now use the operating system's clock on most platforms (Windows excluded) so it is possible to correlate them with traces produced by lower-level components. Execution traces no longer depend on the reliability of the platform's clock to produce a correct trace. Execution traces are now partitioned regularly on-the-fly and as a result may be processed in a streamable way. Execution traces now contain complete durations for all system calls. Execution traces now contain information about the operating system threads that goroutines executed on. The latency impact of starting and stopping execution traces has been dramatically reduced. Execution traces may now begin or end during the garbage collection mark phase. * runtime/trace: To allow Go developers to take advantage of these improvements, an experimental trace reading package is available at golang.org/x/exp/trace. Note that this package only works on traces produced by programs built with go1.22 at the moment. Please try out the package and provide feedback on the corresponding proposal issue. * runtime/trace: If you experience any issues with the new execution tracer implementation, you may switch back to the old implementation by building your Go program with GOEXPERIMENT=noexectracer2. If you do, please file an issue, otherwise this option will be removed in a future release. * slices: The new function Concat concatenates multiple slices. * slices: Functions that shrink the size of a slice (Delete, DeleteFunc, Compact, CompactFunc, and Replace) now zero the elements between the new length and the old length. * slices: Insert now always panics if the argument i is out of range. Previously it did not panic in this situation if there were no elements to be inserted. * syscall: The syscall package has been frozen since Go 1.4 and was marked as deprecated in Go 1.11, causing many editors to warn about any use of the package. However, some non-deprecated functionality requires use of the syscall package, such as the os/exec.Cmd.SysProcAttr field. To avoid unnecessary complaints on such code, the syscall package is no longer marked as deprecated. The package remains frozen to most new functionality, and new code remains encouraged to use golang.org/x/sys/unix or golang.org/x/sys/windows where possible. * syscall: On Linux, the new SysProcAttr.PidFD field allows obtaining a PID FD when starting a child process via StartProcess or os/exec. * syscall: On Windows, passing O_SYNC to Open now causes write operations to go directly to disk, equivalent to O_SYNC on Unix platforms. * testing/slogtest: The new Run function uses sub-tests to run test cases, providing finer-grained control. * Ports: Darwin: On macOS on 64-bit x86 architecture (the darwin/amd64 port), the Go toolchain now generates position-independent executables (PIE) by default. Non-PIE binaries can be generated by specifying the -buildmode=exe build flag. On 64-bit ARM-based macOS (the darwin/arm64 port), the Go toolchain already generates PIE by default. go1.22 is the last release that will run on macOS 10.15 Catalina. Go 1.23 will require macOS 11 Big Sur or later. * Ports: Arm: The GOARM environment variable now allows you to select whether to use software or hardware floating point. Previously, valid GOARM values were 5, 6, or 7. Now those same values can be optionally followed by ,softfloat or ,hardfloat to select the floating-point implementation. This new option defaults to softfloat for version 5 and hardfloat for versions 6 and 7. * Ports: Loong64: The loong64 port now supports passing function arguments and results using registers. The linux/loong64 port now supports the address sanitizer, memory sanitizer, new-style linker relocations, and the plugin build mode. * OpenBSD go1.22 adds an experimental port to OpenBSD on big-endian 64-bit PowerPC (openbsd/ppc64).- go1.22rc2 (released 2024-01-24) is a release candidate version of go1.22 cut from the master branch at the revision tagged go1.22rc2. Refs boo#1218424 go1.22 release tracking- go1.22rc1 (released 2023-12-19) is a release candidate version of go1.22 cut from the master branch at the revision tagged go1.22rc1. Refs boo#1218424 go1.22 release tracking * go1.22 now requires the final point release of go1.20 or later for bootstrap. Go upstream expects that go1.24 will require the final point release of Go 1.22 or later for bootstrap.h02-armsrv1 17073780411.22.01.22.0-150000.1.6.11.22.0-150000.1.6.1asm.htmlgo1.17_spec.htmlgo_mem.htmlgo_spec.htmlgodebug.md/usr/share/doc/packages/go/1.22/-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.suse.de/SUSE:Maintenance:32510/SUSE_SLE-15_Update/b2bb5de4638fb813bd045a9c9c6add23-go1.22.SUSE_SLE-15_Updatecpioxz5aarch64-suse-linuxHTML document, UTF-8 Unicode textexported SGML document, ASCII textk3S1$ O&505샗>.b`:P2P²z :gwwJJJ&moe A;E|Ž1 /$UZj&KP #w i&`OppRR"8 {1!_:` ʨJU6ST8#3{ e/ 4 N&]H9P7PꃛCq[mpVx"z*wτOYYd_& ^cz`iY Oc՟o R.6(a- JǗ6318x:'r]j-9ʒaDjAG ƳiyPkܥħXo8]RXz.ڞ>e˧}rFL] Fϯk.ޡ 22۫'fr$=tYH":gzHIx0qc0cQRlt^0_y"=b2`'v(K1yDf9se3&^?^'~b-. t8\0GFe B~a9x$ـ8e/UadgZQ^Sv ¹⤾_`4}2f+١?)"Dt`h y#͗IԭBߍKs4':} W#LV<>V9ϼ[悠 i{Oވd;V6 BTG:.%Jb_q:d%aT;󚗫U^^O93_ТY=$kĕ0z)؋l%DjJn3TSG:'fUVA'1mHo}\pj7$93X59^Z J-CK!bQ&ʌNVz,FRx -.7w ?p / Ac4 ];ɟ(![V[;!W-դԀ1NG/e=$}*xi> $v -\/|«xAM4IকΤ+M5wT:F4JM[-?R2vEf$*Oѳ>eW&0>P}|OLR}C6IiaXn cCIŐ?LiTB=r:yg\{_tGGC!>/AakOz`IH˼1ө}E O*bst8҄/=LLI4fv:n RBx\};vYM)cU?'S`y(/:pNoȰHj% ˼HQ`J&u^ 8K)JFx 7nC[,Qqe=M'V?JZ;m]$ x6t#CdzTjt~S#:&]MW  FĈ{ ;*ڇ)(^B|i@T1âQe^~Kֲ뚭? ,A]T"8k t[hL voð?U'lV1~(f1Fi.p}XƢD?X]8VTRq;EQ>aag A1ۺu ^o}݌sFv &oZ&7[-thjIKGOLtF $Cz,lqʶK|W B11h'_;ZDG\V)$կAE6I+lTSZ\|>VZ阽MgzOQCvO<,_M  #M7-i˧ 9@o Cgµ&qY}SD$GKSK5RAYh/W 8SAm[ٟ]ԏATM"ZZq`hx`< M hG4ûaB?O"}ؾڶtRZ's ( *NiJ(+?@\rұ C,]<ߋ~GyWNv-rvEω!OyX4 ODM.*ݻJ@{y1<Dy')S)I3 $Ч*;ȸ]4`=ۋm#In &A-䛧! UX`BN`eA#}Yu,Y+G[T7jyudη8G5@{Hn.x4Ѯj =ujLYlYyG=iN$cTTBM_f tr0jtUOC!?},ʅXd/Ab4OeoW7jӚRu߿n]D.QĵC& t FlSzUd*r-Ō;[ɉCN0_TZF!ɳFZA"4%rH{xT!lq6;e\wfuVQL ͫ_KM'U*ï3Ta=?挱nn_ 樂LYZ{]DEԼm6_G*>rsoVzRqA :%&6p) f^D_߃ț~bӻť~Zm *Un纼כhZK܋9L]Vp=,XG_ 45f-hm5279ooq: }W4jҘbpt_W vEvn21jώ6?kCVފ7iNIs[-lDBp$0 Lcxp 77ܻCMPfҁ/>йOQlH^<0;,A'kӇPJL¬ enN3Q.R7p7ۊ][i'O ʻK:unFu?{M8 76p@헝ֱu[ &WiUm7"vgD$up'+6Ӫٚq,Xyj[7:^L_߬[?QG1 ,Y|j43JvYR2ǀ%&nkp'Fxu-(W"SM xk<MwG=fM2t۹+hs! D㐻ze#4^j!(Ԭ;%CUuiG {Hl8x]-#JwHc2$k.P.kZ ȦO.P(kοtk7/'"%]P։K7c5gqaMp}SXM30Og  Gq#_9TgWڋ/Zdcm$BTK!I1QTZČ#/gp3Ui3q5ĝi;G5U+et⑨=w}eѤ9(^AݱWޚphY֠| ז>9!~j{Jԣ9lX}`f9g:(!Lh*ϕZ,̷3v \TFg|-u}D q9L~yP 'oZBFu^׾Np<'l8V>YSѡ 4"!z 5?.>Y 6sœ&]ɑWQW7Ί9NUQp-ұ\ϋ;8D_Inb ٕ:Ŋ7FSw¹S@i@-j^2 f`m })ROs.crH.*?~3#eiG +]:jAҘB9'ζK{oOk?7~zDa]4_98Gi ..?jX)rMSd٭h;| tY$%4~jUŵ@mydL]9x38{qf痔1&})$QΪxlSGxoe['V5EBXJKt gmZ?@^LÚ JkF %MbQSc|ZٞJuP ׶hj.ag 8v acݧ_΋/7&~Oq8SDv80wgICF&hr[_39``~2&fOgV5`E x8{6`Y#+8Ynpz $/JKlg gsF aZ["F.y>WsS#Fgʊ/Gl="g 6j)LkZbYMe_6d;QC6qWoz1~]K)[`*C|ZsF~ղL<^zu9-UQrGF2Ta3\3oRs#:~㡂ClWFLHY>=?BXV}4~rrBn憌y̎я˺ F@QB _$/e6=L A^wLB,ouet| -M-v6 3¼gW^u w:~/27*vvF=#اV2U^f R>?pD/8{(ѽV|yT+>~m2 ~%\Vk2S\IN8DAEL]Q br x\j;5rb@eO_gt,<=(P~{u.؊׿c&Ym t.ή/BKx4j)evܱA;ЬO,K/.?C6?2׆Yjbl]uK~B1^E|(Ϛڔʄ)ýdW/>.ukg=>alj?iTGCԻ5>Ҩnaeσ?Io@Ў *{Sy"Q/]jnj P[$ &ƓEj{#Y{u5:ohlN>ȹ ߳ARz#l=ٳ` WTƢPrp%C|7Ytg`}m@>'<'F4~LݠCdml%B jطfcL%YHO9EZ_Ȁ);}07f?cs.^;Uc-36>t kݐAmDlM=$q"nvka:\M9Rb**-/''~XM-CqfNQP{ M)7uMdG`$ݎ=zUK2÷c(XРG[Mڪh@$i'tndH-uCM]ddOLIJdf)'ƎЉæAQ6=[z0\f}da,+K:5ŏXm:>\JcAC&\ *@@v-"q~3U|Z Ɯa_\+Gp:Ye>Tt*Z#Dhޯ/4)HH۪4@>끷"07A*3IHf ]g\VHdCRqyhYOyٶ/sUcP2_v~(ʴBt1ȀfRZ<sJO~0-+kJ^v2SZgSz`R|xmTz _{ 1iЇ#UKBOTlڑu Q n9|J܍^#Í Br8tgt˱ϻwIf9;(e<"ն |4s)VŨ1]7$Fqm.ֲ(Rvg(F._/RB~(! K< *],Xq pm=]%IKB9z3% ~J,|^хw$68_{1&z.M ifTr?Îێ;-h9ё1TkrAVmazk=çr몏[ 7PĶsl7}᯸K) ?\r}oYqAa,cN^ꝦhI}BW @ )O-kՅF'0Wxn0D7 {pDMjL9M[pz+Dں-, $c Dc&݀&D VĎ^U(Tp0\:)NZlDΒE?n2kyQJa/~`5.gqa? )pEue_cNX\ID}sU4sʈ #ϵHVW_oC4* ;O(dCB{*5$ ^k֧#h2JG [ם&{oI;uV+ Ĥi8)FMJr:6C#-ܻ ~G +" ~F~dHE'A )wjYȮcbadЬ Q05/P- Ɯo2;݃ Z9HΝ54vL5>d%Z@ rLjv@_򨭌^(ŃS |Krup;HCbYhsMɕ[HN,s>#氷~R @`B=D fxU59ӃDk 8Yȧ'aHw%eO< Ѥv*V~{3m`D=&t|G A9/Ҝr\ƍ4DɦaA.Z͒L%Uc1w ovᩰ&J 72759:kz0%VBm l~ eJ l\Fb$U21!j*0ӑUc 9u8QYۃo ǺLh.q.dž7MPI O23yJP^F0j&&Ԥ\IQu]"cst6rbm3"(Ud{93Zr=nNMfqsge=(2 IR-e\9;c9Sm"QˎaFK#zh79^0rޜN`&^%z\׺ۧ8Hy2nE!"@m,{nDa 5zS s_eA#Z\% s|+ v7i=$2iZࣙ7VbϧVɪUpinXQ3,R*hSk"2vi S|2y\kRz~\ ~,`lc߭n6j6^ ,$=wj0rg9$ rAHE>)eeސ9dO"[upS {тV"/"7 3 )Hy Nvå@eVf=P~kEHlo34Aa2DE=s#AT6@JΘ2gJ|FU~me"z{ZEye)9` >:0Q:?\ҡDYMC¤ WƱ2w#]~-Y^ʘ9s va-\'-;w8#mvxZGUHS ;EmڎnRǰ EOlhJs|onyAh?<UnԙIm1Suw]G- qpo0͎H%m`NdQF4!k Az.GK# ۼV^?>jͷF4&epO5rF4!V跌)'2x`jSTN[)ڂNJp:säfNHB^ׇz+:4Ye0/ޟY<Ά׽[YnZl.{b LRLo揯"pʽBĀ! ]2RX\wWσDW:^+Uj~{eh.QXǟsX o12^W`8G!+,r 2Zyur>%a,4Ͷv#x3Ⱥs0WP|[t2897rqģ5 h\2 {%@-s,LD; 0q'uҖc7+1$@vf鿨y75~K4WnR)_*fNMStg*Uygs$1UQ9Q^jB eacp+v<*"wbɒ jfR|\CoS% Xƈ%˵ٜ+W raCx|"uVmyZo N̕ yd0\56$T~=p+A.QB$ܬ(MR]K C! Sɭi(n*g\~y̿T~ }~?P6 =)Cc)}tDFILHQ֣+svcDyDv^Ĵ`}p.uMW;@kP;`!-dmF`d@єuuTVEӽbn 61@8탔y~~_i#"LhGPSWr]?9{LxҸ ]3=w,"9e$;s^f@u4^1eCtb/P1@2(lAܐ<=>ahD3Pkouw8g95!eQkpP8n!сљtwNܨ!V_pv1K2dRZB~ 'L:5[l6)?[Ko=@>%лV:6kG?]jX' @o~?2R(6뮏${?DK\ؠl2``W)[ ^, #|7\NzCK 9mAs$'u(Uھf!`ZG W4D&=8eaE9Law[m#m/|0 W2XK !{|Ꜥ"F]jJ04,բ8t6ȃ8Nc(%$`hX[# c9IMB4.z4Ml .Լ QǶV),P(DO>2{W_qB^LHU 0 FSȐBRMUxU1VrQ8F)iJ@#Mɪ)80UېQS_K?."w6 s%!훒Mj( H՘f=*G/#tZ͊ R\D4Nhbs:z_'\A2^UB]I)C4ALp T_@q-L1l:Fԫ2Yz^|Q tzn~ǝwz;,(\ʫ|ܴ_sN u,˲9M(Y*@뙉!;C6tjϛ}硯kkHźH y*C&`6jh{]B F ư +/`鷼!DZv&8RJ2Mx ӣȺUbf!?X*08' RN.dOJoe[Ɛ!%i)7dYd×q dE@n̸`C3LSoC,!ثEO$k UZowFNAzzlj{LqΣ% ji\FNNCYWz)QGa7u>7)`"h߁(3>"DBX:ZixM7u֚rTS*iۅP1J?%hG& :PPVm%-P{ Ht֘T KGpsA hg4M.t:⨌ѐց ^f8"VlK$]?sM/>k=="z ~ќTHY!O8ؖڔah{ t[g:'##rF.9#fDɱ콰-4#aܭ^~; PqQn:}D$(Ža{j+Ѣg҇87LJVeJAĸVK11RZQsMÆ/⣙l;MërB֔ -kCpCAo14ZӢjY - Q m1ް&J`px4 )vn@`uP^3 j/:Y&cb<8"GKSac&з/6ϽO'['+F,wzi3kCW"2Fg̎ (p_^3$#E9?;KWpOUOı- ]Mfh@{P0O-E mT%Dw]]R=a F EY"L0jU67ĕh$V,>G&_s5+FSَE~t41@ kw޻G9@=ޙ@Jqc5q4[mfi ;f/@m(Wvء؂`l'1@ӄfgwrWcN]†tt((TD3w_aym_u~k0sJ$x짎7V_ֵTZ9rmigmKʅqX[M 1Z2!27n ȋ`GS[ i AL w,,$D)H~l%YDX#۠2UH/9H1RpI_-+XYkܯ& LrJ$@X=<"XK 8,G\umG;9D {}Cz'"UH4Ek=ӛ*]/@}*ģ> -#@6y &HV٫B8N:CH7 ?M)=Y'nUlz!K 뫼uY6tuH^t z4[ '\5=e8[6TOӂ)U .OBe%] %(ԅh>b/5y-)Jf bNM9ں"+ ż+ (N>dMdl׫z.iL5&/g'Dp&6)ah,Q@K4դtăq9cl^EcbX$u?3n472,k;cp'z% bc%͛@PX(n*w(퍽"^V7Z=$mؾJ+=]̓SOo(R2o.|Dr4{,c!9m[t Vj7AK54-i_=c:1yb )L${Ys깸`?0PdHxz7ɋce2R?A' AZE&u$qL^P+@rarK֝Xy^۵#z,!> Fii1ѵ- cm2+Sq1{<# W-~٢yՌ|a~dFW"\Y!X3KX8R\uNM:{A!ytWyu☽ c`{ANjZ$ ig;?#T4$<)kɸxٵV&|cm&bd}O0LV{F=Xk.%FTX{q/Āojʛܐ;N56F]wX1`2/:=D-1"P۟go36h!T^tM HiZG,y׵}1|Zb, ?p-s_cK*/jo@t!XHmhSޔX;>1-+ɕ6sѱ4 &i8p[Ĩ![ ߞˑFhRɰ"sM(I2)KwvCj-$UKþ(}KyhE[: 'lDʉI 7'&o/B0 v׍[d.g2;oK!LZQIy73uOY鯵d dyqO6j=m;N<;%s-5OuY Zզ}Õt;'E0G:u@բZbPoi%B,}w@u9B[j"LE#7RRAcIq+˨7a:u dHh?'c,~HZ2Xm& Gp xwhO6&n'ߖIH(h;3a*!9ES{AnzRLXixpu ^GTG c$|.8*qXAXtpҴ4bIPwIh7AWak#PւW%((.߂dR 7l _='z8z9V]:hmUb NE%0=x|,6AvGR4X=6ph3lDAn~_YaYxJx7Nj@Fvء1@8'ztH*Aۇw[(1`b<ud2PFę/UobN]jR0IQ%& LAިϒI ar+Qo`w Dg<XD&܉ [~8v]W갗PN@`NRxiT߫|ڨI6ak@L=@<;O%[=MS۹ChjGQJ.KV!˺PcJeQ"gkc,A<\`%y7[(CҶy=5huOtBh|_=SnG;r|%0<mT+ LH:o\Y;cP``1Լwp/* eU_6Tbur } fF!E#&#w6P2J!|S1YvQ>r$ ~n!saK` cLQ=BUCZg `>Sx L76yD|wޣS3 Ai.CgXnӫǑ9·1s]5Bz 'Zv6.G[h-b sCG}^s)*ߗM{#x y( IR ?{גDÌef_]φ&</LRim0 \ ^j%6AxLtQ3eץ{ o 9*mi;8&Đ:h'xvJ)<(h ,r\; ȩ8FN O5;PXWh'{9LO 3߫KEB59e$#JPW*a+WG]h ?RSAprB}]k{T[݉xSb0{M@O #*mّo ߺ녌`<U>d`GblV5U# m(.O>{MѸ}9!VT6Ϻ+{zah S.]f| g2f }$@'t䆨 4,*qfV^R^m<>vfXՕޚH`Z:R 23nb29ٶ`hQ͏!b%q( P-]Ɩz*t^JR5>6ɲ"nIWǡ-c#/D)MKfkV9KRM;02A1[Jg\~= 'lSJdټŢ^͇G2 (Â[{v=Ijh]>t -V8X?}*nD'%:in @;TiN_]h7ʈ`/c8ӥ[#\n`H}Y@o%V EއBY2n2Y8C h"bE( ]iYT'Л%51wM@g 5>mTC)î 򆷉eN!*iG'<:. sf>K+NZ"APw>ˣHKLWc;D,P~Tr>RmsJ&q2k[ך3zBw0M#A;tZXҙr,aeUT!Ռ2tr3hv`:-^@"0OeJԤo]oɵn @{G34WFaY,ȏj+dHpn+g4|Dۤ|)ἥUSy%o( m\D~O5hO(@b!j:*ܽRR]FmLxbrP(c#x6 ~g mew)gLEq)6s dC蔖TC4}:#|1sM'[e;K@QRtDػWRe+tos}<>6å\.0HhC>v1i8noSN$y7#Wg{ZJfgq$Ai B{vay;f|w*p+)hkoWEObHbFBunZL?SNReA\/9~go[ڞnnJLPK1/Ѷ{Իp Q[=}6-{2YodWCl$4޲:`E1p ~yabvn7T{;l%AJLrl5gI4Ov>]ρɭA nc[,?郡=, 熛ɯEB$?2k p "N2 ɐ_$+7zB>jVHf6vOtKͰgI1w29A<u襯"mۧ+^f5Ӟ)eX=ZlHkZ4={J=]&4N{8/$5bŶzc}(G}R֞и9$ Ym- BPP'U8& R@90% ñz)&ФDžuǖb>x%ZBїf! ȣsߐe_Ir1R<[ԯN)Vru}.iKT:)a^,#B(GPuXDӋudԏqK:);wtbآWbA'o ָϗf[@vF7Z+֟xS\̵Ǝ$#m */֡*,*\3"ɀj'Kvr_jl;!/ ':}Ekb}+f%`R9W'{R: 3X 8ͬi~-X{#H"?ғ=j* 2.:HVcMt{:0&-R'5SIm$;K3ZaAneΆC*7mrC$[Xl>h /ᘂY:"GCI`*Py :;VjpS?k'WD"I_lM$+v>^WVEnv;$*`P"_WtaQ*;)ŀq Ł.,cz Б",Ɲ )d5! Jٴ6 ͝Uȡk_B̟4$JH̉ Φ#f6Wi~k%mQۮ{:<#D b-9dL#k''zwa}S޿+x;rm!+ WDβ3-sg/͍r$mR@mw1XMATN|od P0:?2H1^T%jH,$ ~i^R5(oO r$wwR!Y zN%  0x[<۹G0MةE㮏.mg\$~Ůw| ҭ*Ƞ)2ZT/_\㳏@N=jm/}7j<;-j$$AC]5}w7א9}^w2DV% zR}c8ȴ!{G7lɽ^>gJoz3g  {@:m S#XG_7Ȃ8=\`ɛ쬢EBZNk56ķI`7%I`Uqq?;y]9B~Z?K!:1fH` J1h ʠ:ƚU XJzJt;Ngy)$C'=VeM@QEX<c#Ʀ0:L Ly*'vwaHoVRR01t<;t6=;Y!p5Me_V. >g[gI)dFnf0^B:J#2Q)k:] h.N~AWMr%έxCv7NSԖNqDP{;w)]|"*0>#hݭk  Ge! R*]o- ;|\Tk9SQDR~/k ܍4XM_i9 HG Yw>Ι\+0Rc_)ՙGhܲR&2#Yfb'@1L"8ItZj>ThYֲ\!G환EK^ pŜFf"}j/>%| PR٠{nCT h "c0ո!7Zti$Q4ك{en 4u9e~w"yj0ZfEMѼm)R_yƌtIEpcbm|ٯȌ3-ږjmHOB__z(I5 C p@.F5i삖1WQ gw2|jڰbŊQL ˩Q-iڟF[`i_g`,Λ냱?.xحoP7 ɘS-vB:Հ޼H)Nnװt<1q1Vʦ6qN-5}{;yJ2Xى-SXND7ZvrnVUM.fFR”Q2:r9uRl~ `5F^ ^( ªz+\ȺAs@\6^-ESi:]_AB[)."?*[Cj-zEoMļMa&v痭.@DqJ@+?Gky,W6TnӴm$J [b@=%LC̉V'@l}c1ˠ!ɨt7I*qF6;N-]4ɋ?a%o͌OA_i@Ƚr&}; Dٛ+%>cg#B1=V܁2bT-s6t0q պASŽ(<όB5D;'⭸kykOȒXl.=GR\^,h\.'hy3Ö׾ Ȁq.2%ULRsQMII,8v}6!>lN \/]dN02#"v067nտ$ӯwa˩l;Ġm2>X,r>3P)ű(6Eub |sBCK *xB% -\r'պ>]֯ lNoCpPZX՘m% qYQf/"HQp5!)~+K"\`s䆎j8Ņ@etAf. i}=ネ&XF:,&+/^ @&!(:5n?Qx<&9s0tPZzqѕylo+Mh'Tcgn8Yf>ۤ.9[юh^HL?0AM?H L"- A%dBwO;ahhcعC݃G֪HJXX%,^~CE/ z>d~ V{.\yڗ lf^DŽ "-3*<,_;ΗE$D'6y2p3ǟfH191Q^4>䂖 w:/X)QSŎRH1PZ LӉPj{]7[˩( $59MI]r7%$2N[SW˾d^A823IlF_"t/e^W7>y;̐0?{+w\UEu^ϊRLy4o93M]TG.qzM@̓MS$W"+0cnCx,eIii).r$,@ Rn>P׳!xVyFsJ=nLV,59A6wy 9`}nzVS^H28 ֒irQͅpRJZHLbnݟ )^NZ#B9MY00ӽЈUI񲙠i?N*tߨA *ezK9;4H 4ţ&ݐH}L=Ǭ -~ZO}#n* `$M"b⧴M({vK%q@)e1Y\)]0gRjn:N``W{i_5}ޝ2~`sKm*G{؂w7Ϟt4=dά1 &1cZM6&4`/nßq-ѽUb0p/%} a*|5mԎ>T]m0W?]p hf%*(+|PQ=r9{ E鱮!WȄbBqhVh1Y JHg.#&sqQĻ<+OPQRb D`|\bz&n#"B=ȃ͒/˛$5b6iOu)~%|ġ.NA#Mֱw{ŗxd%XO3 -;Ԑē_{jiSw0a;5<<"`$k0nj_ kCޞkY݅EI/{CMNH|@_|'!}l./u$?UK@fPLi L4/F_Y#$hVwE˕фPYiyY9^6k*d XRl3۾7SKd _J\q,KN |;-q?B#ۑ0#&}.(ub#{+V|u/ᘇdh=c yQpGem164q&\x0Q7io:tG1$(bStTc&+{,+޺GQ_JJ+|=B+Wj r@Wۜ+@RiuUlU @+iVHkK|{OUL z-ޞ=\<4C N&iRfvYĀg6^r"T0D#%"}{BL`@[v ^ Fl$abW𱛜(+`"REL6d~7{Fnv,*!> L~mSz֟EMbbzgX쀡r^PXN8CsJEV^Q̔Cy6s)(<(' `w CDCe~ I4 ENQe%#vG-$ebHxr&}7:rmy`y׉%ҋxQ.`rUHZ4gJW\*k-߉;&<ʨl i- TH 'уy!9uT*ٝ1x4ȇ+.c99 2]Qh՜f4R\I(7` 58$hu\Q&2G z`UxFl\na 0_J9e4 _uV]|bCwo )w[@hݨܵ`SR7꭮wydvxPoDžQ9WphO @?߻7N=pqViLKJ.GS>oArܰ7:TwpM]ړ>E7˞zCXjSƄ%,pgShK=+XU3R/`nD9.?l19 ?g2 iAG~M 7~%Bݢ&7̗)vmEbh? [,I/t? =2D+p)T`3 09 akz:YVS+hC!BùD nIl6,5/лDutpwM)@L]PV2Dni髗BxI%կZGo_WW[m]KQP˹|L{+ܙd}Dv:䥏}X?J|p:oZ0OI}s/'O'gYNy<:(JE!b*ҿX/BJAz-*7{%>}B_*wRb|gRDrP̏cxʼ,$΃כgro2 adL⒀vOEɅm\F<<qvهM =>ź07ٺbv ;&!ۯy.ձ|c754j~@ V*کTOЍ589Qv~@܎ܼ~\a{@׻6g lUzw}HGz?߲fTܞ6j^.mpJCkÄa4j lkMcV>7z*?OSYZ%K*^gh @B~:ȸE\lc͔uVQD;!՚du- ]@pr¾8amK6)Yp)QR'Aw$}M`3>NI n ͧƼ?JG- sԲ`I([3W2+L?! w?0Ni }: q-Rn< TeZHU O22YHnmN0 x\Rad30rm Wj0u.˷tVxU}Ǝ_f(,S8: =@dVX7{(U+`A^v߸u |hY}(QiW[lźG38a~* 0ۮYLpvODAţ1+O+]— .Rܬj9cnw3;Ef.CIi5i_^Ԑxћs"&9d1rp"cwC0ԑ=)>Ԕ)'6ss"0< c vCϗ ${ IbQ6+4dBUX1u;׶KPr 7RY<&쏉` ?֮ߔi|]W37o9]uӨ?WvNRT-Xi[ozoIpOt61ư`D@x @K"$ ky)Ӡ8 !'3H!pae'6; 0!z@c3IBZ2c1tkSB{'g],b&%* ` sKxء Z*Kpr!聱c%w}_MX6 ${B@ՊeB䛣ЃDn2+9)DQߤ?1wI&n-;D+S|gy2D+}M %^QE9$!h ùDuQYX1(.LO+OElvpҜqgZpJL\Hw۠O=E/s=T{jQO #jHyAO#0R2|9E Aa'ؒT0"~- wmVX1{иy*̝1zv"kHMf|.?YM{&<_s@;g9ąHXI?5)# ݨZloTzy47M0dk Jg؏ZoeL?֋+S|mn`Y)lFw 2fpQCKίq&ơEmAx̸};U()=T8jf;4BtMK@C9fWǯfBu0II!/ՁkժDO Yl w`Ǣ G{GR;܉ XgvDܲNEn9{^YLsuHK |q=%>@. 1kG j"}Še% bFIuI'@u`N3O}we6~рL5b!RXqՃƶUhϜm!aE%[f4fYTV9zo3U]GQ>Mvq#`@?@7#9kpO#@&Y8AoG+yvN^7bS+p?*QqNxZ8ۿ6wY+.,WJWx< +6B a s Tu*y҇0׻ "[ƾ-io,X9i$x^x^sZA8 ZT-65_]$G2g7[Jà60ԍ3 Z'T+LvyH洖ߍ N+Bl@_nܿIkeY#eJ¢=C^W{uy]0B1l_]Kr| ^wW}?ZTX_nI7H%S>Y7svǽp]Ɓru"1,, 鲄*3c:6}p_|rWOTIn{Pe0g N1p[>t.)ވ!qYйQ\2U]y_VGR|Q)ԚskC!@ѮXvf13&P` td%zkmպ*B|%sJ;Ȟx/3ɸXfW9h'ePIu N.ME]1 f莌z]/.! bscTqQO h _Ȕ/n:__K ,D[0`|`g˃f#T6hf~MPB[:80CƧ[na Z%VrT*4ډuJkb%lB# qXfd= _Je!s7UOn]I3UFE Gyd4BSS$OGpe*L*2=&ss]qqVdW~YN̸<.  H`°A %,|dj~C}98NaVaMU+B[[CF -ՍxvmyV[-ӡKg紿MUF0)Vpas7X$EZ )}$*!"R !<Š3eSy<2µHvc"TCcWɉ7xT2JopFLI/'-cĊput~AcL7N֩K Ж'F]@!B2@ʞ ^оIm`UPL[r.D!Ha/S RQ0h `H_4q|Y1H`^hgGc,Hג$ib^bIOrZ:!.R)b=XrY2UG Mj;XV0wKgݒ?a@ ¢\ْZS|XlzuW"WPB Y+cby%9M-ѧ,Za b| IA\Xbc )"řgȋ ųdkiF.JDjV¨H9c\n=6DYhV_st>] @ "ޒX0 Z(U J7쁨< 8c<64uXQp(ɡjP I2b084\49QRץ|֣~أ=հ^z6hXtf@[#!k=Xj-06՗RFnmJs 82ss Z8R]&zT&%EQ:=ޣCZ &+x~Jkk} 0pak>lM?6#"7q>{מMC2hAP '2[;V_e3sϤ lN'.X#ϺoۡX\I˔b[HvQe0GXN7K>?N>&wtW'.ޝycD{? )U~sK+vϽ-@l(zgWsuaȊX+/&H~tv(dSv2Ͽa=mw.Hb#uD h ̚ xI /A*ce(Ԋ Gʊl#_ eUծ'uc=n ?W'T y?G>BPKsRF _6 ǪJre0]c4&_4̚KO}?7snЅ0h4ѶKSHK |"ct$@{Mk~g ypK >holHG 8 T-Չ۫,11H`py2̼墘"\3i4 mLN!O$ZRJ?C= 6%jHqV\L U KXd7~S+t){+볐Hmg Ô t;6E^/ne^BuK6oD/.^#!玨DX4Wh^G0ClHX9afP^7k qJS+Se/ OIͷ26h;l[ju܃UPpɸ*d+@U*MXLԚϧD.ӊJrU5^Bҟ:7V& z ^Vl|Sh YHVDlI;"|>9Q }@D~nGJ34·!C UcoáohV^v_pw^Y_-\Xwߒ v[#텵U[ ̇kg ,(j2~@1qu/z l%Fu66 CmY='[& H+ks٪10X`0w!HJ,tmѱ.*MoR6e)U4#An,G:ǘ{cz`J/Fb.-mk\PE$ &_9.LOAlv܀}O\QTIG?HO3xnnuq%L:fPɍqq)G%Ӹ't*wqUWdW{65o RQJ7$P*F怣X꒔iCr[puov1g.\H <ULyJYN,vZb$ ^ # c[U2_0#jh"ɡG~ư+U䜶rC FĢXcX67ɯ Uh-ja R^Jpv:&0S_qZ>E Y5\{IƳ[%'h̑o9~-ǔ|P:ڼ*%K'Ӻ XMOk7Zp-t,3׻ ~bj t3 `07j7XGE+W۷)!~C'yGŒGj\Yb%=> IIh&=,?(dc뢀~~iHNdx w(w[̙Y D/2!rF4P.bZydeEX=DnJB8&-B>NSA##Q2&~P䆯i@\T%b!va;AK ]x/ whxvqJ? r6f/6o9O QH"# ӊe;Wppۊ\̂] e,$}f"l+3DH%f!1'-Ӳ 460 23=8N)*7}Hym *^9|x܌N1)'s7Ϲ 64 |m=hyA ׯwXX`̈́%M9{FâmT(X֋љ(YfV(?A3yD |3./oOLAm363{?諣3~%"sԒWHB҂A' H%Hv\kOAdcc2Ηن [>-LK'!u,ΐ?! LD{^&h$s6r9IģF! \PHt *m7?Z_VZv). ¡өRKЁ> ioB 2ţ5ϩ#,\9o]KG])aQ` LYAB i%˺ae2IȚǎ2T2eeʲ{ee-j+P3v'|M'% 04荼Di'#ͳ5ň-{"楳.{If^7#7p¹YhT7>sj^@]S'&>R[]>$ƒQiI]vp7gMӥڤ¤q %d3 jVc)LLK(@xHv\ !+p[|uԙ+zbַV꫎O 5l W׶AI_D榬͟,@i; .ܘ9jYZ@.>י3^3uTʆ\5X{lǭ)vAm1AsآI:hǨv=+[3rPo{sWviSӮ˧ SC[h`J8\l9 W m ӰlHMiopzKq cM3i[?Ͼu.eUDVUٳdaBD&"1czchVB2\6G\+ j+XiW7mw[Ƙ:EdtE9z>^(?\3zl74vn0 H0bLM7Oh9;'f(ڏJ϶mEW˸ZN1S"3a)4ח8_&^\|FdIT$wP^!:p=jaFɠE^ 念0lۤDK6ő<m`zUs8!jÉ_L;A޻ʿ,(thm,/m ښ+ 㓛&#!n/uwZ赾5ZaF]vzp,G(Oǯ4J)"t_<.&Pp=洊b|"0n4te7qJN[g  -Wk\% T9)&Hu.ٝ8' $MǑvPJ7-F3B0 "fF=G̚G!?ŢJs֪owa?^rAOeta0y U c~]oJ4SPIʩ0L mIy2>y#BѼRuFEX/hEMczŸp^OCYX撇]25<$ri@9WOQoB}vF( $;1oyP*.^;c=M,CO&*j(y 9^ۈۦk,Sqgv+{ZfɆviвͺBšqnMe'*tMϒ?2tXڠmSmYX&{u.ƲQ$|qhSWB[vЭ^cZ"qԱ+56bA=M S\=VAM,) |0!)$U>DħVU]C5O.uŋkmj˰ ; [JV ͬJeL$MF&T G'ja~ i,h#,,C]odx7zw#z*$7%Z`=X(|"FdAՊʁ8`6ol =279p̜<ϓ;lHNE Ya1 º5C/2tZFS2% ΓGjij~ɀ7D!@H!#|߰9`fXMLrrbj,Rm.7( ×KBl.#x MV䩇:1`bNmSo-F? /Ŷ+.ۺ{"ah4 i&Y2d(/PZ C K%,+tp<,K۸(bD~d$F?)عyOuzZUϲN("ϑ<ŚQ{PrkYpe]r տD 8.'I*M mXN;}87bjl #Z0hJ% +e{\vry+dh倜 *V|"i7,9j|9KDn҉O7PWٟP#dhuV/zdϿ:@U{S;4A1!<#ņ\7/t2ՈmNACx %[* ؏ԋn_]'V1u}Zb1D`SHW&E$,M|ȞN I^0vwo鍚._"mWwu )B@KdNu' ׹?X=YESE`Hҭ9žȸjX<ꓧrB9:MK;T[ ƒfY"|s9ۥx7TWv~c32evx Nŕtu) ,]JB32IІ*zvzYKҩ<_紖|M_ ȇ1~IۖwaꚳbR2lGԷk?raf,w1h晧p^,YGێ<*`娒_(ܪW iv[_'ݨ^z94+vh^QZ!*ʎZH'8O "Q` Q;ZK8#[˵qBΜ)URl`dDmχuSАaIy0o qOU*V{ LKI {fo\'Q! |Q|%&AJ4s\[: p5Čm':f !(lRVyV7~]ŹU26@oc|ZS<2@ 戀^K jSqqeb3+N! #̹̭%Z_.5'1p"Тy8*Ch+@|L_fE$k|/a?-zd{c1)R7e/)ro Yf>&4c<T(qurf2G"m 7J!Jվ}֤ޱ).If_ qUf"ѺzлGA@H@%|B+[c ~ຉYU`o^]4@!Ln1*|hrkU1q'EgmH\I&R؃:5= A9j ?ĿE\ٸ\ItݳP}Qd'FŐC_!/rȭԝdjeiDZ>}Ċ8Yhn\LK/]nv8ydpTwHG 轇VS걐)#L"QP^3"LqÏin]_yQG;{:PS[VZ[Dcym0w@i3 6TM2'BV@r|Ǚ361|+s_'ԀhyLjtgqM|^' n``1\Ѷj#(H{. F%9CkAfdaJ=ki8=F߮pzxf#=/B ;MqSsDz~,ޝp8Dtx/̰xu)g0r,A P)7+$tNA[XKPs3&7y6MQ?z-d|h`e]n1 Ub1@́sЭ k!2%۾㡎 Nzb_ CP$ &L2Pʙߥ7kT@gc5uDhBl&=-ȝ{giǚ nYZ#GMj}l -T64>Oү/m.8a#Qx/؋IUӝS?Ez74Hj<j]:~S*}cqrʕ!'2Ivezx|v&m @UbI;X}|:ܓ8 {J`"M)ȃB#Ԥb Un*mj7ؤph'~&qNXsN zc]߯>Q)ȲB)W;dO_2Z<GeҚ'^R=Ympal P7{gIW<VGs<{V؎PG<A^vYޑPg(cF`+g!Q ^ycp9&R7pDWZFW~p$)*s\i!u ͌[%Wn&pC>Ѭ{jG"o(/ ePS^$bGSPϰ XqĔ*PG{W3W"=99KZܕ6ԓ3ˁTbIzTwr&Bk?҂zI=N! XgRE̿S zJU5״)P49rޚiX x*7y> ǬV:0{bNLp P5+pcN/@?;c41θs3a 2:ޜ&(x}c*No 7X;|Jיj{Ci7,khS\y۾Z8xmf9n4Y~M6lf\./O жvu#3j% CH@J# vu¬vTtgU<MJ0euԸZE^sFxED͢h w[6-`)j>Eh|# XN\6IqU݋lã?q͸G7(#ovxsQwȎ?a4Lx .E彳|IJjsT~C[QE|t?WJ3vؠ7Վ-p1#T0X|E\;y2 nv,QLW13Lg@vތ@Sx^{7v`Kɣ#l H$4w <&ˍ-5?k\гf;..kli7dsk,գxK9:sU&"UYQ]Rmc汪P!N;aξ+RUү؜E׏*52MgfG]mxɄALƍZ΍ogjn²cjW,^-j;mQ6'{$DI e'tVgj}ZbҠv̶v"0KE'ўB `p6 ςv4|ͣ.[YAW>?Nզ BE歗e?RJb\8$?T7X" 2#LBaյl j$Fg^ʀPiDjhnQ8WJvq0嬃Eg 8DcKwWd{kXZ`[ᾂ1ŭ kDʼnKQX;0)t>l-);oRhp{RNPDIwyvոMf,;xBta\+וXV?':&%Á:'y vұۛ{Ơw,E\H6-,1e h 0pEDJk%$ɷ|ߺRi Y CSUنv>[GR+({Ҙ-Y 'ؚ78b: aŮ9KS MoZјtȪ?xLI1~؞Y] ٔkqWۀϤI|z1*{j!^A :!$=Q94aw}6s">r߳<wָV+!-CXT TQsg]Wb&dׁZڼIsK2Cm^.tDR!ש`-x"\r[ZK81ۢ1O?@7,aQ %'ˈpI+SᶆЃ"͛CӮ+줴K񢉍'jAFm<-ÊP^1;1uDMr2uxq0"?Z{#wd*z5a5}`V\@r+`wvF}﯈/yzTjPe5PJUo2w9lv&^Q_> j YX.hЀB(Q=Vq%t򕎚GЛ,- 60c@!/*Z{L&x3!ReР=+ [ڐYYGeOFHO&*keW8@mLKC keFb/E١>`+P;e/Ҭ#L(&ߚQ~cIMY' ʳȗf>u|\t7=;坤V(9B=W>)Bk?mHϫAH=b-ؽgőjFqZr\xmR3(*DhL2K "㲁w yjf4DD AC zVNKD47ޜzEi;O)%!2.`B2Ϛum"m 0Rm5㘁9ꈋ k U+3w Յ@~X) Ce p<eeot-7LM#r*pF^(?T"S$ f.!v3RѭʾiuC!aGZ3dqL$QʀL gdTd=79+IS=| GJ9jN¹LӖ{H,lϖ V&$ts{f~d1cg*&ǐ̳H/dh4Y{ rP.DÇDfj >ALfzhZuޝX J%IxumV kl *A\-V[/J=)T ,i }*Lԗ\^_V\jѣ[o[j{F)s_uZb-/=ֆOȴUY +=X^]70 kapm d>BϾki)ZJP5㥫*?QJBlk?\J,knȔ*%ƿkVsGġ2ON'3'&ER>wf!i|]͹eS/J>ס ̃^:VCs]OxڡF.ѳz<}O^/nʞ'N=<^6K:"e M*Ҽ5eZ㬥0;+0 fF>fϒ1*O /4g'QN.nq P֓-?Xț F={99kp07Fou  ]avG9afEi7Ρ;{}0Eo D$dQҠo5Cp?a3X5n ]Qy݉%xq2^̀#dB 6"yE[;^3h U&s)!+=a Ξgy$Ͻawޓ$u J_6|!`[u4X}r/JۍN k,vIa+3CWӗ(9Þw?ľ9iOg\V 0v8{ƽ#O_֣S`ZRgHoKҎG@^9|K!h-j;hIgo3\8O>CۈēY*/!h"mJ+ E)6MrL|/~FI8¨|*чp39B $;?k/5"A f{+ukymrt# 0~-Y$XI)YQԷJ۝n|1u2`! j}aPۤDȓԎ@纞Nx֑lj[|6ҒQWwZޑ}]MTpwCqG3ax ιxgstodžh NJ5ۑ܍jlԹ&fMJ :q$O5pcթr 7_yPi/ⅢP- aTȤZ[q_rP\2w^mrzh%ZyPeӪCX0 hY<8‡C˝rat3'`ُDZݛ҃;wjh ny{{׬T=J(-NA捧[i*=J}:h l^?: ΰcЍ!v vsq骥kG:B>f#z~&U8SB8s ԲF*:ӧK}.=7k)Y æRd;MV(lK?.gRD=Ã\*CN?!!AP Ҫ UP bJQdX8goC?8ooQk)7.}G֞51,l }Pg=J9ΏR?ny7 $"a>Ěs=KLL:;4EDy( T"*TyK^/H>}8i$> 2N\k&A%*!H~13u7ɤRّlOМCH.d=M.dE| CVBM5I10B}!o4ʔ&{ fěזLp]WS$:^#T^ޏ rjM@v[6;p7MyKWVn"|.Qج1"59;5,@5ϒZ3[֎ /aa*sO;n} 5C籱z]ikb1v,p55#5L35,;L9AI1Y,xhsF!ffuc;ʿlFϦr1@ppJ~WBa+gx,E 5hߵeNW(V5,Gmjl_Lx+m2!Wg!=8GmE8bJ[9(~RuW 0& ;ٶnDnTc$3+L5%Lpب:5"TYkR}f& ZX w4«U6#87c`^AsĠD/F6,55;Oi,q':Yv/ϵ#EӼ8Pa9&V+xQX`yX,R B Ba.zN5׾bC3aOFYٿ D"~[B~s׮?ZFO풮"2Uk$X̐8.'G;.ݷ">MrTf\dwSKRvxȩEW @["pS~`(xqd |Z3<F wvo؏hA }Tn(2=W@WNYe\UJ8z,"G%o!{K}W{K{=BDE1aD rQ]%_̸QR޽ϟ|LlrALjzc!8)L|hgn'Lu9fO򊖧rG:dkS1`<1#C G 1nȯ`vV2&d;>%Kyt(͗q Яszv4RB⓺|3~!Aa QG]yG\GvǍϳlڈ#ͩMgCm t+:82)d4F=\z=oÍҵ3}'gmn)e嗸\qN KFם,! 0s*98V*R2ǡVՌJ<wV]97} ` ﮄA,=0qWl[RW Ck[ MX-z5͍HJ Hʻxӳ<#;$dKO1ڛ,_"#oCk`&x*coJ{DOiq;?DjWtݚ$3,w~t|*!g&kcR=R%I <|Jܞ Wq˨kmh*é/+>FcA߷H}h*f~K $.ǜnQv8af'b_v~7tYc-׋ 9OLPQŋ>wqbk:أӤ1Rh'A-Knr"fĄ9x-[4־]mq1J35"Q\jѾRƺt kN{4JI.`R`)}`a_9:hlhWh1 3!N~pMdդ6PV()Bh]&jЪcͮ*&)=S*Y^e%W$iZguhTds<5W>ey?Jq+&!&(7DuU7f}.Pa3cc^6DTiiWp~H}6(Ʉ@F=tW)Wx~`VZv=mV#dP0 nn@ԛFE2p8 w=% l54 s<ADA[e]1 5 2ϭhT @*\vAOshDDž;U!F] 0|,EH/x¸Np 2T^Q#_wAԝ q|k1 ~Ņ b4jM?34YnC vld|'yc?h>]Kj9mY5(x-,ddhˈj%Td,zDD̑>xv|L,v$ ?`ϳO=q-\2 T<e:@nn.eqq5RqE'o1WL7tH%^tw qﴠ7kf@X|lUݖ~rvH}8_k𔥄3me l[;bTrf7g%BC%`mOgtv$H̎<OGˆV% hxĄ *)R+R} yi*+ϩl$JaY AL`/pd>9g"_,p꺹TWELQvrb[S |G12WЕj<4xBKſuCKɻV!=d'Jz3 1XD,zAHPEy.x)-<!`PWdqbJ#ȰC#4sȎ}WXmǐ> {kz'Jx41{˰{ \؊ČJpp[Ӯ6GhNj N97/je9x ^.;@6m+"et~{o~ߴ-6³e2Cm8Y4/ը]w j𦿡 04X!j -C'P$TV;<ᇩ1pS`Mg UT@Ǭ329hrNYY`u(-`N-  W2rtOX$@TW ?_5bvM"YVȓrRܾ]ɨ+\檑oD{[h(DB2ŭ!b+ge V>(<, #sv6`zN(E.bc`9nRޢa(NrnsmUiZJY7razl_?9@v0pT~;mm%LK :9EkP@aI~_pQ )6t5vT#R_NC 0:JBU%<`i?TOa9 >LZ0yMw e|qiD)=RVlo{a~fX;\x?LD4& RwpR̊4JVhœf[#`䀘TaQ7To<0XI䂇^p60z|}Ʀ~?D'ӄ"z/qQ6bV [0U"Zk:!Zyxz#HKgZ1IBㄩKE&yVt\$6"Uh zɌ~g=ds*Ϻ$Kcȍ"i$6wNbYAKdHW8De嗀SY$^%؁x@ZLr_[9t'שI*ю(u(v)?ZϱWwOA jʇ|"sKi ?b²I^,2kmDi`|yEq~ޡp_mɲiÜr}KP$^h-J˂_Q;Mc}KlꐗX^R@|ix^dr`BYo}W9L]}rBJθfYTJ:4ivQSJOiXZֲe j˘ |! מĚk%O=6@Ŋ@!DD0!@dfY ,(LۜWXWh~p};OÖC7*r,Ou%F8Z&jAD$j\v ]BjgܠYt$-]QMaNLyCnTTn7]Ca l jpO%*Kٳ[-X~ T5E0avrdӀ2=/cGYkhl8v nr1a<$}g:ȁ溵)߱c, `U}GQ= \)? c@rDW8Y+cEїZyΟu?S"r؂#%m/-`jKv8g-}}I, ?^*@:~&pr}Z% 7v{g4I mO7f3wgO_"ߡ0ºN^UE9׳S۲Oij$=N ƛWTyT.r[O褲ٽAB|8aqc>Іlr&oު4jD"WS/y|;6azӄm浶5<-=Sz7Z#.GjUlHS'xo4*GIj<-B+]'zU%fx':FA;bNwy+*!r>mxy'ҿX>Ro379ZU6q wq_뛗+P?(,'4 (a+X9iR9t.t?,YᖌKwm Otc?}(fh TeeC<\#,6gCf ބFCTalW,>`#gD̎;:duB- u3V3=> }<+jyªg4rp%9B4? D'>`gʪTz:3$t X3AffqP5/=vw&Brѱr/Ev( 0=e:}+>K$Y2DGNKx@+-&:$'{8.BWrudO]M vD0c>G٩AOIdo@ @q t(W:Z*kzkc%1+1c)9.?ƻ  6R#nH㸓}U:e&D6ᶺF& jKZ(ۤBLCeLid (ԁjZc)GΩ'W1ӭ]΃l^f [Q#VZ"1lcqNLJ6p}L TaFAdXZRȇ-V u'U!,._ 2$>Ou:LL]%"IguwݨL /RQ\KB+rMG̬qBv%P5Xh QauoGZo{ߓE~u 9zyd#߀$%QyH}Wur.0=&`T =uz# =4g< <XJCVj0bos'|Hh&pFl0Z%aEwgzf&Ik5=7#yF/A إҤEQBhLғNK&¢\5"7wOPjMҐ艡wd&Ӈ'ja. p])}.CloB*g6/P#Ϸ2u¿ʴfї 4 j2UGQ[zk|Mk+ͭ5\BKߠ ?U" &πu?84jĥPfC9u>mM|C +{+=ad,tg8\0IBPGˇr3@Fkf 4hgL} @Z !߹ ag ֌Dn^+a<_.Y-:C$V?bKT &U#IM: v 22y~1-! H83DzuSpUuSylm?BB,شp8_*zjx#J@ontƠaD<%b{ZPJ& B=LOO#JVrlFy2umm~ln!?Ac85O6Ev>ܽNSeTOz:WC[0ǦmԺ~"Cirl:~5bBhm5ѱsJvFw+8>T<tFL j+y <[]*=Θ1޹stJ3߿8aA&cp["iZ",54,LCT`tEUk@qrp'u V|+v1bw}^.$7e?m BY9Askljt%tA@ ?Vk'mEzm(VxڨYe }/ز^vz7F3&EnC*j&h,'R^`>2XobfqJái;Cv.-Xwok .7nTr+Q)5б.R\o>ؕw2>-Œd6Jzd_ W k&?(_S?J#qp+<3!]9br7ЪfE{*x?!W> kH5 lrpM#E0JowWӏDЁaR-78E]Cݟ_ 4O3DQ,"2;:Ye!'vKםXC4;BIAT`S$bϛE=U _&Q8[j.~\MnYX4C?3mblk@KJhK!φ[Ck$IR#6A0J/+[)z㓫4.O3u\v"F48#bW lV1]⭈ZnJ5Ɠ7ARjM;UvF9++_z5K-֢Q;:@Ѫ%_%gCac)oɭ[tT"9ZS}ƒݫ#J:2d|wIQcгh9WyɯHtq>vCj\ڟi&il#:V/1WIDbvI"h{5ą@[wZ>k).7q]6FJz\j2ƶ`#ȉI}A3c{kh=vCئV#vݎp9&jbx\fzaO/ ޿2vYH0qSn]mT63)~ n<*HE+!-S_&[W2٥p myHˡ[MTm(oVIyEP߲Wu]fDg e65 vЯnCH 0 e+}Fk7;=6~=ʯ]w@MhĦ /.ωDG;{UgΜ+id%3VK9 ' IB 2qX/t]0wCu4s;MQNj'!ViKc!Ǒ=dNyJGn=V}fò7r1 >^{mo08s"KtO*Q5~,AUjL[aC%V?m_ŵ}ώqY4KGu<(٫m44'<:]|T@Y#痶2\Qzloyn<_)4SlleO5O*`pc%BS'i}eL[Cn){d7x"yCMBWuU&ewĕe~bP%ϼ8f],yKsZ Kf<_e7!ZIhYjqs:pzHطaC]8s \h8i,ƥUhf"?QK9Kï3z+ˌZ&X3zsŅ Ȗj2cs Gm6h#cߛ@Org?7)/>R֝5$Fg+>mF/gF5U O4[j|S*)*u0?FNAn@|ւҊ[D5R^ $PnҡH3Fܚ\A*}>NP{߳ʗ~ܖ$/U|ĸsyUD>mV5F kCd\8qpDFrn=h 빘%>vѶv_;*)oɏ}Xه^Y\iu6qJU!"9o 䛻/@lKKz N2KCu%SX=p8eX#9ic50YOW=Md-Z![2IZFaFcAF|H?+8_Ld@E@B ϫϮG~OWܠ 0,\Hiuf/ -jU:v%<Ϸ9Ɗk5%xP[SpFFJ rAs.{$bӸo K"t5[p,K%譋!n& $J6Qm:D+ð[#_[X.hvŁ{"N+}AR*2m5e?Aە;VJwEM*Xbw;ؖ`bl04v|Ig6uFMh^Vߢٮ)M]3UŸxbD~gBR$תkLk''?mG{ 颌!\Pa\Ԕ.I\}b}5 N+fZV׺c[*j)l`i#VF|haM5p5,2AF_|_N-oAMk. 1Ij('\vi1,b <䕔F`If$oBL"{Q[ViI9lw^kcR+oo GH,T}2&3Ō"+flL! JphRpvINĔ-iNF+ N|V Sѱc9zK Z"UB4` _E0xk@wQ@=Of"ز?7{v&4Q, gKakٚZ Q -.=zm&OX誤qv ~{fnH6W[f2`yHt;q ?K6U*5\ؚ{Jm$̢N6 dO~\OfϒbN]xo$BU-Nj p4\&ުQڧ y뽯3qԕN[ޯv?'Oc^U " rw'+čm*?eO"TJh:[=`?Je&V6\x#PA>qж[I[Z_k*T9pG ۥ/y+v5Cڥ:Hm#!wjw V{G8+^T 6{ȣR \Ň^`YGEs%\q Ar_e`[sUQ{Xnkzyԅnh$? -5Ij%??1'e<t$^O`Z8|eivN~8f"4_a2" kNs6-B0wcrbJoX _.~DPk-SS]kɏ}7eϮfX[ցyCpk]';4yxny& G+cfgx?`9UsIQUQKڢɽ?}ۺd'MKh9e-2PzׂK?H6BJ+>oMo3(i$^Dj.(OEl -|b\r5bW R2 ]]=M:Z7ze%bouZP?Ar*WyK١np|LABdCsp7[5fx#Θ&ֹAǾX8 iu5,=Eٹgоd0v:H:x=p+` Q؈`M@-Y37>Ÿ[ Fô`x1Uq`]h?);#5} JEJv #=s1$ 72u?%dת2"n8֚N"?Kw[1N\%`X(4zKMSq8\C}|>ݾ 0n;ܣ-e#nj0Et Y-el =_ht~LBG)R7ڱogpok-2XRC֛)ێFT{xH4:`Y<&UNV'w6iLuZ) aXusIߚ}(!We*'!WFU2#mHfXIfw)'<!g *;jdbL?X'h^HUߋi#MN;{X- ]mkbugn\VmU[4ν׵%XٹLt8ʐ 5BKU&]Zn,R@2\)l']_kӨ_kէmUC: A_LI$""LdYL_0 G@2#FVt@&@㵛ra .:f|nKJ duOg X[j8f9#دaǶF-޼ii#gogXx+x >+CRf*50hQ\)d^%4:vSH2`}QHk*h?1s_c)ѝrtk8@_p^~+Cm" D}ՙ'.)#ϥFd&$XJ1z#>x`@R}v.9vGo3JkP\2w ?Д{C\uSvvѨ6\DPV;0Msf0: 1R ?|)ŞMR5|H|87۠\8wSB=Ak@2 ' DkAR";|;%sdLWz:2)ҖDKi"cFEFU߲1]&?\EGn1 %cr ؇đ=Z)9 3Wg&^*K7b7q?J 7ՙL阋CfZ @m7< V0@ Äou2`٩bc‚gu<_6VVu TO.Rx 0O;xF0z6#AyoX2 2ʆ7Jhv(WXh1f1+<(ʠ=P=Ҥꀭ 7E/g߶0܎.b^ t^ \,up)iQq z|vHAlw=]4^hC9xQeB#ik곲 xzn[ȌM*3fhN=M?mC%I{4Ea5ʈavU)CJ+lR_R[RM"(xLQ` F!3*|$i\U5g={p6s=7"e-PAIlT{c[My,@/tPB Wnq=X= dV1v I{uϧ<^59ki>}Hlb`t UF+8!OZr^HK%08=',eBme0HdqzuO‰_ {۝Az-L9ub䯮9Bg`H s.·܂]4}*B I1FVWѵ##!(kω{xQk6)xس_ c~X/Sn.b}22a,3d9O(ĭn J K>8v񪈖ٌh 5cJ۪o|C`a. U֋HB 1|_~2"ѭupo-,+4'eq+$x;EK'tjFaMKUq (n4^'E\JzýޟTjeT=0n(:[67fC0-S?7B*Z23;<ݳ~:?t?mi升l;jX/lڃ ?EV"fO **DY-on"}޻Z˷K T\L4a;2kto*2$%Dʈ.>F~eR$! >(-~?An8zLU^k-dNW5IKb]bpE[B?t),/INN:»>-\pbK@{?i*JfB%'$/4ŭ*D{dqpzw_*2^Uk]n>,Q.OmkK2ѩuL}a(|hb.Hag =^3"(8DK47$V&MukƢGf>!g֛ Ϙ--7cxRx@74+E,Ɨ zm"L~~pf0=p.oZА2+Iv-gIJtwu^]0sMrID?hn'<;pYꅌy!;9B meů`=:KTzdv"2Uzm=> S3袸G r6ұH V挽eDIC .B nJ:iaixQ"2=-pbI`P’Y1 0s|x,eM}Wj 㭨%0C9wFu\ KkWuR~+CZh1-u 0hI >f8؃> 0o,¥fUr,D3{4NG7<" o;"O/PѨϙO9`-O}nVlݯh*dA)ۈQO4VuU'i쀩[4z6eF=xϯRTR&wD("+I$gUR|ӒbĪ㰖ic\Dbp1%Hl\-BGаO2K͡=0'F'JiX' yշ P]|_%H+ƭ/)`;F֝H uiu% j䳖J*|#yD3yvqnc9$Fap?GEa:qe})$(N͆MG25."qbNy̘ʠoI>Us9.RpFDKdHy},]vt{F$ l5,\VxyĽ:Ғ|ރߧf7s-F'n@ԐR<"jrª7ͩtoF| )ȣz7(2oT?){ ib9s5r$<׽~rSqr;w M0~՜3FLxm#͚@fd ܪOegmXˣV]ۡ1$E#H~La[ 15 9&LQd}{#&H/wnˌỲϮ ے+AR=57׭Iּ$ V]=GId-f(@{^ifURBU55.|Jltv&+o"(ֹ1͈-͞{Lf#Vu}<)!'-̲U.\t[^`!x† †źb>^wJR|352WM`':ΌΠGz}0 %Djvh4yNa/hr@ &-^=gl օ! 3\Qd :wٽav+P=H76 *]r3VNDf*B F;y$@_>^ȫr6\8=#ai͚6F) py=+YH{r_uo;gy ay,y&!c_iTt|{l[I,te!] siQv!ހT~%ij pQT,(horhQF,׷r>idQJ~:6!B &!3 )>5N+㊝9»[BT4=߽1%za.^GOZ)(.UfË xf(3aE.^auB bk'B}w;g\|S %t#9Ҽ~#HjP~`q3mbˈpj&b]-N,ؕAeܤ:m}52硐2n{#,hgTؑ;s䇻u̺ Մ}k#vZUIKaEC7uNlq]YDz^y8 Z c:ZЀzCQyJwro@\Up1v);P# bmP߷]$Bq]r-j>!YH 0LR}>~j5 ⊾lxxުpYںO݄. 2,8MsL62!ThmdeIKQlPl+Kb0}A礟'i3hF)IacT`&[T\@ٝ&I>#%h4 ODlazDh(jD(? cNKhúW"Ɣ,<&/)cC#ݩ1sx&|)r \!Ͻ*66iJ?4R*p)QQ ɪe c*{!QjVxDˣevӶwܜg`p We.pjԏ=G'mrƠ|Y6ţ,ΰmԯ©f&Xl@I@Q'l{. +Aiߵ!Ld䙡[{2ekyt}P{X X0M1D<*e O1ۇ5S,jCȖp"|tQbdِ…n΀8<"7I5SV;va.#*Ӻm Ɣop-(IRuu5V>ըECT zM[ >q$1 % ڜv5(tSJ,v6MeM[D9IDM_YT')fLsgcBO[N M7U{xL~XqT{ʟGR%OOWLY_M~}Ǩ{D 81,~pvU7BM`b_&2^vB{xjX 6eaWX&_oWydBz*3zT-(\X Ob|e6;,D:2iM}e/Vgf*OVh/Qr#Wi݇lX*@#wp\TX?̤q ͫ"G), A_ETqʢ THl"+s5 akMRҷxe)IgGW=&A}aO'xіo_F  4,'!{t6D34iDJxuZj;!Pcw%j!(tJc~@r[?\%i.D d":5%x-?~V'TV͠F|1_ m5w'>lFFn͠/&C5?֕AcqSt[R@SRNi>2RcL \LU;WH-Av4 FW')BCQ3#A)~(ݧIj|5H6cJQ[{Cas6\6YHCǦLccj<|Vug4*It9g2`˷U5.ƫp]O2odvV_|g d{2} j =E\E.K^B^)cU%ѽbֶVUJaɧC5G߅s#&NұD5P#8}gX+>D>X;u=tzGiJ :Fb/N7irLx)c{] ۿneFxpnP;TweHBO^埞srށlb׶+0tR] P@OPPޗKܛxG)8CUuH?h J=Y{t*1Zxv<Z7o`ޜ0ABsѫ n~tMiluKZr鉣F]H(NMl9773 *QSrݟBSf%:߇bI!EWn3ݻRsQ.M;Bedm&tM :3$<>'bRӤOyy3M|s||74PsPǢLۓ7Vu"}k>j]]IHES١z f:ϼͿ'`&vjc]ZJFW\Ec-R\&s:`={2"C!i1m*#i|ʁdM.fw)LpjHcbs]1we˗À&5,] ©Ve`@D^pӰ9bwe9vՓZ҉/[yboS G%͜4֣J |Ҥ.`+z0</cFk(3h1t'~e qO̴.[Bdޡ #0$K,%jqk`)ED8eT$84#!(@eA5@KFX3# ~ D6dFODs櫶+e{Nr)r7mAEo҅!`(vԚT?/]MPЉtRQ08~eZd<͙'c[#x{D+/Ee7h-rpaoqlSdHz4DLsyW܃C tT a:(ZЌ*%ÊRjK`MӞzZJ>4kuSŎ8!.ںN‡`$X^K?O[GQ9н(] f8uM`I}w8z:9W1Jێ"%d7G& ? g@Sx@^4j;=_ZHo㫔I3Ȥ5[eh*{^]vn墬VG<t&g ӃihoViFP16Y;BI]ATڋIiUv uAt=0 CK_֗um듏߉,uxws{Nt/$K"eE)e;p1=t0Ɯ*xߝd9N)R"ғdgmk)&5#QH+ $Erg*NsX@9>'ު=${w)O4=O9r\XXO>nFk4]NOD-o#t~%J *]%ǥJ]N߶Y}@(PHItW.E J"(xځsXNJO q|1myΣL(٘Sn!ӿt։8|ʇ^Et䌺?X@|^Tiee%c`cU$vz8es;Ү 5KQZUB=U@]ԝgwN%p+yU/ry!_͔ͱܻX%ȋ+YȻ8j1&ځmUe-գ-y39ߡCb ;yX JGNTouN|ٮ)aQH JawsPv[XAb>#=|Wcx;b8t$PG%5DfjNx:Xݦb kܼrÈdy3+]'Snn;Oi! {pxM9[_RfLI*~Dp'P [ 6+GX!42b:@hG]s֙RY}ۓwR?yVB>mӚ~H˶\VtR td!&9L`šqޖ\Ǖ4 0uC?{BVJ0>0!I$o Q D`lG+CIҗnm 1lW(7짷3hfe6~6Jvf8h^$mto8;ybWO.ETtO7@<2$ybnF<io2O%g]]M-c<=z'JdNge%Lg="J|O03g"(RmgqQDvS&t=y^Z0@_ZZ3Q9HVK.korciawPFˊk?\-=aPΪH 5v.hu\"2/s2Ը=cӳq4O {fdM!l遼LL%}iY6sܣom+39Pܦv)N1B^5\Q,̷յG1hCP෇a!qN EuL=jZ1"ͻ~-3Nlm/S Q <1BCm#W1ؔ":pTNⳏ-WPSiޔ]0xp99mXߞRI 7lYB-K!_`lwߓZwQzRBYνYuJ_# 2q&( fX$XS'7P`V$*$Fp\5 `-= 8w{lx;NpT3 d.Jg_җI~}Fؕ-LIhOwyԥl+$ڱ8.Ӷc=#O?@lbuo>v(iI 4i*]J` /VdWj:2L*\jyÔy.Rɡ`ޱjޞc/T9(`+iU`9O)vK lbcyed&jkAXlA|L ]*kѫCC0zTXI`\u!b-V4>^ī ySb 5&lVa0 57\սr>|=LE=}{.(:^&g1Xqm-=^T/DG\h哶o e`_Pa6BC>$H:/-2n\^q Fn˔qiBJKXjOl, j)Am0Q1 w`ȨqRUTl#[\>mu?HrOFҰxi30Bdߙ xjhsLlڵ86DMit{/cn83DU#-]!yNċyilc39 5E~[Bv؜0?#er9SA1xڞwIƗ~'J{/ߝeلR{ʮh Ct&ףRȬpOQ(SޣK}w~!y3 ![j8,r2M$pvP>nH8pLHl=%gŝٴij.@+dVx37ou bMt/2lɮ5H%I #nk:n)3Bm˚)E'H?IzLҥGr@Zmp)|fpJ_inlt,;xNz|"^'x 1Mh_X6-Ý!nGv`/V)#Ddڬ ZVܝ!NdCՄlYu<Lg$M8ןKɟ;>=iQDe#yd(ml-MɢXjqt@`#h\97I'kNf2Uʋ$'~n|ܱf F".+"m3*yCd Q1_ oDcTؿP(C]qҲ[Ơmu /RF͝lx.UT+~ 3!ҧf%g܀WEāl瓑 &H6.g[%Y#F#!f+gm-~8jAɉ,_1%֬a SL}!w}=`0lɞ●t :Cϋ:G; {Aڃ9 ;' rKsaC*yiC<S8^ʸ M=.bg^n*P+fϩfW"*W!k(bb)^j<@$P]| +ae!jbd$.xB%J@.)}5 ;"83hQOQpe1fm\sNKdla آC)Yt /i:oyeÙAY-hZ-#Z\BʇZV8w w0 옐IDt V\i%0߫;c[5c:447^Usy*AW DB7V(!OZ3K-@зL\H:EPBkD|+,1K# cpTtF)\a~g{CraDMy{ӯ_:]M{:,5RZ(_۞lr*2'bѐVGr'ƗAz-U{y~A@| ph@1h5I/[Kaz,VQ|o_a@R4aE_զ;*+ޫV L̰ETVjKwu"Zt!+;;Zy,= h]kY֚BU] IӾZkDrk=:>- jYR~Q*뫞P(rNXxĽ?| 2GBLX ڟz-$%ѭz0†<D6Њvl ohR:+)K˻A|i:<*0q{? !1ԣ"xAB# ޒwze6&aL|} L,T75\7OvٓPݻfWAhc lhn@8M?>AMDL?qǾZֺαHϔ vD[Twwܽ9|X9`c:b[cc#s\]"Y`,Gs=[(_@ea]}^&.I#ߟ:KfOJ/ jhIyDP4/l\p6f$v/eWH>&;TPՐG[e@cMLK#-jrpYS_dxϜ810%la%@ⓍQdT MR!qY@,̚1:l^ky1ȍdžM ~3ZXC38"V%(e[gh{!2 @}3|srwj}۟Ȏwȥk%ϩlQXqUv`B)Ū!>O|]mběS X Ga`vo\{Mt@_EI:Oeӑ@⤯1~ r*#)8xi֛BUsx$ G9#~L ,)np:{ܼ8k_ Mb-I<BMwM"Mϻ7)Q|_;% p7H>L'R{ڡMDz@v&> Mm%:g+y5ں;p# ʇ%-sHy"Lߙk)!+/ZJ]f;oh:6Zbb&"9Ζ}PWԧ}#tXg4+^ηw&CƹA: h ED,%zDMtc-!#QSzܴ֠m3oо0ky`MYr;vUUfV[`.iʲL*%k2,cc6nK=(|{A=Qc7|\ڨIۙ.`a{^1QD\j2`O$ڊ43tʷ-ZጪlC9D*_m9p_ÈTeU! zDzR;^5'f:hP֎AM%SO"I)*ihdgЃ6ӎ0#bnRj2H"P/NeE-E]˥{b4m -| 4.B^M|h2*xL6B^=19(&9#3.dex CuL kp_Q ۻ~^ ,q9#%$ci<;V(uGU8<Qkޑ~BqVP4%`&?ApV E1EUQZVI*jBEVg-ǐݱT7E\{]ÈR q\ܷr|@?' \kY.7OEUo&Y};>Mn-42o[ Ćos$ \,""'HUk꾳1Qv.}y=x3zPcC:9!FI7)BJ}H[O^ OpDQUocr43d"UFx_~e-oSm|iMi&[%^s\Odq#9-cM&Z^:b=7ZPGzxAN𗰩nS"Or8K4 W >v+Ce.l @o7@YE]SQ~ɷtH 8P/CO()K$@XT׮g1Y"b nw}U}on; fHB;n'}6h4jy iJx31qk$!'YBdNHyMu)ͨ--bFSԤXXuKKErNk{)N;2~xRIVF.mɧm`n!q˾;mDq5+dr6TL&xEL3kX*ΔbR!tCY<爁mhGיYjeE+jey%Y ,'7:dsse5!nW.ekk+"e }!U~J>KJU;L`6ZŬioԭd.ppSS;]W]V˟<}Om?؄j#!~>2-٣\[\?ANpfVvdpG{Bl" hpG范|b8Kc|7/.Q`l8 NEU)fƺ5|[R**lyYwE2;=X,7 h赩#d!^Zd,HX0$g 4k}pFTHL?ۦATWoDĽrO&|`RzJ)?N.z!{s,lcKki!b;%T5h(9TRY>zMiy橋x}Ɍr `߅򇂯՞,\ez¬[oƣvz PDusg Fk"k3MltzH23H| H]?}CЀMv1jI[5,fjge[\FkM_^ZnL5)U$R=^6awDs^M5f y#ЅCzQ*Һa$4Dimr^{ uͼ5G3˴-\Ҩ5!|[km\Ebxl +t1׀?2Bm-8֍ rqKnkR|/yoID ?˳"2C[*Gݱ )$w$,PQgzL1hȭ?;1pPT~n:tf,ǀN:\ܬj{/Do,͏\WN(}y9uR3U15#(?hF8rԷ,R|$k]ݑ&ộxVxmf:䝟#WSY q>FIIwR'adؤwCqۓuv@ S{~a"&jB kRbpDS J 1h'-J7 > &%-juGJBl܂w~{l;N pE(ew˿RO1C@ѹGqgSQ9HG Q²e\NTg6d=*7z<q;ba8+Ȧf{BrNGP4p<^;E4=_OL!{09Zr뢌W^DM -/hskF*ڷۮ%2$u9g>')kt5*(;/'1\K.b;G@ge N22hhSnà̵̛4ҎAhqmN*Gs|ôT k|^$ *LYN)jwt!c*\߅&Ƨ.Q\Bʄo@=CX =NlwTr) &#ý&үx er#;\NС\ 9HjBiuG {bi0&%9 !S%Ό+/Ze7 WH60\ۮ4$ ^**"("\8/֠k(ᑪm)N_eMKhlGe["HT!KثtWu˴ dVc0SN@_|\"5GѨAh_@\5h<0tN#>LƝxoQڹL^b a4v0/l AǐHڳOh#zrYUD1~Ac t֕.9C ! i%Hb$y:܃/A;3R|ܻ%J" {M$-lfZ}ށJx2F5&J,j(^}o9! ƺ0c.1zc {E:b/ѥ> Vχ ٞFyXYx+>օ[*:ЏX~VWٟ=bKT"xF:U+ɤ\MyV-4tڌⓟyM 2Un4KtxA5{>=EU>hKə uM#\PCCףI ퟍ"G {՘t{'  l]Kd_'ȺSLE'\N#k[G4y@C`DC~:6n#"Ǡ,`^1 ɉ7B ќ*s;cgd8Z :#T YZ