go1.21-race-1.21.0-150000.1.3.1 >  A dՇp9|7q 7:&+ sJ;9]w8)G' o 4 !]VÚ=&EW %BZ@ t h.`nr-Ggw7UIƒ Il×Q>O8R1W?Уau(䌬Hꪖ࿮|dw`8ї'P|"6d7517bdb8380536e35bd450501b76aa78369754aceed998359743f2c3822272f2a2b804868c48d44fcc9887717bc7fe61afbacandՇp9|S_j?U1˚ :w"úJeG֖KT-6ަziHgT|%=7jdٕ1t_5^fT.rحu߆|57Ts6Y#!Ҁ\u֭r NF=R/х ~E1\\:\%L䨙vȠ>+aD " A?[Q0ǯɽjIȉAYIJhL} !4+0=$>p>?d " ; *7 Mf     <P(89:FrGHIXY\]^bcd%e*f-l/u@vDzCgo1.21-race1.21.0150000.1.3.1Go runtime race detectorGo runtime race detector libraries. Install this package if you wish to use the -race option, in order to detect race conditions present in your Go programs.d s390zp34SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Development/Languages/Gohttps://compiler-rt.llvm.org/linuxs390xd8f99c5ec30d70cac4994352c52b8a8970f768ac62e393efc91f8fe76b94c5bf7rootrootgo1.21-1.21.0-150000.1.3.1.src.rpmgo1.21-racego1.21-race(s390-64)    go1.21rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.21.03.0.4-14.6.0-14.0-15.2-14.14.1d.@dE@d8d@d@d@dNjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.com- go1.21 (released 2023-08-08) is a major release of Go. go1.21.x minor releases will be provided through August 2024. https://github.com/golang/go/wiki/Go-Release-Cycle go1.21 arrives six months after go1.20. 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#1212475 go1.21 release tracking * Go 1.21 introduces a small change to the numbering of releases. In the past, we used Go 1.N to refer to both the overall Go language version and release family as well as the first release in that family. Starting in Go 1.21, the first release is now Go 1.N.0. Today we are releasing both the Go 1.21 language and its initial implementation, the Go 1.21.0 release. These notes refer to "Go 1.21"; tools like go version will report "go1.21.0" (until you upgrade to Go 1.21.1). See "Go versions" in the "Go Toolchains" documentation for details about the new version numbering. * Language change: Go 1.21 adds three new built-ins to the language. * Language change: The new functions min and max compute the smallest (or largest, for max) value of a fixed number of given arguments. See the language spec for details. * Language change: The new function clear deletes all elements from a map or zeroes all elements of a slice. See the language spec for details. * Package initialization order is now specified more precisely. This may change the behavior of some programs that rely on a specific initialization ordering that was not expressed by explicit imports. The behavior of such programs was not well defined by the spec in past releases. The new rule provides an unambiguous definition. * Multiple improvements that increase the power and precision of type inference have been made. * A (possibly partially instantiated generic) function may now be called with arguments that are themselves (possibly partially instantiated) generic functions. * Type inference now also considers methods when a value is assigned to an interface: type arguments for type parameters used in method signatures may be inferred from the corresponding parameter types of matching methods. * Similarly, since a type argument must implement all the methods of its corresponding constraint, the methods of the type argument and constraint are matched which may lead to the inference of additional type arguments. * If multiple untyped constant arguments of different kinds (such as an untyped int and an untyped floating-point constant) are passed to parameters with the same (not otherwise specified) type parameter type, instead of an error, now type inference determines the type using the same approach as an operator with untyped constant operands. This change brings the types inferred from untyped constant arguments in line with the types of constant expressions. * Type inference is now precise when matching corresponding types in assignments * The description of type inference in the language spec has been clarified. * Go 1.21 includes a preview of a language change we are considering for a future version of Go: making for loop variables per-iteration instead of per-loop, to avoid accidental sharing bugs. For details about how to try that language change, see the LoopvarExperiment wiki page. * Go 1.21 now defines that if a goroutine is panicking and recover was called directly by a deferred function, the return value of recover is guaranteed not to be nil. To ensure this, calling panic with a nil interface value (or an untyped nil) causes a run-time panic of type *runtime.PanicNilError. To support programs written for older versions of Go, nil panics can be re-enabled by setting GODEBUG=panicnil=1. This setting is enabled automatically when compiling a program whose main package is in a module with that declares go 1.20 or earlier. * Go 1.21 adds improved support for backwards compatibility and forwards compatibility in the Go toolchain. * To improve backwards compatibility, Go 1.21 formalizes Go's use of the GODEBUG environment variable to control the default behavior for changes that are non-breaking according to the compatibility policy but nonetheless may cause existing programs to break. (For example, programs that depend on buggy behavior may break when a bug is fixed, but bug fixes are not considered breaking changes.) When Go must make this kind of behavior change, it now chooses between the old and new behavior based on the go line in the workspace's go.work file or else the main module's go.mod file. Upgrading to a new Go toolchain but leaving the go line set to its original (older) Go version preserves the behavior of the older toolchain. With this compatibility support, the latest Go toolchain should always be the best, most secure, implementation of an older version of Go. See "Go, Backwards Compatibility, and GODEBUG" for details. * To improve forwards compatibility, Go 1.21 now reads the go line in a go.work or go.mod file as a strict minimum requirement: go 1.21.0 means that the workspace or module cannot be used with Go 1.20 or with Go 1.21rc1. This allows projects that depend on fixes made in later versions of Go to ensure that they are not used with earlier versions. It also gives better error reporting for projects that make use of new Go features: when the problem is that a newer Go version is needed, that problem is reported clearly, instead of attempting to build the code and instead printing errors about unresolved imports or syntax errors. * To make these new stricter version requirements easier to manage, the go command can now invoke not just the toolchain bundled in its own release but also other Go toolchain versions found in the PATH or downloaded on demand. If a go.mod or go.work go line declares a minimum requirement on a newer version of Go, the go command will find and run that version automatically. The new toolchain directive sets a suggested minimum toolchain to use, which may be newer than the strict go minimum. See "Go Toolchains" for details. * go command: The -pgo build flag now defaults to -pgo=auto, and the restriction of specifying a single main package on the command line is now removed. If a file named default.pgo is present in the main package's directory, the go command will use it to enable profile-guided optimization for building the corresponding program. * go command: The -C dir flag must now be the first flag on the command-line when used. * go command: The new go test option -fullpath prints full path names in test log messages, rather than just base names. * go command: The go test -c flag now supports writing test binaries for multiple packages, each to pkg.test where pkg is the package name. It is an error if more than one test package being compiled has a given package name.] * go command: The go test -o flag now accepts a directory argument, in which case test binaries are written to that directory instead of the current directory. * cgo: In files that import "C", the Go toolchain now correctly reports errors for attempts to declare Go methods on C types. * runtime: When printing very deep stacks, the runtime now prints the first 50 (innermost) frames followed by the bottom 50 (outermost) frames, rather than just printing the first 100 frames. This makes it easier to see how deeply recursive stacks started, and is especially valuable for debugging stack overflows. * runtime: On Linux platforms that support transparent huge pages, the Go runtime now manages which parts of the heap may be backed by huge pages more explicitly. This leads to better utilization of memory: small heaps should see less memory used (up to 50% in pathological cases) while large heaps should see fewer broken huge pages for dense parts of the heap, improving CPU usage and latency by up to 1%. * runtime: As a result of runtime-internal garbage collection tuning, applications may see up to a 40% reduction in application tail latency and a small decrease in memory use. Some applications may also observe a small loss in throughput. The memory use decrease should be proportional to the loss in throughput, such that the previous release's throughput/memory tradeoff may be recovered (with little change to latency) by increasing GOGC and/or GOMEMLIMIT slightly. * runtime: Calls from C to Go on threads created in C require some setup to prepare for Go execution. On Unix platforms, this setup is now preserved across multiple calls from the same thread. This significantly reduces the overhead of subsequent C to Go calls from ~1-3 microseconds per call to ~100-200 nanoseconds per call. * compiler: Profile-guide optimization (PGO), added as a preview in Go 1.20, is now ready for general use. PGO enables additional optimizations on code identified as hot by profiles of production workloads. As mentioned in the Go command section, PGO is enabled by default for binaries that contain a default.pgo profile in the main package directory. Performance improvements vary depending on application behavior, with most programs from a representative set of Go programs seeing between 2 and 7% improvement from enabling PGO. See the PGO user guide for detailed documentation. * compiler: PGO builds can now devirtualize some interface method calls, adding a concrete call to the most common callee. This enables further optimization, such as inlining the callee. * compiler: Go 1.21 improves build speed by up to 6%, largely thanks to building the compiler itself with PGO. * assembler: On amd64, frameless nosplit assembly functions are no longer automatically marked as NOFRAME. Instead, the NOFRAME attribute must be explicitly specified if desired, which is already the behavior on other architectures supporting frame pointers. With this, the runtime now maintains the frame pointers for stack transitions. * assembler: The verifier that checks for incorrect uses of R15 when dynamic linking on amd64 has been improved. * linker: On windows/amd64, the linker (with help from the compiler) now emits SEH unwinding data by default, which improves the integration of Go applications with Windows debuggers and other tools. * linker: In Go 1.21 the linker (with help from the compiler) is now capable of deleting dead (unreferenced) global map variables, if the number of entries in the variable initializer is sufficiently large, and if the initializer expressions are side-effect free. * core library: The new log/slog package provides structured logging with levels. Structured logging emits key-value pairs to enable fast, accurate processing of large amounts of log data. The package supports integration with popular log analysis tools and services. * core library: The new testing/slogtest package can help to validate slog.Handler implementations. * core library: The new slices package provides many common operations on slices, using generic functions that work with slices of any element type. * core library: The new maps package provides several common operations on maps, using generic functions that work with maps of any key or element type. * core library: The new cmp package defines the type constraint Ordered and two new generic functions Less and Compare that are useful with ordered types. * 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 implementation of the io/fs.FileInfo interface returned by Header.FileInfo now implements a String method that calls io/fs.FormatFileInfo. * archive/zip: The implementation of the io/fs.FileInfo interface returned by FileHeader.FileInfo now implements a String method that calls io/fs.FormatFileInfo. * archive/zip: The implementation of the io/fs.DirEntry interface returned by the io/fs.ReadDirFile.ReadDir method of the io/fs.File returned by Reader.Open now implements a String method that calls io/fs.FormatDirEntry. * bytes: The Buffer type has two new methods: Available and AvailableBuffer. These may be used along with the Write method to append directly to the Buffer. * context: The new WithoutCancel function returns a copy of a context that is not canceled when the original context is canceled. * context: The new WithDeadlineCause and WithTimeoutCause functions provide a way to set a context cancellation cause when a deadline or timer expires. The cause may be retrieved with the Cause function. * context: The new AfterFunc function registers a function to run after a context has been cancelled. * context: An optimization means that the results of calling Background and TODO and converting them to a shared type can be considered equal. In previous releases they were always different. Comparing Context values for equality has never been well-defined, so this is not considered to be an incompatible change. * crypto/ecdsa: PublicKey.Equal and PrivateKey.Equal now execute in constant time. * crypto/elliptic: All of the Curve methods have been deprecated, along with GenerateKey, Marshal, and Unmarshal. For ECDH operations, the new crypto/ecdh package should be used instead. For lower-level operations, use third-party modules such as filippo.io/nistec. * crypto/rand: The crypto/rand package now uses the getrandom system call on NetBSD 10.0 and later. * crypto/rsa: The performance of private RSA operations (decryption and signing) is now better than Go 1.19 for GOARCH=amd64 and GOARCH=arm64. It had regressed in Go 1.20. * crypto/rsa: Due to the addition of private fields to PrecomputedValues, PrivateKey.Precompute must be called for optimal performance even if deserializing (for example from JSON) a previously-precomputed private key. * crypto/rsa: PublicKey.Equal and PrivateKey.Equal now execute in constant time. * crypto/rsa: The GenerateMultiPrimeKey function and the PrecomputedValues.CRTValues field have been deprecated. PrecomputedValues.CRTValues will still be populated when PrivateKey.Precompute is called, but the values will not be used during decryption operations. * crypto/sha256: SHA-224 and SHA-256 operations now use native instructions when available when GOARCH=amd64, providing a performance improvement on the order of 3-4x. * crypto/tls: Servers now skip verifying client certificates (including not running Config.VerifyPeerCertificate) for resumed connections, besides checking the expiration time. This makes session tickets larger when client certificates are in use. Clients were already skipping verification on resumption, but now check the expiration time even if Config.InsecureSkipVerify is set. * crypto/tls: Applications can now control the content of session tickets. * crypto/tls: The new SessionState type describes a resumable session. * crypto/tls: The SessionState.Bytes method and ParseSessionState function serialize and deserialize a SessionState. * crypto/tls: The Config.WrapSession and Config.UnwrapSession hooks convert a SessionState to and from a ticket on the server side. * crypto/tls: The Config.EncryptTicket and Config.DecryptTicket methods provide a default implementation of WrapSession and UnwrapSession. * crypto/tls: The ClientSessionState.ResumptionState method and NewResumptionState function may be used by a ClientSessionCache implementation to store and resume sessions on the client side. * crypto/tls: To reduce the potential for session tickets to be used as a tracking mechanism across connections, the server now issues new tickets on every resumption (if they are supported and not disabled) and tickets don't bear an identifier for the key that encrypted them anymore. If passing a large number of keys to Conn.SetSessionTicketKeys, this might lead to a noticeable performance cost. * crypto/tls: Both clients and servers now implement the Extended Master Secret extension (RFC 7627). The deprecation of ConnectionState.TLSUnique has been reverted, and is now set for resumed connections that support Extended Master Secret. * crypto/tls: The new QUICConn type provides support for QUIC implementations, including 0-RTT support. Note that this is not itself a QUIC implementation, and 0-RTT is still not supported in TLS. * crypto/tls: The new VersionName function returns the name for a TLS version number. * crypto/tls: The TLS alert codes sent from the server for client authentication failures have been improved. Previously, these failures always resulted in a "bad certificate" alert. Now, certain failures will result in more appropriate alert codes, as defined by RFC 5246 and RFC 8446: * crypto/tls: For TLS 1.3 connections, if the server is configured to require client authentication using RequireAnyClientCert or RequireAndVerifyClientCert, and the client does not provide any certificate, the server will now return the "certificate required" alert. * crypto/tls: If the client provides a certificate that is not signed by the set of trusted certificate authorities configured on the server, the server will return the "unknown certificate authority" alert. * crypto/tls: If the client provides a certificate that is either expired or not yet valid, the server will return the "expired certificate" alert. * crypto/tls: In all other scenarios related to client authentication failures, the server still returns "bad certificate". * crypto/x509: RevocationList.RevokedCertificates has been deprecated and replaced with the new RevokedCertificateEntries field, which is a slice of RevocationListEntry. RevocationListEntry contains all of the fields in pkix.RevokedCertificate, as well as the revocation reason code. * crypto/x509: Name constraints are now correctly enforced on non-leaf certificates, and not on the certificates where they are expressed. * debug/elf: The new File.DynValue method may be used to retrieve the numeric values listed with a given dynamic tag. * debug/elf: The constant flags permitted in a DT_FLAGS_1 dynamic tag are now defined with type DynFlag1. These tags have names starting with DF_1. * debug/elf: The package now defines the constant COMPRESS_ZSTD. * debug/elf: The package now defines the constant R_PPC64_REL24_P9NOTOC. * debug/pe: Attempts to read from a section containing uninitialized data using Section.Data or the reader returned by Section.Open now return an error. * embed: The io/fs.File returned by FS.Open now has a ReadAt method that implements io.ReaderAt. * embed: Calling FS.Open.Stat will return a type that now implements a String method that calls io/fs.FormatFileInfo. * errors: The new ErrUnsupported error provides a standardized way to indicate that a requested operation may not be performed because it is unsupported. For example, a call to os.Link when using a file system that does not support hard links. * flag: The new BoolFunc function and FlagSet.BoolFunc method define a flag that does not require an argument and calls a function when the flag is used. This is similar to Func but for a boolean flag. * flag: A flag definition (via Bool, BoolVar, Int, IntVar, etc.) will panic if Set has already been called on a flag with the same name. This change is intended to detect cases where changes in initialization order cause flag operations to occur in a different order than expected. In many cases the fix to this problem is to introduce a explicit package dependence to correctly order the definition before any Set operations. * go/ast: The new IsGenerated predicate reports whether a file syntax tree contains the special comment that conventionally indicates that the file was generated by a tool. * go/ast: The new File.GoVersion field records the minimum Go version required by any //go:build or // +build directives. * go/build: The package now parses build directives (comments that start with //go:) in file headers (before the package declaration). These directives are available in the new Package fields Directives, TestDirectives, and XTestDirectives. * go/build/constraint: The new GoVersion function returns the minimum Go version implied by a build expression. * go/token: The new File.Lines method returns the file's line-number table in the same form as accepted by File.SetLines. * go/types: The new Package.GoVersion method returns the Go language version used to check the package. * hash/maphash: The hash/maphash package now has a pure Go implementation, selectable with the purego build tag. * html/template: The new error ErrJSTemplate is returned when an action appears in a JavaScript template literal. Previously an unexported error was returned. * io/fs: The new FormatFileInfo function returns a formatted version of a FileInfo. The new FormatDirEntry function returns a formatted version of a DirEntry. The implementation of DirEntry returned by ReadDir now implements a String method that calls FormatDirEntry, and the same is true for the DirEntry value passed to WalkDirFunc. * math/big: The new Int.Float64 method returns the nearest floating-point value to a multi-precision integer, along with an indication of any rounding that occurred. * net: On Linux, the net package can now use Multipath TCP when the kernel supports it. It is not used by default. To use Multipath TCP when available on a client, call the Dialer.SetMultipathTCP method before calling the Dialer.Dial or Dialer.DialContext methods. To use Multipath TCP when available on a server, call the ListenConfig.SetMultipathTCP method before calling the ListenConfig.Listen method. Specify the network as "tcp" or "tcp4" or "tcp6" as usual. If Multipath TCP is not supported by the kernel or the remote host, the connection will silently fall back to TCP. To test whether a particular connection is using Multipath TCP, use the TCPConn.MultipathTCP method. * net: In a future Go release we may enable Multipath TCP by default on systems that support it. * net/http: The new ResponseController.EnableFullDuplex method allows server handlers to concurrently read from an HTTP/1 request body while writing the response. Normally, the HTTP/1 server automatically consumes any remaining request body before starting to write the response, to avoid deadlocking clients which attempt to write a complete request before reading the response. The EnableFullDuplex method disables this behavior. * net/http: The new ErrSchemeMismatch error is returned by Client and Transport when the server responds to an HTTPS request with an HTTP response. * net/http: The net/http package now supports errors.ErrUnsupported, in that the expression errors.Is(http.ErrNotSupported, errors.ErrUnsupported) will return true. * os: Programs may now pass an empty time.Time value to the Chtimes function to leave either the access time or the modification time unchanged. * os: On Windows the File.Chdir method now changes the current directory to the file, rather than always returning an error. * os: On Unix systems, if a non-blocking descriptor is passed to NewFile, calling the File.Fd method will now return a non-blocking descriptor. Previously the descriptor was converted to blocking mode. * os: On Windows calling Truncate on a non-existent file used to create an empty file. It now returns an error indicating that the file does not exist. * os: On Windows calling TempDir now uses GetTempPath2W when available, instead of GetTempPathW. The new behavior is a security hardening measure that prevents temporary files created by processes running as SYSTEM to be accessed by non-SYSTEM processes. * os: On Windows the os package now supports working with files whose names, stored as UTF-16, can't be represented as valid UTF-8. * os: On Windows Lstat now resolves symbolic links for paths ending with a path separator, consistent with its behavior on POSIX platforms. * os: The implementation of the io/fs.DirEntry interface returned by the ReadDir function and the File.ReadDir method now implements a String method that calls io/fs.FormatDirEntry. * os: The implementation of the io/fs.FS interface returned by the DirFS function now implements the io/fs.ReadFileFS and the io/fs.ReadDirFS interfaces. * path/filepath: The implementation of the io/fs.DirEntry interface passed to the function argument of WalkDir now implements a String method that calls io/fs.FormatDirEntry. * reflect: In Go 1.21, ValueOf no longer forces its argument to be allocated on the heap, allowing a Value's content to be allocated on the stack. Most operations on a Value also allow the underlying value to be stack allocated. * reflect: The new Value method Value.Clear clears the contents of a map or zeros the contents of a slice. This corresponds to the new clear built-in added to the language. * reflect: The SliceHeader and StringHeader types are now deprecated. In new code prefer unsafe.Slice, unsafe.SliceData, unsafe.String, or unsafe.StringData. * regexp: Regexp now defines MarshalText and UnmarshalText methods. These implement encoding.TextMarshaler and encoding.TextUnmarshaler and will be used by packages such as encoding/json. * runtime: Textual stack traces produced by Go programs, such as those produced when crashing, calling runtime.Stack, or collecting a goroutine profile with debug=2, now include the IDs of the goroutines that created each goroutine in the stack trace. * runtime: Crashing Go applications can now opt-in to Windows Error Reporting (WER) by setting the environment variable GOTRACEBACK=wer or calling debug.SetTraceback("wer") before the crash. Other than enabling WER, the runtime will behave as with GOTRACEBACK=crash. On non-Windows systems, GOTRACEBACK=wer is ignored. * runtime: GODEBUG=cgocheck=2, a thorough checker of cgo pointer passing rules, is no longer available as a debug option. Instead, it is available as an experiment using GOEXPERIMENT=cgocheck2. In particular this means that this mode has to be selected at build time instead of startup time. * runtime: GODEBUG=cgocheck=1 is still available (and is still the default). * runtime: A new type Pinner has been added to the runtime package. Pinners may be used to "pin" Go memory such that it may be used more freely by non-Go code. For instance, passing Go values that reference pinned Go memory to C code is now allowed. Previously, passing any such nested reference was disallowed by the cgo pointer passing rules. See the docs for more details. * runtime/metrics: A few previously-internal GC metrics, such as live heap size, are now available. GOGC and GOMEMLIMIT are also now available as metrics. * runtime/trace: Collecting traces on amd64 and arm64 now incurs a substantially smaller CPU cost: up to a 10x improvement over the previous release. * runtime/trace: Traces now contain explicit stop-the-world events for every reason the Go runtime might stop-the-world, not just garbage collection. * sync: The new OnceFunc, OnceValue, and OnceValues functions capture a common use of Once to lazily initialize a value on first use. * syscall: On Windows the Fchdir function now changes the current directory to its argument, rather than always returning an error. * syscall: On FreeBSD SysProcAttr has a new field Jail that may be used to put the newly created process in a jailed environment. * syscall: On Windows the syscall package now supports working with files whose names, stored as UTF-16, can't be represented as valid UTF-8. The UTF16ToString and UTF16FromString functions now convert between UTF-16 data and WTF-8 strings. This is backward compatible as WTF-8 is a superset of the UTF-8 format that was used in earlier releases. * syscall: Several error values match the new errors.ErrUnsupported, such that errors.Is(err, errors.ErrUnsupported) returns true. ENOSYS ENOTSUP EOPNOTSUPP EPLAN9 (Plan 9 only) ERROR_CALL_NOT_IMPLEMENTED (Windows only) ERROR_NOT_SUPPORTED (Windows only) EWINDOWS (Windows only) * testing: The new -test.fullpath option will print full path names in test log messages, rather than just base names. * testing: The new Testing function reports whether the program is a test created by go test. * testing/fstest: Calling Open.Stat will return a type that now implements a String method that calls io/fs.FormatFileInfo. * unicode: The unicode package and associated support throughout the system has been upgraded to Unicode 15.0.0. * Darwin port: As announced in the Go 1.20 release notes, Go 1.21 requires macOS 10.15 Catalina or later; support for previous versions has been discontinued. * Windows port: As announced in the Go 1.20 release notes, Go 1.21 requires at least Windows 10 or Windows Server 2016; support for previous versions has been discontinued. * WebAssembly port: The new go:wasmimport directive can now be used in Go programs to import functions from the WebAssembly host. * WebAssembly port: The Go scheduler now interacts much more efficiently with the JavaScript event loop, especially in applications that block frequently on asynchronous events. * WebAssembly System Interface port: Go 1.21 adds an experimental port to the WebAssembly System Interface (WASI), Preview 1 (GOOS=wasip1, GOARCH=wasm). * WebAssembly System Interface port: As a result of the addition of the new GOOS value "wasip1", Go files named *_wasip1.go will now be ignored by Go tools except when that GOOS value is being used. If you have existing filenames matching that pattern, you will need to rename them. * ppc64/ppc64le port: On Linux, GOPPC64=power10 now generates PC-relative instructions, prefixed instructions, and other new Power10 instructions. On AIX, GOPPC64=power10 generates Power10 instructions, but does not generate PC-relative instructions. * ppc64/ppc64le port: When building position-independent binaries for GOPPC64=power10 GOOS=linux GOARCH=ppc64le, users can expect reduced binary sizes in most cases, in some cases 3.5%. Position-independent binaries are built for ppc64le with the following -buildmode values: c-archive, c-shared, shared, pie, plugin. * loong64 port: The linux/loong64 port now supports - buildmode=c-archive, -buildmode=c-shared and -buildmode=pie.- go1.21rc4 (released 2023-08-02) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc4. Refs boo#1212475 go1.21 release tracking- go1.21rc3 (released 2023-07-14) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc3. Refs boo#1212475 go1.21 release tracking- go1.21+ change default GOTOOLCHAIN=auto to local to prevent go tool commands from downloading upstream go1.x toolchain binaries Refs boo#1212669 * go1.21+ introduce new default behavior that can download additional versions of go1.x toolchain binaries built by upstream. See https://go.dev/doc/toolchain for details. The go tool would attempt toolchain downloads as needed to satisfy a minimum go version specified in go.mod of the program containing main() or any of its dependencies. * Builds in OBS can not access the network, download attempts would fail. * Builds in OBS should not use third party binary toolchains. * When GOTOOLCHAIN is set to local, the go command always runs the bundled Go toolchain. * Users can override the default GOTOOLCHAIN setting with go env -w, stored in in ~/.config/go/env.- Add missing go.env to package. go.env sets defaults including: GOPROXY GOSUMDB GOTOOLCHAIN Refs boo#1212667 * Starting in go1.21+ a missing go.env defaults to GOPROXY='' resulting in errors e.g. with online cmds e.g. go mod download: "GOPROXY list is not the empty string, but contains no entries" It is not clear why GOPROXY='' is not evaluated as "the empty string".- go1.21rc2 (released 2023-06-21) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc2. https://go.dev/blog/go1.21rc Refs boo#1212475 go1.21 release tracking- go1.21rc1 (released 2023-06-16) is a release candidate version of go1.21 cut from the master branch at the revision tagged go1.21rc1. Refs boo#1212475 go1.21 release trackings390zp34 16917353081.21.0-150000.1.3.11.21.0-150000.1.3.1race_linux_s390x.syso/usr/share/go/1.21/src/runtime/race/-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:30209/SUSE_SLE-15_Update/9d7067dc7559a97a2cfbf2284cebc676-go1.21.SUSE_SLE-15_Updatecpioxz5s390x-suse-linuxELF 64-bit MSB relocatable, IBM S/390, version 1 (SYSV), not strippedw,z3Vgo1.211.21.0utf-81fefcfa0f915f6991c190b8a3080320f95e19e65f43103769fc0df9992c17060? 7zXZ !t/j] crv(vX0:3D9RyMMz*k*x͠}@PsU{%0Gӑ_1-0M:H]@zL`S|9˓mr »T )zH6B ܔt%2Wk]ꕷ霐{{C3bY|_\bZ7%&jg-o^$px6O ,+8g& j!XdWA6J A`R%'C !:[[~ SO|LsS`PӒ? 8z]zݱj; F%h=j $21}rD&3UT{A>Z=Da OnWΡ&L}NG49>;bŤػU"}1NX/G6ψV-aGb0HQh|XhzU@4xL 0!X6\lO<}&QkM#ܵO;[?͙#z~Șiĩڠenۗ4*R09Tl‰/|[{=_Hf qY 2F\aiXGFh-"rR*@$ XD6}-\mvz>"I0IwAQ).V|ӂ!736D9T8s)b/ + sp4cOb  n;w`aG aZ.ezHSA갻IKn+kWƱ`AϽxb ή&dK82 Wsd& +M\; +Ghb'9)ߨ5!MJkMz)pl[7 F,m NLXk_w-0Le6 54\[i_ 1RGV6 .&UUI2K6Etv083La7@**C#NDט=ң֓ [F!_)X.b/Gp߁'nqJ{ʼ]8V(yeI吔ٿVb N7*g2:g['[2ŨɐT\RE׶77!{aot=_yt掄ҀЄYoGC $u`ZWkJreK~Jg?QXSh߮nyAs4*R{U,QF~MS.Tު>fC7y2H'C؃ j&ȣiXi7p:wV B%w?dIxfkaYaA{`zP6&Nx`ЇL~T',}%M*cZ>@uMg5,'b65~ckOs$1~s`lɰ4dM̟c"s׾l }5y;rw s.8DŽiG "P#Iuz (\ELxKOuP=~:'Oj!Q:DDxU_;z12R, Ш ).l6*xO B}7YQ6` f1v{5f*m>LXx~P%'=3H Ki=G=&6lTJB:Ruku]OdH8}Q` n~[ +?UP ϛyڛ`qxudY"X]EupiEhS} BO)w.?cԋ&<ǐeFmwX#㠸v8j>רSq>YЯR: [ވ>Iaf(riZ:i9t%1? ENp81'E{_ ˧ǚ1{ӒTQWnRx-V N^Pl.t*&PS9^ڒX%/9?4p>eJbmq?{H37l0SZC{)B6qVE^`Fni1[IEb)_5|abĞָBn[@Sh c_x2i؅QcRZΌ.@BG.̅_1Ǿw1]4!95ez᪠؇Dصlߏe@~'RŎaUTq#K &$:Lp!xP~~z[[^z#>[hY;аư{iV/qܫj#myM# Cȉy0Xey`OvaЮA{=m-2/ ڢR QÀ.EG]τy?2ߜIG#cƸ`*.lSN"(FP7x_j)^;I%LN~d^v8MUъTIT[bYrd}@RAj^0T]wl럷i\yy4ɴ^ z#QW@2|J`TP$%6y#q,>)i A ՠv}m\X$J^%X|g\HmVᣧ`~Po Y݂lﳩh8g9*cw "M=Zf6@9Akg/ߗR$8Q-b7lUdmV=9*"9%SY=.38 DXUU2Tz_=f">bw Wt%I!Aˤ?FCy/`M S\oDY&51prN 5p1o~G@i!"YeX[Pwmi@Yidk[ u%q(k{QoROFA?3JŌSz.XcEe~ϲuV7ҿ.pSH\ [H.v64G~D􊃊7AG8=;y!v!8`[q#)4rG`>be!x@ ,r\:~gf #ٱEINR&ӻ(W+E2vYϫ z/jۘ 1i1o;CT*sf2G!pST!/J.~04=FgM5c=.e9 MW{د|M09 sA4}_E ya"xTmnuAT rw Rsv#¦ϡ06` > ~Cs}:`PLVK+aLţ+bn*=aRVα^f{/Z Xs.WVx')!Wp_FjZ&T."e27cIV&5:NRty@' +X|eڠd\PZ-".ctjaÙ G )zi.ǽYzTefD>Rw΂σ:?\5!26̓^*ҳ;ҲM rn ש^\uH*"S@g/OjPNK|Nkv!WHV%5z Y#x34Mg%_,^-{".UZ%NU!M~ S=  F@U +?ZM"D+t\{" H'O&p_ޘOZ߀-܎6魪YFGC M1^7j2\}z7{Sӧ,lzCH(QaNR l i4F 3?Z+,o D z$u :o>H)u6[uXL/AȼB8=S,tiqbʼ0ʍeĭcR J7 p)H`d`BpXFuW_`#9F}"Q2vv Yܰ͟Zo,Gn[_ͮ姺Y6DFj}8/'sCCUb3- 8kg٨P㝑3iz5Tl\"A> hgѲvuu+EoZ.Ϙ1}>BXux\"gK轋 ̑LIqD)oy,hQ 8޸<{闣[M;aڣ tnK-7zx#C@Q2)Q?q̔0ZPu+ @6S\7{MY {dde8g TJ:57nD/ :5ڵƋ& T2@QZnyp%:K)` ]<9Z63`@(}LrS3|ݶ0;fzP١1ߑ+qI3lWBӛ)c5J\[>%|(NkH?`"Jwh=Ջi|0XH$q<b`3W¦,}&l6stQ+OT}o Lp{D'vzdgKMF w[P{_rB2ߟp^c;` #sNK^ ܩ[w7w/ 3-n賂LE7R#c.1)6[U.1r߾.ڢ䡥޴TE,-7uYZ`@k6,u[NJ2Q|$>6kO6%1RTP`Ff7zKGgvKvN f`NފwcQMRE'&lb9ΣgdhFҺ_OFٲ^jQԨaaC~;y{,?-"'…d/|iGqQ~hv߆1?h";zSO֏/,z0@LQ$tR.?mI_a17+܄ovS~ 3ڊNl!͚D7>y%z~uZnׅ*՟+F>&YmU++V49>b5_YD{Y5>OZů8kNWCe:~a<=kJ:m<Hn}@5< 㓺ѧ'ADAsu0R"ae>&K+<ƃTz3]B tor BXk 9k\?w^̸bz:"@ ($M״.F%DUW7!~"y5C]q>#u3k¶]:x uL6X6IǑ:msIʝ aj>X6ߝ$g K$YVYS"Egaڹccl:ɫɢ]RNP^ۛ?ʙf[?-W+3y6<:HIk_[ˬDo9.f)si<.M6o%bboFJ쿍N]m̻^g ktyںAy|:^`ƔF]LgƃY(wB#ǰx"y1q#fnf|pPA\+f2)e$C7 ]nd 6{"ij~60F`d(S6su  N]jL})bICJ%6(V^b 53MLrm8pޯ ~͂P>4/tm"ܷ=r⤦$i5dH;o $]=;y6S렶ȭt.bΥ7IT%Y(U"vӐJ:* J+9[/ ̆V/ jVdゝ]o,oP +%mҺz& MrVj9 R72,7|uM{4}@RdKR(gZd79%~٠ٵ0l}$?2Υ;bq(ԩCwEƌxb`t)wU-2g#1N|' LT*mC2.PJEGiӫ u1>MXͣ-9a,^n0F2.P:L |`zKo{..fSSUsVnr4*ِI]%6  HTr҉ӆ}ksãO!rOd]w۟(~EA<{"E%Uȸ14؍q}3:^b W IH#] p}І?*B?IU:vh侀j42tC/ ʹiga2 Gr(a˙m?4ηzQ#}s>;Wf6}#VI -;qYEGy" @ L|pȒi9sA.%II.4x] _3<.4ɮ)C-7pS˙_\RsLD̑P.f'peKmҠܶU{ٿ;x1;n: m)=ܛ$)B4 p/<խD ĵӡ)C(vŀ${쾣Bb[ߺve7L 0TBuGS˻U$gjP_ep, &aIq}e9JgApNA eIN]R/U9 䘋ؐ\ +԰Դp-%m#=8/`LZ 6f/]ݚb;24"Tȝ]]Y'29M[LINS\Xxf% kE>!'‘p ==Y@ &yhʐwqy ,n]VcHÕi$ē 731?_sE)D@SA \Bb}ߟt\LRwȟqY!} &?ClT=X}5wHoa1ϔۤ:-[<:ƕm{x3vc{D%_kZW禖h>X.|F>恉k.[* > (Fj "_M^nf&ֱ^ӨR>CBZGN2[&it#Hȿ3'FYX/'Vcפ %=sjužfDjxrDl z4v,氡 \пH@DΡCũ;_nt7mv }Jfy`" -^tun7f71:!i) $PVmguBʈ/%}pe"\FsWinޝ"#ڡ1Ziyaqb-:C)O?QyyQE @ {,|r ' Tfc}3㺬US]qu({]&xp aϲ hv, Ad}qqbͯ]BWLgMGR2S̲zn)a_RѦGW5tAEyGO^%gC-݁R*L]!i3؀2_ßY[u[ﲟ̈́VK@ (dl+^pZvu!cָҕR3%Bvlc\Q߳6vLp_)=P!Tt'2z>tjye藬6hrNH" F xˮ^9F"~T҆YY&z:l'b|Q )_ݎX6VYSSbs*ޜ&(W;IC8n݃3G."'^#N\p1$&d^Sl4p҂f ^Ex?DJ'3 0JZϵ_`[O91̋!c'9(֘܃ pSDž!\vm J#cq[=yÙ?=$BZ%ߑe4orl`N]e([)h MgHxwBpT%AOhƩ_5لLDE81swW Qg;WZWٓ;ŏ'zNm@ |:Pe .;ǺtUREFL9`شw<ꂰ5VbQjytpW{iVm,w\m.kVW:z u1IE%G9ZvzcH!Ӥegy98a|±Fp1z6K&| fKJs_ny݌ buuh+;RzSe w|z$3Hوa_*1]{1g}LkX2=xeAf^ \ZJkw%gyO0FGJ範YtUbp@Ke-pO> jn {z?8'0U bsF"-6)`8~yi;,٨` g #ɑ ԍM+'[kL{;@>eR,nIV(pϻxqc^;{R-c8DS:2d^@iVKi.ޑLZ"ֲ^-#1ڲ0.Uz, ,q PjoquӤMVgA ] fvz8R+guy훥fw6F>$kv2*W7aNf"9*/ܐwI_8w: @/ÍLaecvɏ=o(O|1goSVw?n|ќ;d2*Zu\]L`F䅶 @;G#N1>PVz@a(0SJxQ@i{ W 8-*Z _ фIhH0o:6aӢC[x1 &!1j. 3Q!$Vk:/ҶYoxg۰Ah Z*$(rOU,OOΆ!IGlYxK6'bGryD >Q"G>[4ޑ%yTFڮcӲU,!r1݂[n`mi ԂL9(/U 3X6+ =YkE ưfs@›tY<".S2B%C#ha rB%_C@ o^ymO=rڰ_0:je*3UQFzӔ 9wB y(aݤ-cQd6h +V=TrOA!d=^{+@ع-4+ef 32^uJCdm,dL%P+et 3RTYN"947-s|9*D;!⭬FVA(LKRhkDCqvGVԳ2d`2gR$17?p"LpHyu+kN1)ZذH7-"C'*׋M,l?6uۚ\p䬠]{2թݘk0r?`ڙ6#M奡_C;I D1W|~h)CP-dI+-bG=2VTg+%Hz>1s~}K qaer%h9,٥j0+L""Zrښ> 7i!=|9ʶ2I#G&D(~P6?9Ǖb℈um旹<56os𫊜1!<(($};iAv`+ `갛u8s=z gP{{PEG1j8`T8Ş~~K}V\m4 Y@O0=)b74G,<ԱF;eGi<zG<Nn#I0(}I1CzZtL!+y\?{rsEMIEo#մ4 0rE$9q.reo!3o{ ;6 0 i|%!g7o_b1nrR}/N6DqIbD1,eT6Wb|:qûzmQ]=%ၚBnVn:艁jz'TL9X'싞z* :vafo:E0V$r:kҙOTq.1SH]U@s*i،r\HQy>wJ쯮*{{ 0oJr.8W ]$a2 aIK'tf;3պ&qGG6䈅eD"f|hf/i.tbDߑYka1pRןθ|vFqӷsJ-rSñ7uIvbة3պ yMrwDʄy'eyvc;||XQga#LubVu_-z#y^j@m!/2=ד3X#ì?YGjqe#lU#]5hC9י%8dK%E{nL8NlmsdB>G.FͅO_d!b]1_){;+$CM,ER7C㏿ i+,Z:2-hDZߤXX|Yj0)$TL위ƪ`J4UH^ Vv7)K,^B>C\, .cPI+`@vGeFQJ|yd"f |"ߦUbqmoݿ7h|3b%f 7feX"(nfB4NszD…ANuJNݼ!쁴hLP8'%c~aMVWCXZSe9?/ۘ<+ :U}`s'&}գ {@1b bcu$m73ΚHS7Ru$"GI2<0:pv^TA޵­XHC~|$WIx {k49cNQ^*F @ƿg A3Ađ4U,`s $j;PxD'δmVЎ7K3Ϝ &IFPFܔ&j`Ii>df+=mѻʴG#A4/1q>%U҅۞&SD&'c/^Q:阢+ su$1Q6&#皦h!#زɝ~sK(IV' o'$U.iB4_p=$vڷE7%׋#vCrmE 6mPP(=:vpG҆R, JLhRҺtJy.Hf~fM=$&0〓U\*0tܹy)g?[ku#(~>ǷI_]ڊ97l*}ϦbF4̯77x5 0.rdaM,ZwWd+`̀ w [Z+ 4|N{w!Yɪ3k5ʹ"mcm}ã!.50 dsxg{s#ɬ\k661# ,^<ѯ*9sY[mNŗGk?i>vFhp\ЈH`Zj zYʼn <XrrHQ@&: AؾCb/<$n5D?{D*?pS.SI=6M5گMI[RkJ(\HppL>yfr (._q\cL@n{d˪uLlԃwϡ_-ESΉVΐ%ءb2 nzST{?t[ xk ZV%0U6&E:~,9^+N R軅-%}D̻ טxJO/`DnD,AB˧{®X\LxV@bzyHe"p`f(R p~gήk\9k.28O- H <2$Ю)F~ݠ1e{ZU1"HaSlO'dLMezm}͋[Ut>Py;95Ci@D41-5cO^?Zv[V6lF9}$*u-wŞfma3-qW( @E{b xT[;[׊mq+bq,钝lԟݨ$ И`~M C$ٳ6 k_vl.>o#vpN9 ej] #\8+'P߄,ibCm!h bQKl;^1uiS% ͺ@ #bD3 5 UWO=<349IY@_OQзuY.*T9bc/̄YSݐ䟏 0$P-؃Ewl;-~AxX_a&[tl4ux?T>^F$wۼQ&S7CE^9wj,3svK&;0=!q /K|-&vj1d3Ys]EiM6z>[+ډ Vl[ܓOedf{N9elZ0->7|D*lťNmMĠr2~y3U #yKN B%﬏/hU )Nҿl(z(RhHU.-?qr'l_īuLRlֽ0.^"CuNdom9ت-Ql6+aꐢ> >/TDU:GjþR~:և9\HqB6Sk¸:O_dw^a [F5UmfE^u3 _`H(Q J'(A{vND/-Hm@?q›/^a/a.mHmD_H7| &s a$$N.m=HZҦc,aӾ#0NP Q* mޔZ-d&}AtNK 57 'K/M]cb; | W~>\2A]+j꧊]?1YRj}q)uD{൨t' DPAu+=ebe60ʓ2 #>=z' &.v}ϱJjUl *}=O܄ڙwn̐@",$@ X݌lkGɲ &T{SUVKZP$-%C *-]RḬFZ'u|?;iw`o* Eѫw"p~U0|}L&b릥ƫq ʦ/*6>̫3S+Zf_*dgANy8x}vvXF(a1H Iъ3Qf#C11}  XH0RF!$ʹnUeZC[\ƒgg`&H _/DfBI? T0q !nsK)gqJ]4g#VE y~VMp9Ⱦi> 6!xK׀f畅ViUn!^aA^#lp2˧3 ;@tFVyGBF-fS[j!>RŵՇ -Q>zuC\טa rJB_(w3%x ]rU/<@7!! Yof*1`NnP۫3kF=>ZL}Q|g|DWm-Յ{(_I2UhZ_h&fo,qԆbҁgp%mYǹ^26eU̝nUp=(V]T+99!:R˵1Ra}}[cqݹ*m<!EF9("CcNÞ "eվa n'"zyNyc[a3x`;Jc=ҳMaeml[2`&wcvaLS+qꦞ.m5 *@Ӆ f–j䈓"B.Ml;0Lq7 /,Gv  L: [u 7 #!Ej4}GyZ ilUERKH~BWO0vI)w<,qDÚ8Ī8WZr !,"0w^߈u0Qp \3W=P:_2%4 k0.-ru cZhѳښhBlglEr87=A? m= 1>@SF_./-O ph0 έ~jM~9Pudd+#2TGzu`@}L|TeU\J$XՖ~эhK.{L`a-X G_WGל\46(u9 V'L}qb]{rߜ7|:g],+ϸCbFNOL|a6lh.6pL>Z̺)ߜQD2 Lzldz,8q8R&y7v.龨5M2ڰZ9U"IC*dF8|{Ԋjk/€`F>T~E~"NoQ - |^Kco6(@Q#|yךWFAU8&#HXвǧ^O7k_7@^>ܗȎэT/!)ws/7TeYue k1o:1(/V\ncQ[SI;9{J|B{uvW[ %1̨wقs "Q %-qSiI8r0rʼ$WA e {Tj{zOx?umg*\GF-k{@WZgQk4~ICu1pgBsӖpP>}$si5s Ǜ+3ڇaX%̟P~FD 4>hz)H˴PMc Ҙ-'g4,ΘJRLID8J<A0\cl&4H܅9Ѳu9 v.^wGe)-u;4i8XSO9}- uH{GRQnc4( ˫~ՖDP'aLl]cU\tcs08Y }/_kH=1G-А᥃"st&"BvzK3pggbFt,Ctb+p{ܫj60 rv' 9S O{ZRN:kʩ"x<&`X݇7_ę

åZ[[4;$ 0wN9 [q#QHLoSYϔPA`Ijg#wu,oY=Wٿ 5VY IHaGRnYkЪ~H fmrU`.$7J_;VijQD폂fܓ {[XTW+)wLnBt0f,,QBw:$H0F#3Ty_`?Dq>Ѓuhs+p>л}z*:]  f5_0Ɗ?e %i)KKX-r˾(hwc[s1ٓm샇ǚ6ćoNJ);}靬ҋS+=lG")mtX-i`T?VYS|(p;3E _ aC 3gBI@*YӁ>Fd/e=Ct-|'i<(0p#TnGo6n">H~t޼rFml Z&gvK:ZnKF!IJ ]:^v +1@bH R;4ЭF rή'C"x-qK9G6{GrFt(tl9?ɪcz?Θb>?@<‚|)чIBn y$MHIvd0l^eP3rC6Wܒl5x֩_^#[$0Rε3K r.:"tYSfPTě"?~)ѳs)WCWTSvDpGac 61ށl?'awK~;ї+iVQ#n _ tr'(U+v K*ʝwYv׽-|&#n}'#2&hL2~?nàޙQI ^)/OtnJw2,<`D VOӉt.&r41ٔ?ΤOxANR}d!kBіX͹yާ̳=Gd.Eo#?V !x3 (3ej9fB(7PsG^ָ%)ʟkH5nDb%#d"M#7擪azYXJ"?bpYdpp[tUE S b3+v]#?j>=8'MpU3M^vPzj-j'3XE\lOW$'\<' [Kܸv*'`]_WhU<Fב1XD]J[qWAA"Nծ\6^B-pYFf\1O<! f~I|kXF'ЂőSG.@p(vZ΋J]ŰqaFAʞ+sVIֱ|j3:YJ /^_'~")/|`!#ٚ^bu'(\y dm1€.(m_NɹuFʉ c.ik?fazp)|VɊQH|yjΆȅ6+@0[M!PҤcqOU?jw݊}l̓Vl4M7cXmi;! ن}tM8> Bt xj@ź=8m Qf͍5d`ho)Gh=\L̒fsH]@Cq.Y)1}T*`qtq{҃\}+ѺQ0;3Z#@5im3!Be ؉xZۏa[% bJ 8Yf1T\-ْvANSl"Ozs)VJo6}Hv& 9|vr VِD 0dc1Hٿo*8kkQ8ji ?gn ກ66X펾T5k6)(8Ʒ+i*sHA 뻌n3vO0P@S@c~sH.olN" dV0aTR-T/5~逐i7@Zj% N:%GGp=V.=PDV}.O4(n%O2{ Vk ʰkOsKvX-V\!={uL昷| ܊w\Y&p0On 7ʞc0y%LireW _RYy!9A54s2e}@F { Y4nEF>v?8y=]'Ī!J 8tqXqGbjS9 *7Y<(RĐWcVdǺGUPI/ns?,\W3&ލw6. `jblYiZ<+ Tx[¿Șc{J>OQP(抝k=k 9?!tYR>>E\yaz5w"+4"1}#+B!ǵ}:}n XE%H_u OWeh{jFL2-vMuLx L 4kϝ᱅ʱ#dԜ2Cc/`c['?'ӈ1bq%bVQ("ai9Bk}ormԻC @tFu?I aKD*~SJ șcWm o \D>,hC^:d n9` 6փ.C)kfE xV]ǃ rM:nȞP].Hu/%bfc06wx9 ȹ(?s;€Zv»bkܲuq֑zD4 [O8ވ 7ܔy`e6<[>[μNLdo}ז`$fli򉍈_@d",5H_-M7XYFInE8ρJ (k+-Jz(JKWב _R _M_n(mESq~M&V=^}Z!ߎ< of#[7%jg3%#+M3\'lj_G1KnR㴢$)ݚg2dWN84YtD}cн".$"|Vpx7K{D u(c Z9Q@t ;)H,pU9%46k&TauDB9 mF9l2^ExJd|n=md)8k$ec_j|qS*Lюb"şEqR9jbx3p%E V_{_Sᾕ CTHQR˛,r'>m NeљLa\Qr~*^_4R#,stƦSH_< 0uKİx<788˻ՏC;c7Q)]H@ʒc~yz/u};eR/&-iD9OI]³ϯ5sVBWYM`;)h7Ӊ+'k3WLI@oLI!qIB(Ezj*\kְ|A‡󻦩q ~AEN*GwB0#5 i+(v·norڽGi=|gl"EFK \+OC#lZ#;.+ ANIX7갾u:iRL4d wvM+NP:qbօՈ֗~l[&tq8ʡշ%MMX*;4cÞҦ̺!{ݺ4ExAiCxDǕ.OBxڙ}4(b~.jm+wvᭇ{䯛E|ΰZ)TË́fZ?20W R'$1( /V4b}Om]A2] ]olA,_?!eC!ǚn7lm' ;G,SF#ްbõmS i8zr*2 (j m,G_G@1.s"*)e"wagmI~Bha NL[R|$g4 Ym0pzUrMp(NxFbn}$.i7R>1Gۇ@97~H=.|<q,oy=M=O! A, c/?$P@YYtL*+t8ك`bi}D*Bǧ=sIFFvݐnS)3)6SB? $;OY~>g.,$sؗ#-p<,C1csB/z u+Hg_v)}2:? I( \08韌n:u\FٺPtu3u,f#"E|6y7ȼ 4l;Fpr;Սz=l3ÍL]8cDa&iXYD A ,=dS|teIZHܵw4 Ma; ܓ:L>gvL FIuV 6O5*Ҡ~ڰCNKǏ,js׽N$>c2hw׎ @VB `NNk*V?m1Hv)г~g3Ҁhwm L~?>?LA^Q޻$9Müۘ ) w>I0zßdALH|0 T%>^Yham1b7ǘ=?,|Y< :e]95o!~fnƲ׀:I剻u؄҈q2Q..UŀSlH+Em/Y A?3ϾV)0ZQ~*Τb'a|Lϖr=כ0->NB:1l]L&;Be#`Pyf#WyBjHضoֵ_D9e[/dI}ӕ /G~k3:3zp&Z|0PS8XaWoy)(Tni-jWuwՐG \] H[/Z*ё$|K#2,-3{7'O5?ූۯ&;Z2AHޮl>$~n-e{",43d#/Y-c)4qOcTcnF.clr46D@ TbA sED1!̳d%3 ~}gFk^ge(zVIY.{)k^f8GGn2'xʢ}mcD۱~gsΟ -;qfvZ}?hly $t h-m9F'|PUqpd14lONV;3I[I EݍfGno<|/D _X@Gi2ۼ?z.; ̖`;|x# *Ch c'w1 "}nrȚDյU " %_nSh(#kuN V\MD}ފ2nn{>sX"7zӟ-/29GM˳= iyy67XcןtM-N;Fe [d Sh…7M@&hܿ܃/=,TG glrM:oI>;1 qbd BZj\H٫ͤ~mہf-䅴'fK$}vJD#n< ǰ\* YX_: 8[HV~A~o+OM-uĖ'佰p 6mZ{ptn=fvK"uպ|i_/=xy{P`fT|d,4^"}~p ךe.FW/7>nEO qknC[l0Q/#ϕLݙ2)^h%s6Z^+2o%v L#B` &||bY,~Zm *GHtagӚ mCPZh1MnZnj@}OvCGK?SL򛏙 W1ssTȸi+_ H #S _S-oal^BGm>B6:mpfwc.Sg#uɫl3]e:Y znSk0E;+i=vZtVJ] nɺAE{ߓ}<`{\tW9"pwƜ!Au-4(UӫN^C/RCVwyS˘:.@Qyk~,x:n팅It,Crk2*6#:r:L'o:\Eoҳ0u`'Äyšts7 ՁgPNΉ`3Q\@Cė<;MuΧP?0kP 3ۜa].tP{aDRmp*sB$έy #^5 p&a J~6#pO\k l.qwv# x989I۾Y6Jt{A|,tmV{0CDע6_ӱɭ&'"Vp"3>m^jMjI[!?E*%U֢Dfs,}dt>X{rE)fIݐiV6滙I1."+?2$yTLdu|Qț~I0 lIgxdWLxFF=kޓ ӛ3ό]7p|$J vid*%.Ghωw]w݈bLQ$fl/3$?x褒W]!4*]!ȇCYɋ9V6u|٬8/%C,([v#?VU8͍Љ` oĞQ 1rNخ r5} z%)Pxv!MJCfs- 근%+i͙r|Ya7wbhAK!Vʀڥ#0v”1PY ǔ9cZigΎ>((rbHcAGrÉ&ϴfR.`AFqm9e1x~idoăJ9. UUvt$9f|vӤ4IXP+^r<6l>!ngޙn:LsTF NjԷ3g2y?}m =s c Z 0ÅH':=1lr94F('S>9 BݭЗ <=MԛZc|'{D-zrg9Fcd}NʪX2zB eLe38 '>2|`Re9AQ-S?TtUb~7A pc^vwq{0 +.5е"VL1$nw`y% }$s۾ K ]!I QR$:D[K)➷92̠II!'s&DEjTIP% ab߃;4KYװ+pҀYvl!܏:m=>sQTzɩF;n>Y AAe RvK,fxf'!Be!ꈭtz.G&*Z*QX\-66גsnӘ}kڀX%,b"EMC8\uo@VM:$4ج&[|ߧ_Ԝb0ZQ,;A 1>Scw>HSfvVO/"y 2@w߀yz+NTE%cy^4q|ct <3^)pPmpOIɋ-Cز_0gS6PRV o7b Mf^4`4@TƕTIc!̉ 5 ExVic / Y,Nf8vdqH!7yBOI{eB4Љs(ƴB,黵4>p$-2hwg)L1E0^a,7DeoCNlQ &6&נ8~h'6rMIJHv< AH{LK m#8lv}یuFW:͢D:TOǼyC+LM:!C˯F=%&T6}OtP)vMZh@#Si#yl/xsWuVd3MwPXyYh^̒pP+,FaۼA<;;\L”nbW8xpHs2`GQ I<{$b$rT7[rNXɖv{822|H20 q&5eh;UQϔ{_8_xTe$'02}8¾ōlxA-p9/3V@HQ" d7<0̥L,ksY(Y11̛*1+HM\oB#MM g̸v)始0#-!, ^Ml߾ B ap2D,-"?%!k՟WB7os s"POeFRLgWY%1ܻ٥^ZjOop܆EStw_zYmN J~7cҜ{{G *?f%qAU%k 1pDO.Xpy&[gc[FˉߵtX}Ԑp XT`T؝ۡF`޷S'+jib0L].fM(tCA%ɫq5:0u3ʳ;ۿOT⥡`Ր}!70͚{48rg`LcK/ʶ-$G܃G3 0S >'fmoP ֘}eKUt~IY;I6[ZꀌLlPDr~ڍjr=g^z"Fv:q˕lTkTZ^Yƞ)$>i"L Er &r)v/Rje~D`wGJ~rT^%^\l 0Vf]ܑ{;AJ[K+^ܰ/c_2ecv%S]7]XR`S9*tӢ\h"?d"B`чЁ~F?UxťxnJYO 50# <4[qx|!{L/ܫ QsuhZցwQ恝"~Ц t;1uzAxOͥ]&4rŨLVmءkb0g~5 4߅K릐QnGL~I$UʊQ~K5\Ȭ=^[{%8V"F;r׃ ![Mi}wrgGB<~e߆Q;f$)||XTU62Б,f6Tޱnt/C0>b1=6I9 Z nX!"-|  #zao/cEK6:]sT]¸ds(fi.-!;25 ל{O+t-5fVVnU,3Q9tגݫq);|9LJC6q3^ R)!)~~AfOTll|yqq+m65Wk1AExc6y]jFH[WVI@m ۉ$e̛dN 0?]q`'S37Mzk< M5W8Coݍs XSU g+~0\"I2es`QG#h"d,&R9Ӊh݂Siurd)ң ~uk%5$߮ՍrlC6IwDo_nxx>X-={׸ЉQi/k޹칌QL1~v["V)"ν0o6xq)L퉽1(ocuVa%l:3U؏C^W,6;C֏ƪ㨅MPk4&;srV8A]Q74M b &FT T\lֈ mCU-]qyLzKpǮ5'58*!\w u&;#il>K7K])3,!Bǚ8`0nXKC=B)\\)5g{Yl<HO=+~Te-&t@ s`Wӣ A郦!1LY?f#GuuY^#qJm`N;ۣwRE~ZaڪžҰKtwZaWB=w7W8xf#( +fNe*װ"Zա"A /)O_NﺬvJ8-ᐢXޓ29k_8(@u>1mY Vt,!u6~3?@-Oϐ{ƻ ڵ:^GVR+JkQߐ(_J~$\b%IJkQpU57}^ڃ ?w_v0OPE-V '{MQx'yݸJ844Wtt=X+,HS xB&dԈ QvTBGKzAc+ =.{: p -,! 7nZ5S\00qⲭyX"Ej^NԱވV gԜwQ_I =s8b"_Bz 렭FG ܶa`tsT0FبE:O(GCe]EEJs^ݐZӖTs{c&|8ܽf1S6IkU%iūK3eQ0Vc:|m@p,不O_\1z$M5X38RqOt@7H0x'j,ܮ'6g*Y71c ]4}|X$bjE 7390`x] =wLܵw)CNs@oBMNğG+Iz-|w2wYECmR1Z[萏 6[Km9qfkSa O݆к0['dJL}:L3ęA؎; 'E[gO~gmHӤ~ *qo/7*NW=J +m٠"Si16%v`'!vel!fDJOc9{p(oEªP7&FZ89o`γ~}]WXmeTNXcnls=`;1#LYf1Z:n팩FG Udu@>Dovc|zHl^^X-2^΍81pH+߉׶feD1->텱{Ev95C5u{I95CrRev)/kJ1iIS"Y 1LskIgdw<#@g:P瀉"II4c9m^ywX0Lgkò3>|N؜kd9u}2Lu$2Ikk S_< 8Y7uR)dJ&N-Fl7fiuvrC5 dc8vd ndcs,jKOsT31ƧZ 6L B8{'(a++s `hy͓Lc 'ʌBA*CV͏<5K|jiA5S)]D{*i;[{0R ǘ~^#Lt]\r8q|d.(o}=hCfbiեDZPΰ֚Kߘ4b+ݛ|/#u(nFf}Е(Jw. A >D(X:r6ج+zi۽[ = 'ڋ/,+5Fº]|&N7,T" nkA :źv52|^ܸne?m' o0AMcCG3YZ!:߄%y0Ʋu/l~pg;$v#P4N OeܒA\=Gerc싿vtTYee?iȁop 8H#>_̢;_CwG***X]Զ,F}OwB@hc0#aSLOcЫA *oN9,@W1OCXu Y҆9 mqC3c :Wq'@g,=9X&[  dV$\+vEsRϰx7AΨ$ҏ:ҝϽڄ/= 'oܜxU/&4y~F[M~z`4vgZۮHʒciv*Ml~ 4.8kqݒ Ը9\tu j~`n /!)(ЗL" pU8&MvOCށܸힶH'DJ6ˋa(` FG )~46z豶X1h.mw {&|Q/_7ƍ.r?{.(SK9 P>1z0𷂓שtV1?C{&eˡm1u8>LJ߲|{ a/RQ`ʶHN |߫EYbULq\HMvgݭ-vQWl8]0 G/sQ#`x<7˒}W(!B\*'aFZQ;?|HR9#5=XX0neFud+.T qxlT%_o+lt kd.W1XA@`] w*_>*Q(Y~շh8ǿĻh6V25x2"v8οitu%BBK+ugmu* 7y͓ WhM{] , li-Ru×g$i=q{Z;B%QF[!ZMw^0!R'mTЮ-8&@iZgj_.4 ['kBR͕H33s6L "})VG{a vlшZ ׮>¤qx$l 5C}زho?/}$%Z tFB*ODr5e4 Z}&7o$^|PcBRdf;K.だs@AIqaid\xCg_0W&a:0faο̷[7APpլ/"O[ǁn;ԋ6 > 39[aO&(wA1a3M?Em*ZR8T~s E}=žc oBUO1-) `-fR;^Pt+.|ggpKܖ8:Qr),ak0hsj592@ \eگ9peඵk Cj˅_ע୒/@4K!=6 Ze4p`o R u#ݤU؀ [;`Zwzov.z ۚ%Li|퐪'xD)C+p!.m&XvowbEi@S^cΎ_ k *{0w6ڣTmhODS sXdnE~4R4 r6W?Pn̉s*_eDI/6v7Ћvu:F ^DrOn՚^O( L'k+ C VYxnjyKN'l''д2XYgC M4%UNQLBG㠼 4ryzEX:b 3?ʔn+S7qP&Y6*: hF~M9$gy2_0#Ri! oZ6˕q?E/B$ M1x߈DFhxW/՞PϦkIhl蝨aїNs{;ockaq"N jH8UUwܔ}W4M?[w{8K{eyL=Q.-vu>q+JXC">q/`ɔ X f  HO.K]-1cz].hG9ɛmQ,BMv4ZI1U^fih H@LV^"%2&Dqf[XwݕČ}|{@~}w$id[$z^TBe;K`Dq{~ ?Xa'Ey8هGhJ(vg }e+HpTYW!;q4C>Ef.,cŋkc jO\5G-+!<4j}0Tͱ}(4:>  *4Gӭ$-dqngOJWG!p;vH1Տm+m»?i qb` X0y2Tf_<\TK1׾&Ppy "௙1^#!#n;(e?cȤ*h]'";D_bS$ Z6;-]uSu@ c^b-u2QSk}e(eUaZ<\HŘXb}tYyb0⓿k)$E&`_ j$:5},scN ܽnbLN'WtrfJoaPO<{`l8\G8 A$?|I :~Myk?63Rޏ(7bz}M*wTs6 kSi.nT(K},Fbt^xc]r_vz3Lk;r6Ϙ&N'h,@S70҅[dsX6 (H1dhǡ WvG#tZcCFuǞcӼDΖp'~5M)F&Q܆V* id<}-dWχ^A|\xKcI/" ߱se:Dc6j?-5{% 盟'Eķf4jQE>IY@6׀h"s<7]<9T0ƫ40 e{NLkxf)sg/gtfK5s%1UoRRyå΃/jBSH/3hV#!SL[a|^j.Sh(͕kh7\DN d%^3@[Le[]ٹ$YZ0GIz^J A9(p>9ۅ)3b3IsXićz{"^AzŽ#hbDSpy^ /B+dZ GDˈLDҒRqu$q{U_`'=q[7W_35VND6-E\DΉ) qäK>p50lL1N3ߔ{>Ck)>"ڽc 7t ;^.P V㉵>=HnX/Őf2Q[@  j+y:??ӬHK?Vx]b ( ]$HsC!d|-X/x3u:& 7WwB#/3GZa S>9M|Q4֬e^nIJ~*8>8(/RԿ-ﵓ2DwuBnX3Mhg?'g'eUl Ə@&L/D%x@ H"ku\٨U1֍5vT 3c}LQٺK:8-mGFWQ }*|c?(/aB ֱ>k%=2i=~B :1|UETٔp zsHŽbA^<yjF4srLNN^<^sÜ˄,߱IQAc/3KX 嘳6hME/[~hÜ_Uj=4`~H AE_*T`: @hf4CЮAD 7J 4/OHCz€CmMI$xlYR6-ÏUZL!7bP1?50c5O˧X1ߡ%\Z^E+ 'Pd+I+2k_NU2GS^,Vc hs=Ѧ7gzV"SڣY^| "[ }rL"dW:+8בO+*_% `.v7F, TE.XԗûS l+OhrTk$Y ^v䩯mg,d'8$%+РŽi("1%x$RL@xKoq_i.E,-+bQ6f K8@2dab_Y9s`.<\`~@mջ؍$]?e߱b ס֩X͈O2st:tO3LQ9qXx%m(Cdwm"V噯zi9qt5bT-nc-{ϴZ9sh$^;ıA`F=Z\x2|`U5m5gf_ebjZp.{4`B ,ǐx|)(ӜM ͆Az<;Lgz;cZ7ߏH:D~$xPysoiՅ7AF9#>}{s=˻ LPa8cm+]G^W/z$X}R&eN|x^!R$N\TY3U)[ pн9> ӧait^5 1</~yPT?)Kb ĭQ6:;݇|CʾYjX0.=@bjJ ag`duYW5gL=CR9~W 4*<} SFLt妼u9p}"!sӾxEqb :Jg;j|T<49ն Ń0m21b/9?z\B7g,ދw{,EE9ul"jcl/~);粳E4*f>Z8E, #a!>䮛YT2V8<O n+!s^yIczt5$祡-#]x>4T^;n Mtx({睰 !Z9kNEd=OK6>!yHgXUpiJpn/jS"G(}1k-, C)zdP__-NrSLCf-dR~o>. [2j4X^È69D4;;;X{]J5u$bXO֟rLHUg|Rל(fb׳$_eW*U]oE1 7GT|DAҘn 㺀rq'W=aտ;s< ЙWγ9o,VhwυňB'`yRD-,]+P)@EF\5Vǝ%?|3_Gdxh.D_y}$_#S!?f$לZm&7Gmʭ)w+fmb>yg4`E*JV^3U3y؀gԕAm"vf_{G;wdw[A fDZP[trIk׊@tݨ[QR-M~6sQdcoECsW!ؾ9TfjB,ĉFcf:@`JU&蒨^#U/E^3gAѐ] :@󴶒Dm (%ϻ[mp{/zzic)8VVӌxMpZ1z??(SQUJY)W4s\aJǮ_9T)b@laOh2ϧ0快 ,hu_nxB!{TpHeI.k()gP H`r,ԙ4cde{ꇦ_N+݋1?yyI֯*`/)~,|r9C; u|tBXLɋ6E|U % 5N2iX-i2B@A;efil.G@Kw3J>9}0+P xK覬G5J GשM\8(~@ R{AD z.062cMi:*S  M%JZ ;"um/qh-_tjʅ.u8a4m2RY;%r7 @q**.˖_ͤs?-`QaÀ;YHqXPA`6sF BLmf"*қm#߇D'uY8VX:) H4=T>rZ+zkz :֣ |vwxvgR˚5?ZTΫeZ"fI?$N1+&5;.= A_#,hr8SB D1>w$ MPe|SM7Xح_7Ѣ@[ ?ˮLS\Aa&Cս}M&)6`z#Xz}.Y푈%dޕAE~SM ~jܜwUc )|F7ېFߦ^HYV%%Nm(u8̵[Zk90vbCHhsAM1Nӵ͡E'|-g9T:ş+1WnNy:JbT[O4AgP@aF(-KAdDK#2_KE&-a;Wٹa(miȞzٔ9JCYdg?)W~&!Jml@iZ c%LdR4NȦ4N2݀H i¦'m"yr]5FDh@y)뷦|4znIG4k2.l=- 1_lÓb'Qˏ%I9_h-GA,N\zwwG!Ӿ4x{[+stcҾ]E_ v[ej&X2k͚#B^aųzD"\Slj:u(junmAn #YJjnu4]&|h"*L&4imF?ڔiEA4ٛdꨀV_WsFM>~"ʫOva#d-D)!P甤\񎍨N.hS6 wk0vFHTZpc  )%[(\aVmw d;0³WuϰaO}躀v1#K,&+ VYNTJJk:WbRd G n Ӿt6)eR8{jqZʻX0-`db0?tBMf񄐢̫ q3ܥOR$I^$l)+Yn !|MM"7溈 c=QS8U%e7λkCR+cd1"S}m@ⲵ)8϶ֵ%%ɶ?UCJ{$HtPwoFg2q%]E.]6N&E~Th`B(&L0~Zٹ$F'F05n?- 9逓;QZ5_{5۴cCq|tc<,b 9 1vZC)^}r#bd;e=߲u&@APj)&[XjyQ 9N Nt{ݎbqi fg7E@[OY=S}T0t-gj m !}wΛpn$RCt:{LbTkD.Ģ<n9tni!&A$F j>X-4Kx?3 5kNQ=EoDS3[#Q#hS˜tܔnbhei+fJKٰj֯~>8ĜJG=)Hx8^'G/`J>'ƋSdceEŞ`jq;2)c]W)fk#AU/ٟN7Qo!DTI 5ڭ_uP`HF.edUUW`dYeuwLlJ3F|mSAw%$BEpoJ!aX*1 3 a ߢέz'YRx :DtR(3>Z_x=kdӃϚ|D:Czذzn2Yw*C{`*Ƅɼ@^"W {٭qN eC2(n P` Ō-IRaIHʠE9Fk3E`2X>n|R6MńHlw$迪"DzC ر }㨁H[ȃ=4\QCqK-}Ɵ~f}y|?0ܴT円)0,t︼zm&  #eŰŚĠV qgO#`,ƣ-LgiX;(G[0GpɱQg5ƘtIm9YVVVd1Px  D5< mG[7;[o5ďbBA&yS.'8,}~;ʦ#AB"OWllj4ǍycP6D覩@@"8GQ&[բ}ۛc5BQdw3^,+I>\ SL9o6D` s7c0E/ڌ_CzxaooWd)ڜ*Y.B`=_uDZӢ˟FOpv N S+¢ b/勅ym-͚AjI2BέĤW;iE U?J>A'm;͖'V自3!>+15!z݁t#paLJʸ.Rx- K0ce) ؙ}9ù9Qk4C"DhF ճYmށFA5dkՓ2ڧ>i+#މ2}۽yZCW?8VEhȑ2 Jpt̜ۙQTb֑]|$h_R30n]ᇋV= HܮiTT Q&n1- ZJ,cAN|wx[y *gItFQ>+E- 2CKN\G*٥ GgI@&+7놆7el !ڮs{U3,l7ĎP5b75Z$uw>Tdǖ@ⱪp,z*/'\r%h.vݹלomέ䦐4*4Iz}(/Qd nzS8"SfRjTLhJPFBmq)&߬NnG5.wBj;sT.8ZbL*}qw NɃ9цsRqaGY+ɫpBvqi6@W s4b =B{BԲ75Y5~Wq[bnIi{%2n[` L( wOYD@?_f)-RCZDTNx W̭?GSH"V[h Y6b rYޠ/MIbRމ.5-08K)Ń Im M3xvXCl !(3U<ˆj vݙANl]F.Jp4/+E:1Q^=vzV, Lh3uxKiUXi,w!'"JmyH-ZkN>hȲ 8QO-W }z$ތ4*sf=e,3A[~o4F.vgG @}$I}cL_BvJ#k7ek~\_-8.h">c7HG p !A^zDq"WAKym &5{eC/@ $@7twcKN,,HM}V-nԓ\Lb-Cm-vT sʒbA(Gc؍7߫ޢ';l$i- _:Y `*E3/ES8Hrwhe 8#'^jGpNf(>"W-Xy4x*s/N䎞2L_TD@Ũ_~Moe(%KAk5j`傅)n}軂$_Ҫ2;mV5ؐrp]W6dfńw?>|eh4>c"s@V(t= x/&KU]1]6;b٠=&8[B.oAahx޽(j}W܇D51svK~`?(nL!F~upM-`3-:˓)C${pno1WISQ&>B|;:/#Av)k#L{`3<<X1T!-W4 R 0bOOLmy伝5okKkBF 9숨Ye TLOBoPzt'e? e'a^Sb~n܌bq\:zlN.+_4$:XQ 5teH#ދդSO8u~3,Ǩ50.5CYU߳,3e7d2][ $⚖ư_+P}3<:o.je^[,*N}lԼ;e9_'uϖթdݏz4?ź L$q}W[Id E+8ct|aW蓕6g5ZS^[H;eGpl^k/S N2#h%HS≚.{L96% -N`Jx1;wQ^^fROJt^X-P5^Òi7J`j 8GC\deAKB:>3zd*Mf H,|q|¥ۖʍTXP5[3X/~i1w(Cͪd 黃gD(CkbWUh?l1PwR~내o2Nrօh;6/UWZw4S9mM_B ذVt#r^p3Kg%-q`?0X5섛rDœrn+UgU8hm&S'J*fe^o~SE(jh'@?D&]RFYW_cHZJQFjmMfAՎq {@钕{kIUh~3fʉ[3Qj=7 Ν|<.fAMM8niUjϖv6x8nZ0<,!\ Op>5ٕ;z뱈NR;KŬr_~ ,f?gޫ7-/q!Y]Cz@ pϡS9E m V[Q'/W 9. ?ⷯBBl /POtԘܣNWtmxNW=GC_4Iz/UuIǔN%PKpXp =0$@O[_WP'Ty{Ǭ9a[aB;[Ծ@!xВ%~Y .ZB]dzpߧۢ:hom<@TNVF6V^M%VfpP.{1À80BL] u5owW#:?#m/xm-ּKmqTS2 +X<'*_yeS2w2qIa0IqlI;Q>/QNsVByۆĵvTY%E6*7b*nX6TjƭpkͭOפǻl)Q:kP9^2ʪG)ȑVD^Mv!\ir%1 qV/oqr귉CT;}`Etf2Z#5)vn̢I^OEJIH @ ۗk"TG_X.%FD* l"[l"s)\biQ|eOR䣓@J!J)_C)3^|noVf*JU @̰h疜q;gR:x/=}ݓk 6e"R@ao@3]1 tudDoBۿt<Or]PgeI\qbfu:0XXk9/ܳB$;x׹S#5 CZB*|PVHNN_nRuRWQ8?Kuɡ~4fBO6ƐYnT*\_,Yz`jv\3L{&<j-m|;ŵq;#2ZE*hVB e$?()eQDЇ=o+K}qw=S!WFCQpQ Mv.$ܾJ2\\o𓔱Q[B:4\3Ιy\3Wj3rpwO,0oi PPJSv=|À{;B`M? Sk ǚHVewUGm֖& ʬ&x#d|; ?k˅׳+P p ۫tܢ,쁩ˤƌ3ɝ.~ch@那MFܷolܩlB\V'#!n@ۮK12QEk;ŘxmS=tq;Ap,@-@bP;ҦօCE!oPmԀ-$Uaq'gק`f'KEHg13+&j }lmU^df~ir d%j;hlxo{swe=Bn+,py bZc8 v+z׿X0Y7/,]Wڣ*khSZ3{WKρO\#Bm6L3pʄB~J7FopG ˝yT b7Fka]mkOYE~e{K3aU}ym߽^Bn5c`:ruWLY' $*A}6R{Tk+ l?; nz'gnI"*цw14;˥pR3 t }S!=!3Y|,pTL}dctkpO~"9B2) (9o~GvLC+;G%PK#n!Ҋ2pb49ꦽ7Bub啤gr<Ρ͟jҪ8肳ݠ،,h_h hcж7l13lSZ?toeh;EV)/ .87,vKa!`u9b72d0,+gq*LKvmWu!VFsD1L 8 g170{rbt308ٮ@N :t$ bӗvwMSS\4-m?w#szeǯ=XDb9R;J"ݬ dWgee,^`u2"Lˣ'{>su5fjqHqHaP R!7Q}*Au:c@iܐ>TCjS9!ةQXjp$h'Wd_-792Χ]yz1燡BE#jf~\jN7 1WHp-%ϝpf0Z.Gs gfHoQ'ԫZ : 'H2Lf϶ubD\EE(3G Ȏ #^/2s.&n\$oJ~*V+<Lk Q:U?RejR#L&169\wZ~-mSCRns~S]w~E*+]/)2<[| X7{0&t5}LG%\U7fx=)T5\L[uqz"**3d!n>BP'b_0]C+nP4L/9g^+>=C;Q :]HgU ˍZ 'Grz=!t@΅ՆyNkf$ {2.έxT&@QHLS721jaԌܦUNo J[G.ǝKF ˖g /n+m8:g^9x{RZO 1A5ux 4MpX+58ySo "gZ3(FKq?I]i zӡI !y`D60D0O )ƔabhZP{R d[qP2nz86"(NKSeb֯X;T`o*GhY&n&E$Ž0W~@l6!KNs#U]&vt2T</Jz 31:aN/'(>/Bq} ,5dUnk+zx9vUTyc&- `N _y6}0"H2 v۬~˶āŵ;Sxj@1}}m0|1Zi<% K@CFK HC @G*@8rIEWmC MC\ncm7F"g=1𤾐VepG.lo?$ ѩ&z YѬߏ+bq BA%Qy>R-fQkb]="w(J hUHJS@~gqy8Hr雹/gs|>۵{&+RF"嘛(9C!0j 6`ҕ/U2>탵c`|'a4mAzi Ao,bQE(mY6za}Ae&^LqX4~i=#VP~.i! K|}JLi<n\3}}q.hҳHΦ]ysټ44d 4Q=@ &4H^7F}L}Ŭͮb`t=kSt^%] xR:ݱL!]DI7,qDDF""rq,G*Zn>BsνOD3 cUާ&w+h`Rv&.xϊ`uٮ13eH20UK?Ks !\R}𤗀䚺5rTظh[5蹱7JZv?Α['%i//z/žᇑ-ANgU2[pfoN^\$n닍gT$b{74V\OrۮCTofnkxo4rΦ&Ij\xygUp =x5!L`h,yyzd%Tm.D-C Co$p/-2C8>ebl_<M7$n>K ֵ<ݣ%{_Yaʛ %DVJ(ӄ"Yrܥ)p5-¬}rYh8>=jre2>[o&<+wh4,գpnJ6\TL.񓓚+C A~ lZ?X.=ǕfLA3C ؼ9dVUB-j#F>p0dŹȵR^7$;yM1*&?D:bHb*LwIxcJV۴@wyr:6?Ta 2u1*NN8 +` +̋%=,ak/\M6?:PV@S's &r,60Gf*C+J>yC 箌ͪ#|s=7nAOՀO-@W7 ^IkjmAt_vNuݴDld޳l@r1/QGJB4MGa>cxObq"׷xνv DT5w>}dFɷ)¿hm<>(zL8*$oc4)0ˆèY)D5A,2SqBAT;љ#K/NgopM%t}9)^ȤQr jCs^dT('4*˝X7,j 5𢄜aoRq0Iow3d9^ŢO8sI$=%-AXݧ>h%:KV"Q.KdxV>Iɲ&e.י 2K08Y' &jZbB29NB>s6+Ӄ!n 0ٔIP g\ G!j_j8<PX.kJZ( /ܘc9+:Y(:rIQGBDe56,=cOp#ĔU,[uIQt]d @}He xbA# KFf.V,U/8y8&(R@%4aY/k9Ae&'\wfvHU*=EĬf-P}xW@qt{H.pJsG535Ю8܉Da%6[(dƐ!;ZM;]h&IlfH{@4Hmє&o=s (o Kw]f^5VN<(z< @vY[ZEMU "*%-Smh* ,- 8 mBƒJ!wZ0 aj?2' r:#۬= Dc+Væ-{@>LOn߀@/^tMIp]T_`t5Ħ xlL'~f3|uy(;>!1qBa[o]%Be~JѴi WoYZjdF:n93ķ4Ty }\oGL~~ns|qرyv"τUz%Ⰾ~X^G{O/\ʥW7ibfaXMmTjM AJ`۹uDf͐A`|ѷ?!{ ` I W tKMNcȠcu= ʊ"sX(|IgYᲛ5{xV $o> !zڤuUP>-t[[[kWEӻR0"ITD+;@^^*5,QQsʼ%Oyao;$2cT&Aiz> ː$׊FECG|͋(P(yx+Ye2*uc0.tKC ?"KGio4 ܳ{Bɰq"b}h@6sW VM,P03&,&nKB5=+V V)϶qxDݎJ`ιQxlkU(:gK6C[ZTkR, H/>p`\ty-6uc2SVApSY^[x` OU`k>L%96JZ K"jZpU.A"3?}5g"~沗z*,_~?E,(S_Tt2n[Ni6ٍ2VpR k.ݚc!Rp ϗX*;|^"b.ʫLf!9sQArρ,$T$+Ӝwָ| fb\qZrۖFgdWnt=P `9TȖ^]Ui$r;z\KT0 ?7zڄ+e񕑯njlȹ@Aeĥ^HlNRG5+6oz="x pllZ{WzxVT6{mOo4Uݹnqd!B*p%RA6EA**Ƚp)cd ha+qU[I{ȱ#|&dĈ񁣺x cDݢ9o:43M7~JɟoR\ `lm O9S24-(bvD nQj $ @cCZAP;M] zf.k߇ L2ATBejILb!% agX1Ʊ7,D&Z!"h"-Ќ̧-qKtJ6^Pv`C&RySؖh~BSChz`EP182ƈ-.p;idPC|D?݆b)$^V|oǓkGk=; 6Z}#ŽtGXs=wPͅ@R*l׹cee8I (gh {{.!cE(\Rπ?FnY fKp8s8䉷(P}`/GH7lQS߶xu:asDJ=N_#6fTuxe_UY3`r { @ᔺ q AŮQ& ls}1I_1F ։OgO^xWtR$tpu~;mC1A}3Ų' Rk:pVLH>{A:"S=(]/̩ĩZ$\.<2IRY X,m6N)3pGLhCwfũ_(}ՙr ^T6 59vXvG5B172B0.i\3gsÈXwp Z:T(v#/ya8_.I&P#@-Y;NX&),?XH_^)Z.EH8Z1V=Ѡf̋Y#5C1>*(_u0s+T|;kؼ*a4 Oxxjk}X|hBNY'ְ&)סEDjBEZyx]O:   \VנTkÂ/.,z!hК%}\aƕ4a]{jߝ0HCd9jEEӻ)isn"*hh^E/Ӊ޳!nW$JZ>lhX9E>H loڦvnپw 8 ;K[ʜLQvT4$ vw%=o %ֺ*+S@21%U7Wm md=,e$|I͜O$mly.⋣ x9-|VnսMu<36]zm?ֈNB;LCbAEhOd 9i֝;:"+Jѭ`"{)zKc _ƸAf"lnf{!ld`E/oYP-i8_8S`Oc=Qs)E&Tۜ1 i6P9FTq%݋wxo[E82s(Z~JCx"՞]|Rtnf OqK#GVY{POl$ 8|GE/h6lA`pJa%$F|CbT61T)s~(&ީ[L$=C .wx q4_-tR#YZGDѢ~brm*_FL'f3+|0 b.fmKny+L)R_\qD~dSb`돕w~G^ek^ Zjg^96D;Wy ܶ^}~J*eNkJ~/寪p~{иJOP:58Ƭ[ wNWD*D"U@mE["8jTqp1>p=P ߺl_xS q%W4m!x//Dߒw/c7l0q ”䠎u.vSK*1:F` ,o IEC[//w=gJb 9=*%q䲥lWОF9xN~86BMOܺїkU 7& _nӒ\*s[W[(LU[0tVeӍv*>WX!B<vo'{]Ȣ lb˯D!%тʼ*э#' T~ɢd$sM-bԙl٭\^QHs) %u$)/B>|}cؤ4vno3mQ`_i2͸ݚcrɡ3X/ofFu Vz|9ԗmˈ2lnOXh@xLW"po4vEV:S.{H%HVy}eg^G:VO` /ؠ L`=1K\ 8.C|S_gHiGR_2stԑ6+l{+/VQhGJWck͚Pgu̮暰,RJgr"VwD-S@cK ]8\q֡ qEY҅^*$&̈́8 ԧL7w&ڌ2'eEh0iHs[boFrGw6|jlz<)I^DFFf/KR20F6-(-8{| UwM fwߵa^-|KnTt!Jx_?}|C-Nn#%yn>gM]b:_ _bBF!YCb0v\ḙ(S/ӯ=*PMJzpЊ3'A ^ 2^4% Fh=; ;06,S r~T'ȕBbA)JЧޝe7 ^5ZwD]}TLKzrW)jyMJ(S26ۻ;?+"l/㻁t֩AMpi5ab H*YXkm:1#Aq0u &màOq.ZEsvf =IpmT-s5e=t3xlg83>fl5BAq@(t$<[u@`?fM9# cPyT6HewPO&C1lm&]TNT I\C%<(<"pwO/dpJ(UlQxi G .C#dww3b@C|BW9G0rAʳB1tؙŏz"2g3݃z;`E.^'!GHw͍VGC(0ݖH_!R)u'Ye]{mK'Sx3?^.lh͋KG]8EW ?L!(%<B$v;Z@`͖]@n~c{Upُ Y.MS_j9b{fίj?e]RG3}Όc7 &D <-&`e(78سC ![!~^sޯGNF-Hsfz(٤Yulr}".4u_,2dQn1r$.Ygmͷ{u892;3U_/5 7v&6aRGYjv{SQQu;W5jf}RQYW+_u!**)8=LPbh"zk!ݢY2@%Mc}0 x]\T#GH *"^QbH^=ixb}¶}|nYlOZٚuxZw$XaA}7eXl?I5`#E;r),b]\^ƌ0RFQʥ3 ;&YHp]ӕ:'?ͣ=~=}T8y$X[Qx pC1':05u6iAiry?@GlRLPQ"O0Yt/L%Bc+l=VQ%( tҘzw! 3ڢayx  7,q*p3nA>ٿϕ3c_V=ZUʦ?K9zbT1%F#О*Gnw1z79rĘ;~T{8qLZ>[y(C_z tr@EȗF}̪4#|P ݚGg— DnaѴ.G6]іTqmEoTnrD2Bds[Ŵq3qۥW/|:9:l8L OsZc Lj5ɍ@5ƣ DCX3ǵM*V:ŏ9,7k:BE.Qy6 Ȃ+:X÷)P7bߛ ,zgk ? g(\C:+aWJk!bnOXtP,x銃//դ K'Q [PjqQP"Z{9ǵ~ؓhrqfJd?!Ԇ|ǿCC0ʡnkP̤wg SFgJm+pxE19(v_ Zf?Yi r$_;oO6qHlջf 4߷#[%+iJtU+$P(]_fF:e?#_ǏQKAa2\wْP?~j}мŝy` OA{:3p_%|'<tP|@!bşּQߔ퀉&)S]a" ދA:ˀ gMt**!/9vȸہF%͖Eø8͔E X$."2z`kZ޿_wCC@촺R#Rt+a[eun3,=^}x`}.am6pu eo\Z@N=c2'X2hXF>9 t_z76=E\S=SwD/DޘQ3E&sۊ {_C3|2 yD2gg2%WTaQ p ѹJk+/АHa?WZk Rd :xLʥ:y4| ״w~* I6蕫[ve m]{I1p,r.Hn"2'χ !gP?yc1`H#T/O4_cրA7ԋp@]IG$ =?B v Pc+L'm.2CVV690 Ԯxv&VTҁ\;Ry?BGKNйq3*#MQă~Ô'oV˜&|av7',Q 8mTF{S$t>pU۹kbj{2}+2! 9jv4\_alPQ(lcAxHB l:+@F@8)#ٿ-PzyQmf׳ŐGv) [˽wPGR$T`>nUqK)eXB$|ݜ6odzz,%ڂO12(DZ?$Vf^WȩTϛ'x V/)pXQpP<8mʿ> 0$:@e4 zǔ#:(O.P{O(0E~j )&WrAL+$9mfIV'J3<=\p,3 P1.$'OWL\-{GRanW6<833(8 x ˅pDo 0=f2I;;Ku6 &oo4,q-=}/سk2fHD+)=(g b6 )n>]K'jx^lugW&ƭkE&![\Ӫ) эRxe- xwVnlj(Y<ܥW}6kRotFm#"P7S b:br#`}tګ@^ 7 ,T>4sjKb)@޽eVf{%F1BUjYVD'EׅVfkl)y-PC>w?b*>UcGwh|bP>XM_L [0*^:|%MĕG~JOegשu\cxIIȠ14x:4)297 ӝ~qd~n eQ9c菥|:$}iQ*%7;_{sLO+:!Ȓ^.E 4UkjUz[Q<(Yi+7ENVG C[\16Y1Zgo;'$t`+!I[`SZC;gJ6$&-Ƿ3QbQ+`D[+χHZFޏ^Ж?jDH'B; [Ł@y;~bGybv0 w1&⬅ijDwԭ5[^/v:Yol25I,@JϰEϪ`AQ Iy庽հ`O[G# ƴ-JU}6dPDs`.2Z0qivEPrZj~iB\BJk $í΀a)13ҞJ4 p ݰ rgD> jPt7 (s w)އ!-: хoNZ`뢔%ޡ7Job̺xbf~\dfYfޭ`,IiA`e3 ѰS7*GfLɥH#B݌<O!Ae֓Z6DIV܃U9(Tcd|hjE6h zsۈ>Fo>KYdG 6LwWI 1= r ae\~zM=(/WăͻC)&WxC 9}yL+“'P̶o5NyOnĩr-כ,gt(ӠkV@w[B 샅YJ.0 Xlذ^S~?OB1T48Τ\Ay@y2v[^(Y2{phbpN#NUh^q튽HsO }ڔ `F |v}M-U!zrUdހB65$0 ȭE)^}צc\c٣ŠnG\Y;f`,HMݙ(RUu#-IA4F'aSrټɆG6ZI]$,!r7RCCL_EA=/*n]5 "d SK8WOep`lbuYMyo#yŜ-vy8^]*`Gήf$I ٠Dx/=PS7f5fLjpl|%~^I!^cO@/Nބҥ8³ٶ}w.C,-<"[\@pO_mk! 7AFrGd}/ `m.Z Wat8(~/r簤6`'S{\>_:8Ě}}B鎩׮fDѢYAy:w_b[Wm)Uߙ,0{kbZ葂Y>/\BdrE%Mϕ3PƎ$Yzϧ C]JJV/C0/Q-0'"z;~*۞8bߒh5`"oP@{῾ 3~gW=J۰ReϷ/`3-\뗰OH@j${2[a$ ʄ-JC6=2Zb~JXt1oM_mZ}$PŪm @y!tu*Kޟ+%jѮѰX+EO](nW׆Hځv (+\73fDǿZ\ ME캥jAq՘02`Ӱօ|S,ȅNQc{RR< u~Ӿz,V_7 #]H'*(݇Ngۍ1q{igS= " Ybr9><PXr>}1Ħd(qHw(ߋ~mB&]Gk9|I18kZϥ~ݞJN{z "^h?yiKv`W paGz~t\1Fa0YzzW~@~ň߇1D$`릿ۚ6? wh1թ9;RJy"?p_%q 8_8C88 ,D7uCH8p0u xC'SUo_ We[gk`agsm#G*kⷞMk)2K45'9mϏvPb-:+顟p}Y,= .Yy޽b2|@s9s˵O΄^[HNHlg4H" @xR˕TvcH'Y5 SQ}/ y3 [S.QsXx&`E!XYM{DAt#b{ NR;lL9P&}Yi:Sɰ`Q|vHE D-2_';fn9O1g& v,H۽[K)9b'bGhi&hD(Chy3swSyl%b=_&9 R>@O/-2lIzn~=!m ߄ntGtP3* dsI8eNAxG#.<ji2vQi^܁ء N!$.&Oh/lF^fݭuK㽀m^ ryW.g?[8_uldž#$yi污)n"e(WXI* ].KLhq64'@.g2ZbSH=} nv?aC3}ܲRݓS܏h$e~vla躭ke:d%oHSo&% +/C܇^ ^$tjFgV#F;f{?]G% ep;*'B! [GJ~{Z* oUw'dJ<0Rgosn9D*\/To^eME1K- h}28rLmpjw8_JE}1 LW>;*|i!~l@rMup0Fs5[e$ft}YK":w=99]R``Gg#*Қ0x_k.u YRRʢsN@{}>[Mfwby[bwB2z8}nc[T/cpgwbE  "cAF9.% 2oXZ+9T6hϊ|1EOWnTU_YnPXHx=VZbCq/KXCk):ڒat=Aޝ-I dxzELHX<4筫_F}4Bq9a!yX ǜu;QZ#ʤQ2AW)qhu&N{-y nZB5zЩPڵ-=zI23A}ʣµ ČG1ڝssX>~]IiVyLXRiUQDqNTv KeKwEf[h~7dM=}eٹedw}@X&`e3u1X~вU@鑐ρM|Hp092BFq3i!z66iuD[Q>;s:-zNۺƝg(xɫWEf&ɵ,BK'xDZʦhiN|XEd)f1PMRaELGC=x "5՟]|5)"/LpbfE{j= r+cN]?B8r/^RHx"mv4l>H4.߼.i'}>A+ZA\`&5t'% dTHA%?ɐB|3[6#A7̈Ң60}P1TL hXzaR#"K$cNu/n3RÝQ),4 f5ߛ~3#AkFY&0f*o&YrS@^+U)\4a&P.VLߨ)mNR9ǛC޺J0 +>⪧z~EcM&xC0HZk5x !ńDOtǶc/ަ{=B5#<5:=@ {#B+-iʂYR ip& 5>u{}XѼj"t=Կ^[۱TƜ؃bɷ +#a]& / * ].bLf+ %<4f@̴,8l1H:IXaan^l](r2o N b9b^IK[uy!_|gM 4H_+</JS>F~/ l~I4)OO m5 PT: η =wBTH 2AjA1aedAjq#>(&K? {{,a5,oݴ˩]0&ԩh.[90gt6pøՏ돼!|PmBÜ/!M^=;ᅶA,ʵ?nJzc7D7ԵR˫gJ]lz= HS D|3%4c3RK殫x 쐺!MO>(Y.=8'|L5^il+=gSEuT C}*1,'ڤf:{c?@kt^v8YAkr["DNhBqc"Q6 }@=ԨC- ;nA;UR^M1ܐuk|d\YFQnlFۂ2LD"̂˿i9i3~M0ӑ|K2)*<DC[}XњQc,Fg;Q7zY1UsddS~Qua Pn_\٪z' Av%х89{ Y#]a'ܾ) ,"(eN@"*@muopPi-X$zȫHC2yP S:QcQǠ585fA͒(P8\n2-R7oc/=Fb~5~aS(5 cV6&WH(S`r\)K/( 6|Ow7vQ9$avq ׷m}WN-#*N LpJӚ_ Gu=3u7^äw=6 R"&Dx1 !wfTX &]osI2{JJiq /Aް}AX\F or$y0ho Q7zYiܰ8^cyiKiQy E۱hCO^݀ISbA䐕^96GXӵA~m0s %@H{!^F~}>?ܭybe'thtb."5ȖD -NE!\j+/桞)!(sP D:"FgKͲZbfgb_Wo> &MV#>Fm<Txd.&UCPF8E׮9ﶫs#/+פcZ($@2>w=]O>ߩgݯrғ‘Kk@LC%V;_V?VpRy'ff fȑGJQ!d>fK8%RoR:Y ; -9mwB-Xywy TX|oP(h[4# ]`Ḡr}Sc0X&leX66T[@Fq@D9\("h+F 0_ >R=ܳ3M+цdQ^ *s)(R$į'}b\lZg%P"A,Tw;;D'U.͡ uZ~JկsnOˌhwRY!CRvk¿yqDS0NAoTlMu\XXr~<6U 0U t@鱍A R+=jQ+c,E0#R8po{>92zh; QX3#)mȈj勣Z)Qeo$2~HSkA$UC_Yuɞ)r(o5Oa ̿Q'dW(O̽nb83.3?\0HOVj1:JK 0Jި.Z]E>z7uXe/}ì d z%,ꋫ\bUcuS-c6NA8^E2[.`Ԥ%Zdٳ6# h 4XMR5c,*c Px.RVٓ׶R?.DmЀ4)i)/\Lq WSe_I*ɏ YQ::)pe8ސ;`JUcåS@ cWiˤ\98oA-S~79VDt|c{/'61; Hs'y~_锲;*+R.a<>0iwOR_Ms߰cwe(_ 8 :jI8(!] eǿߕe%//nUcp҃@El,;TY/ +#isס4ؒj4 w֤g'm&m7!61/\%z&eW-caHzQezH&3q)j04 OϵͮDlWbo(BL'7t0cHlo 7Oq{y$ %>f]Үk3og12. YIB6y)7;@$Vu(CqJf°\<m?qQ\:cu:{./u=A{`"X.&zrNU[YsE3S}\5԰,Q`R4ʍHh1Ƶ$4U Ax*p #htnBɖҾgx~1Xot X},#I[)߯TSCqolؓ:.d:DvPlښNlΟ-y3Й*%pղMdaJ.@7@px;*Td@}D_^8/:Öt *!m^ 4}h 4kbio; 2w2eI yc5ghIgMWdG^6bRKpѳꦞG9-gJVfk5{nx#Zk@d>h2,p q~AA>\0G3kUZu_{nӓ ML92vx\ztseF+euR<$Ic NT 5kT9[}`cd8rp.gx;%q@ŮΆ\`+ΎOqKq#+d[2DGXU{txb^9k䕮/ǮSfUDbQO > ^.KІHHxkuIlAϼ6eX4X]9@YxR|}S*Sz%̡a3vРM/y`ө  fLkkVx)Sd#L>1 Iu/XȶfA;}\[kc4FMʼn2]>\ w #:  }refp+|֮߯nY, w#JU>CT8 e&Y+I)23]S6Ef9r7/3sSV>pHD|`wOi0RAɭ/a{5`WPFi9][P }>T_ LCn+z|ߺS= :ۉV&*1j@DlQJO6AMDy8>QQOM(SM 3%$mie^(U4 ͋.6O;.%F8عF1-!X_O߾~Z$#)(1 6v/ZWUӅr۟xa}0D n*IW-db|tY)ad^B$z*B T`ݺȢ7Q{7-`Hv8]! P ԳynĠ 3Fx%zЩ#Gl`qЛwBe\>)pQ6sL8QStꥲØywsMr# Jwm׹5>ikxZsw0[|]rGZiƫ_oFHWZފWȾݒZ$YB߾ˉ|I=9bC,&މG%ydР|x]mAO5&F;< E)\I}kwQԀef!F*Yn88g e~#,v(VquE-?IR;F-BpޯEJl飮&IS0]:]'˄u%36ʶ[)%)K0>mIXaU#%=w{kNDaIBvA3}>>àTEzg;< xF6I>Rg?_rK*7OPV~ˠ /cr䝻gte)ieHJq\&\&U aeuH+=Ө+"svڱDfp^1ỡ1M; suXT8^̬ױ̜HA$@[N 8$I՞V"I_figfl;_Oi?HD,LB6ϟ:} /G})=@v˓QB3958N>|D1V vjMCpW[8vCi,ԙkJľ -8=J7_ |6b=LQL9LYGI+\wmX`#yiPWt(F TM=#'WG1ͬ8I $RF5xۦM {tl Ru{:-6;I`_a!,~DrCj$I#[D[*tzC&LŶnK6,䳄vύjG5 %hڸÛM}p=HO a+6NJI73`LQ2a3aC"ע6~~2WQgO?I|n5&Ԅa̹k11?yORЩ]8*xE ;QP#C Đ5CkYQuWEAl!fEYl_@mDf>F^.0E=ZH)Rޗ*tM~Wf[ג~1?v{1"Zj<uӉ[1Rjޝ#Y `Y>ٗ i[Puuw. vO϶AJQ^B\"lXX^&<7X _;#J>ȫdn)Eb6@+\xx=Zd442F.8&wzmfdE6ƥZْ=5*s/mukš>%q=X*/._Ѳ Z,hmE)ON( [aG6\Hgmp`0RO<O7/" 'GJ`Rʠoo]%2fz`^(ԆNRQyYz%6jaGC8k/9I7G*y^z#hjBQ_>x(EdqKOc zMS#=zxƧEA1..I~9inBҔ{_GȴC"]SmOO` e6֦@ xgE~'Z= H_׻pVy㭱ߙ_Vc=[$m)ʽ7h*n;ZP_HMf5gweVP"\ׅ3Ddʬ4a Rt:՟$ 1M%4g3Mo&^i;+&*g];&p&}(@} *n(rMW'1* 8,K)~#,#hlK~0l#и{ b޲:L84kK8|7E1;\$#3+Ń86@@ꘓ3QvB3&o<(3gN nxxٚWxrKJ 3R*eʰt+7MM_'62e {SX~j|S?vM*]HrC駦0x3q:!sBĮՌXg.c#߸ZA0szrulbKl+4@2?&o,yUJ|*`{!5K=%I t'4 tk)^[_z[H2ہ8]rߧ-e{$he7g!8ӚRZ+C: 8 ))-FYA 4tV5e+b՗QoXcQI_=lu 6ÌZ9 ޅ,גĴr0Qa eB{Bx;4yCC% zZtp(9ƢOwnIyILL1v~>g= ,dhL5hE":խ0&o>.4a4|7\1[Gf X:: sgbXdf6IaB̄Mjם%@)KP@k}xecd^wFVs4 @ Y}ȋ#[(SAk7(4=ps! qA5I(z)ӔE£ſW I)Bb`Ӕrt+$_eO]&K P*~j]X Or ԣl[R43 4>by|n ~o{Hd5՚@vqg4>Gqmqp._3ͽ>n`՛Bcаz4~D^\/^D)axH}ê9=D/:~fR_{R:JWgYZ@ޣֆ!w.,LZ^UiO-.Q& B@J5dO@F\VpzkoFs}wۯ@yY.x˶ TFٿ> j$.'G (7Âm =+"f}+Q~ڮmİI>GSϔoziHO"Z: (~.ID08?LiO xKIՆE, gcki*Si݈n2^*JkSBǭfpBZFҜd?SBok3%7=O P+6:Zv/ , ,M-鉜]^5Ef%VNa;^/{] ԙkrzy\3B*GJս ~='GqGw+a(=aթeyq&pԿ~w|%[hfd#B'z¸N٫@ PZ;h$soKtheߜwhs 3vPkL_"{"D`25\2隷yϙoSbm t{P)h^|Ps˽sS$6,6pM}c>k՚}#riwsĉ@qmYKC> kg&ٳE4z<,\Y ;_|"7iu1S5x9<,\{I^[, > &ΰ~dyO`8JeQ0F) i?K[S߱pQKȄ4Zňڲ|Shs=F?zo{2%Ueԝ xM|ͫPT_ ?%={u^W3|H:KyƗٝ6jPP4r#l-a-{ ̸3Vk~n!8,$!2ab{۰(q1T$.7j]goQuTebU֫  e~5 7j{RF̅Ns@zS}YRa:T^*舕/jڂ~pϒ47yXn,ZS#֯o]*o|KU3"wі&C4VV'T_JRuK;iRBѽ3Tjf%{LY"r| lۛa+`.G`6-iėWa dDⴜF:Iiwnʹ _s忂Rta0\f(8Grقč"|#3'h@19f \S pݹ|NA@K+Ly.rʍ!=M0e Fkdg[D$;A(\L[ʄ8@eBEnC(-j =bJjW6ݾ<O f&숟.%y<IxO5"}-'0Gwa%̊݅-˕ۆ(?k;ia <-&pLGahx Ǝ!e*,-1ɵXڠU>FvnCjBz(Oz"nw÷L9qr;MJEr ov 0zr64Yt_K:SfI2a $?`HQKvGr}T,XW<8b)sѶ 4پ|92w[zLl售8h0ʶm_qf*g4y2u,S/^0˱yh"CHtG#em.ekѬr+ y'0}[Q#e;{j'{a;dJQ'^ކB8vp[ꇟZx{i^0a\N r}JDЬ'2*oVެ:WCO^wt)kq6*}kzʐ}s R,,Dwݢ{!; AM|\ a?1wI|":)ȴXf$#lW)pZ VT|s b-3вz8m E+ mkh+D *iIlta)PEɉn|xDx,YF8٘@N+TA[ i|}= {sge%@8}Ʀg0MLpĭu]dȲe PJ%P}xIXꒂ~<&&i]*bX .c)RE:g0PB0W:{O?|KW2|$+BY=xV\g,mBXZq_bV8=ynAYVjD~7p'LkΔt^bz;p07!>x҈lj4LkKAC Fu4`:%<`2xZ8Q~˩*;:*SfF0ޅ1%f~:3|dNz={Y+} YN&o:wZdNG!YfJ nM31>K~IG0^&3È YߧMsoveҶ MogoP6 132I;8uy(gRz+\J{]u[Q YJs%5W$vSw, ntV1CL9ZL #9*HB.1,9B0K}Lt ^5 h׋9^|D(FͨnвbWPQ>5Mz vz- o+n@?]xf'HX xFW]_0H Ó[FR]TO= Tk'Z {]Zs[\~4RT;P{1z?xEP ^1͉,/Bd2ˏ ` 0pRK.G\ߚI-*|hoV_w^4w"ؼ le kUçl_b؝xq-:Z2W~)M/+ ؋n;SSIb@}u͸̋ ]1JeM*-,-y] v۠&`[SQYmBH [xpAmi ~@x8wZR4i7`*ޭJB`4Re1NAKU`E]nD@<ez ~r9F;9)Qp#n?[He0萏2 ٯ= RlTpSSvI;0bd8+14%vTuwY `6Ϥ0Q5Q[]dRF֍x~HH@p՟c6Oep7|ؘ'lf @̙\BgWplsFݔ.mWT:_܏ ?FAJ&U(;q"Zgk`&(1FD.m <ٲ̷PDgɾ)x1+ 0!ğ.PdP8~x~JV<&mByqjE(QlB[aarE"Zr.iؖr[d>hNX,tMj3He%Uͥ15-B;_6ch #vb6JܖlV4(Gd<31?@;Uɍ:/Q(UW9&=; S~k=&7fY:(`ȍOwA zKb2_6;9@'u,r aRzRTL+ѷ ;O3_GmjzQ /oVꬬ8E)C\}Sgy6?^ ZƆz~ri{(TR:Q/ yQvM-[B tH6%>:h)ٲD;DśKy\hAELT[y@yW&>9C &kr눭7db> ~/U֏|z8PAJ瑰_zyȿCvSF]SO?0OVskT>k3tC@KFb5X0!8|)wF M N9s'sU'AjAvLf,Ԑ!kW[t8Sk)IJKi=~/hd@=O-ف8V!&E]\}EY7/! 3Hi4p nI:AA1ʙgA`/=R$EQ\24{4٢=A_DVP~-EWeG:פ^jڐ I%ñox#썯z ֕%׎+:8-X[wV \I!er 4/DM;&E$7,$fH$ݤCԫ c>p]{li5 ȉ6#W:uiY^^9 xHϜ3.c`ʋ2F2{BHȷc}aݼЅx!G*HBրy$0ι\.ol!fp!EC]LkgX:cʬ (h,=xf4XllIG塞g#U!S0[>X`QG1_IP )?|;n6v zK4b1غҕ=OqcLfrTh>L4>J-;#ps$7X怜'F1[tE&XDݿ_-nRc}ZVPݵWlnNɆ&Cwjl% t=oYb.pMA:ѝ쩈k]H0z`1virx/,?hUkM jZ ;r47KU}JTĪY|Qg.d!9`qv*\& C@Uc S? LP}*=D} S.|5'7wpZNbDI=A 4^KWΓ |Nǐi4Ydށ|jYaVw ,8dy b:f{?#xZW,_-~8;:?n5UKHZx4V\'  z{4y+tDX0<:]c^ǘf[Hu6?!i8 ];V?&nu`Q!+emadet{"U M 9hNrW$y\%dNXHX?hz\*Hȅ'ހ ɖit)>Y!M(ԅX%\wJѮT4(R0DYˉ7&M]ͼBjs9{ jUH4wwY_@C!N| zg';ݹjo_;xFFB++ߺx&L`Y:C%zcFιGU!j_z#i^2frrK)oo 6vB@+\ŁSQ 7 5r:=e52eo,K7Q{{ch܂'N_8zH`:L2mñN"l ,2Y!iz! vOlʞlVFNJ{gDA{lIf1Z.<|9A;x6dL2'_\]=XU^c{Ї ?!FôV2Mib)Jc"P-QF6\3H W' 3!@q΂'a9X(4 t08a:tsgF;Fn{ձ|z",ݠFm+x t`2 3%+_NkSQwMr pf>:4Mˡ<6k[ n>c _Lӡq=O6G$G=~__\<4NZyK~*+5c.1+mx$Tˍ/&pEvDqCb^Tz//]KƌʧC. ewT*#MP[f_n҉T^dTYn"jOΚly62SGHf =#INz>IQ/.fFF:HJrT!ivG]OmqAqB<5l%፷> :f<˹8ѼxG>$FCHNbm/?g?DP*ݖ|,ʿdr(P;ܚ9jxOzK7co\ºxe܎.<w#JoqʾTmtd?W Y[\|7`;َ|M}&iԱt'yٻȅY4F{~Zhh!<<}%Jkpv;L.1q&4e9R\׸U 㘫flW1饁so閛H`Z[^َ539܇rј 3:1f)績~Z+E=MK ȵާyUN`3 UmXY k1`iSK{utˑY ^*a8+A殆 hL~+ ;,9;z9/CŽ_ a/`r80K ; vKg0z7,kY4cdEe]01=i;nY0/!I^ 3mFxfdh~Q~F`*LOԥN֋.>*$Y;? Xyæ@9uQ/ƬMCtڳN?H2hh@品vߢ2 l m*9(@v_ȌDZ9ȉnd,vYvjCe5>b}\@+5we1y}(̅  #[BtDSQMDA\" %ylۑvE'y67.NDsj2VDW-L>)gS!*:/ML^3䙛(Bjt%[/`Cv Cw򃺼}"W~@—kʠքj*zb*E+@z~Ξ^H7N qܓNRmЀBl q~ D&s˔BG'&pUsWLHkbp+yG.P_ .c6~55R@4ɵɮ_–g c.. d|aE&a\@ qr{WR7fj3)3/ Pm[t닋 G9)r{dcpwx._~$DžGcT8y@8w]kVU91raxÞnneh DY1|L(>]E:#;Q\<}w |GKk۲Y]to%][Rǻ#1CtX>sIϢ^9<x5d J޺BqprtxJ://;T}mp2(pl{,;mS +S1b+wUaŜ0L ^ bQtLg+x#["f H *b E:vUjih&ޓ WA(@>khƈ @~xWDTshuUU;kTNJ&ޗ|p=ڶ-T݃ɏP&|qf|ww{aodYCurWOVؓ껺}4$9 Wi:B>qoB7*8=&d nO`;h5bȯֆ{3qNnA{2ͥ-%Kހ4ɕ MRT1V/հCHN;lvZ4j.| + Wc*2ݑ^URrJWGjON23kjBƠ4rbx=j>qV҈-bpxZC] (cDVGZȨƖ3)e{ 5Qf۶lNq)1JEitd:5&s)UoTPsO,Xj}/cۆ }_ޠE{S`Q^qxs鳩| Fdx2a ,u20WmFQ9* E  }E2Quz]}V{ Q`4teﷲ7Z\W#xf0Qӿ,,[ZċiA vƑ!c?A7U6&C%;g"^1Zn pQ֖;h^$[QÐ)y,wi_qo(rdX=D12kAsM4Oݒ1:W+dž +ֺE!8 $d_(<˦K4q~n3RVx ޿:}7`-[١G(`Dr[gr )ZLeҳ_+X$+,s }-]U=\R2&x~r_=]l W:ru&E[4̎ =!D4<2ٴha: KbXffeAM͛(%%:ֿGWGŖId[qtp0w(&MzC#0 ]DXM"m}]g=cen<I.y3T֊Xܫ8>/{l<:O,\tz]F&Zڷ1Zq/c`01c9DKNӠ1@ΏrՉ6q%-Bw4~7$= 9úfnb$ڈ [mrCp!⥑M~mFg Ylb3  Jm@fذD&}{躦OI˳ĜZt0b;NiBT̰͵9NcTF%2WUd֥(U hϋ}[Wړ;Lj1+E^畐+iDYic_߁X/2K^URR|$Ccj !q-Q4Zd,p~:FuQt91؝{hry\6vI4>腨0x-gO4)RG./>2*8 #r}'6O;tL-O0-,Ė@G|P u9@҇" [˙L(JBnUW )~7"P{PUSV+/EI hD@HF_2QNeZ/ %xT3i"ŴwĂ,4xGkNLZH?kJHCۻ  jH3zPx"毡#-NA[pwؚ̕(:ˮ 5ޕucuvIf>Gݥ#R#P%i}gn)̂[UlW:J(gMC4W0hB"rlOO[+ēUP!=|BCsFnipH!+Sp!gǣ#odǰsoEMN7TD/TXw*VS!1UT峧\nyhxr9Ot2vZ qE#D%R^{뇡֚} gS`:C~39WmMs:ppk޻UV&&j9#Y`Ɩ3Yn]@Eb'y9/Қgnp}52zt̸'3[s 2є[GRѨPo3)Mjxu՚Q69hZYjyJncH\U"Y 6' f=m*x}x$H^ZLIWLn%hŠmCMdJ_7AaNIF0V6i 0e7<0&fK*HmyTa(,ぺfқjnq $6%O[nac`[E^utA\r]6$}e?Gxҕs[%?X{p9\1^tTJ8nƥNqor]rfgVU޶e{}:k/BZ,3eX?:.#/ڴ{It-+ KHK pRfO}4X}$VĠ¥v7Õ*49s2@.k0-jh|%3979nCR;m.Od g?ġ#\"e⮕@A! B⩓r :S:,dbWT.ROA;GRƹM g WꒈKkQmT7 ;Q\`)aЫM8$W}_kXS47IDCsԿjO#\W_pxL&v<6iD+Ez]̓nȼ Pm*̎(Wp]("cqWj-l"Xe[[?RPh~9g5^.U Y‡9"g燜B?DƧdWc(s{1Rj2MX@Bfh4ĚT9!uUv+IAbBZ.RU:2ݘ$kHfܿ{n?ڕs.xoCȡ<Ś;Mٯ/|yo. \=7. Us]N,JٙaƜumLD>^vM1Ӱ##lbRֈpiF*wsˬ'sC""nL?Iڒ~Gq/uRN]|y mދaXXyڂXSGd_cg?W'PY)1iai&Rm~[uIrncyEyl*[V2ݦ>Ң.-|Wus{9'u\0:c'8 `\sR6e2 B]@]EvSeK#5nW<)l$}E=d>^`*  `Fً:FVuxn^{yl~ /ðNl|֟E6_ڞëlۻC@|э'4IG9,ϡ斩nEՙL_\e3VɈ.G/^_6 Wo7*1]qfEJ(NPre1ܼ)mS{?+6.#sS.P&3(hтtAfi!;m3:J !7([.yd*;Cz`&@d' crVtE &VJΏp ޻T y1H(9.\__N#%@HLsFA&Q6+^l$8WnuKۈ.P*RjL-X/ #f:%]:.Xlŷa+D*jNE즱9k0Wϡ 9;aj %T֞ r?.jy@]TsԔ`\CmNw OŸ v-xup[%+|L(O(I_#{߯) QXrWlDfZdRtP/^qu|.@9땻ʃ'GS4w/~?'cnP__yXU45& ZnUHWENxV B3!:B H Pؗ%X"X Ͳ:Ɠe^C! F1h=~;fR^] j?D?{EtDL.χ.~W`Rw[ X恄OC@jkmX"Y""6ӹ|(o[M<?"՝Mmk%`5ä[՜@]/6#IU7v΄tv[ؠ݂ЖB˛է>urp尰UĴQ'rV$0(ކ0h]'|G31opVJ+}Sdg7ۻgsEn1/I(EF: A$k0{iEH_j}K $i5E_w6@ " )ĤY 1O$Ml7vp$Ykyj[am)uafvnoPƐE} 'W'2چHCst8fJnǏpAvm{Sى+]h} |3QԞ{Mx쏹RDf_[V{Z 5!vspp-8|DsSӿ1P&Jқ :_/Ml J;J܃ Nr(*B33;r<~&UJXYҬk9xj1kETePIKxNBd^aŲ&4*#aUJD"^ޖ;+ꨑx.m֣.`W.׎ٜ.X"f2mW'lH͍r3О"@ΜrӶ(+=n=̆#KY3G&{G&yc։ƈ4I}FRl!^%s&MB7bb 3O/Fm8g6f9geC0wQHE[AfW :wl&B`U0`)ћR x}w2dC?C.UE{7< Z;x.&;$w3Nom*u<ေ;~?I5} %4aaw k~춃RV$^.v_fUyxG7I:_TD')te_#Ӎ)j+c|rN"6\D%gV=<>5BEcu&g4Tr)2#$\:O uOtEN}x+D'LY6C|=W9D9"m~,_s* zǩ K(IuN&0:FYb;Q|?9`@ٜM^4 Z7gw&&)/򨣖U(DRamެ>@ ScrZks4o/ZM}"xoL"ٽ,cʼ +S]Cq1'W㕍a:nj(u,̐M-܏phtëE9@TP .Zge"k 9FS>".QWk4S4zv3}1䋵y0oCK V,nJֱ tstMl85o={g~|!=ݧ$ \Qy !D]@|K;|pkVU_Јn s)Y!%ouH#I",TI%"jq°`Pz"Y}{QvѵJy0lVMF"rwn"vӗZ`vB82Dۥj kd06`C1Ӱi}U2\ FpJdkM~"A@ s] #WOe &{4^F,1P&*{D-L=r@(eX8GiZ9)^'tpZ6Pe1)-/ 'ϝT~\.j8~heg.4C8v%0[yn`^FO+.8LĐi&qvјFv3)st{w-.$h ?/QX%I i*$DcziΟDs3lu{li"&xk\8;u,ւYŏʜIVZ,NxqO{^`u̙lV,Jډ4Ŋ\R{|%qJ7)W9IMAS,x oArU9Jr3&ero1Y@I-)L?+; ͋zncg8(2.[ ;ʞU94vv2Bή- кK~ \/6z}lG"6Qo[ǂ v86*xW;xT~߁JϝBWS'1`[˳>+TBV1TZIo\Rr~zErip&HѡA@ 1Y_K4ص8k6X:W&h@<JodVج`c([\4tFLRWWSɤ "a˿cՌ(Idg!lWv+9֍FYh}P^md"TZhxˠ%#::32?"%p4MLކV3;w錆M譇(=$mQg<> UY'u7"0(# "4: r>}xl(}G[=}V'尃+n#5Sb[ (VtBo ۯdL:m@=NBBoJ}w-e{67bڥS<8n"!KNB<`#}n*1*g Rhfɤz~J0PZ 5#hॢHZY/mj}J U B_ 6S{JE F; xB"=T44k[S&dS8IOƈ~aM[(pѡzJ {O^-L9Pfn=p3]x?gmoJPh*& Q;sniкA}tV-DA AoO׍Z8#?ak!%}6& Xf Kc%DωP,*d GsbK?ͱWyHT4;*n4/"ء%;L=+uwU8ʊRYM$<⵲3&E,;O&V"@Lzt t0!e>L{.c*o_U]h1dG6"ߘ[9 b_8Q|?fQz[[c6r]W1&ujzdxRÓ>a!;'46&F#5{3Jb|F2]DiutY)tm-ɈB< <rYe@P'Лy_R۩cƹTqLI=D~ b~+7~OU;4@hk.hB.֭>+.!(^)cÃ$ Wʅ& [+{N]l̷+|{k \ "v (r7Lϰ^*o;!}oĉE!%hyo2P8tݣSN363::z佧*5Sk֤1FA d8/Fdi2g2C?QUw:Ev lpZe4$7Y9J2=KhjXz} R4a(G<Xt! /C'0١ ZYgЊTcyF6(źEV+K)4/pX~ښ?_~`u2Hju}azu{\m 4#䞗e| Ժo6?$XK̠OrNh+‘ٍ-R*d&[+<~N(0Yߍ"w(f>@ü SqA(Z lAv|ҸA{iaba:$MsuU&a屌(L50Y%~nEn𧴐_iU"ۏ'Kqz } YϘy'ZHl4DV~]}wkD ΰ8_%?2(;9 jCCi@ChwT>A%&t(w\2bO%[ON2%NxWt)rk^u tsJl{ xbWCX7CS8 ;C?pܯqDFy1uN@dkKk4𫂲 |Decz Zi]F3*%^jn0v陉̡j[,+t)1G\ յd8ŝȁPA?fvUAjW=j6,Op1WHjae6 ,Q ]0r9Y2m,B0Sfg#}HMl yTvfF;LVRMӕtb`mvDʁ1% /'v{v9kfHMΕ @U2_Ad=G;dH3$ѯt'J4UCo^V~)" N~#>BH_!oh G#oɅ+DWy6,Ds!UнuѧICNڴB){x'm;2ŔizyuSSi.[u:nּCN/ͦ*JՇKmEAi5rN e݉9eFdxj"0,}saȾ#^u)Fh>o?Eޤ)5wB[Ji VoƟynmcLql#ǀ1U%U8dJz@ON|c4&{ 'X[oVJ&|6 (oح֮YT{ԿZb$8R'&:*.~$L!d\LPXPD0 W,|xI3f̉o$ǒAc;|&xִt5Y57,JO3{*V*O"p[6E[$c+w/Q񁶲 mJ[m6`@:>{rN*ٰqqF1 FHySo23Ȍj8 b^B?b HR L0,*+tP_~gp'wzZ;n{`)㤵UJi 2q=[!fRU I"rߦ1=ot1y?Ge>ơ+뒊t VɅ{k roH,׃Zwte+JQE`"l' R$J $Cy~]o`sEp U(̀p}_a>`.D0 2N'kx&!z, X@G)8xSTl^ݎյ,/Y>Fͤߌs {!X9Pdts US+|z.3^2 (Fl6~&8Ɉ&5]*kr^sNW/l1>_CpQ9!M4=/p9ej=+hPsR7,̪r:_Êoh&=|J}dvY&5BJYn[%1fL{m#aA7#PGu>U)5[f@XQZiQU4brn`;tnN W?WOOWli1.OKs8J 凎5 ZқX*jz:}9r)y=V ` vh M$ 9 :Iӏ&Qt}"L 2parb8J3*'tbձ#H=8ɽ3ҭ*Mxp+4W?HC H˻`]Q!=k'VQ $&T)S9/eF''MO7#3n1i[Ax Oph(x7Z4? yRXE?6c9ZT\av$x8jG ng=dlb"?/ yc݃;قw熵M!OA'8 na8ZE#phUsa",l5RwgsiX{ e ,\#a:(=5>D?jwQ]==x{@0ܚ^n/o XSNǡZ0 BC3Ef>$նq wnIӤ2y5iI9k٨z -p"Na:mjYjل몢3O[yex NRG.;W(O>Ni ccDL6Qi^̐~kZk(sɨ U2-ll?ji&| UجЂԄD1zOF;ky5{a^A?8dg=]P腬Ҙt-$ p}ke{QNRv|.V:Z߂bp\GæS]u znʔ! 4a]uεn<"Ng6Ydd튦A4ݍ-uIVW Q)ϵ" 镓>NeU7|{_J=oS;Ǣx/LiYna[RiD =u{\57~RMnz[c7_Giԇ( ޾zͿFh]ޥ_ōB*pJɑC,q G^ Q)Z.KBCk3oe%PF˪O%LJ8WJYqv}ASe4s}};[hF1ҷ IE+Y؛'C;n[o@p1GKJJ<\] R)ߨ,{CIꥃS:qvǼu c)P ԛ!G͜' OT seCnָPcY qL_{5ZdEFdykHp C_}JNH6{-5"`kH5iE/.eFm\dz7u*K;R2$JNYtfC1]ǩ+s%sf4 W%65 h/]ztǮwM^OeR 7cΈaI9)WO/)c,Ͱ 6U d9pܓt~MQRJ4*3JTgeñ~" dg5m!{jeeV7"rUQTҘAi)h=|U=ud^X>#mjIc79  eUv*r5LQ!U7-x5*o|%cvƋ?`*~c?D6;&hDvgCrbIpPrH}n|1#MPF15"x:~Ҹڒ&?U`;Act1]YM+z:ySdF@1 )$r mFEJAaӛl-bI{pFhuz@3 MJpYNe c^OBm;ŒEDSH t܈F#ߍ'ܵlol&jׂiuy~&cƁ$Fϟ&fhGĜ4N2Ay/oNگg?,:!4@Ҳ@6jEG2 ;l'̹ʦXM Ɠ{Bw~Y}K7eȃՓ7PWr]̧ҩiE:\3Q$Ac qGE8Ƈ+ L^&8/V+ Qe2ڄļy( 9ySēJ2FΪlx9Ħ!A,"|~$d6."+S'!j h~߽'"2K )! gdCp01<،IANOtf.~rX 6BVS#}kiD|Ӫ:rMђ 61Gb> N^C[@ht52ˇ!:x== pTر+^Lf8ZZLQxu :C +rn>k/ֿ}FtlV$Z͆Z`jzʒ7>\f◖+_i3P@HucXXc!07@,œuVl܊#*p> $G*^rWC{ҡ)K(!P/wwTl6>) Y^M"Zh6W~ #tbW`R֮= ӎOW[BJ䁰؞T2A u1LOL/tE4},Xe ݪy4霮t8_7D*6ӓ޽".b YZ